diff --git a/cmd/web.go b/cmd/web.go index df7e970af..ffd4ac91b 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -477,6 +477,7 @@ func runWeb(ctx *cli.Context) error { m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel) m.Post("/delete", repo.DeleteLabel) + m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels) }, repo.MustEnableIssues, reqRepoWriter, context.RepoRef()) m.Group("/milestones", func() { m.Combo("/new").Get(repo.NewMilestone). diff --git a/conf/label/Default b/conf/label/Default new file mode 100644 index 000000000..22393d063 --- /dev/null +++ b/conf/label/Default @@ -0,0 +1,7 @@ +#ee0701 bug +#cccccc duplicate +#84b6eb enhancement +#128a0c help wanted +#e6e6e6 invalid +#cc317c question +#ffffff wontfix diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 527e52431..640cac755 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -489,6 +489,10 @@ issues.create = Create Issue issues.new_label = New Label issues.new_label_placeholder = Label name... issues.create_label = Create Label +issues.label_templates.title=Load a set of labels +issues.label_templates.info=There aren’t any labels. You can click on the "New Label" button above to create one or use a predefined set below. +issues.label_templates.helper=Select a label set +issues.label_templates.use=Use this label set issues.open_tab = %d Open issues.close_tab = %d Closed issues.filter_label = Label diff --git a/models/repo.go b/models/repo.go index bb1a9f75c..2c19afbd1 100644 --- a/models/repo.go +++ b/models/repo.go @@ -54,7 +54,7 @@ var ( ) var ( - Gitignores, Licenses, Readmes []string + Gitignores, Licenses, Readmes, LabelTemplates []string // Maximum items per page in forks, watchers and stars of a repo ItemsPerPage = 40 @@ -62,9 +62,8 @@ var ( func LoadRepoConfig() { // Load .gitignore and license files and readme templates. - // TODO: should we allow custom files overwrite default ones? - types := []string{"gitignore", "license", "readme"} - typeFiles := make([][]string, 3) + types := []string{"gitignore", "license", "readme", "label"} + typeFiles := make([][]string, 4) for i, t := range types { files, err := bindata.AssetDir("conf/" + t) if err != nil { @@ -89,9 +88,11 @@ func LoadRepoConfig() { Gitignores = typeFiles[0] Licenses = typeFiles[1] Readmes = typeFiles[2] + LabelTemplates = typeFiles[3] sort.Strings(Gitignores) sort.Strings(Licenses) sort.Strings(Readmes) + sort.Strings(LabelTemplates) // Filter out invalid names and promote preferred licenses. sortedLicenses := make([]string, 0, len(Licenses)) diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index e537da8a6..194f33269 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -220,6 +220,16 @@ func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) bi return validate(errs, ctx.Data, f, ctx.Locale) } +// Label templates + +type InitializeLabelsForm struct { + TemplateName string `binding:"Required"` +} + +func (f *InitializeLabelsForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + // __________ .__ // \______ \ ____ | | ____ _____ ______ ____ // | _// __ \| | _/ __ \\__ \ / ___// __ \ diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 8ba676cdd..818b7a820 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -166,6 +166,7 @@ // conf/gitignore/Yii // conf/gitignore/ZendFramework // conf/gitignore/Zephir +// conf/label/Default // conf/license/Abstyles License // conf/license/Academic Free License v1.1 // conf/license/Academic Free License v1.2 @@ -228,11 +229,11 @@ import ( "compress/gzip" "fmt" "io" - "strings" - "os" - "time" "io/ioutil" + "os" "path/filepath" + "strings" + "time" ) func bindataRead(data []byte, name string) ([]byte, error) { @@ -261,9 +262,9 @@ type asset struct { } type bindataFileInfo struct { - name string - size int64 - mode os.FileMode + name string + size int64 + mode os.FileMode modTime time.Time } @@ -301,8 +302,8 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 13633, mode: os.FileMode(420), modTime: time.Unix(1472367195, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/app.ini", size: 13633, mode: os.FileMode(436), modTime: time.Unix(1472377757, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -321,8 +322,8 @@ func confGitignoreActionscript() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Actionscript", size: 300, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Actionscript", size: 300, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -341,8 +342,8 @@ func confGitignoreAda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ada", size: 51, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Ada", size: 51, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -361,8 +362,8 @@ func confGitignoreAgda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Agda", size: 8, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Agda", size: 8, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -381,8 +382,8 @@ func confGitignoreAndroid() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Android", size: 394, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Android", size: 394, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -401,8 +402,8 @@ func confGitignoreAnjuta() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Anjuta", size: 78, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Anjuta", size: 78, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -421,8 +422,8 @@ func confGitignoreAppengine() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/AppEngine", size: 58, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/AppEngine", size: 58, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -441,8 +442,8 @@ func confGitignoreAppceleratortitanium() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/AppceleratorTitanium", size: 45, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/AppceleratorTitanium", size: 45, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -461,8 +462,8 @@ func confGitignoreArchlinuxpackages() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ArchLinuxPackages", size: 75, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ArchLinuxPackages", size: 75, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -481,8 +482,8 @@ func confGitignoreArchives() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Archives", size: 295, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Archives", size: 295, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -501,8 +502,8 @@ func confGitignoreAutotools() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Autotools", size: 181, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Autotools", size: 181, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -521,8 +522,8 @@ func confGitignoreBricxcc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/BricxCC", size: 72, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/BricxCC", size: 72, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -541,8 +542,8 @@ func confGitignoreC() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C", size: 246, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/C", size: 246, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -561,8 +562,8 @@ func confGitignoreCSharp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C Sharp", size: 1521, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/C Sharp", size: 1521, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -581,8 +582,8 @@ func confGitignoreC2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C++", size: 242, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/C++", size: 242, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -601,8 +602,8 @@ func confGitignoreCfwheels() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CFWheels", size: 205, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CFWheels", size: 205, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -621,8 +622,8 @@ func confGitignoreCmake() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CMake", size: 89, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CMake", size: 89, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -641,8 +642,8 @@ func confGitignoreCuda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CUDA", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CUDA", size: 38, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -661,8 +662,8 @@ func confGitignoreCvs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CVS", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CVS", size: 39, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -681,8 +682,8 @@ func confGitignoreCakephp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CakePHP", size: 136, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CakePHP", size: 136, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -701,8 +702,8 @@ func confGitignoreChefcookbook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ChefCookbook", size: 77, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ChefCookbook", size: 77, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -721,8 +722,8 @@ func confGitignoreCloud9() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Cloud9", size: 45, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Cloud9", size: 45, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -741,8 +742,8 @@ func confGitignoreCodeigniter() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CodeIgniter", size: 106, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CodeIgniter", size: 106, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -761,8 +762,8 @@ func confGitignoreCodekit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CodeKit", size: 54, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CodeKit", size: 54, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -781,8 +782,8 @@ func confGitignoreCommonlisp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CommonLisp", size: 26, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CommonLisp", size: 26, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -801,8 +802,8 @@ func confGitignoreComposer() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Composer", size: 250, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Composer", size: 250, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -821,8 +822,8 @@ func confGitignoreConcrete5() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Concrete5", size: 42, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Concrete5", size: 42, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -841,8 +842,8 @@ func confGitignoreCoq() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Coq", size: 18, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Coq", size: 18, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -861,8 +862,8 @@ func confGitignoreCraftcms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CraftCMS", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/CraftCMS", size: 120, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -881,8 +882,8 @@ func confGitignoreDm() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/DM", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/DM", size: 29, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -901,8 +902,8 @@ func confGitignoreDart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Dart", size: 234, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Dart", size: 234, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -921,8 +922,8 @@ func confGitignoreDarteditor() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/DartEditor", size: 19, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/DartEditor", size: 19, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -941,8 +942,8 @@ func confGitignoreDelphi() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Delphi", size: 1347, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Delphi", size: 1347, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -961,8 +962,8 @@ func confGitignoreDreamweaver() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Dreamweaver", size: 47, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Dreamweaver", size: 47, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -981,8 +982,8 @@ func confGitignoreDrupal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Drupal", size: 605, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Drupal", size: 605, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1001,8 +1002,8 @@ func confGitignoreEpiserver() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/EPiServer", size: 81, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/EPiServer", size: 81, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1021,8 +1022,8 @@ func confGitignoreEagle() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Eagle", size: 401, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Eagle", size: 401, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1041,8 +1042,8 @@ func confGitignoreEclipse() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Eclipse", size: 458, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Eclipse", size: 458, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1061,8 +1062,8 @@ func confGitignoreEiffelstudio() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/EiffelStudio", size: 35, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/EiffelStudio", size: 35, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1081,8 +1082,8 @@ func confGitignoreElisp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Elisp", size: 36, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Elisp", size: 36, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1101,8 +1102,8 @@ func confGitignoreElixir() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Elixir", size: 34, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Elixir", size: 34, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1121,8 +1122,8 @@ func confGitignoreEmacs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Emacs", size: 320, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Emacs", size: 320, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1141,8 +1142,8 @@ func confGitignoreEnsime() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ensime", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Ensime", size: 57, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1161,8 +1162,8 @@ func confGitignoreErlang() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Erlang", size: 95, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Erlang", size: 95, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1181,8 +1182,8 @@ func confGitignoreEspresso() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Espresso", size: 9, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Espresso", size: 9, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1201,8 +1202,8 @@ func confGitignoreExpressionengine() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ExpressionEngine", size: 342, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ExpressionEngine", size: 342, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1221,8 +1222,8 @@ func confGitignoreExtjs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ExtJs", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ExtJs", size: 38, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1241,8 +1242,8 @@ func confGitignoreFancy() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Fancy", size: 12, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Fancy", size: 12, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1261,8 +1262,8 @@ func confGitignoreFinale() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Finale", size: 184, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Finale", size: 184, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1281,8 +1282,8 @@ func confGitignoreFlexbuilder() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/FlexBuilder", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/FlexBuilder", size: 29, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1301,8 +1302,8 @@ func confGitignoreForcedotcom() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ForceDotCom", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ForceDotCom", size: 57, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1321,8 +1322,8 @@ func confGitignoreFuelphp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/FuelPHP", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/FuelPHP", size: 39, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1341,8 +1342,8 @@ func confGitignoreGwt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/GWT", size: 395, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/GWT", size: 395, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1361,8 +1362,8 @@ func confGitignoreGcov() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Gcov", size: 56, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Gcov", size: 56, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1381,8 +1382,8 @@ func confGitignoreGitbook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/GitBook", size: 353, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/GitBook", size: 353, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1401,8 +1402,8 @@ func confGitignoreGo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Go", size: 266, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Go", size: 266, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1421,8 +1422,8 @@ func confGitignoreGradle() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Gradle", size: 157, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Gradle", size: 157, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1441,8 +1442,8 @@ func confGitignoreGrails() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Grails", size: 583, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Grails", size: 583, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1461,8 +1462,8 @@ func confGitignoreHaskell() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Haskell", size: 135, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Haskell", size: 135, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1481,8 +1482,8 @@ func confGitignoreIgorpro() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/IGORPro", size: 121, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/IGORPro", size: 121, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1501,8 +1502,8 @@ func confGitignoreIpythonnotebook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/IPythonNotebook", size: 37, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/IPythonNotebook", size: 37, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1521,8 +1522,8 @@ func confGitignoreIdris() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Idris", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Idris", size: 10, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1541,8 +1542,8 @@ func confGitignoreJdeveloper() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/JDeveloper", size: 255, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/JDeveloper", size: 255, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1561,8 +1562,8 @@ func confGitignoreJava() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Java", size: 189, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Java", size: 189, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1581,8 +1582,8 @@ func confGitignoreJboss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Jboss", size: 509, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Jboss", size: 509, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1601,8 +1602,8 @@ func confGitignoreJekyll() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Jekyll", size: 37, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Jekyll", size: 37, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1621,8 +1622,8 @@ func confGitignoreJetbrains() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/JetBrains", size: 860, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/JetBrains", size: 860, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1641,8 +1642,8 @@ func confGitignoreJoomla() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Joomla", size: 22387, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Joomla", size: 22387, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1661,8 +1662,8 @@ func confGitignoreKdevelop4() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/KDevelop4", size: 16, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/KDevelop4", size: 16, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1681,8 +1682,8 @@ func confGitignoreKate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Kate", size: 34, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Kate", size: 34, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1701,8 +1702,8 @@ func confGitignoreKicad() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/KiCAD", size: 208, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/KiCAD", size: 208, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1721,8 +1722,8 @@ func confGitignoreKohana() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Kohana", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Kohana", size: 39, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1741,8 +1742,8 @@ func confGitignoreLabview() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LabVIEW", size: 142, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/LabVIEW", size: 142, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1761,8 +1762,8 @@ func confGitignoreLaravel() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Laravel", size: 49, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Laravel", size: 49, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1781,8 +1782,8 @@ func confGitignoreLazarus() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lazarus", size: 407, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Lazarus", size: 407, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1801,8 +1802,8 @@ func confGitignoreLeiningen() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Leiningen", size: 138, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Leiningen", size: 138, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1821,8 +1822,8 @@ func confGitignoreLemonstand() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LemonStand", size: 348, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/LemonStand", size: 348, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1841,8 +1842,8 @@ func confGitignoreLibreoffice() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LibreOffice", size: 30, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/LibreOffice", size: 30, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1861,8 +1862,8 @@ func confGitignoreLilypond() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lilypond", size: 33, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Lilypond", size: 33, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1881,8 +1882,8 @@ func confGitignoreLinux() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Linux", size: 118, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Linux", size: 118, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1901,8 +1902,8 @@ func confGitignoreLithium() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lithium", size: 28, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Lithium", size: 28, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1921,8 +1922,8 @@ func confGitignoreLua() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lua", size: 324, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Lua", size: 324, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1941,8 +1942,8 @@ func confGitignoreLyx() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LyX", size: 75, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/LyX", size: 75, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1961,8 +1962,8 @@ func confGitignoreMagento() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Magento", size: 2599, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Magento", size: 2599, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -1981,8 +1982,8 @@ func confGitignoreMatlab() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Matlab", size: 360, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Matlab", size: 360, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2001,8 +2002,8 @@ func confGitignoreMaven() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Maven", size: 170, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Maven", size: 170, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2021,8 +2022,8 @@ func confGitignoreMercurial() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Mercurial", size: 50, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Mercurial", size: 50, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2041,8 +2042,8 @@ func confGitignoreMercury() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Mercury", size: 93, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Mercury", size: 93, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2061,8 +2062,8 @@ func confGitignoreMetaprogrammingsystem() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MetaProgrammingSystem", size: 391, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/MetaProgrammingSystem", size: 391, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2081,8 +2082,8 @@ func confGitignoreMicrosoftoffice() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MicrosoftOffice", size: 88, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/MicrosoftOffice", size: 88, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2101,8 +2102,8 @@ func confGitignoreModelsim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ModelSim", size: 282, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ModelSim", size: 282, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2121,8 +2122,8 @@ func confGitignoreMomentics() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Momentics", size: 76, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Momentics", size: 76, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2141,8 +2142,8 @@ func confGitignoreMonodevelop() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MonoDevelop", size: 93, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/MonoDevelop", size: 93, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2161,8 +2162,8 @@ func confGitignoreNanoc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Nanoc", size: 197, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Nanoc", size: 197, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2181,8 +2182,8 @@ func confGitignoreNetbeans() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/NetBeans", size: 96, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/NetBeans", size: 96, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2201,8 +2202,8 @@ func confGitignoreNim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Nim", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Nim", size: 10, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2221,8 +2222,8 @@ func confGitignoreNinja() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ninja", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Ninja", size: 23, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2241,8 +2242,8 @@ func confGitignoreNode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Node", size: 529, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Node", size: 529, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2261,8 +2262,8 @@ func confGitignoreNotepadpp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/NotepadPP", size: 30, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/NotepadPP", size: 30, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2281,8 +2282,8 @@ func confGitignoreOcaml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OCaml", size: 178, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/OCaml", size: 178, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2301,8 +2302,8 @@ func confGitignoreOsx() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OSX", size: 356, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/OSX", size: 356, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2321,8 +2322,8 @@ func confGitignoreObjectiveC() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Objective-C", size: 837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Objective-C", size: 837, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2341,8 +2342,8 @@ func confGitignoreOpa() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Opa", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Opa", size: 90, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2361,8 +2362,8 @@ func confGitignoreOpencart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OpenCart", size: 115, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/OpenCart", size: 115, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2381,8 +2382,8 @@ func confGitignoreOracleforms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OracleForms", size: 100, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/OracleForms", size: 100, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2401,8 +2402,8 @@ func confGitignorePacker() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Packer", size: 55, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Packer", size: 55, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2421,8 +2422,8 @@ func confGitignorePerl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Perl", size: 191, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Perl", size: 191, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2441,8 +2442,8 @@ func confGitignorePhalcon() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Phalcon", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Phalcon", size: 29, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2461,8 +2462,8 @@ func confGitignorePlayframework() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/PlayFramework", size: 170, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/PlayFramework", size: 170, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2481,8 +2482,8 @@ func confGitignorePlone() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Plone", size: 137, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Plone", size: 137, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2501,8 +2502,8 @@ func confGitignorePrestashop() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Prestashop", size: 483, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Prestashop", size: 483, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2521,8 +2522,8 @@ func confGitignoreProcessing() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Processing", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Processing", size: 120, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2541,8 +2542,8 @@ func confGitignorePython() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Python", size: 713, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Python", size: 713, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2561,8 +2562,8 @@ func confGitignoreQooxdoo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Qooxdoo", size: 58, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Qooxdoo", size: 58, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2581,8 +2582,8 @@ func confGitignoreQt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Qt", size: 292, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Qt", size: 292, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2601,8 +2602,8 @@ func confGitignoreR() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/R", size: 255, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/R", size: 255, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2621,8 +2622,8 @@ func confGitignoreRos() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ROS", size: 493, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ROS", size: 493, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2641,8 +2642,8 @@ func confGitignoreRails() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Rails", size: 707, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Rails", size: 707, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2661,8 +2662,8 @@ func confGitignoreRedcar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Redcar", size: 8, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Redcar", size: 8, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2681,8 +2682,8 @@ func confGitignoreRedis() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Redis", size: 51, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Redis", size: 51, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2701,8 +2702,8 @@ func confGitignoreRhodesrhomobile() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/RhodesRhomobile", size: 77, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/RhodesRhomobile", size: 77, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2721,8 +2722,8 @@ func confGitignoreRuby() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ruby", size: 607, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Ruby", size: 607, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2741,8 +2742,8 @@ func confGitignoreRust() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Rust", size: 91, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Rust", size: 91, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2761,8 +2762,8 @@ func confGitignoreSbt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SBT", size: 186, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SBT", size: 186, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2781,8 +2782,8 @@ func confGitignoreScons() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SCons", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SCons", size: 90, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2801,8 +2802,8 @@ func confGitignoreSvn() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SVN", size: 6, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SVN", size: 6, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2821,8 +2822,8 @@ func confGitignoreSass() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Sass", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Sass", size: 23, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2841,8 +2842,8 @@ func confGitignoreScala() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Scala", size: 185, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Scala", size: 185, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2861,8 +2862,8 @@ func confGitignoreScrivener() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Scrivener", size: 140, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Scrivener", size: 140, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2881,8 +2882,8 @@ func confGitignoreSdcc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Sdcc", size: 55, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Sdcc", size: 55, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2901,8 +2902,8 @@ func confGitignoreSeamgen() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SeamGen", size: 961, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SeamGen", size: 961, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2921,8 +2922,8 @@ func confGitignoreSketchup() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SketchUp", size: 6, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SketchUp", size: 6, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2941,8 +2942,8 @@ func confGitignoreSlickedit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SlickEdit", size: 323, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SlickEdit", size: 323, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2961,8 +2962,8 @@ func confGitignoreStella() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Stella", size: 207, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Stella", size: 207, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -2981,8 +2982,8 @@ func confGitignoreSublimetext() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SublimeText", size: 354, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SublimeText", size: 354, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3001,8 +3002,8 @@ func confGitignoreSugarcrm() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SugarCRM", size: 734, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SugarCRM", size: 734, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3021,8 +3022,8 @@ func confGitignoreSwift() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Swift", size: 837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Swift", size: 837, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3041,8 +3042,8 @@ func confGitignoreSymfony() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Symfony", size: 531, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Symfony", size: 531, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3061,8 +3062,8 @@ func confGitignoreSymphonycms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SymphonyCMS", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SymphonyCMS", size: 90, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3081,8 +3082,8 @@ func confGitignoreSynopsysvcs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SynopsysVCS", size: 971, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/SynopsysVCS", size: 971, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3101,8 +3102,8 @@ func confGitignoreTags() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Tags", size: 177, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Tags", size: 177, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3121,8 +3122,8 @@ func confGitignoreTex() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TeX", size: 1328, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/TeX", size: 1328, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3141,8 +3142,8 @@ func confGitignoreTextmate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TextMate", size: 28, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/TextMate", size: 28, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3161,8 +3162,8 @@ func confGitignoreTextpattern() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Textpattern", size: 177, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Textpattern", size: 177, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3181,8 +3182,8 @@ func confGitignoreTortoisegit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TortoiseGit", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/TortoiseGit", size: 38, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3201,8 +3202,8 @@ func confGitignoreTurbogears2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TurboGears2", size: 202, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/TurboGears2", size: 202, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3221,8 +3222,8 @@ func confGitignoreTypo3() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Typo3", size: 466, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Typo3", size: 466, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3241,8 +3242,8 @@ func confGitignoreUmbraco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Umbraco", size: 536, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Umbraco", size: 536, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3261,8 +3262,8 @@ func confGitignoreUnity() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Unity", size: 267, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Unity", size: 267, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3281,8 +3282,8 @@ func confGitignoreVvvv() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VVVV", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/VVVV", size: 57, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3301,8 +3302,8 @@ func confGitignoreVagrant() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Vagrant", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Vagrant", size: 10, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3321,8 +3322,8 @@ func confGitignoreVim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Vim", size: 66, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Vim", size: 66, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3341,8 +3342,8 @@ func confGitignoreVirtualenv() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VirtualEnv", size: 151, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/VirtualEnv", size: 151, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3361,8 +3362,8 @@ func confGitignoreVisualstudio() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VisualStudio", size: 3412, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/VisualStudio", size: 3412, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3381,8 +3382,8 @@ func confGitignoreVisualstudiocode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VisualStudioCode", size: 11, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/VisualStudioCode", size: 11, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3401,8 +3402,8 @@ func confGitignoreWaf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Waf", size: 87, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Waf", size: 87, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3421,8 +3422,8 @@ func confGitignoreWebmethods() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/WebMethods", size: 424, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/WebMethods", size: 424, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3441,8 +3442,8 @@ func confGitignoreWindows() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Windows", size: 211, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Windows", size: 211, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3461,8 +3462,8 @@ func confGitignoreWordpress() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/WordPress", size: 297, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/WordPress", size: 297, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3481,8 +3482,8 @@ func confGitignoreXcode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Xcode", size: 361, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Xcode", size: 361, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3501,8 +3502,8 @@ func confGitignoreXilinxise() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/XilinxISE", size: 566, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/XilinxISE", size: 566, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3521,8 +3522,8 @@ func confGitignoreXojo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Xojo", size: 160, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Xojo", size: 160, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3541,8 +3542,8 @@ func confGitignoreYeoman() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Yeoman", size: 52, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Yeoman", size: 52, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3561,8 +3562,8 @@ func confGitignoreYii() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Yii", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Yii", size: 120, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3581,8 +3582,8 @@ func confGitignoreZendframework() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ZendFramework", size: 217, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/ZendFramework", size: 217, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3601,8 +3602,28 @@ func confGitignoreZephir() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Zephir", size: 387, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/gitignore/Zephir", size: 387, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _confLabelDefault = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x1c\xcc\x51\x0e\x82\x30\x0c\x87\xf1\xf7\x9e\xa2\x49\x2f\xc0\xd4\x00\xd7\xd9\xba\x3f\xd2\x64\x16\x8c\x9d\x78\x7c\x03\xbf\xef\xfd\x13\x60\x98\x86\xc4\xa5\x3f\x49\xf4\xc2\xb5\xef\xcd\x34\x07\x48\xe6\x47\x19\x51\x18\xbe\x66\x57\xbc\xe0\x41\x92\x6e\x73\x1e\x94\x57\xb4\x9d\x8f\xec\x81\x4a\x82\xf1\x8c\xcd\xbf\xb9\x59\x3d\x4f\xf7\x34\x29\xbf\x3b\x3e\x61\x9b\x93\x2c\x17\x3e\x36\x8f\xc5\x7e\xf4\x0f\x00\x00\xff\xff\xce\x7a\x45\xfa\x77\x00\x00\x00") + +func confLabelDefaultBytes() ([]byte, error) { + return bindataRead( + _confLabelDefault, + "conf/label/Default", + ) +} + +func confLabelDefault() (*asset, error) { + bytes, err := confLabelDefaultBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "conf/label/Default", size: 119, mode: os.FileMode(436), modTime: time.Unix(1472493933, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3621,8 +3642,8 @@ func confLicenseAbstylesLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Abstyles License", size: 730, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Abstyles License", size: 730, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3641,8 +3662,8 @@ func confLicenseAcademicFreeLicenseV11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v1.1", size: 4660, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Academic Free License v1.1", size: 4660, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3661,8 +3682,8 @@ func confLicenseAcademicFreeLicenseV12() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v1.2", size: 4949, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Academic Free License v1.2", size: 4949, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3681,8 +3702,8 @@ func confLicenseAcademicFreeLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v2.0", size: 8937, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Academic Free License v2.0", size: 8937, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3701,8 +3722,8 @@ func confLicenseAcademicFreeLicenseV21() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v2.1", size: 8922, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Academic Free License v2.1", size: 8922, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3721,8 +3742,8 @@ func confLicenseAcademicFreeLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v3.0", size: 10306, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Academic Free License v3.0", size: 10306, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3741,8 +3762,8 @@ func confLicenseAfferoGeneralPublicLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Affero General Public License v1.0", size: 15837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Affero General Public License v1.0", size: 15837, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3761,8 +3782,8 @@ func confLicenseApacheLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 1.0", size: 2475, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Apache License 1.0", size: 2475, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3781,8 +3802,8 @@ func confLicenseApacheLicense11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 1.1", size: 2508, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Apache License 1.1", size: 2508, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3801,8 +3822,8 @@ func confLicenseApacheLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 2.0", size: 10261, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Apache License 2.0", size: 10261, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3821,8 +3842,8 @@ func confLicenseArtisticLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Artistic License 1.0", size: 4789, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Artistic License 1.0", size: 4789, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3841,8 +3862,8 @@ func confLicenseArtisticLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Artistic License 2.0", size: 8661, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Artistic License 2.0", size: 8661, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3861,8 +3882,8 @@ func confLicenseBsd2ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 2-clause License", size: 1286, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/BSD 2-clause License", size: 1286, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3881,8 +3902,8 @@ func confLicenseBsd3ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 3-clause License", size: 1480, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/BSD 3-clause License", size: 1480, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3901,8 +3922,8 @@ func confLicenseBsd4ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 4-clause License", size: 1624, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/BSD 4-clause License", size: 1624, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3921,8 +3942,8 @@ func confLicenseCreativeCommonsCc010Universal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Creative Commons CC0 1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Creative Commons CC0 1.0 Universal", size: 6894, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3941,8 +3962,8 @@ func confLicenseEclipsePublicLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Eclipse Public License 1.0", size: 11248, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Eclipse Public License 1.0", size: 11248, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3961,8 +3982,8 @@ func confLicenseEducationalCommunityLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Educational Community License v1.0", size: 2394, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Educational Community License v1.0", size: 2394, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -3981,8 +4002,8 @@ func confLicenseEducationalCommunityLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Educational Community License v2.0", size: 11085, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Educational Community License v2.0", size: 11085, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4001,8 +4022,8 @@ func confLicenseGnuAfferoGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Affero General Public License v3.0", size: 33818, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Affero General Public License v3.0", size: 33818, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4021,8 +4042,8 @@ func confLicenseGnuFreeDocumentationLicenseV11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.1", size: 17912, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.1", size: 17912, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4041,8 +4062,8 @@ func confLicenseGnuFreeDocumentationLicenseV12() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.2", size: 20209, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.2", size: 20209, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4061,8 +4082,8 @@ func confLicenseGnuFreeDocumentationLicenseV13() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.3", size: 22732, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.3", size: 22732, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4081,8 +4102,8 @@ func confLicenseGnuGeneralPublicLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v1.0", size: 12165, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU General Public License v1.0", size: 12165, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4101,8 +4122,8 @@ func confLicenseGnuGeneralPublicLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v2.0", size: 17277, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU General Public License v2.0", size: 17277, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4121,8 +4142,8 @@ func confLicenseGnuGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v3.0", size: 34570, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU General Public License v3.0", size: 34570, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4141,8 +4162,8 @@ func confLicenseGnuLesserGeneralPublicLicenseV21() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v2.1", size: 25885, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v2.1", size: 25885, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4161,8 +4182,8 @@ func confLicenseGnuLesserGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v3.0", size: 7355, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v3.0", size: 7355, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4181,8 +4202,8 @@ func confLicenseGnuLibraryGeneralPublicLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Library General Public License v2.0", size: 24758, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/GNU Library General Public License v2.0", size: 24758, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4201,8 +4222,8 @@ func confLicenseIscLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/ISC license", size: 745, mode: os.FileMode(420), modTime: time.Unix(1464397101, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/ISC license", size: 745, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4221,8 +4242,8 @@ func confLicenseMitLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/MIT License", size: 1077, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/MIT License", size: 1077, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4241,8 +4262,8 @@ func confLicenseMozillaPublicLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.0", size: 18026, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.0", size: 18026, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4261,8 +4282,8 @@ func confLicenseMozillaPublicLicense11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.1", size: 23361, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.1", size: 23361, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4281,8 +4302,8 @@ func confLicenseMozillaPublicLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 2.0", size: 14827, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 2.0", size: 14827, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4301,8 +4322,8 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 79853, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 79853, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4321,8 +4342,8 @@ func confLocaleLocale_csCzIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 55760, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 55760, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4341,12 +4362,12 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 56112, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 56112, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xf9\x72\xdb\x48\xb2\x2f\xfc\x3f\x9e\x02\xed\x09\x87\xed\x08\x99\x8e\x9e\x39\xdf\x12\x1d\xbd\x7c\xb2\xdc\x5e\xce\xf1\xa2\x63\xa9\x67\xbe\xb9\x1d\x0e\x36\x48\x42\x24\x8e\x49\x80\x03\x80\x96\x35\x13\xf3\x06\xf7\x01\xee\xf3\xdd\x27\xb9\x99\xbf\xcc\xac\xca\x02\x40\xc9\xee\x39\xfe\xc3\x02\xab\xb2\xf6\xac\xac\xdc\x2a\xab\xd8\xef\xe7\xab\xb2\x5b\xe6\x3f\xe4\xa7\xf9\xbe\xa8\xea\x6d\xd9\x75\x79\x57\x6e\xaf\x1e\x6f\x9a\xae\x2f\x57\xf9\x8b\xaa\xa7\xdf\xed\xa7\x6a\x59\x66\xd9\xa6\xd9\x95\x04\xfa\x92\xfe\x64\xab\xa2\xdb\x2c\x9a\xa2\x5d\x51\xc2\x33\xfb\xce\xca\xcf\xfb\x6d\xd3\x32\xd0\xcf\xf2\x95\x6d\xca\xed\x9e\xcb\xd0\x9f\xac\xab\xd6\xf5\xbc\xaa\xe9\xe7\x05\x7d\xe5\xaf\x6a\x49\x69\x0e\xbd\x25\xbd\x3b\xf4\x92\x76\xd8\x5b\xd2\x2f\xfb\xac\x2d\xd7\x15\xf5\xa6\xa5\xa4\xf7\xfa\x99\x5d\x97\x8b\xae\xea\xb9\xa5\xbf\xc8\x57\xf6\xa9\x6c\xbb\xaa\xe1\xda\xff\x2c\x5f\xd9\xbe\x58\x33\xc0\x39\xfd\xc9\xfa\x72\xb7\xdf\x16\x28\x70\xa9\x9f\xd9\xb6\xa8\xd7\x07\x81\x79\xad\x9f\xd9\xb2\x2d\x29\x6b\x5e\x97\xd7\x94\x7a\x86\x1f\xb3\xd9\x2c\x3b\xd0\x24\xcc\xf7\x6d\x73\x55\x6d\xcb\x79\x51\xaf\xe6\x3b\x19\xe6\x2f\x94\x9e\x6b\x7a\x4e\xe9\x39\xa7\x63\x08\xe5\x8a\x86\x3a\x2f\x3a\x1d\x07\xcd\x25\x8d\xbc\xe8\x32\x54\x55\x17\x3b\x2b\xcd\x9f\x59\xb9\x2b\xaa\x2d\xcf\x1a\xff\xa5\x7e\x77\xdd\x75\x83\xa9\x3d\xd7\x4f\x9a\x83\x79\x7f\xb3\x2f\x31\x05\x8f\x2f\xe9\x2b\x5b\x16\xfb\x7e\xb9\x29\xb8\x9b\xf2\x95\x11\xd0\xbe\xa1\xb9\x68\xda\x1b\xc0\xd9\x8f\xac\x69\xd7\x45\x5d\xfd\xbd\xe8\x65\x7e\xde\xb9\x9f\xd9\xae\x6a\xdb\x86\xa7\xf6\x0d\x3e\x32\x1a\xf9\x9c\xeb\xa1\x94\xb7\x34\x09\xae\x16\xce\xd9\x55\xeb\x56\x66\x91\x33\xdf\xe0\x17\xd7\x22\x79\x5a\x93\x64\x85\xda\xae\x9a\xf6\xa3\xa6\x3e\xe7\xcf\x41\x95\xd4\x39\xcd\x4d\xfb\x55\xd4\xb4\x1e\x9a\xfb\x06\x3f\x12\x80\x2e\x2b\x56\x3b\x9a\xe1\x7d\x51\x97\x3c\x75\xa7\xfc\x8b\xe6\x8b\x7e\x65\xc5\x72\xd9\x1c\xea\x7e\xde\x95\x7d\x5f\xd5\x6b\x5e\x83\x53\x49\xca\x2f\x34\x29\x73\x79\x21\xed\xa6\x39\x84\x55\xa6\xf4\xbf\xd2\xcf\xfc\x5c\x7e\x4a\x9e\x2b\x84\xcc\x50\x92\x9a\xec\xab\x4f\x55\x5f\x95\xd2\x98\xfd\xc8\xf6\x87\xed\x96\xe6\xf3\x6f\x87\xb2\xeb\x39\xeb\x9c\x7e\xd3\x0c\xc8\xef\xac\xea\xba\x03\x4a\xbc\xc2\x47\x46\x8b\x5a\x2f\x31\x9c\x33\x7c\x64\xd9\xaf\x55\xdd\xf5\xc5\x76\xfb\x21\xd3\x0f\x06\x96\x2f\x99\xa7\xbe\xea\xd1\x59\x4d\xcc\x2f\xfa\x72\xdf\xf1\x44\xe7\xcf\xab\xb6\xeb\x1f\xf7\x15\xa1\xda\xfb\x43\x9d\xad\x9a\xe5\x47\x42\x62\xde\x90\xd8\x4a\xaf\xae\x72\x1a\xd3\x03\x42\xe3\xf6\x50\xd7\x34\x8a\xfc\x45\x43\x23\xa3\x66\xaa\x55\x99\x3f\x03\xf4\x49\xbe\xdf\x96\x45\x47\x20\x65\xb1\xca\xbf\x2f\xf2\xbe\x68\xd7\x65\xff\xc3\xbd\xf9\x82\x36\xcf\xc7\x7b\xf9\xa6\x2d\xaf\x7e\xb8\x77\xbf\xbb\xf7\xe3\x8b\x03\x15\xdb\x56\x75\xd9\x7d\xff\xa4\xf8\x31\x5f\x16\x94\x43\x63\xbd\xc9\x17\xe5\x15\xef\x15\x6a\x2b\x27\x24\xad\xd7\xbc\x4f\x6e\xfa\x0d\x37\x48\x0b\x46\x1f\x5d\xce\x1b\xf5\x9b\x8c\x67\x89\x36\xf2\x7c\xb5\x30\xa2\x84\x0e\x21\xb9\xa5\x59\x7a\x73\x73\xf1\x9f\xaf\x4f\xf2\x73\xa2\x4c\xeb\xb6\xc4\x37\xfd\x47\x25\xfe\x94\xd3\x68\x2f\xab\x67\x4f\x67\x19\x95\xb5\x09\x79\x56\xf4\xc5\x82\xfb\x1e\x16\x89\x33\x65\x0f\x85\x3c\xec\x24\xa6\x75\xa0\x6b\x5d\x8f\xdd\xa9\x3b\x73\x72\x1f\x52\x1d\xba\x79\x43\x1d\x6f\x79\x07\x53\x7a\x98\xd9\x73\x99\x33\xaa\x2a\x7f\xf5\xf6\xed\xbb\x67\x4f\xf3\xb2\x5e\xd3\xcc\xe4\xd7\x55\xbf\xc9\x0f\xfd\xd5\xff\x3b\x5f\x97\x75\xd9\x16\xdb\xf9\xb2\xe2\x49\x69\x09\xaf\x72\x9a\x25\x19\xe2\x2c\xeb\xba\x2d\x11\x98\x15\xb7\x72\x71\xf1\x3a\x7f\x43\x9f\xd4\x19\x2a\xcb\x1d\xe9\x37\x59\xf7\xb7\x2d\x4f\x54\x68\xf0\x72\x53\xe6\xc0\x59\x00\x35\x57\xc3\x79\xc9\x57\xda\xd7\x59\xfe\xfd\xa2\xfd\xd1\xf5\xaf\x58\x74\xcd\xf6\xd0\x6b\xc9\xeb\x4d\x59\x63\xa1\x08\x95\xda\x9e\xa8\x95\xd1\xfe\x59\x56\xb6\xed\x9c\xe8\x66\x7f\xc3\xcb\xa3\x7d\x39\xd6\x8a\x54\x46\xa8\x5c\x37\x3d\x2d\x7f\x8e\x72\x52\x45\x55\x7f\x2a\xb6\xd5\x8a\x16\x29\x4e\x64\x5a\x16\x89\xab\x86\xd6\x9b\x4b\x13\x46\x37\xd7\x98\x22\xda\x60\x44\xd6\xf3\x7b\xb3\x7b\xa0\xb3\xf7\x1e\xdf\x9b\x65\x75\x33\x17\x22\xc0\x14\x79\x55\x75\xc5\x82\xa8\xb3\x9c\x16\xad\x11\xbb\xbf\x32\xde\x49\x57\x14\x22\x4f\x20\x78\x4d\xf8\x04\x02\xe1\x67\xa4\x2c\x88\x4c\x83\x96\x28\x15\xf1\x63\x37\x92\x13\xf0\x42\xa8\x4e\x48\x18\x8d\x39\xb3\x85\x36\xac\x3c\xdd\xef\xb7\xd5\x52\x9a\x7e\x21\x79\x11\x41\xf9\x3c\xd6\x49\xf1\x70\x40\x30\xcb\x73\x68\x46\xbd\x66\xaa\x94\x27\xe4\x1d\xe5\x37\x25\xed\xb8\xcd\x61\x2d\x67\xd2\xb6\x39\xac\xbe\xc1\xe1\x60\x2b\x17\x49\x70\xfe\xbe\xa1\x0e\x03\xab\x02\x40\x6c\xe2\x94\x08\x0a\xb3\x00\x6d\xb9\x6b\x7a\x9e\x38\x2d\xc6\x64\xee\xba\xa2\x4c\x1a\x69\x57\x7c\xa2\xc3\xad\x6f\x64\x2b\xaf\x68\xab\x2e\xb9\xe2\x59\x46\x64\x65\xae\xdb\x89\xe8\x8f\x6c\x29\x4b\x4b\x71\x17\x50\xbb\x03\xed\xc2\x0d\x55\xc6\x13\xcf\x7c\x08\x55\x39\xd5\x4f\x0c\x89\xea\x01\x75\xa0\x1d\xdf\xd0\x99\xc9\x0b\xfd\x0c\x1f\xfa\xdb\xd7\x4f\xbd\x2a\xae\xae\xa8\x57\x1d\xed\xa6\x97\xf9\x72\xdb\xd0\x56\xfc\xe5\xfd\xeb\x8e\x37\xda\x66\xbe\x6f\x5a\xf0\x1f\x94\x75\x4e\x9f\x21\xcd\x4d\x34\x43\xd4\x87\xdd\x82\x7e\x5d\x6f\xaa\xe5\x46\xa6\x9d\x4b\xf0\xfe\xa0\x54\x6a\xe2\xd0\xd1\x12\x9e\xe4\xb4\xb5\x68\x04\x34\x65\x40\x00\x1e\x83\x61\x1d\x83\x5f\x11\x8e\x1d\x5a\xda\x4e\x9b\xbe\xdf\x5b\xcb\x2f\x2f\x2f\xcf\xa5\xe9\x90\x7a\x5b\xdb\x85\xc3\x0c\xac\xc1\x96\x39\xa2\x3a\x6f\xea\x19\x90\xe4\xd0\x6e\x07\xf8\x43\x63\xb5\x9c\x23\xf3\xc2\x5d\x78\xc2\xff\x5d\xc4\xe9\xc1\x3c\x77\xc4\xeb\x5d\x03\x9b\x68\x8e\xc1\xa5\xcc\xb2\x6d\xb3\x9e\xb7\xb4\x1a\x86\x4c\xaf\x9b\xb5\x20\x50\x92\x11\x5b\x7a\x66\x28\xc1\xb3\x71\xdd\x32\xd7\x46\x90\x20\x58\xbc\xc8\xb4\x49\x9a\x3d\xf7\xd3\xed\x92\x77\x9a\x10\xb7\x06\xda\x0e\xf9\xe0\x93\x28\x13\xc4\xc9\x9d\xe9\x3b\x9a\x3f\xa5\xe6\x17\x6f\x68\x56\x41\xd2\x91\x7a\xd5\x36\x3b\x4a\x7d\x4e\x7f\x62\x42\xec\xe3\x1b\xae\x0f\x30\xc5\x6a\x45\x87\x4d\x77\x92\xbf\x7f\x7e\x96\xff\x5f\x7f\xfa\xe3\x1f\x67\xf9\xab\x9e\x37\x36\xe3\xfa\x7f\x31\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\x7c\x8f\x37\xea\xbd\xfc\x7b\xe4\xfe\x7f\xe5\xe7\x82\xf8\xcc\x72\xb6\x6c\x76\x3f\x32\x71\xdf\x15\x44\x4a\x38\x87\xb0\x5f\xb7\xc5\x45\x59\xaf\xe8\x43\xb8\x3e\xcd\x72\xc4\x45\xb3\x1d\x0f\x28\xcc\xef\x7c\xd9\xd4\x57\x55\xcb\xe3\xf9\xb9\x06\x6e\x19\x5b\x9c\x9f\x49\x8e\xb1\x50\x34\x65\x44\x8f\xaa\xab\x9b\x08\x8a\x91\xbe\xe5\x44\x45\x8f\x4c\x70\x78\xae\xa4\x3e\xcc\xf1\x85\xa0\x36\x63\xc1\x3b\x1a\x5d\x6b\xd3\xdd\xc5\xf9\x6e\xae\xae\xf8\xc4\xb7\xb3\x4a\x5b\x78\x27\xa9\x72\x6c\x79\x10\x42\xed\x3d\x18\xfb\x67\xba\x25\xce\x9e\xbd\xcd\xcb\x4f\x84\xbb\x4c\x43\xdb\x66\x75\x58\x02\x5f\x19\xf6\x84\x49\x3f\x11\x9c\x8e\x76\xda\xb2\x54\x64\x09\x24\x87\xbb\xc6\x74\x6d\x49\x40\x44\x69\x8c\xf4\x13\x37\xfa\x89\xce\x91\xd6\x35\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x42\x09\x1e\xf9\x92\x16\x9c\x90\x42\x7a\xd1\x49\xa7\x24\x9b\x36\x0f\xed\x8a\x03\x49\x39\xc5\x8a\xfa\xb2\xb8\x01\x15\xeb\x18\x17\x56\xe5\x55\x71\xd8\xd2\x6a\x5f\x95\xb4\x7e\xc4\x2e\xaf\xe6\xda\xd6\xb6\x69\x3e\xa2\x31\x9d\xaa\xe7\x06\x90\x9f\x6a\xa5\xaf\x01\x71\xac\x64\xe8\xac\x96\x0f\x60\xa1\x53\xda\x02\xed\x34\x3e\xde\x63\x7e\xb3\xa7\x69\xd6\xc9\xd4\x95\xce\xf9\xbc\xa5\x9c\x9a\x28\xc8\x42\x07\x1d\xe7\x72\x70\x8c\xda\xec\x5c\xb0\x70\xe8\xf3\x26\x0b\x8c\x26\x15\x08\xdf\x0d\xcb\xd2\xce\xa9\x89\x43\x94\xe3\x96\xb7\x98\x48\x5f\x76\xf2\x12\x81\x2e\x31\xce\x79\x94\x75\x74\xe0\x26\xf2\xa4\xf9\xa1\xd9\xf7\xc2\x33\xe6\x60\x36\xb8\x46\xab\x80\x99\xac\xe9\xbe\xcc\x32\x65\x34\xe7\x2a\xa6\xce\x3f\x55\x10\x02\xc3\x16\x93\x2a\x55\x74\xe5\x19\xfe\x33\x03\xb0\x74\xd9\x4d\x96\x0d\xbd\x79\xc7\x83\xec\x82\x10\x28\x78\xc2\xc3\x45\x0b\xcc\xfc\x12\x66\x7d\xaa\x70\xd0\x29\x92\x63\x5e\x16\xcc\x9f\x51\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa1\x3a\x51\x66\xa6\x12\x90\x0a\x25\xc6\x34\x33\xc3\xb3\x6a\xc0\x3d\xe1\x34\xa5\xd2\x36\xad\x03\xce\x26\x6f\xab\xf5\x86\x4e\x97\xe6\xfa\x44\x26\xe5\x7a\xd3\x94\xbc\xe7\x5f\x3d\xfb\xe1\x5b\xe9\xc7\x9a\xcf\xd6\x50\x88\x4f\xe5\xe2\x40\x1b\x82\x66\x4c\xb7\x9e\x74\x21\x70\x37\x80\x1c\xc9\x5a\x02\x34\x14\x7a\x47\xcc\x54\x20\x74\x4a\xdf\x7c\x9e\x12\xb6\x08\x23\xa5\x4d\x70\x96\x86\x85\x90\xaa\xa0\x34\x5f\x37\x10\xd4\x4c\x30\x62\x76\x21\xeb\x49\xec\x9a\xaf\xab\x7e\x7e\xc5\xd4\x96\x2b\x7e\xce\x15\x30\xf7\x42\x39\xf9\x03\xca\x7a\x90\x13\xc5\x26\xe9\x73\xf5\x5d\x7e\xff\x93\xb2\xda\x7f\x62\x32\xca\x5b\xb1\xda\x62\x45\x54\xfc\x6b\x4b\xe1\xa4\x4d\xf5\x10\xd8\xd6\xee\xb0\xc7\xe1\xae\x1c\x72\x10\xa3\x56\xcd\x75\xcd\x04\x03\xc7\x05\x91\xc6\x6a\x59\xd1\x21\xb7\xa8\xea\x82\x4e\x47\xab\x05\xc7\xd0\x7d\x42\x89\xb7\xef\x2e\x01\xb8\x6e\x16\x87\x6a\xbb\x32\x80\x59\x66\x5c\x34\xf1\xd0\xba\xf8\x5e\x1e\xb1\xa4\x4a\xfa\xb2\x6c\x5a\x3e\x7f\x31\x1a\x2b\x78\x84\x17\xe4\xc3\x5b\x98\xf7\x8a\x05\x41\xc0\xa2\x5c\x60\xdb\x78\x1a\x68\xf5\x97\x1b\x65\xea\x80\x36\x55\x57\x3f\xe8\xd1\xd3\xe5\x81\xda\xa2\x95\xe7\x64\x2a\xd8\xe5\x8f\x7f\xa4\xff\x33\x66\x11\xe5\xd0\x5a\x8f\x27\x9e\x33\x73\xc9\x3c\xc8\x56\x4c\xba\x9a\xe0\x78\x58\x69\xc3\x60\x37\x56\xdf\x5f\x43\x81\xee\x20\x48\xcb\x5a\xa2\x2d\x2d\x6b\xf9\x0d\x7d\xb0\xc8\xbb\xde\x62\x11\x8a\x5e\xe5\xd2\x86\xe6\x8d\x11\xe4\x44\xf6\xcc\x15\x0d\x8d\xc9\x7f\x5f\x7c\x2c\x21\xca\xc6\x39\x9f\xe2\x7e\x8e\xce\x5b\xf6\x2b\xeb\xcc\x3e\x64\x07\xe1\xdc\x9b\xed\x2a\x48\x97\xd8\x0d\x44\x8d\xca\x44\xe5\x13\x61\x02\xa2\x77\x24\xa1\x2c\x37\xf3\xa0\x70\xe3\x89\xec\xcb\xcf\xe0\x71\x90\x15\xf5\x6f\xbc\x4b\x38\x2b\xdb\xdd\x60\x89\x79\xe0\x6f\x6e\xe2\x0a\xb3\x42\xa2\xdb\x34\xd7\xd0\x5e\x05\x88\x0b\x4a\x81\xde\x2a\xe1\xef\x59\xeb\xb5\x6c\xb6\x84\xef\x0d\xaf\xca\xa7\x08\x7f\xe6\x53\xd3\xca\xa9\x5d\x12\x46\xb4\xd9\x54\x5b\x43\x59\xa2\x20\xd2\x5c\x51\x10\x75\x19\x28\xa5\x6a\x16\x41\x50\x09\x5f\x54\x2f\x32\xa3\x85\x87\xda\xc5\x5a\x7e\x55\x0b\xe7\xed\xfb\x49\x73\xac\x5a\xc7\x0f\x99\xc1\x25\x7d\x12\x72\x2b\x93\xce\x6a\x9f\xa2\x05\xf6\x5e\xe0\x83\x4a\x13\x41\xdb\x7c\x70\x7a\xbf\xb9\xe1\x96\xe9\xff\xa0\x9b\x52\x9a\x16\x79\xb0\x4d\xb9\x67\x76\x6d\xd7\x01\x29\xb7\xac\x20\xb9\x51\xf1\x25\xa0\xe7\x4f\x72\x5a\x10\xbe\x12\x8d\xfd\x26\xeb\x1a\xde\xee\xf3\xaf\xac\xe2\x69\x45\x88\x88\xf2\xe9\x49\x2b\x0a\x49\x92\x32\x78\x30\xb4\xc7\x6f\x4e\x52\xc1\x76\x43\xe2\xfb\xa2\xa4\x53\x5f\x8b\xad\x66\xa6\x98\x60\x04\x22\x71\x1a\x3b\x16\x4a\x54\xec\x31\x29\xd9\x8c\x58\x00\xee\xa1\x10\x59\x6d\x25\x30\x9b\x60\x25\x3d\xc7\x39\xd1\x26\x4d\xd8\xae\x64\xe9\x65\xbe\x13\xe5\xa5\xfc\xca\xdf\x94\x19\x9d\xc5\x6b\xec\x23\x41\xf4\x1f\x58\x69\xb5\x86\x90\xa7\x98\xcf\x00\x65\xef\x4f\x01\x85\xb0\x94\x9f\x4c\x59\x4c\x74\xe9\x1a\x4a\x44\xe6\x84\x86\xd3\x4f\xe7\x25\x65\xcf\xec\x54\x11\x06\x05\xbc\x71\x47\xb4\x2a\x4e\xe2\x69\xce\x5a\x5f\x0f\xa5\x7c\x7e\x18\x15\xc3\x33\xc9\xfa\x7e\xf1\xe3\xfd\xee\xfb\x27\x8b\x1f\x03\x61\x5f\x6e\xca\xe5\x47\x41\xce\xaa\x5e\x34\x9f\xa1\x56\x80\x7a\xab\xa4\x5a\x69\xb3\xde\x5f\xe5\x1b\xca\x85\x54\x4b\x84\x88\x8a\xd1\xbc\x73\x6e\xb2\x66\xd4\x17\xa6\x57\x33\x51\x27\x96\x82\xfd\x11\x1f\xa1\x57\x64\x8c\xc4\xe9\x63\x28\x49\x85\x36\xd5\x82\xce\x34\x22\x4d\x90\x84\x5f\xe3\xef\xb9\x26\x97\xab\x01\x84\x63\x14\xda\x40\x48\x59\x0b\x17\x0a\x70\x27\x01\x1a\xc7\xa7\x28\x13\xd1\x85\x57\x16\xf3\xb7\xad\x76\x55\x3f\x42\x45\x26\xab\x85\xa2\xb4\xaa\x3f\x6d\x6d\x30\x86\x38\xbb\x74\x38\x51\x35\xc4\x4b\x18\x7a\x5e\x17\x24\x3e\xff\x29\xa7\x36\x0e\x3d\x4b\x88\xac\x94\xea\xe9\x74\x2a\x98\x19\x21\xd1\xb9\xe8\xe6\x87\x5a\x97\x89\x18\x64\x45\xce\x97\x15\xce\x4c\x6e\xd7\xb6\x90\x83\x4a\x25\xb6\xfc\x61\x58\xc1\x47\x33\x55\x84\xa2\x14\x9f\x63\xdc\x9f\x8a\xc5\x8b\x62\x0a\x17\x88\x62\xd7\xa5\xcc\x10\xc6\xcf\x60\x8c\x36\x24\x34\xc7\xc9\x22\xc9\xfb\x23\xf3\xd5\xbc\xbe\x8b\x43\xdf\x37\x2c\x3c\x6e\x19\x07\xa5\x8c\xf5\xf9\x0c\x80\x10\xaf\x63\x7d\x37\xb2\x2c\xe9\x2c\xa9\xfc\x0b\x2e\xa4\x03\x1d\x11\x53\x06\x0b\xf1\xe9\xd0\xf4\xd4\x0f\x50\x2b\xd1\x3a\x16\xf5\x4d\x54\x68\xa1\x0f\xdc\x5c\x3f\xdd\x93\x87\x6d\xf9\x28\xf6\x25\xec\x3f\x94\xd0\xfe\x48\x69\xb7\x35\xdf\x23\x53\x54\xe6\xb6\x81\xed\xcc\x5c\xaa\x2e\x33\xa0\x46\x9b\x4e\x2d\xf2\x79\x97\x11\x25\x27\x2e\x7a\x85\x59\xa6\x41\xa0\xf4\x6c\xd0\x56\x14\xda\xc7\xd3\xd7\xa7\x3d\x8e\xc7\x6a\xdf\x34\x73\x3a\xf9\xa0\x6f\xb1\xee\xe5\xdb\xb2\x5e\x27\x8a\x4a\x98\xbf\x80\x6f\xff\x37\x2b\x17\xeb\x39\x24\x4c\xb7\x01\xdf\x36\xf5\x63\xa4\x05\x11\xc5\x4a\xab\x6a\xdb\x1a\xe4\x6a\xda\xe6\xb0\xde\xa8\x96\x2a\xfb\x95\x67\xed\x43\xa6\xeb\x5a\xba\x3a\x15\xeb\x2d\xc7\xd6\x5f\xf6\x76\x80\x37\x46\xf7\xcf\x65\xcb\xe2\x3c\x80\x92\x85\x3f\xb6\x22\xe9\x84\x04\x92\x1e\x39\xa3\xf7\x9e\x00\x69\xf2\xd5\x61\x7b\x92\x5f\x0b\xcb\x14\xcb\x04\x55\x82\x32\x53\x8c\xe2\x62\xf7\xa3\xe1\x35\xab\x82\xc6\x77\x03\x6b\xc6\x5f\xe9\xd8\xad\x61\x41\x6a\x32\xca\x90\x42\x6f\xf0\x41\xa0\xac\x0b\xf9\x90\xf1\x71\xfc\x76\x20\x11\xf0\xb9\xad\x69\x8e\x2b\x45\xd6\xcf\xde\x42\x16\xc6\x7c\x3e\x21\x3c\xbc\x2f\xa3\xa1\x0c\x5f\x61\xf0\x17\x17\x2f\x2f\x4d\xb9\x71\xf1\x32\xff\x58\x6a\xdd\x2f\xfb\x7e\xdf\xfd\x02\xb5\x99\xe8\xc0\x58\x61\x76\x5e\xdc\x30\xa7\x2e\xc9\xfa\x03\x19\x97\x65\xb1\xd3\x4e\xf2\xa7\x54\x71\x4a\x4c\x84\x26\xf2\x27\x71\x1e\x4e\x1d\x9b\x81\x67\xfd\x39\x11\x55\x64\x17\x65\xc4\x5a\x3c\x6d\x8b\x7a\x69\x85\x99\xd5\x58\x20\x41\x4a\x9e\x91\x28\x52\xf5\x17\x07\x12\x48\x60\xd4\x93\xdf\xb4\x4c\x48\xd0\xec\x37\x34\x15\x62\xc6\xd4\xec\x9d\x24\x68\xf6\xd9\xa6\x61\x69\x3f\xe4\x2e\xf1\x3b\xbb\x6c\xcb\x52\x5b\x7d\x6e\xb6\x83\x0c\x0c\xa4\xf0\x3e\xf2\x95\x05\xd1\xb6\x54\xeb\xde\x6f\x23\x2d\xf7\x6f\x59\xb1\xdd\x93\xf4\xcd\x2c\xaa\x03\x83\x42\x77\xa1\x42\x78\x0e\x10\x6c\xec\xc3\x8e\x70\x78\x09\x45\x09\x15\x78\xf8\x78\xfe\xc8\x29\xf8\xd3\xca\x56\x44\xef\x7e\x57\x85\xfc\x2d\xbb\x32\xd6\xdb\x55\x7f\xb7\x51\x24\xd5\x71\x3a\x9d\x1d\x04\x01\x49\x23\x42\x05\x20\x9c\x7e\x2c\x75\xf4\xac\xdf\xa5\x04\x92\x6c\x92\xaa\x77\xc5\xe7\xbb\x0a\xee\x9a\x89\x72\x42\xd5\x63\x21\x23\xde\x3a\xc4\x64\x83\x13\x38\x2b\x70\x8f\x02\x13\x6e\x12\x48\x55\x2f\xb7\x87\xd5\xd1\x8e\x74\x87\x05\xed\x75\x96\x98\x1e\xdc\xef\x1e\x70\x95\xf5\x47\x62\x8e\xea\x00\xff\x8b\xfc\xce\xf1\xfb\x3b\x33\x32\xcf\xa9\x5a\x11\x23\xf3\x60\x6e\x26\x1e\x6f\xc5\xe7\x25\xc4\xc1\x59\x24\xb5\x5e\x44\x0c\xfb\x13\xba\x34\x15\xe1\x03\x89\x62\x05\x1a\xa4\x65\xc2\xc2\x59\x34\x8c\xcf\x99\xd7\x9a\xb3\xe8\x55\x7b\x59\x89\xcf\x07\xe3\x28\xc0\x8d\x01\x62\x26\x66\x8b\x71\xb9\x01\x01\x39\x5a\x9c\x38\xca\x89\xd2\xef\xc6\x26\x95\x23\xe5\x7b\xa2\x01\x13\x15\x04\xd2\x70\xb4\xa0\xac\x3d\x0a\x1d\x3a\x48\xc4\x09\x6d\x1b\x97\x63\xa8\x59\x9c\xa5\x30\xe1\x7e\x6d\xbc\x64\x19\xe6\x39\x55\x04\xb0\x52\x8d\xd0\xaf\x85\x83\x82\x53\x07\xa8\x7a\x46\x8f\xa3\x1d\x4b\xbe\xdd\x81\x8f\x56\x96\x92\x85\x53\x4d\x67\x94\x99\x26\x54\x55\xa2\x89\xe3\xd5\x13\x3e\xf1\xe9\x71\x57\xfd\x00\xfb\xca\xaa\xbd\xf6\x68\x5c\xb1\x56\x1e\x80\x8e\x55\x1b\x54\x1b\xe5\xe7\x0a\xc6\x83\x17\xd5\xa7\x52\x95\x1b\x41\xa7\x83\xbc\x59\xb6\xa5\xfd\xcf\x42\xae\x8c\x4a\x44\x9a\xe6\x13\xef\x28\x6e\x8f\x73\xa5\x9c\x18\x13\x74\x50\x8c\x24\xaa\x26\x81\x45\xb3\x5c\x9d\xb0\x75\xb5\x07\xef\x82\x0d\x5a\x6c\xaf\x8b\x9b\x0e\x2a\x3f\x23\x32\x6c\x87\x91\xe2\x4c\x41\x88\x7f\x5b\xa3\x57\xde\xda\x47\xbb\xc6\x66\x82\xcd\x56\x7c\xa2\x05\x36\xeb\x1a\x8a\x0e\x50\x08\x55\x22\x7e\x72\xbc\x83\x1e\x80\xac\xa4\x61\xed\x04\x8b\x7b\x92\xed\x2a\x82\xf9\x5d\x89\xfd\x44\xd9\x13\xe6\x6d\xa9\x19\xe6\x35\x89\x04\xcb\x5c\x57\x10\x25\xd0\x25\xa7\xf5\x3a\x50\xfd\x8f\x45\x46\xaa\x68\x0e\x59\xe4\x8e\x8a\x20\x3e\x30\x69\x55\xcc\x5a\x25\xe9\xa2\x3e\xe9\xfa\x6a\xbb\xe5\x99\x36\x97\x94\x44\x66\x41\x2e\xf6\x09\xa6\xa9\xdb\x54\xfb\xbc\x81\xcd\xc2\x4f\x61\x44\x5b\x27\x1d\xb0\x5d\xae\x84\x0c\xc6\xb6\x1b\x3a\x70\xbb\xab\x12\x46\x9c\x5d\x7e\xc5\x6e\x13\x33\x6d\x9a\x85\x0d\x71\x41\x39\xd2\xb2\x88\xb3\x68\xda\x1f\x10\x58\x3b\xb7\x50\x69\xd3\x62\x24\x84\xa5\x00\x7d\xc0\xac\xc6\x9a\x3a\xeb\x03\xa3\xd9\x68\x0a\xc0\xf3\x27\x26\xdf\xc9\x79\xb8\x4a\xb4\x24\xd2\x3e\x30\xed\x8e\x71\x67\xe2\xe2\x31\x17\x2e\x24\xd9\x15\x97\xc8\x31\xfe\x64\xb8\x31\xb2\x5f\x19\xef\x3f\x64\xc2\x09\xcf\x83\x25\xe6\x4c\x38\x63\x61\x6b\x91\x98\xfd\x57\x43\x07\x2d\xcc\x0a\xff\x4e\x5f\xb0\x41\x64\x89\x6d\x79\xa0\xc2\x51\xe7\x1a\xc6\xc9\x73\x42\x25\x3a\xeb\xd5\xc3\xe6\x26\xbb\x6a\xb0\x9f\xa0\xe1\x79\x6e\xdf\x19\xfb\x2f\xb4\x40\xae\x0b\xfd\x4a\x54\x46\x52\x48\xf4\x89\xcf\xed\x5b\x53\x43\x12\x6d\x8b\x90\xf2\x8b\x7e\x66\xac\x93\xd8\xcd\x40\x7f\x99\xdf\x86\x19\xca\x51\x5d\x3e\x54\x19\xff\x2d\x6f\xe6\xe0\x89\xbf\x22\xca\x53\x8b\x0c\x27\x44\xc0\x17\xd5\xec\x50\x45\xf0\x7e\xe0\x5a\xb2\x5f\xcd\xf3\xe8\x43\x16\xfd\x93\xcc\x35\x69\x4a\x85\x1e\xa6\x5f\x0c\x4b\x99\xee\xea\x4e\x79\xdf\xff\xa0\x4f\xd5\x47\x81\x62\xe0\x43\x15\x0a\xf0\x43\x30\xe3\x31\xdc\x99\xdc\xcf\x4c\xf5\x7b\xa9\x72\x4f\x71\xea\x87\xfc\x99\x7c\x98\x6a\xe2\x50\x61\x8c\x15\x49\x08\x7b\x2c\x9c\xf3\xae\xd2\x95\x0c\x83\x50\xe7\x3a\xaf\x9c\x18\x49\xb6\x52\x09\xb8\x09\xb3\x05\xe2\xec\x64\xb3\x8e\x93\x70\x59\x31\x0f\xd1\xb7\x76\x76\x4e\xb6\xde\xb1\xb8\x4e\x60\xd7\xe5\xc2\x8c\x5f\xfb\xb2\xd5\x71\xee\x0a\x12\x42\x3f\x55\x45\x50\x8b\x39\x9e\x26\x1c\xba\xa6\xd7\x4a\x64\x41\x48\x19\xa2\x66\x34\x96\xc6\x16\x98\xb5\x3d\x82\xff\x54\x6b\x25\xb6\xa7\x1a\xec\x0e\x3b\x47\xd9\x99\xf8\x9c\x9d\xc2\xe0\xe5\x31\x76\x6b\xe4\x26\xd4\x06\xf7\x5a\x3f\xb3\xc3\x9e\x8d\x5a\x6e\x2e\x7f\x41\x42\x98\xcb\x34\xdf\xc9\x7a\x98\x55\x2b\x16\xd4\x5a\x02\xbe\x72\xc2\x1f\x5b\x76\x74\x1f\x4f\xb8\x2b\xea\x96\x5e\x0d\x41\xa2\x12\x08\x34\x4a\x07\x8e\x85\x12\x47\x03\x4c\x2d\x9d\x73\x39\x6b\x9c\xb7\x55\xfd\xb1\xd3\x95\xe2\x79\xf2\x72\x2f\x94\x75\x84\xef\x87\x52\x25\x11\xfe\x1c\x3b\xc7\xa9\x51\x54\x4d\xa4\x8b\x1b\xd3\x66\x88\x11\x55\x51\x9f\x4d\xb3\x10\xb6\x8e\x5b\x63\x87\x66\x58\xb3\xc2\x9a\x75\x11\x46\xe0\x48\xd1\x68\x1e\xf2\x33\x31\x0c\xeb\xee\x22\x91\xaa\xe9\x54\x7b\x1c\xe9\x1e\xa7\x41\x39\xa4\x64\x4f\x97\x25\xd6\x23\xab\x76\x6a\x06\x6a\xec\x70\xdd\x4b\x73\x35\xa5\x44\x68\xdd\x5a\x67\x6a\x62\x39\xb5\x3a\xc5\x00\x6d\x63\x02\x75\x99\x57\x3b\x91\x07\x7f\x31\xf3\x34\x16\x3c\x08\x0c\xc8\x9e\xa5\xfd\x19\x62\x89\xb6\x6b\x06\x96\x3b\x90\xc5\x50\xc1\x5b\xec\x64\xf9\x03\x45\x6a\xb6\x09\xbb\x66\xe3\x08\xf9\x3c\x79\x2e\xff\x2d\x6c\xab\x41\x6d\xc1\x7b\x6c\x3e\x00\x51\x49\x3f\x81\x9c\xe4\x8a\xad\xad\xa3\x1c\xf1\xa0\xf7\xa3\x1d\x63\xe5\xae\xd9\x25\xce\x0d\x5c\x71\x7c\x35\x33\x37\x33\xd6\x34\x8b\xa1\x16\xfe\x40\xe2\x13\x55\xc3\xca\x2b\x55\x38\xa2\xa2\x8d\xfe\xab\x24\x25\xd6\x2c\x22\x45\x17\x24\x89\x53\x21\x9c\x6c\x97\x11\x67\xda\x90\xaf\xfe\xb4\x09\x7d\x2d\xcd\xc9\xc6\x53\xe0\x7d\x5b\x41\xf3\x90\x52\xe2\x11\xed\x4d\xe8\x2c\xc8\x6c\x03\x97\x91\x48\x5e\x69\xdc\x5a\x15\x9f\x5b\xf8\xb2\x94\xa0\xdb\xa2\x1d\xc0\x5c\xb1\x26\xdb\x46\xb0\x5c\xc1\xff\xd0\x47\xfa\x21\x54\x51\xc6\xfa\x4c\x13\x06\xf9\x36\x18\xc9\xb6\x05\x99\x18\x0d\x7b\xb8\x7d\x2a\xc3\xc1\x51\xd5\xe2\xb1\x13\xec\xb1\x09\x75\xca\x9f\x81\x5c\x11\x3a\x88\x3d\xc0\x88\xd5\x4f\xc3\xd6\x23\x1e\xfd\x9c\x5a\x12\x64\x6c\xe9\x2e\xfa\x26\xa3\x1e\x01\xc7\xa3\x55\x7b\x05\xe4\x49\x15\x7d\x0c\xe5\x21\x44\x95\x14\x52\xe7\x89\x9d\xa3\x13\x6d\xce\x97\xdb\x36\x98\xff\xf8\x6f\x30\x6b\x24\x4d\x45\xb3\x46\xe8\xe4\x60\x87\x8d\x46\x39\xde\x6a\x94\x01\x56\x48\x71\xd9\x31\x34\x8a\xcd\x81\xaf\xe1\x56\x44\x82\xe1\xe9\xa1\x24\x70\x3f\x8a\x09\x38\x9a\xd8\xf5\x0d\x7e\x73\x70\x96\x15\x71\xa6\x1b\xe9\xcc\xd3\x35\x3f\x85\xbc\x46\x93\x22\xb0\xe0\x0c\x89\x99\x60\x4e\xdf\xf6\x3a\x71\xd1\x34\x0f\xe2\x33\x11\x7c\x18\x47\x16\xcb\x13\x15\x92\x36\xd5\x7a\x43\xe3\xaa\x76\xec\x2a\x00\x4c\x32\x7b\x74\x94\x61\xf9\x17\x91\xa8\x66\x5d\xb3\x92\x8a\x5b\x10\xa7\xc5\xa0\x03\xff\xbe\xeb\xdb\xa6\x5e\xff\xf8\xac\x61\xe1\x92\x75\x37\x7c\xb8\xfe\xf4\xfd\x13\x4d\x27\x32\xcc\x4b\xc8\x1e\xae\x2f\xaa\xfe\xe5\x61\xf1\xa0\xcb\xd7\xec\xaa\x0d\x3b\x56\xe1\x1c\xb8\xd5\x49\x44\x3c\x4a\xaf\xeb\x30\x2d\x70\xe7\xa6\x3d\xde\x35\x5b\xda\x20\x69\x91\x66\xb7\x93\xe5\x25\x02\xb6\x13\x48\xf4\x1f\x7e\x25\x65\x8d\x99\x2b\x5b\x9d\x1f\xaa\x70\x16\x50\x3c\xae\x8f\x2e\x9b\x71\xa8\x89\x46\x44\x79\x44\x06\x5e\xaa\x66\x32\x1e\x44\x50\x87\x58\x29\xf0\x1f\xe3\x52\x58\x47\xd6\x2f\x8d\x75\x31\x10\x5b\xb8\x0a\x2b\x4e\x25\xa9\x1f\xc2\x87\x71\xda\x72\xa4\x0b\x55\xc4\x72\xc8\xcb\x67\x8f\xe9\x92\xc1\xb9\x87\xee\x01\x5d\x07\xfb\x5b\x29\x9a\x8c\x5d\xe9\x99\x0d\xc0\x51\x34\x9d\x91\x48\xd3\x86\x30\x09\x55\x2b\x85\xa6\x59\x2f\x3c\x35\x13\x17\x3a\xa1\x68\x82\x90\x24\x5b\x31\xbd\xfe\x42\x6a\x36\x6a\x37\x0e\xdc\x9a\xfb\x02\x8a\x86\x31\x9d\x62\x3a\x68\x2c\xd0\x9f\xe8\x42\xbd\x56\x6d\x09\x32\xd8\x99\x3b\xca\x79\x6f\x1b\x35\x0c\xe6\x96\x88\x35\x21\xc1\xae\x2f\x93\xad\xcc\x9d\x80\xfb\xad\x38\x57\x41\x01\xf3\xff\xe4\xab\x82\xe8\x40\xdf\x7c\x24\x54\x1a\x17\x41\xfa\xb1\x42\x81\xbe\x98\x70\xa4\xd4\xe5\x34\x12\x87\xa1\xb8\xa4\x76\xfd\xa3\x04\xc6\xd1\x15\xad\x35\x38\xb8\x89\xf6\x08\x57\x22\xd8\x0d\x68\x25\x74\x44\xc9\x80\x7a\x71\x85\xfd\x4f\x1c\x5b\xcd\x40\x10\x48\xf9\x43\x7f\xfb\x65\x49\xea\x77\x9b\x85\xa8\xf7\xa1\x76\xe4\x53\xd0\x61\x2e\x53\x11\x06\x79\x4e\x0c\x07\xfc\x6e\x4f\xa5\xc2\x4b\xce\xee\xd4\x89\x5d\xdd\x23\xac\xc8\x0b\x4d\xc4\x1e\x00\xa0\x4c\x78\x17\x26\x02\xbf\xa2\xe2\xc3\x6a\x51\xc7\x1b\x75\xa9\xc5\x1a\x10\xd6\x19\xc1\xdc\x88\x23\x4e\x7e\x7a\xfe\x8a\x0e\x8c\xd0\xa0\x55\xfa\x73\xb1\xdc\xe8\x02\x5e\x8b\xd6\x03\xee\x3a\xdb\xed\x90\xe2\x06\x49\x42\x8a\xdb\x5d\x03\x94\xc4\x16\x0f\x83\x1a\x0d\x48\x06\x93\xe6\xcb\x1c\x97\x9d\xd3\x04\x49\x6b\xe8\xc9\xf0\xac\x0a\x43\xfd\x86\x66\x36\xe8\x23\x79\x6b\xed\x6f\x98\xfa\x3b\xc7\xbb\x42\x66\xe8\x1a\xf4\x7b\xe0\xf1\x47\x90\x30\x7a\xe7\xbc\x85\xdb\x40\x3f\xac\xc3\x4a\x41\xfc\x52\x7a\x32\x32\xb9\x98\x91\xa8\x4c\x16\x9b\xa2\x2c\x7b\xab\x27\x1d\xf3\x5d\x74\x86\x11\x3f\x2a\x0e\x6e\xa1\x32\x7e\x54\x0e\x95\xcf\x27\x9b\x0d\x18\x2d\x4d\x0f\xe8\x4d\x2e\xc7\xa0\x38\x8e\xc0\x09\x56\x44\x2c\xc1\x08\xe7\x12\x4f\xb5\x5c\x97\xdb\x2d\xed\x07\x6d\x3d\xda\x63\x75\xe8\x89\x8b\x85\x02\x39\xf9\xb6\x8c\xbc\xad\x4c\x85\x57\xe5\x59\x65\x04\x41\xdb\x0d\xde\x0d\xa2\x7c\xb0\xd3\xfa\xec\xf4\xed\xdb\x77\x97\xf1\x90\xe6\x7d\x50\xaf\x88\x95\xf8\x26\xf8\x3e\x8e\xfa\x65\x1e\x90\x61\x01\x53\x88\xe8\x83\xa9\x25\x8e\xc1\x79\x32\xe5\xbc\x3f\xd6\x0d\x68\x4f\xc3\x7d\x31\x5a\x9e\xf4\x7f\x75\x6c\xfd\xb2\x5f\x99\xbb\xf9\x90\x99\x42\xfc\x1d\xff\xcd\xbc\x4d\xc1\xd9\x62\xb0\xf5\xa2\xc9\x26\xde\x34\xa1\x0e\x34\xab\x91\x8d\x01\x44\xfa\x50\x40\xd4\xa2\xb9\x6f\x70\x56\x5c\xe5\x30\xe5\x9f\xb0\xca\xb4\x69\xb1\x61\x78\x72\x0f\x75\xf5\xb7\x03\xd8\x33\x58\xe0\x67\x19\xbb\xd4\x2e\xaa\xad\x1c\x28\x7f\x0e\x3f\x24\x9d\xbf\x06\xb7\x21\x5c\xe3\xf4\xeb\xfb\x6e\xcf\x1e\xc9\x74\x36\x74\x3f\xdc\x3b\x54\x39\x6b\x11\xd9\xb9\xee\xde\x8f\x24\xbf\xb0\x4d\x9e\x96\x8f\x20\x7e\x1c\x55\xc7\x17\x1e\x97\xa2\x7c\x0c\xde\x32\xc0\x5b\x4d\xe7\xdd\xc2\xfc\x6e\xa2\xf1\x94\x89\xff\x1d\x6d\xf2\xed\xca\x38\x8e\x87\x2a\x75\xd3\x1c\x61\xef\x7e\x2a\xb6\x87\x54\x05\xc3\xad\x73\x99\xee\x51\x86\xab\x1e\xb1\x2c\xbc\xa7\x70\x5f\x97\x33\x08\x1b\x7e\xc2\xa4\xf5\xb7\xdf\xfb\xe3\x9b\xbd\xcc\xf8\x7d\x93\xa1\x27\xaa\xa4\x1e\x5e\xf4\x44\x9e\xdd\xc1\xe0\x3c\x5c\xc4\x40\xea\xc4\x6a\xb8\x3b\x5b\xc5\xb6\x17\x05\x75\xee\x56\x93\x49\x0b\x06\xe1\x15\xbb\x37\x6a\x0a\x0c\x14\xac\x5b\xb6\x15\xee\x91\x48\x3a\xdf\xf6\xcd\xdd\x4d\x5f\x24\xae\xab\x9e\x84\x75\xf6\x86\x0c\x8d\x5f\x10\xf2\xd3\x3c\xcd\x42\x56\x6e\x77\x87\xbb\x8c\xe8\x07\x1d\x69\xb8\x30\x2c\x5f\x96\x32\x2a\xce\xa7\xbf\xc0\x42\x23\xc7\x2c\xa7\x6e\x05\xfe\xd0\xdf\x13\xa5\x14\xd0\x9a\x64\x53\x49\x33\xaf\xea\x8a\x29\xc0\x2b\xfa\x43\xa7\xbb\x48\x02\x29\xbe\x0a\x9f\x8b\x4a\x54\xdb\x23\x62\x78\xa8\x47\xfd\x1b\x75\x79\xd4\xb1\xd1\x2d\x90\xde\x59\x50\xb5\x3f\xe6\x0f\x09\xb9\xb8\x27\xe8\x35\x61\xa2\x80\x87\x5a\x54\xcf\xf4\x37\x49\xb4\x79\x77\x0c\x8d\xdc\x1a\x7b\xdc\xb7\xc5\xf2\x23\x13\x17\xc2\x99\xb2\x25\xa9\x00\x4e\x5d\x05\x9f\x7f\x39\x21\xda\x9a\x26\x40\x2c\x0c\xea\x31\x25\xc5\xac\xf2\x8a\x25\x88\x4f\xc2\x89\xc9\x05\xe3\x57\x96\xf2\x90\x45\xcf\x47\x06\x68\x82\x63\x80\x53\xf5\xc7\x20\xdf\xfa\xa9\xe6\x42\xb5\x97\xd3\x86\xe4\x53\x84\xf5\x13\xb0\xde\xd1\x74\xad\xd8\x26\x55\x6c\xbb\x5c\xe5\x5d\x33\xc3\x67\xd7\x6c\xdc\x16\x8b\xc3\x5f\xf4\x13\x06\x87\x75\xf1\x77\x49\xbd\x08\x3f\x80\xe1\x9d\xe2\x7c\xa7\xd6\x03\x9a\xfb\xe5\x46\xdd\xe6\x9a\xab\xb9\x5c\x3c\xc4\x89\x7d\x19\xac\xa0\x4c\x2e\x00\x47\xab\xb9\x2b\x3e\x57\xbb\xc3\x2e\x0f\x80\x28\xca\x9b\xe0\x7e\x6a\xd7\x98\x4d\x5b\x27\x86\x96\xf0\xaf\x37\x52\x0c\x6b\xb8\xdd\x56\xc1\xfe\x71\x73\x36\xf1\x19\x4d\x49\x3c\x62\x32\xbd\x42\x6e\x57\x71\xc3\x1d\x72\xb9\x8b\xeb\x73\x8f\x93\x67\x53\x40\x15\x29\xc5\x84\x5b\xf4\x82\x28\xde\xbd\x1f\x65\xd1\x8d\x5c\x5a\xad\x8a\xfe\x6f\xf4\x16\xbb\xc3\x7f\x85\x98\x09\x4d\x8c\xb8\x74\x86\xeb\x70\x11\x95\x26\xa0\x92\x13\x55\xb9\xda\xc2\x5d\xa9\x7b\xf2\xe2\xd5\x25\x2e\xd4\x11\x4e\x8a\x76\x4f\x6f\x0d\xb2\xc7\xcd\x2c\xd4\xc9\x87\x6d\xd5\x75\xc2\x84\xd5\x15\x26\x9e\x09\xe1\x84\xfe\x4f\x54\x06\x5a\x59\x8a\x01\x56\x5b\x74\x57\x67\x0f\x36\xf5\x55\x7f\x25\x89\x5a\x90\x13\xa1\x8b\x48\x2d\x79\xe6\x7c\x57\xf8\xbb\x9c\x56\x6d\x30\xda\xc6\x65\xf3\xf6\x5a\xdd\x6a\x4a\xe8\x35\x20\x40\x73\x95\x09\xad\xb6\x74\xa5\xdc\x57\xe1\x08\xc0\x5d\x3c\xbe\x91\x93\xd2\x7e\x04\x0e\x28\xfc\xba\x7b\xaf\x52\xda\x28\xcc\x2d\xed\x6f\xe6\x6c\x49\x00\x83\xb4\xbf\x89\x09\x8e\x93\xa4\x0c\x9a\x4e\x07\x1c\xbc\x5d\xce\xb1\xca\xff\xfb\x7f\xfe\xaf\xc7\x67\x3c\xec\xb3\xbe\xdd\xd2\x97\x32\xea\x0c\x2f\xcb\x20\x15\xe4\xef\xfe\x83\x04\xae\x6b\x75\x6d\xf9\x45\xbe\x32\xfb\x0d\x52\x40\xf9\x9d\xea\xf6\xf1\x91\xe9\x2f\xa6\x08\x99\xc6\x41\x60\x52\x90\xb1\xb4\xab\x68\x43\x92\xae\x3f\xab\xfe\x76\xa8\x96\x1f\xe7\xa2\xa2\xf9\x21\xff\x4f\xfe\x95\xe3\x6e\xbd\x1e\xd7\x4c\xf9\x03\x19\x07\x72\x0e\xce\x02\xef\xca\x8e\x33\x4e\xaf\xb3\x44\xb2\x5f\xa4\xec\xc7\x8d\x11\x5e\x03\xe4\x0b\x7b\xd9\xfe\xc0\xce\x5c\x8c\x10\xd6\xda\x39\xa5\xe0\xf2\x23\x27\x0a\x3d\x0f\x35\x60\x65\x47\x75\xa0\x79\xea\xae\xdc\x85\x9d\xe4\xb2\x90\xe5\xdc\x8c\x77\x7c\x2d\x8d\x86\xac\x12\x4f\xa6\xae\xa3\x67\x7c\x97\x30\x9c\x4d\x7a\x26\xf5\x6d\x09\x99\x8e\xfe\x64\x74\xe4\xb1\x8b\xa2\x5a\xad\xf9\x3e\x78\x5f\xc0\xbc\x8b\x74\xb3\x59\xb3\xd1\xbb\x58\x6b\x45\x10\xe6\x9e\xea\x67\x46\xe9\xfc\xfb\x92\xfe\x8c\xc2\x32\x70\x10\x87\x71\xf0\x86\x6d\xb1\x28\x91\xfc\x1a\x1f\x84\xfc\x74\xea\xf6\xb4\x22\x72\x06\xd9\x8f\x6c\x09\xb7\x3b\x41\x44\x7c\x65\x7a\x6f\x48\xec\xdc\xf2\x99\xc1\x52\xd7\x16\x6c\x6d\x7e\x5f\x5c\xcb\x4f\x9a\x2e\x0d\xe6\xf1\x52\xbe\x24\x19\x57\x26\x04\x14\x37\x26\x02\x3c\xf8\x75\xdd\x0d\xe7\xf6\x2d\x59\xec\x00\xbb\x65\x26\xce\x96\xc1\x2c\x42\x94\x91\x4b\x86\xb0\xa0\x7c\x3f\xa4\xce\xb2\x72\xc5\x4b\x34\x43\xfc\x0e\xb1\x31\xb2\x98\x0f\x5e\x46\xb3\xf8\x8f\xe5\xfd\x4c\xdf\x49\xe6\xbe\x2d\xd1\x4b\xb1\x54\x74\xb2\xd5\x70\xdd\x4d\x18\xd4\xce\x00\x65\xab\xcf\x51\x19\x7b\xdc\x32\x09\x9f\x0b\xff\x02\x3b\x1f\xc8\x12\xd7\x4e\x99\x8f\x41\xdf\x91\x99\x74\x02\x5b\xc2\xf7\xa4\xb7\x01\x1a\x18\x3b\x3e\xcc\x17\xe5\x9c\x1a\x28\x22\x8b\xf3\x57\x73\x89\x58\xc0\x95\xb5\x30\x2c\xa1\x89\x80\x06\xb6\x81\xad\x94\x85\x8e\xdc\xc6\x61\xd7\xdc\x7d\xe5\x20\x61\x12\xe5\x02\xe3\xf0\x35\x63\xcf\x0f\x99\x35\x8d\x88\xc1\xb0\xe6\x37\xe4\xeb\x33\x79\xd8\x8d\xca\x8b\xe3\xa3\x71\xb1\x0a\x64\x8e\x7b\xd5\xaa\xd5\xf1\x1d\x80\x7e\x44\x2e\x5d\x47\x05\xc9\x57\x8d\x4e\x8c\xf2\xe8\x52\x24\xa9\xf0\x18\x4d\x15\x9e\xd3\x0a\x40\xc3\x23\x66\x2e\x70\x9b\xc1\xb0\x49\xdd\xbc\x5a\x34\xc6\x97\x8d\x5c\x7b\x41\x34\x84\xc6\x86\x39\xaf\x78\x16\x9d\xc8\x25\x6c\x70\x0f\xac\x1f\x21\x5a\xb3\x07\x15\x7f\x32\x63\x58\xd3\x48\xf8\x02\xeb\x46\x46\x46\xa4\xa5\x5c\x57\x12\xeb\x04\x02\x12\xcf\x7b\xb9\x5d\xb9\x4a\x98\xf6\x10\xcb\x80\x88\x17\xd2\x1f\x9c\x13\x4d\xeb\xf0\x75\x59\x6e\xe7\xf0\x33\xa1\x0c\xf9\x19\x32\xb1\xbf\x1d\xd2\xab\xc7\xed\x00\xe7\x59\x29\xda\x13\x5f\xae\x0a\x70\x9a\xc6\x27\xdf\xdb\xb0\x7f\x7c\xe0\xa0\x22\x40\x48\x55\x85\x46\x30\x1e\xfb\xbc\xa1\x17\x86\xcf\xd3\xae\xa9\x67\x70\x88\xfa\xb4\xc2\x9d\x0c\xbb\x7f\x4f\xa4\xbd\xe7\x3b\xe7\x34\xdd\xf1\x44\x72\x6b\xa3\x95\xc8\xd4\x6e\x6f\x88\xa8\x08\x96\x86\x1d\xa5\xe3\x35\x00\x9b\x76\x55\x7b\x18\x9b\x26\xe0\x8f\x79\xb8\xf7\x70\x0d\x23\xa8\x41\x90\x11\x9b\x8b\x07\x59\x6c\xc1\x8e\x30\x53\xa5\xd4\xc1\x63\x3a\xd6\x73\x85\x0b\xf9\xf0\xf0\x43\x7f\x10\xc9\x40\x42\x9a\xe4\x4c\xcb\xed\x46\xca\xcc\x93\x39\x73\x78\x82\x9b\x87\x1e\xcd\xa9\x37\xb6\x9f\x89\x81\x2b\xc2\x10\x79\x95\xac\x2d\xca\x70\xf6\x3d\xd7\xac\x89\xb8\x28\x52\xd6\x8e\x2e\x61\x6f\xe4\xe8\x8d\x27\x94\x6c\xb6\xc4\x76\xd1\x85\xf8\x39\x5e\x06\x36\x5c\x30\xf4\xe7\xf3\xb7\x08\xd4\xb1\xe6\x8b\x34\xc2\xb6\xcb\x99\xbf\x2f\xd4\x32\x2e\x97\x17\x0b\x39\x17\x06\xfc\xdf\x6d\x0d\x85\x21\xa3\x9d\x58\x24\x46\xa5\x49\x84\x0e\xcf\x3f\x7c\x71\xfd\x73\x25\x95\x74\x42\xcc\x45\x62\x8c\xd3\x13\x62\xdf\xa0\x85\x1b\x65\x98\x8d\xb6\x0e\x44\xcc\x20\xcc\x1d\x6b\x48\xed\xf9\xf3\xeb\x8d\x6b\xd6\xe8\xdd\xc8\x04\xa5\xd0\x79\x47\x52\x64\x19\x03\xe7\xf0\x75\x23\x29\x39\xbb\x5d\x77\x12\x2f\xb0\xc0\x74\xa6\x5a\xdf\x6b\x96\x8d\x41\xb7\x93\x46\x08\xa7\x0d\xe7\x85\x56\x19\x72\xb3\x86\x38\xe2\x3e\x55\xc2\x3e\x90\x42\xf2\xfb\x8d\x23\xef\xe9\x48\x47\x78\x76\x2a\xd3\x08\x4d\x42\x5c\xb2\x2f\xc7\x38\x5a\x1b\x6d\x88\xe9\x02\xb3\x11\xb2\x3a\xb4\x1a\x22\xc2\xf8\x63\x86\xb3\x63\x7f\x10\xda\xa3\x99\xab\x3f\x8a\xe2\xea\x73\x11\x35\x82\x12\xf7\x89\x1a\x28\xe3\x62\xa3\xab\xe2\xa8\xce\xd2\x87\xb8\xc2\x04\xe6\x41\x7c\x5f\x94\x5d\x70\x79\x69\x16\x2c\x54\x80\xe1\x1e\x10\x46\x2a\x55\xb4\xe8\x24\xec\x1f\xcb\x20\xdd\x61\x11\x33\xe5\x87\xca\x46\x33\xf6\x7e\x11\xc6\x6e\x36\x66\xf5\x2c\x67\x70\xef\x54\x17\x2f\xe6\x5f\x89\x5d\xe7\x39\x5b\x75\x2c\xad\x80\xdc\x9c\xdb\x95\x92\x90\xbe\x0b\xf7\x3d\xf4\xe6\x47\xc8\xd1\xb3\xe1\x19\x34\x3e\x9a\x66\x17\x8a\xdf\xf1\xdf\x90\x4a\x14\x4f\x95\x7e\xf4\x37\x5c\xb8\x95\xb0\x77\x4c\xf6\xc0\xf9\xba\xe4\xd9\x90\xdb\x75\x59\xbc\x2b\x39\x51\x84\x19\xe4\xfb\xec\x25\x71\xb8\xed\x3c\x94\x3f\xe3\x9f\xf9\x76\x54\x4b\x60\x9f\x3d\xf7\x3c\x68\xc6\xc3\x50\x53\x93\x60\xd2\x9c\x87\x94\x16\x77\x53\xc0\x1c\x16\x23\x81\x7d\xc7\x71\x32\x1c\xf3\x9e\x54\xcc\xea\xe7\x41\xcd\xd0\x48\x4f\xc3\xd3\x59\xc7\x31\x1f\xa0\x93\xd7\xcf\x71\x3f\x1d\x90\x74\xb3\x98\x00\x65\xd3\x68\x84\xa3\x81\x0f\x81\x74\x6b\x84\xe3\x71\xb8\x7a\x71\x7d\x68\x69\x87\x0b\x24\x99\xf3\xfd\x96\xd8\x9e\x70\xfd\x1c\x40\xe1\xd4\x4b\x9a\x09\x95\x69\x63\x49\x7d\x98\xd0\xbe\x58\x50\xf6\xfd\x15\x66\x33\x14\xe6\xb9\x8a\x59\x32\x75\x96\xa9\xe2\x9b\xd5\x9c\x54\xe9\xf3\xf8\x04\x10\x35\xa7\x4c\x44\x50\x79\x6e\x27\x4a\xdc\x8a\x51\x43\x98\xa3\x35\x8f\xf0\x46\x4b\xde\xb2\xbc\x11\x82\xc3\xbe\x1d\xaf\xfa\x48\x39\xd5\x8c\x41\x1f\x36\xce\x99\x71\x60\x83\x20\xa1\x72\x84\x2e\xf9\x31\x09\xda\x69\x28\x4a\xa2\x6d\x7c\x3c\x85\xae\xae\xd4\x4e\x3a\x55\x48\x56\x79\xc5\xfe\x94\x52\x46\xd6\x19\x31\x6e\x8e\x14\xd9\xb1\xae\x14\x36\x03\x2d\xf2\x26\x24\x4c\x14\xe9\x34\xe2\x16\x87\xbc\x1a\xe7\xcc\xa0\x6a\xef\x95\x36\x75\x93\x20\x8c\xa5\x00\x79\x87\x8f\x29\x10\xf1\x1e\x08\xec\xf2\x7b\xbd\x65\x6c\xfe\x8b\x93\x0d\xb3\xeb\x7e\x28\xf1\x1a\x8e\xfc\xed\x17\x94\xe3\xab\x5d\x4c\x57\xc5\x59\xe4\x4d\x83\xfb\x56\xf8\x79\x4b\x3b\xb1\x80\x34\x34\x2a\xc1\x3b\x09\xab\xc0\xf2\x07\xbe\xf3\xfb\xbf\x7e\xfb\xa1\xe3\x65\x88\x5e\x38\xbf\xfe\xf1\x03\x31\x12\xf7\x7f\xfd\xd3\x07\xb8\xdf\x8c\x0a\xcf\xaf\x58\xd6\x1b\xd7\x80\x82\x06\x0d\x69\xbd\x39\x04\x31\x9d\x3e\x23\x7d\xf8\x2c\x4b\xf1\xb9\x4f\xb7\x78\x88\xd4\x35\xd8\xe1\xab\x90\x95\xee\xf0\xfa\xb0\x9b\xeb\x18\x3b\xa1\x00\xf6\x2b\x14\xb7\x19\x98\x17\xdc\xe4\x6f\xe1\x77\x1c\xee\x1f\x98\x6b\xba\x8f\x91\xfe\x66\xc5\xcc\x5f\x56\xa0\x5d\x6c\xac\x53\xf5\x9f\x0a\x8e\x54\x66\xba\x5c\x39\x69\x5a\x8b\xfd\x14\xba\xd9\x38\xbf\x1f\xe1\x5e\xa0\xe0\x0e\xcc\xdf\x4d\xd9\xcf\x52\x92\x86\x1f\x36\xde\x34\xcb\x3a\x15\x40\x74\xd1\x71\x1d\xce\x83\xb7\x25\x66\xd5\xe0\xde\xe3\xe7\x20\xf3\xb6\xca\xda\xa4\x80\xd2\xe9\x88\x62\x0a\x3a\x58\x28\x9d\x66\x39\xc3\x68\x8e\xab\x15\x23\x14\x21\xc8\xbd\x30\xdd\xf8\xf5\x23\x90\x25\x99\x74\x69\x2f\xd4\x61\x3f\xbf\xb2\x16\x95\x27\x09\x2a\xd4\xa3\x16\xa2\x95\xac\x8e\x0c\x55\xaf\x52\x29\xbf\xfb\x75\x4d\xec\x1b\x8d\x1c\x7c\x8e\x8f\xd8\xb2\xc5\x30\x01\x83\x75\xe6\x7e\x06\x34\x4f\xcc\xd9\x9a\x68\xf1\x9d\xec\x52\xac\x0a\x8a\x89\x57\x9c\xc6\xfc\x30\x96\x9e\x2f\xbb\x18\xae\xd5\x1c\xc2\x47\x6f\x6e\x69\x8d\xaa\x31\x62\xbd\x55\xe8\xdc\x40\xb8\xb4\xb6\x59\x24\x20\xb2\x49\x7f\x2c\x49\xce\x44\xdb\x70\xf1\xcc\x4e\xf3\x69\xb0\x4d\x3c\xd3\xf1\x6b\x08\x20\x2e\x06\xf7\x57\x03\xbe\x4c\xb2\x23\x6a\xea\xce\x45\x30\xb1\xf4\xd4\x11\xc8\x89\xc1\x48\xc6\x40\x35\x91\x66\x86\x2b\xe2\xd2\x41\x5c\x14\xb7\xe0\x74\xe3\x5a\xf4\x2e\x04\x40\x83\x8f\xc3\x24\xd8\xb4\xf3\xaf\xf0\x18\xde\x7d\xa5\x82\x60\x13\x1d\x7e\xd9\x7d\xd3\x79\xb4\x68\xdd\xc7\x1d\x58\xa6\x1b\x8f\xca\x32\xe9\xeb\x1d\x8a\x32\x47\x26\x49\x26\xef\xab\x65\xb5\x2f\x02\xa9\x3c\x77\x29\x06\x59\xf4\x7d\xb1\xdc\xf0\xb6\xf6\x4c\xd7\x6f\x22\x53\xaa\x28\xc9\xf8\x88\xe1\x40\xe3\x4f\x10\xbf\x4d\x94\x0e\x41\xa9\x7c\xe9\x90\xc8\x55\xfc\x96\x89\x0a\xdc\xc9\x07\x5e\x15\xae\x99\xec\xa0\x41\x92\x5e\xaa\xfe\xe2\x94\xa0\xff\x9a\x84\xb3\x55\x32\xe0\xfe\xba\xc9\x83\x82\x1e\x21\xb5\xf9\x04\x4b\x15\x37\xd0\xf0\x04\xb1\x36\xad\x16\x31\xb0\x7e\xc0\xfd\x9e\x61\x83\xda\xc2\x0f\xb9\x7e\x69\x7e\x62\x3b\xc8\x07\x36\x03\x1b\x79\xc3\x26\xd5\xc3\x16\x2b\x02\xe7\x44\xf9\x71\x25\x6e\x75\x06\x84\xb8\xc6\xcc\x6d\xc5\xb6\xdc\x21\x22\x51\x8f\xd5\x55\x9a\x73\x17\xe5\xb2\xe0\x38\x7d\xe8\x33\x8f\x75\xc3\x71\x96\xe3\xe8\x59\x93\xf1\x89\x2f\x0b\x4b\xfd\x7c\x1b\xd1\x07\x94\xe6\x15\x0b\xd5\x9b\xa4\x3e\x98\xa9\x45\xd9\x5f\xe3\xd6\x31\x7c\x97\x79\x72\x45\x1f\xd1\x7d\xe7\xb9\x08\xa2\x9e\x4f\xd0\xc6\x13\x66\x25\x56\x4a\x49\xff\x80\x1f\x42\x4f\x75\x2a\x07\x82\xc6\x04\x1a\x80\x1a\xd9\xa2\x5e\x03\x87\x59\xe5\x5c\xb2\x89\x81\x1b\x5a\x99\xec\x2b\x74\xfd\x7b\xb6\xf0\x18\xe1\xc6\x37\x21\x2c\xfb\x26\x6b\xfa\x9f\x42\xba\xd6\x8f\x9a\x94\xcb\xb0\x66\x24\xed\x5f\xab\x9e\x4a\xff\xdb\x07\xc3\x51\xda\x2a\x73\x4f\xae\x81\x9f\xf1\x67\x02\x35\x14\xf9\x63\x9e\xa9\x22\x9e\xe3\xaf\x2a\x72\x34\x5f\x0f\x75\x42\x15\x99\x9a\xe0\x91\x20\x19\xea\x7a\xe7\x57\x92\x7a\xbd\x2f\x5b\x26\x53\x3a\x9b\xc1\x03\x6d\x96\x4c\x0d\xd8\xef\x36\xb6\xc4\x58\x13\x72\x2e\x47\xd5\x06\xba\xa4\x30\x29\x59\x92\x2a\x38\x3a\x33\xed\x0f\xf3\x3b\xa4\x5f\xc1\xc3\x68\xba\x2e\x85\x5d\x1d\xe2\x55\x5b\x9e\x45\x2a\x04\x8b\x88\xa3\xb6\xd6\xf7\xaa\x9b\xe3\xb6\x81\xe8\xdb\x2e\xf5\x0a\x01\x91\xa3\x3e\x0f\xe9\xd4\x9c\xdc\x75\x95\x78\xa1\x6b\x89\xbe\x1a\x42\x94\x5f\xd1\xef\x0d\x62\x23\x32\xc0\x55\xc9\x51\xcd\xc0\x61\x06\x12\x51\xd4\x73\x38\xd4\x60\xa8\x89\xdd\x3e\x19\x86\x1a\xf1\x75\x42\x06\x11\x0f\x43\x55\xf0\x91\xf8\xb2\xda\xc4\xb5\x73\xaa\xbe\x40\x02\xfa\xa0\x29\xb3\x71\x77\xc7\xdb\x1a\x86\x1a\x17\x7c\xd8\x15\xb5\xb8\xca\x55\x7c\x4b\x9c\xe5\x78\x09\x8b\x03\xc7\xfd\x7e\x33\x51\xb3\xd4\x36\x20\x29\x40\x9e\xa9\x9d\x0d\x84\x3d\xd4\xba\x01\x51\x2a\x68\x0f\x7f\x53\xbb\xfd\x83\x3e\x20\xa9\x22\x72\xf4\x93\x4c\x87\xea\x49\x56\x2d\x2c\x45\x32\x6d\x0f\xff\x70\x7f\xf5\x48\x36\x31\x1c\xf8\x47\xde\x4e\x9c\x28\x03\xf7\x87\x37\x53\xd1\xaa\x43\x10\x29\x46\x19\x3e\x28\x18\x88\x95\xb1\xbf\x65\xce\x46\xeb\xce\xb2\xa8\x1b\x70\xd9\x13\x8a\x0c\x97\x3b\xad\xcc\x18\x02\xac\xa2\x8a\xe8\x7e\x97\xb4\xdd\xcc\x69\x6b\xcc\x55\xd2\xa4\xe3\x84\x37\x0a\xff\x1a\xf6\xc0\x24\xac\x61\xcd\x41\xdc\x48\x07\xc4\x6a\x4a\x3e\x42\x24\x3c\x92\x90\x68\x67\x96\x66\xdd\xb0\xdc\xdb\x55\xdb\x9b\x32\x03\x49\xf5\x03\x0a\x3f\x39\x39\xc6\x71\x22\x9c\x8e\xcf\x98\x70\xbe\xf3\xb9\x71\xcc\xcf\x68\xc0\xac\xa6\xcc\x1f\x9a\xf1\xe9\x51\x3a\xc8\x52\x2e\x51\xf2\x5f\x9f\x11\x42\x5f\x6a\x55\x73\x59\x79\xad\x11\x95\x6b\x4a\x0c\xc5\x78\x12\xac\xbc\x0f\x6e\xe8\xdf\xe3\xdd\xee\xf1\x6a\xf5\x60\x62\xd4\x8e\x67\x0b\xc3\x1e\x58\x39\x55\x39\x32\xa0\x92\xae\x26\xc7\x02\x4f\xcf\x1d\x4c\xd6\x7e\x9d\xf8\x3a\x69\xc1\xe7\x34\x33\x1d\xce\xf0\x26\xb8\x1b\x57\xaf\x63\xfa\xdf\xec\x59\x47\x6f\xce\xe2\xbc\xa1\xe5\x1e\x8c\x1f\xcb\x40\x7c\x70\x59\x83\x60\x4c\xb7\x76\x30\x78\xcf\x28\x3b\x47\xb4\x7b\x77\x64\x52\x24\x04\xfc\xd1\x29\x71\x6c\x7b\x9c\xd6\xc0\xba\x4f\x00\x4e\x33\xee\xb1\xf5\xff\x4e\xe6\x7d\xaa\xf9\x29\x34\xb8\x83\x7d\xcf\xae\xab\x8f\x15\x15\xf8\x0b\xfd\xc1\xf7\x4c\xc3\x67\xe5\x31\x5c\x16\xb5\xcb\xd9\xdf\x24\xf9\x36\x56\xce\x81\x3f\x06\x1b\xe5\x58\x15\x9b\x4b\xdc\x75\xb9\x1c\x70\xd8\xb2\x4b\xcd\x47\x39\x4d\x9b\xe5\x01\x72\xfd\x8d\xde\xe6\xfe\x2f\x5c\xad\x6e\x88\xa9\xdb\x68\xc0\x6e\xb0\xcc\x55\xaf\x48\x35\x93\x06\x15\xc7\x11\xe7\x61\xae\x6f\xe3\xe8\x26\x17\x53\x38\xa5\xe3\xf4\x14\x70\xff\x7a\x0e\x12\x94\x4d\xd6\x74\x65\x92\x23\xbc\x5c\xce\xf5\xb5\xbe\xd5\xf0\xc8\x92\x6f\x1e\xa6\xa9\x25\x9a\x47\x2e\xde\x09\xcc\x1f\xf3\xf5\x07\xbe\xaa\x86\xf5\x56\x4d\x5c\x24\x10\x3a\x0e\x44\x93\xd5\x96\x58\x18\x76\x6d\xe0\x72\x91\x36\xc0\x48\xc1\xd4\xb9\x83\x31\xce\x34\x0a\x28\x47\xc4\x18\xe0\xc0\x74\x4e\x99\x6b\x94\x3e\x15\x5d\x93\xf1\xc4\xbc\xe1\x78\xe4\x4e\x40\x02\xa2\x96\xf7\x69\x28\xbe\x25\xbb\x2c\xe7\xdf\x1a\x97\xe0\xef\x0d\x88\x2d\x96\xfa\x26\x8c\x29\x4b\x5d\xca\x97\x86\xb8\x88\xbc\xdf\xcb\xb6\x47\x10\xc4\xb0\x42\x63\x3b\x1e\x10\x09\x55\x0d\x2e\xbf\xa5\xa6\x3c\x57\x47\xa7\xcb\xdc\xb9\x49\xb4\x6b\xde\x76\x49\x4b\x7f\x72\x70\xd6\xa9\x97\x73\x2c\x6d\x26\x8b\x85\x08\x11\xf2\x15\xb3\x5c\x34\x59\x65\xa8\xdd\xef\x23\x60\x33\xf1\x9e\xd7\xa8\x69\xc7\x80\xc4\xd8\xa9\x98\x74\x0c\x08\x4f\xd8\x88\x03\xf6\x31\x10\x12\xe5\xca\x2b\x04\x24\x61\x07\x3e\xfd\x8e\xc0\x9b\xa6\xf9\x28\xb1\x84\x17\xf8\x8c\x39\x6b\x7e\x44\x44\x32\xf9\xb9\x8c\x97\x69\x2e\x49\x77\xd5\xd2\xbf\x1d\xf4\x94\x13\x26\x26\x4f\x43\x3f\xbc\xb3\xc0\xd0\x17\xc9\x70\xd4\x3c\xea\xea\x51\x1f\x90\x71\x45\x7a\xb5\x9c\x59\xa6\x2f\x0b\xcc\x30\x15\x90\x61\x68\x27\x0f\xb5\x17\xab\x4f\x7c\xb2\xac\x92\xf7\x95\x34\x6d\xa2\x33\x8c\x54\xe1\xfa\x96\x04\x53\x07\xb1\xec\x6e\xba\xbe\xdc\xb9\xf1\xb1\x2e\x95\x7d\xbb\xf9\x25\x08\x25\xa7\x7c\x36\x72\xf0\x6b\x82\x40\xa1\x14\x9a\xdd\x55\x86\xd0\x96\x36\x00\x4f\x40\xf5\x8d\x8c\x9f\x0d\x14\x5b\x86\x63\xfb\x1d\x07\xb7\x01\xfc\x39\x09\xd3\xbe\xe0\x19\x12\x53\xb0\x98\x54\xd8\xcd\x17\xaf\xe8\xd0\xe4\xdd\xa4\x81\x40\x89\x59\x74\x73\x28\xe7\xd2\x60\x5a\x44\xdd\x09\x7f\xf9\xb2\x3d\x32\x31\x80\x99\x2b\xcc\x60\x86\xb6\x7c\xad\xec\xba\xc4\xe5\xb2\x5b\xea\x0a\x83\x9b\xaa\x2b\xcc\xdf\x91\x0a\x34\x01\x73\x12\x78\xaf\x30\x93\x30\x3c\xe6\x97\x5a\x23\xcf\xc6\x73\xc0\x8c\xcb\x4b\xdb\x5d\x7f\x23\x8e\x29\xd3\x15\xbc\x2d\x76\xb8\x39\xcc\x50\xdf\xdd\x5a\xc7\xcc\xa2\x00\x12\x99\x96\xaf\xdb\xc1\x11\x3d\x30\x96\x39\x75\x3f\x6f\x1b\xab\x0f\xb2\xcf\x52\x22\x8b\x33\xde\x70\x2a\xd4\xfb\x1f\x7c\x87\xe0\x9f\xf9\x3f\x78\xf7\xd0\x9f\x8a\x48\xc9\xe7\x7f\x9a\x9a\x21\x3c\x41\xc0\x3b\xf3\x64\x74\xe3\x49\xe4\x17\x9e\x04\x14\x73\x28\x03\x21\x6c\x80\x31\x5e\x62\xea\xec\x1a\x25\xed\x74\x0d\x94\xc3\x6c\x4e\x5b\xd1\xe9\x94\x52\xe2\x55\x01\x1f\x9a\xbf\x8b\x69\xf4\x19\x7e\xe5\xff\x83\xd9\xc0\x00\x82\x97\xd9\x10\xb7\x8d\xd5\x07\x9d\x5c\x29\xd0\xf8\x53\x12\xd4\x44\xf4\xe3\x45\x08\x5b\xdd\xa5\xae\xda\xe9\xe1\x13\x63\x4f\x4b\x54\x94\xa2\x96\x00\x11\x12\x0b\xc7\x91\x63\xd6\xb1\xf4\x41\xdb\xd2\xb3\x4b\xdf\xfb\x72\x7d\xd8\x92\x34\xe0\xbc\xf5\x87\x05\x86\xcb\x62\xf5\x28\xdf\x08\x6f\x6f\x9e\x1c\x8e\xb6\x8c\xba\x1c\x5d\x0b\x7e\xfb\xea\x95\xd5\xf2\x13\x08\x72\xb7\x7c\xd8\x8a\x1c\xe0\x1d\x4e\xf0\xc7\x1a\x88\x2b\xbd\x05\x98\x34\xec\x66\x43\xfb\x00\xd5\xd3\x54\x2f\xc4\x22\x14\xfa\x20\x97\x01\x27\x7a\x10\xad\x5b\x76\x1d\x50\xd5\x52\x83\x23\x54\xa0\xe5\xce\xea\xe0\x06\x47\x14\x65\x04\xca\x82\x19\x4b\x97\x60\x7b\x4e\x63\xbb\xf8\xed\x20\xf1\xc2\xd8\xe7\x5a\x3f\xdf\x59\xc4\xb1\x31\x58\xd0\x88\xc4\x30\x63\xe9\xa4\xf0\x5c\x28\x1e\x60\x43\xe8\x22\xa5\x21\xee\x98\xa1\x0f\x8f\x2e\x69\x68\x67\xf0\x04\xb8\x43\xdb\x4d\x74\x6f\xb0\x4c\x8c\x13\xf2\x4e\x12\x10\x4f\x38\xfb\xea\xca\xe1\x30\xfc\xde\xf8\xf2\xf5\xa7\x6a\x75\x20\x1a\xc4\x9d\xb9\xad\xde\x3f\xa6\xf5\xd2\x3c\xe2\x42\xc7\xd1\xba\x07\x03\xc2\x0e\x0f\x8f\xef\x21\x52\xdc\x55\x0c\x80\x38\x39\x22\x26\x3e\xc1\xcc\xa3\x3b\x09\x81\x0c\xf3\x18\xca\xcc\x0b\x41\x22\xe1\x00\x3f\x24\x9e\x83\x61\xe9\x77\xa3\x63\x59\xed\x32\x3f\xb7\x5c\x27\x0e\x42\x56\xef\x4d\x82\xd9\x82\xbe\x33\x6f\xb7\x12\x85\x70\xf8\xb2\x86\x30\x2a\x76\xea\x46\xef\x93\xb2\x3f\xed\x24\x03\x3b\x59\xff\xc4\xfe\xf2\x3c\x32\x4f\x9c\xbd\xa6\x85\x48\x52\xdc\x30\x93\xd3\xfb\x63\x6e\x63\x24\xc9\xbd\xf7\xa4\xc9\x3a\x1c\xbd\xec\x30\x94\x61\x54\xa3\x48\x30\x07\x9e\xb5\xe8\xda\x14\x3d\x3a\x32\x51\x36\x80\x24\x18\xe1\xef\x99\xad\xe3\x13\x15\x09\xd1\x9d\x97\x8c\x8f\xd7\xf7\xc7\xa3\x84\xcd\x5d\x05\xf6\x22\x0b\xd3\x4a\x7d\xcc\xd1\x14\xc2\x7e\x88\x72\xbb\x0e\x6f\x4b\xb2\x5b\x30\x4d\xf9\x89\x4a\xe4\x27\xc1\xfc\x2f\x51\xd9\xdc\xad\x71\x6f\x9b\xed\x8e\xf7\x15\x6e\xf7\x32\x01\xa7\x76\xa7\xd5\xb8\x32\x88\xdb\x7c\x7e\xee\xd9\x9d\x99\x6d\xe4\x57\xa2\x5c\x11\xb4\x18\x56\x7a\x14\x53\xee\x10\xfa\x8f\xb1\xe6\xd3\x95\x99\x68\x74\x47\x28\xad\xf1\xee\x37\x4b\x34\xde\x48\x85\x35\x3a\xc0\xb0\xa0\x3f\x77\x74\x19\xd1\x06\x8c\xe0\x4e\x54\x35\x79\x22\xc4\xa8\x91\xa1\x6b\x56\xa0\x3d\xde\xbd\xf4\xa2\x7a\x3e\x71\x41\xdd\x09\x0c\x1c\x03\x3e\xb1\xb8\xb3\x1b\x25\x8f\x27\xb1\xbc\x1f\x2d\x30\x88\xb8\x92\xd4\x95\x46\x5c\x19\xe3\xcb\xa0\x61\x0b\xbb\x32\x96\x00\x9b\xd6\x1b\x98\x7d\xc7\x26\x86\x34\x59\x2c\xb1\x01\xc8\x8b\x4a\x8c\x8f\xd1\x09\x79\x23\x6f\xdd\x78\x39\x38\xde\xca\x18\x1e\x8f\x03\x9c\xbd\x25\x4c\x8b\x75\x4a\x54\x62\xc7\x66\xee\x6c\x72\xd6\x34\x8e\x82\x9b\x37\x71\x55\x95\xf7\x7e\x52\xa7\x40\xf5\x5d\xc5\xf9\x38\x73\x25\x10\x43\x39\xde\x18\x65\xa3\xd6\x62\x34\xf1\x49\x48\xe5\xf4\xd2\xa8\x5e\x3d\x92\x90\x39\x60\x24\x7d\xd9\x59\x22\xbd\x30\x1b\x8f\xf8\xbb\xfa\x90\x88\xbe\xc1\x3c\x8c\x89\xaa\xb9\xd7\x9b\xc6\xb1\x55\x77\x37\xc0\x88\x77\x2d\xe2\xbd\x22\xa9\x0a\xfb\x03\x2d\x40\xd0\xda\xa9\x2a\x00\x86\x9b\xdd\x81\x26\x07\x5a\x3a\x48\xfc\xfa\xb0\xe3\xbb\x8b\x4b\x18\x71\x69\xd1\x88\x65\x59\xf3\x09\x9f\xff\x85\x44\x44\xbc\xb4\xc5\xef\x2b\x2a\xf9\x5c\x2e\x39\x8e\x56\x55\xeb\x3b\x44\xd7\xa5\x05\x38\xa9\x57\x7a\xde\xf9\x28\x6b\x26\xa0\x8b\x31\x37\xc7\xa3\x87\x70\x76\xda\x97\xcb\xea\x8a\xb8\xda\xd7\xb4\x56\xb5\x3c\xeb\x63\xfe\x27\xb7\xfa\xa2\x87\x91\xe0\xb2\x21\xdb\x7c\xfd\x21\x2d\x99\x7e\x7f\xe8\x49\x38\x9a\x9e\x21\xe8\x54\x44\x11\x9b\xe1\xdb\xf4\xb8\x38\x15\xe4\xec\xaf\xf8\x90\xc9\xf5\x32\xdc\x97\xec\x83\x51\x1f\xfc\x3b\x50\xd2\xf4\x97\x52\x76\xad\x6a\x86\x87\xc3\x42\x5f\x38\xbe\x77\x87\x10\x1b\xf8\x7d\x07\xb8\x4d\xc1\x85\x3c\x17\x02\x8f\x3c\xbe\x5e\xa9\x68\x11\x6a\xb5\x57\xc8\xc0\xb2\xd9\x1c\x75\x63\x7d\xca\x64\x1b\x71\x88\xe8\xda\xf5\x70\x9c\x82\xfb\x62\x8c\x95\xe6\x48\x68\x3c\x94\x78\xdd\x72\x57\xdc\xc8\x53\x57\x6c\x33\xed\xe8\xf4\xac\x57\x9d\xdd\x52\xe3\xd7\x06\x36\xcd\x35\xab\x63\xed\xf2\xc4\x68\x49\xc6\x7d\x8b\xd6\x44\x33\x21\x4e\x80\x74\xfb\x46\x82\x29\xbc\xd7\xcf\x31\x90\x18\x49\x78\x54\x2f\xe5\x6b\x0c\xb2\xd7\xb7\x19\xc2\x2b\x0d\x63\x90\x45\xb3\xe2\x35\x7b\x4a\x7f\xc6\x3a\xbb\xf0\xd8\xb4\x29\xee\xb0\x97\xf7\x7c\xc1\x4b\x7c\x5e\x39\x83\xb0\xb3\xdc\x5e\x49\x14\x65\x16\x30\x4b\xbb\xf0\x08\x8e\x45\x9f\x7b\xe3\xf0\x19\xa8\x40\xe7\x09\xf1\x9f\xf0\xf0\x8b\xb7\xdd\xeb\x93\x92\x3e\x34\xe2\xb0\x4f\x72\x1d\x52\xfb\xf5\x4a\x84\x03\xac\x26\x6c\x5a\xf2\x36\xd0\x09\x0b\xd7\x7b\x77\x2b\xc5\x14\x52\x7b\x79\x97\x87\x83\x52\x12\x0d\x40\x64\x72\x03\x11\xe9\x4a\x6e\x24\xb9\xc8\x20\x91\xa7\xe6\xa8\x74\x3c\x61\xe3\x1e\x69\x24\x17\x9e\x20\x89\xe1\x32\x82\x88\x6e\x93\x00\xb2\x98\x69\x43\x1e\x49\xc1\xa3\xf6\xf2\x65\x42\x3e\x1c\x01\x4e\x5e\x01\x47\x47\xf5\xbd\x1d\x51\xb2\x30\x61\x35\x9d\x8a\x73\x91\xe0\xb9\x62\xbd\x93\x23\x86\xfc\x6c\x27\x5f\x3f\x83\x4a\x82\x04\xdd\xa2\x5d\xd9\xbd\x4b\x25\xcc\x7c\xe3\x06\x04\xd8\x87\xf2\x2c\xb6\x5d\x63\x55\xc8\xa5\x9c\x8f\x7c\x49\x83\xd6\x1b\xb2\x83\x2a\xbf\x58\x8c\x8b\xb6\x19\xa6\xc5\x87\x3d\x93\x67\xa1\xf5\xd6\x0e\x86\xfc\xf0\xdf\x2f\xde\xbd\x3d\xc9\x3f\x3f\xbe\xbe\xbe\x7e\xcc\xc5\x1f\x1f\xda\x2d\x47\xc9\x5b\x71\x3c\xf8\xff\xff\xcd\xeb\x93\xbc\xec\x97\x8f\x66\xf9\x1b\xa1\xda\x91\x18\xaa\x43\x02\x9c\x8d\x60\xdd\x27\x02\xf1\xfb\xa9\xb9\xee\x18\xd5\x82\xfa\xb7\x4d\x3c\x73\xc7\xab\x67\xae\xe8\xf6\x2c\x08\x5c\xd2\x1d\xa3\xb0\x6c\x4b\x78\x72\xe3\xc3\x65\x10\xd7\xf0\x71\x2a\x72\xf0\x10\xa4\xa2\x76\xb4\x1b\xaf\x96\xfa\x52\xf1\x00\xc4\x9c\x17\xcf\xe0\xb6\x18\x15\xb4\xbc\x70\xe1\x14\x66\x8d\x2b\x51\x29\xb6\x92\x25\x07\xcc\xa2\xb4\x85\x28\x57\x3f\x0d\x0b\xe3\x86\x3b\x1e\xda\xfc\x21\xff\x77\xdc\x29\xdd\x98\xf9\x85\xb3\x0c\xb7\x00\x3c\x1b\x16\xc6\x13\x4a\x4e\xfa\xa1\x01\xc8\xc3\x50\x26\x7d\xc5\xbc\x20\x81\x8d\x2a\x51\x65\x18\xbb\x80\xf3\xa3\x2d\xa6\x1c\x03\xae\x49\x75\xe3\x22\xa9\x79\x7e\x3a\xdb\xe6\x45\xae\x0e\x9e\xe8\xb5\x77\xb3\x5d\x8f\xe7\x21\x71\xff\x48\x1c\x3f\x6e\x01\x0d\x81\x54\xbc\xd3\x86\xb8\x01\x9f\x88\x73\xf3\xea\x24\x37\xc7\xe0\x13\x35\xc2\x9d\xd8\xd5\x15\xfa\x3a\xd4\xf1\x5b\x9c\x32\x55\x20\xb2\x9f\x70\x02\xe0\x9f\x1c\x7d\xf2\x86\x46\x42\xb3\x58\xfd\x7d\x62\x52\x70\x98\x4a\x80\x82\xc9\x45\x76\x14\x1e\xa0\xaa\x84\x1b\x8b\xef\x42\x5a\x73\x7d\x69\xad\x1c\x66\xb8\x37\xad\xcb\x1e\xa1\x74\xa7\xa8\x89\x68\xab\x02\xde\xc5\xfd\x6f\x14\x5a\xcf\x4f\x61\x45\x25\x0c\x59\x42\xff\x40\xfc\x52\x89\x67\xfa\x38\x9f\x8d\xa8\x6b\xe4\x5d\x95\xba\x8e\xf8\x33\x05\x1c\xb4\x31\x62\x8b\x74\x29\xc6\xe2\x54\x6c\xe1\x18\x07\x28\x57\x26\x8c\x33\xb1\x70\xfe\x88\xe5\xf8\x2c\xa4\xa5\xfc\xb4\xd1\x19\x9c\x1c\x29\x91\xc1\xe5\x3b\x50\x02\x7f\x26\x30\x67\x9e\x3a\x5d\x33\x08\x5c\xae\xd9\x52\x62\xb1\x49\x46\xe1\x57\x3d\xaf\x22\xb5\x5a\x30\x3d\x09\xfa\x37\xc8\x1c\x3e\x2e\x3f\xa4\x4d\xc4\x9c\xd7\xe2\x6a\x21\x5f\x7e\xb6\xf6\xdb\xe6\xc6\x22\xd4\x3e\xc3\x2f\x8d\xba\xef\x47\x16\xc1\x74\x50\x11\x72\xaa\xae\xc8\x4c\x03\x0a\xb5\x43\xa6\x64\x25\xfc\x63\x79\x4c\x19\x4b\xca\x5a\x6d\xaa\xd3\x62\xc7\x20\xa4\x3d\xac\x0b\x69\x38\x3f\x79\xa6\x57\x03\xbd\xba\xa9\x41\x74\x12\x3f\x80\xbf\xba\x07\xf2\x54\x8a\xaa\x59\x11\x14\xba\xe1\xf5\x16\x89\x73\xd0\xd4\x28\xc6\x91\x55\x03\xd4\x30\x02\x6c\x1c\xe9\xd1\x08\xb0\xbe\xa8\x0f\x03\xeb\x8a\xe2\xe4\x0f\x93\x30\x69\x0d\x4f\x96\x65\x1c\xe4\x35\x0e\xf5\x0b\xe2\xbc\x4e\xaf\xdc\x50\x74\xba\x73\xa9\x6f\x73\x86\x59\xf9\xc1\x7d\x41\xc4\xd7\xe1\xad\xdd\x2f\x90\xa2\xa6\xfa\x12\x27\xc5\xcd\xee\x5d\xae\x31\xab\xea\xea\x6a\xb6\x68\x49\x88\xe0\xb0\xaa\x78\x82\x9c\xcf\x26\xfe\x9d\x5f\xe0\xb7\x80\xe8\x5d\xf4\x1f\xf4\x52\xba\x24\xea\xad\x8f\x1f\xd4\xad\x57\x12\xe1\x8f\x3a\x7c\x92\xf9\x19\xe5\x88\x6f\xea\xdb\x06\xf1\xf1\x25\x67\x26\x45\xf0\xee\x2d\x7f\x21\x20\x6c\x78\xf7\x16\x85\x2e\x38\xc5\x81\x75\xfb\x2d\xf1\xdf\xfa\xfe\xf7\x05\xff\x40\xa0\x15\x07\x71\xa8\x49\x12\x2f\x57\x06\xf3\x8b\xfc\xf4\x50\x5c\x65\xb8\x1e\x62\x2a\x58\xbe\xf5\xa4\xd7\xb9\x21\x3c\x44\xe5\x2c\x30\xd4\xe0\x08\x8c\xd0\xaa\x82\x74\x10\x41\x7c\x00\xc9\xfb\xab\xa0\x18\x8a\x10\x3a\xd1\x20\x58\x4f\x5f\xbd\x95\x9f\x08\xc3\xa2\xf7\x9e\x11\x2d\x86\x9d\x91\x25\x4b\x1f\x87\xd8\xe3\x3a\x79\x29\xd7\x8f\x09\x8e\xf3\x72\x97\x6c\x6e\x9b\x12\xb5\x3a\xc4\x8b\x91\x3a\x38\xae\xcc\x8e\x68\x41\xf0\x75\xbe\x60\xd5\xab\x3e\xd7\x5f\xda\x03\x5f\x1c\x53\x26\xba\x7f\x36\x1c\x81\x84\xc8\xc7\x95\x77\x8b\x0e\x5a\x0a\xae\x36\xb3\x10\x39\xb3\xa9\x50\x39\x96\x27\x11\x8e\x44\x5b\x2e\xbb\x54\x41\x02\xc4\xaa\x2d\xae\xe0\x1b\xc8\x7f\x43\x2a\x0d\x2c\x16\x3b\x6f\xcb\xc7\xc3\x62\xb4\x78\x82\x52\x17\xf8\x08\xe9\xea\xdb\xc7\x7f\x42\x5a\xb1\x11\xbf\x92\xb8\x32\x71\xc5\xcc\x37\x1c\xd7\xc8\x35\x4a\x80\x6e\xc4\x41\x83\xd8\x05\xf1\x9d\x4c\xec\x11\xc4\x3c\xf2\x63\xf5\x4e\x83\x88\x71\xdd\x6d\xf2\x30\x3f\x1c\x16\xac\x97\xf8\xb5\xfb\xb6\x59\x1d\xf8\x59\x03\xdf\xef\xa4\xb4\xb0\x2f\xa5\x61\x23\x3f\xf6\x0a\x19\x03\x31\x57\xe4\xd9\x01\xf6\x85\x69\x69\x22\xf8\xa9\x15\x09\x48\xa0\x9b\xbc\xda\x51\xfd\x9f\xe4\x69\x5f\xa9\x9e\x78\xcb\x10\x5f\x97\xd8\xcc\x5a\x42\x7c\x5a\x1e\xf4\x53\xf6\x78\x50\x52\x26\x3e\xe4\x69\x46\xe1\x18\x1b\x82\xf2\xc1\xf7\x2d\x7d\xc8\x2a\x66\x62\x39\xde\xb8\x8c\xdd\x75\x20\x39\x71\x2c\x75\x7c\xca\x58\x4e\xea\x2f\xe4\xd0\x42\xb7\xb3\xc6\x2a\x0a\x39\x2c\x1f\x09\x93\xff\x5a\xbe\x58\xfb\x39\xc6\xa6\x71\x04\x68\xca\x7b\x3c\x5c\x6b\x07\x1f\x26\xe0\x2f\xe5\x03\xb6\xb1\x34\xc4\xbb\xe4\xe2\xff\x56\xf4\x09\xa6\x98\xc2\x54\x97\x96\xb6\xfd\x63\x1c\x5f\xb1\x1b\x43\xaf\xcf\xd0\x9c\x22\x4a\x44\x99\x11\xb6\xb3\x3f\x9d\xed\x14\x38\xd4\xa5\xdb\x05\xd8\x13\x37\x0c\x3c\x5b\x47\x1b\x4d\x98\xc3\x08\x95\x1a\xca\x26\x80\xe5\x28\xd4\xac\xa8\x60\x1f\xc2\x4c\x9f\x7e\xd6\xce\xd0\x83\x0e\x0f\x7a\xb0\x2e\x29\xd8\x9c\x08\x65\x6e\x39\xeb\x46\xad\x79\xc3\x8d\x34\x71\xc7\xe1\x36\xdc\x03\xa9\x3f\x9e\xab\x47\x59\x10\xa6\xa0\xba\x47\x46\x2c\xc8\xa8\x2e\xf5\x5f\x76\xfb\xca\xf0\x20\xbc\x8c\xab\xfd\xd7\xdb\x5a\x38\x98\xed\x3b\xcb\x7e\x6d\xda\xf5\x87\xf8\xc2\x61\xd0\xe3\x27\xaa\x78\x68\x73\x18\x26\xbc\x48\x74\x04\x30\xbe\x52\x14\x6b\x34\x04\x7e\xc1\xdb\x34\xd5\xc0\x33\x80\xe8\xd2\xe4\xe1\x5d\xf8\xa5\x5a\xc0\xde\x99\x45\xa9\x93\xc7\xd5\xd4\x61\xd4\x37\x27\xc1\xe3\xa2\x1b\xe2\x2f\x7a\xff\x5a\x5d\xa0\x39\xc0\x19\x7f\xf0\xfb\x77\x1c\xf9\x8a\x15\xe9\xe2\xce\xf2\x0a\x09\x38\x87\xd8\xa3\x85\x9f\xde\x13\xad\x28\xfd\xcd\x10\xb7\x49\x4d\x07\x9c\xaa\x5f\x9a\x3e\x78\x83\x2c\x79\x33\xcc\x05\x23\xc2\x6b\x7e\x89\x97\x2b\x57\x8e\x59\x99\xf0\x7f\x0f\x0f\x44\x6a\x27\x64\x0a\x91\x7a\x1b\x74\x12\x0d\x97\xa9\x83\xdc\x9c\xe0\xf5\x2f\xc4\x97\x58\x2f\xdd\x2b\x52\xe1\x85\xc1\x3a\xb9\x63\xda\xcd\x62\x33\x8e\xd6\x6c\xc4\x39\x3e\x16\x63\xa6\x11\x7e\xb7\x3f\x09\x7c\x12\x89\x52\x15\x2c\x85\x44\xb3\x96\xe4\x7c\x4b\x92\xee\x36\xd1\xb8\xa0\x22\x96\x10\x7e\x3a\xf2\x46\xda\xf8\x45\xcd\xaf\x8f\x43\x3a\xae\xe3\xf6\x48\xa4\xce\x3f\x71\xec\x96\x78\x8b\xa7\xea\xf4\xdb\x5c\x5e\xad\x3c\x78\xa4\x2b\x64\x4d\xbd\xd6\xf5\x7b\x1c\x38\x53\x50\x47\x96\x92\x29\x08\x35\x7d\xa9\x49\x59\xfd\x42\x09\x53\xff\x35\xb7\xd0\xf4\x0d\xca\x61\xaf\x47\x0f\x4a\x25\x9d\xfe\xba\x87\xa5\x8e\xba\x60\x24\xb4\x62\xa8\xa4\x18\x45\x73\xc7\x00\x6f\x2d\x92\xc6\x76\xf7\x1d\x0e\x8a\x75\xe7\x02\xa1\x56\x53\x89\xea\x2e\xc6\xb5\xbb\x43\xbb\x1f\x31\x9d\xdf\x16\xe3\x7d\xd8\x4b\xa6\x31\x21\xf4\x82\xef\xe4\xad\x25\x3c\x5f\xd2\x0c\xcc\xb0\xbf\x3f\xee\xfb\xb4\x45\x94\x95\x18\xd7\xa6\x7d\x06\x1f\x63\xf3\x17\x35\x62\x57\x2e\x96\x95\x48\xac\x91\xd0\xc6\x99\x03\x07\x2a\x93\x3b\x78\xf3\x54\xa9\xf6\x2c\x3e\x99\x39\x4f\x62\xbd\xbf\x89\x8f\x72\xc6\xb0\xef\xdf\x85\x62\xea\x1c\x69\x0f\xc5\x0c\xd2\x23\xa5\xc4\x2d\x8a\xbd\x04\x5e\x8f\x40\xf2\x1b\x5c\xe2\x64\xce\xb0\x7c\xda\x86\xfc\x9d\xb7\xcd\xb6\x0c\x1d\xcd\xdf\x37\xec\xde\x6a\x20\x69\xe0\x81\xb4\x60\x28\x13\xd2\x55\xf0\xb7\xc0\xdb\x21\x5d\xde\x18\x45\x74\x11\x97\xaa\xa7\xa5\x0f\xff\x07\xce\x5a\x6b\x87\xa0\xf2\xdd\x10\xba\x46\x28\x2f\x3d\x57\xdf\xf2\x2b\x98\x38\x54\x67\x88\x6c\x20\x6f\x78\x6a\x4a\xda\xa8\xa4\x31\x8f\x13\x03\x53\xb2\xfb\xbd\x3e\x48\x31\xce\x1f\x04\x7c\xc6\x99\x12\x42\x3d\xdb\x23\xb6\xcc\xa2\x6b\xfc\x8c\x5a\xcc\xc6\x69\x04\x64\xa9\x75\x10\x0f\x53\xee\x98\x24\xed\x7a\x88\x2f\x69\x18\xf7\x07\x86\xcd\x9d\x98\x0a\x17\x9a\x35\xd5\x2d\xcb\x33\x4d\xd2\x0a\x7c\x15\x63\x3f\xe4\xf1\xf7\xa4\x1f\x1e\xe2\x4b\xfa\xc1\xad\xe0\xae\xb6\x88\x7c\xb7\xf4\x87\x23\x48\x8a\x7b\x65\xe2\x52\x35\xec\x62\x0c\x45\x7c\xe9\x4e\x72\xb8\xa5\xad\x06\x9c\x09\xdb\x7c\xc6\x47\xaa\xe4\x88\x17\xd1\x04\xf3\x20\x2e\xa2\x93\x2f\xb5\xdc\x4d\x04\x70\x29\x9e\x4b\x06\x50\xe7\xfc\x99\x44\xbd\x1b\x9f\x4b\xd2\xaf\xc8\xec\x81\xfb\x52\xda\xa0\x99\x77\x1f\xc9\x02\x67\x31\x59\x85\xf3\xf3\x87\x0a\x58\x3f\x5b\xc9\x15\x20\xa2\x6b\x0a\x6f\x30\xd7\xea\xb8\xb2\x40\xcc\x01\x15\x88\xf8\x18\xce\x76\xac\xe7\xdb\x9c\x3d\xa1\x84\xd9\xc4\x86\x6a\xae\x78\x80\x62\xe3\xbe\x77\x7d\xe5\xd0\x10\x8d\xbf\x4f\x5b\xdd\x7a\x3f\x6e\xdc\x95\x78\xae\xcb\x33\xd9\x01\x61\x8e\x8a\x49\x33\xbf\xd5\xc7\x08\x12\xd1\x6e\xdd\x22\x5e\x80\xad\x35\x13\x0b\x87\x0a\xa8\xf0\xbb\x30\x4a\x56\x58\x0c\xa8\x01\x3c\x62\xa8\xa2\x07\xb7\x11\x85\xaf\xe8\x00\xc8\xc6\xed\x3d\x00\x59\x90\x08\x35\x1c\x45\x36\x92\x80\xdb\x3a\x22\x7b\xfe\x2b\x3a\x02\xba\xf1\x85\x1d\x39\xb1\x5e\xe8\x83\xb7\xab\xd5\xe4\xfe\xbf\xad\x7f\x03\x41\x08\xc8\x99\xbc\xc8\x6c\xc4\x00\x9e\x62\x90\xd4\x26\x3d\xc5\x9c\xc2\x79\x36\x1b\xee\x12\xe7\xea\xe6\x76\x8a\xf3\xaa\xb5\xbe\xc0\xa9\x4d\x6f\x1f\xe8\x29\x17\xab\xaa\x69\xdd\xf1\x92\x5b\xdd\xfb\x1b\x0a\x69\xd0\x78\x76\xb4\xee\xdb\x1b\xe5\x74\x10\x4f\x38\x89\x79\x1f\x03\x90\x8b\x4c\x07\xe7\x0e\x79\x0e\xfb\x57\xac\xd5\x87\x6c\x55\x74\x9b\x45\x53\xe0\xe1\xd1\x67\xf6\x9d\x89\xae\x4c\x0c\xdc\x78\x1b\x39\x3e\x8a\x9c\x0f\x1f\x49\xbe\xf5\x85\xeb\xf4\x0d\xf4\xe1\xa3\xe8\x9d\x3c\x0b\xb4\x36\x16\x71\x7d\xd0\x5b\x73\xea\x0c\xcb\x33\x8e\xdb\x54\xac\xfa\xe6\x84\x6c\xd7\xd4\x95\xf8\xdd\xbd\x91\xaf\x8a\x5f\xb8\xf6\x57\x3f\x9f\xf3\x0f\x79\x8e\x4d\x53\xf8\xa6\x5f\xd6\x37\x3d\x1e\xdb\xb8\xe4\xbf\xdf\xe5\xf7\x57\x59\x1c\x3a\xb4\xda\xac\xa0\x5b\x8a\x6e\x54\xbe\x5d\xbe\x7b\x4e\x19\x17\xd7\x5b\x7b\x1f\x3a\xd6\x80\x6e\x42\x07\x7f\x70\xdd\xd6\x4e\xa2\xd2\x43\x37\xd5\xa2\xdd\xe7\x84\x37\x08\xeb\xff\x17\xa6\x9d\xf9\x7e\x01\xa5\xeb\xe2\x47\xd1\x5c\x9e\xb8\x84\x64\x41\x7c\xc6\x3e\x3c\x11\x98\x24\xa7\x47\x69\x4c\x97\x27\x3f\x92\x24\x8e\xf4\x9a\x24\x14\xcb\x51\x2b\x66\x81\xf1\x69\xe6\xfe\x1c\x53\xcc\x11\x3a\xa9\x3d\x7d\x27\xce\x67\x89\xc7\x7f\x92\x24\xb7\x4b\x06\x23\x11\xbd\xb0\x4f\xdb\x36\x6b\x3a\x3a\x45\xd7\x9c\x0e\x4f\xf9\xf5\xb4\x4e\xbb\x17\x9d\x54\x81\xf0\x50\x3e\x05\xc6\xe0\xbe\xe8\xd2\xd2\xd8\x9f\x3e\x41\x2f\xf3\x8e\x00\x63\x1c\x22\x22\x3e\x13\x88\x64\x62\x78\x40\x26\x91\xc5\xa7\x20\xbb\xeb\x4a\x9e\x62\xb8\xc0\xc7\x24\x4c\x7b\x80\xd6\xf1\x50\xbb\x5c\x76\x33\xe0\xb8\x16\x78\x4a\xaf\xd1\x87\x4b\x38\xf0\x40\x78\x36\x2f\x7f\x87\xed\xd8\xdd\x5a\xc8\x9d\x8b\xec\x8f\xae\x4f\xf5\x69\x49\x77\xd3\x60\xfa\x80\x8c\x35\xeb\x51\xab\x7e\x5e\x45\x94\x0f\xbb\xc8\x79\x14\x88\x81\xa2\xde\x0a\x96\xfd\x45\x75\x0c\x7a\x19\x21\x42\x35\x5f\xdf\x55\xd0\x7f\xa6\xf7\xd4\x9b\x41\x27\x13\x9a\x67\x20\x77\xd4\x30\xe8\xe2\x64\x15\x5f\xdf\x49\x9c\xb4\xf5\x5a\x4e\x9d\x23\x9d\xbc\xc1\x5b\x8b\xed\x4a\x05\xd7\x2d\x3b\xd5\xbe\x30\x47\xbf\x3b\xaa\x3c\xd6\xeb\x5b\xeb\xfc\x8a\x61\xac\xab\x7e\xbe\x5e\xc6\xee\xf3\x3b\xb3\xed\x82\x09\x37\x1f\xee\xe5\x52\xe2\xeb\xd4\xa9\xd2\x72\xba\xf8\x6d\x13\x8c\x0e\xb1\xba\x62\xaa\xfa\x63\x7d\x6b\x4b\x76\xcf\x61\x45\x1d\x3f\xcb\xab\x2e\x03\xef\x4b\x31\xb3\x3c\x98\x51\xda\x93\x42\xdf\x00\x2a\x61\x5c\xef\x1e\x48\x18\xe7\x87\xcb\x02\x77\x13\xbf\xc3\xf3\x0e\x20\xed\x28\x6d\x9c\x2d\xcf\xd6\xa3\x5b\x1b\x1a\x8c\xc5\xd1\x75\x37\xb7\x2d\xba\xd2\x97\x5f\x34\x02\xe7\x20\xe3\x87\xc1\x88\xa2\x44\x0c\x24\x8f\x78\xec\x64\xe2\x1e\xb2\xbb\x16\xbf\x1c\xcc\xbe\x68\xea\xe3\xa9\x87\xb6\x05\x57\x57\x4b\xe7\x91\x01\xf9\x76\x6f\x59\xa1\x07\x49\x2f\xbe\x6e\x8c\xfc\x8e\xd8\x68\x23\xbc\x47\xb2\xbe\x2b\xf6\xbb\xb6\xc3\x54\xc5\xff\xea\x76\x68\x5d\xaf\x46\x8f\xcd\x3b\xf6\x00\x2f\x29\xd1\xdc\xf5\x15\x8e\x89\x0b\x79\x59\xe9\x17\xfc\xf6\xe4\x5a\x5f\xd3\x5f\x37\x6d\x43\x18\x27\xc1\x9b\xf5\x55\xf8\x17\x96\xd6\x4d\x14\x80\xc5\xe2\x66\x7e\xd0\x58\x15\x56\xe6\x0d\x92\x89\xed\xe3\x40\x0f\xb1\x14\x98\x27\x2b\xc3\x7a\xe8\xa5\x5a\x2f\xc0\x4d\x59\xa9\x53\xcb\x70\x25\xb5\x4c\xb3\xe0\x0b\x5f\x1a\xc3\x0b\xc0\xef\x34\xc5\xc1\xc2\x4e\xc8\x11\x91\x09\x03\x0e\xfb\x39\x0f\x15\x21\x1c\x24\x39\x7f\x8d\xe4\xfc\x92\x93\xc7\x2d\x58\xaf\x42\xb1\x41\xa7\x8e\x95\xbb\x6a\xcb\x51\x99\xe7\xfc\x00\xcf\x10\xde\x66\x6e\x53\x16\xfb\xd1\xbc\xbd\xa4\xc4\xd1\xac\x01\x72\x3c\x01\x80\x3d\x3e\x0b\xbe\x54\xb5\x82\x10\xed\x4b\xbc\x5a\x6d\x8f\xb5\x51\xc1\xbb\x68\x08\x5f\x33\x13\x7f\xa4\x84\x72\x53\xc3\x5e\xa9\x6d\x6f\xd4\xab\x66\xc1\x21\x59\x3a\x83\x7e\x27\x3f\x1d\xd4\xa2\x69\x7a\x92\xe5\x08\x94\xd8\x48\xb8\xca\xca\x34\x3d\xb5\x74\x66\x84\x97\x1f\x47\x33\x25\xd0\xe3\xa9\x12\xe8\xe3\x73\xb5\xe3\x67\xd0\xa8\xad\xf6\xb0\xec\x0f\x44\x73\x42\x83\x6f\x2e\xf8\xf9\xb4\x8b\x90\x31\x6a\x71\x54\xd2\x63\xe8\xb0\xf0\x54\xcb\x4b\x7e\xc4\x6e\xb2\xe9\x33\xce\xb9\xb5\xed\x51\x59\xdf\xf8\xa8\xf8\xd4\x4e\x69\x1b\x22\x2c\x4c\x94\x16\x87\xe5\xc7\x92\xdf\xca\xe9\x36\x73\x38\x75\xf8\xba\xce\x0d\x2c\x7f\x0a\xb0\xfc\x25\x81\xe5\x97\xd0\xb8\x4d\xd4\x4a\xe7\xe8\xae\xec\x0b\x38\x21\xb9\x5a\x5e\x9c\xd1\x0a\x48\xf2\x54\x29\x68\xe2\xe6\x2a\xff\xe8\x2e\x64\x96\xd4\xd5\xf0\x0e\xca\x3a\x15\x89\x4e\x03\xc8\x54\x6d\x1c\x97\x59\x0e\xf4\xe5\xcd\x52\xdf\x67\xfa\xdc\x73\x1f\xde\x4b\x8a\x83\x85\x8c\x47\xb0\x46\x23\xe1\x87\x82\xb0\x2e\x04\x7e\x99\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x9d\xb3\xef\xce\x14\xe0\xbe\x90\xcd\x74\x14\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x32\x95\x42\x56\x44\xc0\x96\x7b\x5f\xfa\x72\x35\xe1\x1c\xfc\x1c\x70\xed\xcb\xde\xad\xe6\x34\x85\x65\x0b\xad\xb3\xa8\x44\x23\xad\x3d\xe6\xab\x60\x22\x57\x40\x9a\x90\x14\xe3\x84\xf1\xec\x8e\x7d\x5b\x5e\x12\x86\x46\xd2\xe2\x01\x4a\x7f\x35\xcd\xc2\x83\x85\xa0\xe9\x9a\x0e\x77\xf1\xb6\x5c\xb3\xa2\x42\x2e\x92\x23\x0c\x17\x6e\x04\xbd\x47\xb2\x49\x37\xfe\x8e\xd7\x65\x83\x51\xba\x81\xa5\x4e\x89\x36\xcc\xbb\x43\x94\xcd\xb4\x0e\x1f\xa0\x57\x47\x06\xd1\xc5\xbc\xf2\x52\xb5\x83\x79\xe7\x09\xa4\xbc\x1a\x28\x86\xcd\xad\x2f\x0d\xb9\xd2\x04\xb5\x41\x0d\xaf\x21\x73\xba\x59\xde\x17\x5d\xc7\xef\xf3\x46\x55\x37\x8c\x05\xac\x72\x91\x8b\x29\x50\xb5\xc3\xed\xf6\x50\x2b\xc7\x64\xbd\x57\x16\x49\x76\xb5\x8f\xd6\x66\x6f\x1e\x6b\xce\x5d\x46\xc5\x38\x17\x0e\x53\xe0\xd7\x92\xe2\xc8\xae\xf8\xac\x4f\xe8\xc5\x37\x3a\xdf\xe8\x6b\x9c\xee\xfe\xec\x99\xe5\xbe\xe6\x87\x39\x8f\x95\x35\x1d\xdf\xc3\x0b\x22\x30\x8f\xbf\xc5\xc3\x26\xb4\x1f\xd6\xdb\x66\x51\xb0\x13\x8b\x3c\xb7\x8a\xb7\x3d\x1f\x69\x1d\xfc\xa4\x8e\x43\xca\xe1\x93\xcd\xc5\x00\x49\x69\xf4\x9b\x6a\x41\x83\x12\x41\x7f\x5c\xc0\x00\xe4\x22\x18\xa0\x5c\x4b\x8a\xe2\x49\x21\x84\xf5\xe0\x0c\xc1\x50\x7e\x33\x2c\x28\x2d\x0d\xe7\x61\x6f\xe7\x7b\x3d\x73\x75\x0c\x1f\xd5\xe0\xca\x40\xb9\x2c\x7b\x92\xd9\x3e\x89\xa3\xe4\xeb\x91\xb7\x2d\xe7\x86\x6c\x77\xd5\x75\xf4\x29\xcc\x49\x94\x89\xfa\x7d\xc3\x18\x21\xfd\x86\x9c\xb7\x9a\x8f\x53\xdc\x40\x20\x52\xbe\x9a\x1d\xb5\x8e\xae\xa7\x12\xa6\x94\xfb\x1b\x2f\x57\xf3\xb3\x3c\x39\xf3\xbc\x88\xf7\xcf\x22\x96\xbf\x2a\x1f\xa2\x5b\xc4\x00\xf5\xec\xb6\x1b\x63\x67\xd0\x91\xa0\x3a\x49\xdf\x01\x8e\xce\x22\x3e\x34\x47\xda\x8f\x36\x52\x84\xc6\xf3\xcd\x7b\xed\x58\xda\x01\xb1\xe3\x35\xad\xf7\xad\x4a\x95\x9b\x49\x57\x26\xdc\xa7\x4e\xdd\x92\xdd\xe6\x1b\x4c\xb5\xca\xfd\xe1\x01\x75\x4f\x8c\xdb\x09\x95\x47\x09\x4f\xbd\x91\x90\xba\xf9\x20\x29\x1a\x7e\xcc\xe6\x23\x2a\x58\x10\xee\x61\x7b\x6e\x3b\x27\xad\x49\x89\xf1\xd3\xe6\x69\x17\x24\x65\x6c\x1a\x96\x74\xd5\x1e\xe6\xf6\x5e\xb0\xaa\x82\x67\x50\x21\x0a\xf7\xd6\x5a\xda\xf0\xe9\x49\x68\x86\x95\xce\x0e\xba\x3c\xa0\xb4\x49\xb7\xa5\x94\x84\x38\xb5\xab\xf6\x4a\xcc\x35\xcb\xf5\x5e\x52\xfc\xab\x23\x92\x52\x22\xc6\x10\x53\x1e\x89\x36\xb4\xd2\xf4\xb1\x53\x96\xeb\xa4\x56\x33\xe8\x9c\xab\x15\x50\xd3\x87\x85\xeb\x4d\x57\x92\x1c\xc1\x8f\x82\xd3\xce\xed\x9b\x65\xb3\xc5\x69\x29\x69\xbc\x69\x91\xa6\xb0\xc3\x5b\x1a\x92\x8a\x2b\xd1\x7c\xa5\xa4\xeb\x35\x65\x2f\xef\x8e\x9c\xf3\xbb\x23\x92\x02\xed\xdd\x0a\xfe\xd2\xac\xac\x7b\xf6\xd6\xa7\xdb\x49\x65\xb9\xe7\xfa\x7b\x0a\xc6\xb9\x57\x15\x2d\x3f\x7b\xf2\x9d\x06\x02\xb6\x3a\x10\xba\xb8\x69\xc5\xcf\x79\xbf\xe5\xfe\xf2\x6b\x96\x30\xbc\xb1\x19\xe2\x80\x20\xa0\x9b\x6a\xbd\x81\xc7\x01\x91\xa4\xb5\xb8\xf0\xf3\x2e\x9a\xd9\xc4\x33\x1b\xa4\xf1\xcd\xc1\xfe\xa8\x99\xe5\x29\x7b\x57\x3a\x10\x8c\x08\x00\x61\x44\x45\x2f\x81\xa0\xca\xa9\x6b\x79\x79\xc8\x3d\x0a\x3d\x7c\x1e\x08\x04\x22\x1c\xd8\xdc\x7b\xbe\xca\xf5\xb8\x42\xd4\xd2\x9d\xbe\xab\x28\x77\x4c\x93\x80\x57\xb3\x51\x0b\xe6\x67\x85\xf0\x93\x77\xf4\xa6\x3b\x58\xd7\x2f\x0e\x77\xf5\x9c\x50\x01\x41\xde\xf0\xf7\x28\x58\xc7\xd2\xe0\x42\x1f\xdf\x2a\x59\x7f\x1c\xb3\x78\xa9\x14\x2f\xe4\xf2\xc9\x67\xc3\x1b\x09\x85\x69\x93\x2c\xa1\x30\xad\x66\x98\xf6\x02\x80\x18\xfc\x13\x88\x1d\x9f\xb5\xf3\xae\x60\xc2\x44\xa7\xca\x2a\xbf\x38\x35\xa4\xdf\xf5\x7b\x7b\x39\xfb\xe2\xcd\xe5\xf9\x2d\xbb\x88\x41\x15\xc3\x01\xe9\xd0\x9c\xb3\x14\xd5\x91\xe5\xf0\xdd\x02\x34\xc8\x8e\x51\xe5\x0c\x9c\xeb\x64\xeb\x74\xd3\x70\xb7\xf1\x6a\x8c\xbc\x24\x7d\xd1\x9c\xf1\xfb\xf5\x7c\x29\x48\xca\xcc\xf2\x37\xc4\xcf\x54\xec\xab\x69\xad\xa9\xbf\x20\x3f\x32\x5b\xee\x8b\xd6\xde\x14\xc2\x93\xc1\xf9\x83\x93\x07\xb3\x84\xee\xcc\x7b\x3c\x17\xa6\x81\xce\x2e\x5f\x5f\xd0\xe7\xb2\xbd\x11\x67\x04\x1d\xe9\xc7\x6a\xcf\x60\x73\xbe\x53\x26\x0c\x35\xa5\x00\xf6\xcf\x48\xb1\x8d\xcf\x56\xeb\xb2\xfd\xc4\xd1\x37\x15\x7f\xce\x4f\xdf\x40\x59\x44\x49\x9e\xec\x68\xd3\x08\xb5\x6d\xec\x7a\xec\x04\x2d\x47\x93\xb0\xeb\x46\x3a\xab\x3d\xce\x1e\xfa\x63\xf5\xb8\x28\xc0\x43\x9e\x5a\x3c\x0b\x6c\xa6\x47\xfc\x5d\x0a\x9d\xb0\x79\x81\xaa\x0f\xe5\x80\xb4\xcc\x5d\x17\x94\x66\x09\x1d\xf7\x87\x76\x5a\xcf\x17\xba\xe8\xf9\xca\x1c\x83\x75\xdb\xa8\x27\xe3\x29\xa5\x25\x12\xc8\xb9\x1c\x2d\xea\x2b\x31\xa8\x3a\x78\x4d\x8c\x4b\x78\xb3\xfa\x78\x62\x27\x5c\xdf\x6e\x71\x77\x53\x94\x03\xd7\x55\x85\xfb\x69\x47\xaa\x16\xfe\x0b\x30\x84\xe1\xf0\xb7\x50\xe3\xa4\x1a\x9a\x23\x8b\x17\x43\xc6\xf1\x03\x0d\x62\x50\x76\x91\xd1\x84\x97\xc7\xa9\xaa\x3c\x97\x1b\xe6\x80\xe7\x4a\xbb\x71\x17\xeb\x25\xda\x69\x53\xa1\x06\x03\xb3\xaa\x50\x53\x3b\xb3\xc2\x16\xfb\x7d\x38\xba\xf7\xfb\x6d\x72\x6e\x3b\x90\x4f\x42\xfa\x1c\xc4\x9f\x35\x44\x9d\x03\x92\x6b\xdf\x1e\x88\x6f\x7f\x2b\xc0\xf0\x48\xd7\xe4\xe6\xea\x8a\x1f\x16\xe7\x17\x63\x34\x50\x2a\xff\xe4\x68\xd6\xa1\x7d\x0d\x66\x30\x67\x9d\x2e\x74\xa4\x3c\xa6\x67\x1a\xe1\xe0\x3d\x12\x59\x28\x35\xf0\xf6\x80\xa5\xe4\xfe\xbe\x3f\xd4\x22\x6e\xbb\x2c\x6d\x88\xb3\x7c\x23\xe0\x20\xdb\xa6\xe9\xed\x65\x7d\xc7\x3e\xbe\xa7\x64\xe2\x15\xfa\x4d\x98\x60\x36\x61\x2f\xe7\xf2\xc0\xb7\x2b\x03\x03\xfa\x52\xee\x5c\x8d\x0a\x51\xbf\xc7\x25\xa8\xdf\x47\xc0\xc5\x4d\xcb\x98\xaf\x0b\xfc\x92\xe3\x22\xf4\x18\x51\x0d\x65\x5b\xd8\x80\x25\x6d\x88\x37\x98\x83\x50\x71\xb7\x71\xa8\x71\xf1\x72\x1a\x2f\x18\x6a\xcc\x2d\xba\x4c\xbc\x8b\x3a\xd7\x38\xa5\x73\x41\x39\xe5\x7c\xfb\xfc\xa9\x86\x2f\x15\xcc\xf3\xc5\x8e\xa0\x01\x67\x79\x66\xce\x25\x6f\xe1\x0a\x62\xb9\xaf\xf1\x6b\x04\x94\xac\xdc\x68\x2a\x09\x80\xef\x3c\x22\xbc\x8a\x02\xfd\x47\x79\x23\x61\x55\x26\x00\xd7\xdc\x5c\x00\xa3\x5f\xf9\xc3\x07\x94\xf5\x58\xb2\x1e\x3c\x1a\x95\x61\x69\x7a\x77\xd8\xc9\x25\xd3\xea\xef\xa5\xbc\x7b\xc1\xdc\x80\x64\xa0\xb5\x0b\xb6\xc6\x9c\x71\xc6\x6d\x45\xbb\x89\x52\x5d\x58\xbb\xd5\x22\x2e\xdd\x33\xf3\x98\x98\x5c\x3f\x82\xf4\xec\x7f\x4c\xf5\x4c\x74\x4c\xf5\xc2\x43\x4c\x55\xac\xf2\x5b\x88\x52\xbb\x6e\x6b\xbb\xe8\xe2\xe2\x75\xba\x55\x63\x6e\xe4\x30\x1e\x32\xbb\x78\x8f\x9f\xed\xe2\xe7\x3d\xee\xe5\x7c\xa9\xf9\x91\x2b\xa1\x53\xed\x27\x55\x53\x87\x75\x74\x7f\xdb\x56\x7d\xf9\xa7\x7b\xf0\x82\xba\xd7\x57\xab\xc5\xbd\x47\x09\xd5\xab\x70\xe5\xce\x91\xbd\x6a\x79\x64\x7e\x82\xe6\x8e\x15\x53\x5b\x17\x85\xf3\xbd\xbc\x03\xa6\x5c\xa6\xba\x6f\xa7\x53\x6b\xf4\x28\x72\x13\x81\x1a\x79\x4e\xc2\xfa\xc5\xb7\x4b\x5b\x97\x11\x63\x8b\xe3\xbe\xea\x7b\xab\xe6\x29\x92\x63\x07\xe5\x3d\x32\x7b\x9f\x4c\x2f\xb2\x59\xf7\xf0\x24\xd9\xab\x5a\xee\xa7\x6a\x11\x8c\x24\x68\x22\xdf\x70\xff\xbd\xf2\x71\xd8\xff\x11\xb6\xda\x28\x6e\xc7\x5a\x65\xa8\x96\xc5\x9e\x78\xeb\x22\xb2\x52\x67\x92\x10\x0e\x04\x89\xaf\xc0\x17\x20\xe7\x5b\x75\x23\x90\x18\x0c\xb8\x06\x49\x1b\x99\xfd\x06\xc2\x60\x89\x33\x89\xa2\x57\x52\xe8\x3d\xe7\x05\x51\xcd\x17\xb6\xd2\x16\x5d\x26\xac\xbc\xc5\x3e\x98\x5c\x79\x04\x49\x9a\x6f\xcb\x7a\x0d\xb4\xfb\x4f\xfe\x49\x5c\x30\xff\x0c\x33\x24\x41\x0d\xa0\xbc\xe6\xcb\x7b\x3f\x58\x98\x03\xe8\xb0\x29\x25\xac\xed\x9d\xec\xaa\x5f\x1b\x7f\x26\xbf\xc1\xef\xe9\x1e\x2a\xec\x51\xf2\xab\xf9\xb6\x8e\xb4\x49\x1a\xb7\x7a\x2f\x7f\x7e\xfd\x6e\x00\x39\xb1\xbb\x35\x67\x82\x1a\x68\xce\xc4\xde\x87\xca\x1b\x44\x54\x25\x31\x28\xbb\x41\x45\xb1\x5b\x0c\x2e\x80\xcc\xaf\xe4\x4e\xaa\x3c\xfd\x2c\x4f\x98\xf1\xed\x0a\x2e\x81\x7d\xc7\x49\xcc\xdb\xe2\xb5\xe7\x51\xe9\x4e\xdf\x6c\x8c\xe0\xf1\x7d\x0a\x0d\x7e\xc4\x85\x67\x61\x92\xc5\x6b\x27\xcc\x31\x3c\x75\xa6\xa7\x58\x20\xc7\x33\x6c\xf9\x62\xa7\x8a\x2e\x7a\xb0\x4c\x4d\xd6\x24\x90\xc5\x8a\xb0\x5f\x6e\xbe\x02\xf4\x54\x7e\xa7\x40\x30\xe6\x7e\x2a\xb6\x01\xea\x95\x26\x8c\x5a\xad\x7d\x9b\xb5\xf8\x6a\x38\x42\x27\x1e\xa6\x8e\xd0\xc9\x1d\xae\xe9\x83\x5c\xa1\xf9\x8a\x6f\x65\xae\x9c\x02\x7f\xae\x49\x06\x6a\x20\xb1\x66\x83\xd0\xaa\x43\x3f\x69\x73\x55\x41\xf0\x3a\xc3\xaf\x04\xbb\x94\x46\xf0\xa6\x16\xd8\x48\x26\x58\x57\x2e\x25\x0c\x78\xbd\x0c\x33\x63\x36\xaa\x17\x67\x61\x6e\xc4\x9c\x35\x18\xcc\xb6\xba\x2a\x83\xf1\x4b\x47\xf3\x9a\xd2\x12\xe0\x4d\xdf\xef\x3b\x0b\x07\xc4\x91\xfb\x2e\xf2\x77\xf4\x63\x30\x08\x5f\x95\x8e\x24\xd6\x14\x66\xa6\x82\x45\xd2\x4d\x8c\x24\x4c\x4f\xb9\x41\xeb\x89\xe4\xc0\xf5\x48\x1a\x52\xe2\x75\xab\x57\xa8\xe2\x2e\x7e\xa1\x49\x83\x19\xbd\x2a\x57\xb8\x11\xbe\x9a\x87\x12\x3a\xaf\xcf\x2d\x87\xe3\x24\x40\xfd\x18\xe6\xb7\xea\x63\xc7\x59\x45\x3f\xd9\x69\x86\xb2\xfe\x20\xa8\x02\x6b\xae\x10\x7e\xde\xf5\x4a\x62\x2b\xdc\xd4\x7d\xf1\x39\x7f\x69\xf9\xbe\x06\xb6\x91\xa0\x34\x73\xf1\xe0\x65\x08\x12\xa5\x5e\x23\x01\xe7\x78\xc1\x17\xe7\xd7\x5b\x09\x2a\xf0\xe8\x68\x71\x0e\xc6\xd2\xd2\x31\xa2\x1a\x5f\xab\xe8\x2c\xa6\xa6\xb5\x71\x99\xe9\xda\x2c\x92\x41\xa8\x43\x9e\x6f\x7b\x28\x82\x22\x62\x19\x24\x05\x09\x23\x8b\x76\xad\x66\xcb\xd3\x76\x7d\x90\x57\x6d\x7d\xd5\x15\x07\xa4\x29\xdd\x09\xf1\xa6\xb2\x10\x35\x83\x33\x42\xc0\xd9\x9d\x33\x81\x46\xf4\x70\x95\xac\x27\x4a\xc0\xfb\xdd\x15\x38\x83\x37\x7c\xf4\x99\x9c\x28\x82\x50\x4e\xb1\x04\xa2\x38\xdd\x5a\x40\xcd\xb3\x02\x4e\x23\x1d\x03\x7b\xd9\x25\xa0\x10\xcb\x2c\x93\x28\xc4\x50\xca\x18\x32\x0c\x18\x43\x73\x5b\x9e\x2d\x5b\x09\xc2\xca\x7f\x2e\xd9\x67\x34\xe4\xf8\xd3\xc9\xd2\x3a\xa2\x7d\xab\x83\x44\x6c\xd0\xcf\x08\x1f\x1f\x30\x96\x5d\x6a\x19\x13\x8f\x1e\xa7\x00\xe5\xe7\x72\x79\x70\x8e\x32\x3f\xcb\x6f\xb5\x4c\xc7\x6a\x1a\xbb\xda\x74\xa8\xf1\xe0\xf5\xb9\xa4\x38\x98\xa9\x57\xb1\xac\xeb\x90\x80\x4c\x12\x3a\xda\x7e\x68\xde\xe6\x3b\x33\xd7\x6f\xf3\xa8\xd6\xc7\x65\xb6\x72\xeb\x7c\xe0\x0d\x6e\xb0\x08\x06\xb2\x42\xf0\x87\x79\x08\x06\x81\xa8\x20\x02\xa9\x81\x21\x02\xbc\xfa\x34\x2b\x33\xc6\x26\xbf\xd0\x6a\xc9\x4e\x81\xec\xc7\x00\xa2\x8a\xc7\xcd\x4f\xb7\xb1\x24\x0d\xd9\x43\x3c\xd3\x9f\x09\x4c\x55\x8b\x4c\x2a\x59\x62\x5e\x7d\x25\x69\x5a\xa5\x73\x71\x37\xbd\x4e\x78\x3c\x3d\x28\x8f\x2e\x34\x65\x08\x69\x2d\x03\x88\x9d\xd0\x86\xb3\xe1\x45\x1e\x9f\x86\xa8\xd2\xee\x1e\x82\x1b\xd3\x70\x19\x2d\xab\xd9\x33\x07\xb1\x9f\x8d\x7a\x1b\x94\x33\xba\x22\xe6\xb0\x7f\x97\xe3\x67\xf6\xab\xcc\xfd\x07\xbb\x78\xae\x56\x46\x33\xee\x3b\x87\xba\x24\x0e\x96\x3c\x8e\x9d\xb5\x65\xed\x9e\x6c\x90\x5f\x49\xa1\xe4\x71\xcc\x6f\xe3\x23\x98\x7c\x29\xeb\xe8\xe3\xe2\xe1\xbd\x66\xd4\xca\xb7\x4c\xc4\x92\x3c\x78\x48\xb4\x6b\x97\x4f\x86\x65\xd9\xf2\x98\x82\x71\xe6\xbf\x59\xc5\x32\x46\x7b\xd9\xfa\x37\x7d\x4d\x5a\x7e\xbb\xf1\x3d\x11\xf3\xd8\x13\x19\xe9\x1f\xdc\x73\xcf\xe9\x53\xdc\xf6\xa8\xf5\x57\x54\x30\x78\x81\x3b\x3e\x69\xfd\x35\x9d\x90\x61\x0c\x9f\x68\xb5\x35\x4b\x9e\x37\xf4\x15\xea\xcb\xab\x47\x06\x35\xaa\x4e\xc6\xf6\xd5\xb5\xe9\x08\x87\xd5\x85\x81\x7e\x7d\xf7\x06\x0f\x92\xbb\x17\xdb\x9b\xfa\x6b\xe6\x6d\xf2\x19\xca\xdf\xf4\xb9\xcc\xaf\xee\x56\x08\x76\xae\x78\x6a\xbf\x07\xbb\x46\x70\x7f\x1a\xf1\xe3\x46\x42\xfc\x40\x8e\xd8\x11\xf1\x9d\x7e\xf8\x6e\x00\xdb\xfd\xdb\xe3\xe3\x1d\x31\xd8\x43\xf6\x18\xb1\xbe\x1b\x0b\xfa\x2b\xc9\x55\xa7\xcf\xfe\x89\x32\xf8\x7e\x78\xcc\x96\xe8\x41\xdf\x34\xdb\x0f\x59\xb1\xe6\x21\xd1\xff\x19\xef\x60\xbd\x9a\x8b\xcd\x4c\x9f\x99\xfc\xe4\xaf\x6f\xb9\xe6\x6f\x35\x98\x2f\x3f\x90\xf0\xed\x0e\x09\xbb\xaa\xe6\x33\x8c\x13\x36\x48\xd8\x70\x7c\x3c\xfe\xb9\xc2\xcf\x55\x71\x83\x5f\xd7\xf8\x75\x5d\x96\x1f\xa5\x30\x88\x33\x15\x6f\x6a\x12\x92\x38\xe5\x06\xbf\x6f\xf8\x99\x46\x3c\xbf\xb0\x44\xd0\x60\xbc\x86\x69\x3f\xf0\xe6\x65\x0d\x4b\x1a\xd2\xed\x07\xa5\x73\xab\x9a\x2a\x9f\xf7\xd9\x3d\xf2\x46\x93\xf0\xc5\x8f\xb4\x51\xf3\x9a\x24\x9f\xf7\x71\xa6\xf6\x1b\xab\x50\xbe\x29\x95\xfb\xa1\x89\xf2\x49\x69\x6d\x71\x3d\x8f\xfd\xd2\x2f\xa4\xc6\x5e\xe9\x17\x4d\xef\xaa\x6d\xf6\xfc\x20\xce\x87\xcc\x1e\xaa\x8b\x2f\xd4\x3d\xa3\x3c\xf3\x50\xe6\x98\x56\xac\xb5\xb7\x87\xb2\x0f\x7b\x0e\xb6\x32\xcb\xec\x61\xca\xaa\xde\x1f\x82\x22\x36\x3e\x8a\x2a\x60\x31\x64\xb0\xdc\xcf\x24\xa8\x59\x06\x35\x2f\xc7\xd1\x5a\x80\x61\x82\x82\x97\x35\x2d\xf9\xc3\x7f\xfc\x03\xf0\xf4\xfd\xcf\x7f\xe6\x6f\x9e\x3e\xca\xcb\xcf\x1c\xbd\xbf\xcb\x77\xea\x84\x64\x60\xf4\xfb\x79\x02\xc9\xa1\x61\x70\x6d\x4e\xbd\x5e\xe4\xda\x1c\x9a\xcf\xfe\x4f\x00\x00\x00\xff\xff\x91\xa6\x93\x31\xf6\xd7\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x92\xdb\xc8\xb1\x27\xfe\x1d\x4f\x81\x91\x43\x21\x29\xa2\x45\xc5\xd8\xe7\x7f\x89\x89\xd1\xcc\xf6\xb4\x46\x97\x73\x74\xe9\xa3\xee\xb1\xd7\x3b\xa1\xe0\x80\x24\x9a\xc4\x11\x09\xd0\x00\xa8\x56\xdb\xe1\x88\x7d\x80\x7d\x80\xdd\xd7\x3b\x4f\xb2\x99\xbf\xcc\xac\xca\x02\xc0\x6e\xc9\x3e\xfa\xa0\x26\xaa\xb2\xee\x59\x59\x79\xab\xac\x62\xbf\x9f\xaf\xca\x6e\x99\x3f\xcd\x4f\xf3\x7d\x51\xd5\xdb\xb2\xeb\xf2\xae\xdc\x5e\x3d\xde\x34\x5d\x5f\xae\xf2\x17\x55\x4f\xdf\xed\xa7\x6a\x59\x66\xd9\xa6\xd9\x95\x04\xfa\x92\xfe\x64\xab\xa2\xdb\x2c\x9a\xa2\x5d\x51\xc2\x33\xfb\x9d\x95\x9f\xf7\xdb\xa6\x65\xa0\x9f\xe5\x57\xb6\x29\xb7\x7b\x2e\x43\x7f\xb2\xae\x5a\xd7\xf3\xaa\xa6\xcf\x0b\xfa\x95\xbf\xaa\x25\xa5\x39\xf4\x96\xf4\xee\xd0\x4b\xda\x61\x6f\x49\xbf\xec\xb3\xb6\x5c\x57\xd4\x9b\x96\x92\xde\xeb\xcf\xec\xba\x5c\x74\x55\xcf\x2d\xfd\x49\x7e\x65\x9f\xca\xb6\xab\x1a\xae\xfd\x8f\xf2\x2b\xdb\x17\x6b\x06\x38\xa7\x3f\x59\x5f\xee\xf6\xdb\x02\x05\x2e\xf5\x67\xb6\x2d\xea\xf5\x41\x60\x5e\xeb\xcf\x6c\xd9\x96\x94\x35\xaf\xcb\x6b\x4a\x3d\xc3\xc7\x6c\x36\xcb\x0e\x34\x09\xf3\x7d\xdb\x5c\x55\xdb\x72\x5e\xd4\xab\xf9\x4e\x86\xf9\x0b\xa5\xe7\x9a\x9e\x53\x7a\xce\xe9\x18\x42\xb9\xa2\xa1\xce\x8b\x4e\xc7\x41\x73\x49\x23\x2f\xba\x0c\x55\xd5\xc5\xce\x4a\xf3\xcf\xac\xdc\x15\xd5\x96\x67\x8d\xff\x52\xbf\xbb\xee\xba\xc1\xd4\x9e\xeb\x4f\x9a\x83\x79\x7f\xb3\x2f\x31\x05\x8f\x2f\xe9\x57\xb6\x2c\xf6\xfd\x72\x53\x70\x37\xe5\x57\x46\x40\xfb\x86\xe6\xa2\x69\x6f\x00\x67\x1f\x59\xd3\xae\x8b\xba\xfa\x6b\xd1\xcb\xfc\xbc\x73\x9f\xd9\xae\x6a\xdb\x86\xa7\xf6\x0d\x7e\x64\x34\xf2\x39\xd7\x43\x29\x6f\x69\x12\x5c\x2d\x9c\xb3\xab\xd6\xad\xcc\x22\x67\xbe\xc1\x17\xd7\x22\x79\x5a\x93\x64\x85\xda\xae\x9a\xf6\xa3\xa6\x3e\xe7\x9f\x83\x2a\xa9\x73\x9a\x9b\xf6\xab\xa8\x69\x3d\x34\xf7\x0d\x3e\x12\x80\x2e\x2b\x56\x3b\x9a\xe1\x7d\x51\x97\x3c\x75\xa7\xfc\x45\xf3\x45\x5f\x59\xb1\x5c\x36\x87\xba\x9f\x77\x65\xdf\x57\xf5\x9a\xd7\xe0\x54\x92\xf2\x0b\x4d\xca\x5c\x5e\x48\xbb\x69\x0e\x61\x95\x29\xfd\xcf\xf4\x99\x9f\xcb\xa7\xe4\xb9\x42\xc8\x0c\x25\xa9\xc9\xbe\xfa\x54\xf5\x55\x29\x8d\xd9\x47\xb6\x3f\x6c\xb7\x34\x9f\x7f\x39\x94\x5d\xcf\x59\xe7\xf4\x4d\x33\x20\xdf\x59\xd5\x75\x07\x94\x78\x85\x1f\x19\x2d\x6a\xbd\xc4\x70\xce\xf0\x23\xcb\x7e\xad\xea\xae\x2f\xb6\xdb\x0f\x99\xfe\x60\x60\xf9\x25\xf3\xd4\x57\x3d\x3a\xab\x89\xf9\x45\x5f\xee\x3b\x9e\xe8\xfc\x79\xd5\x76\xfd\xe3\xbe\x22\x54\x7b\x7f\xa8\xb3\x55\xb3\xfc\x48\x48\xcc\x1b\x12\x5b\xe9\xd5\x55\x4e\x63\x7a\x40\x68\xdc\x1e\xea\x9a\x46\x91\xbf\x68\x68\x64\xd4\x4c\xb5\x2a\xf3\x67\x80\x3e\xc9\xf7\xdb\xb2\xe8\x08\xa4\x2c\x56\xf9\xf7\x45\xde\x17\xed\xba\xec\x9f\xde\x9b\x2f\x68\xf3\x7c\xbc\x97\x6f\xda\xf2\xea\xe9\xbd\xfb\xdd\xbd\x1f\x5e\x1c\xa8\xd8\xb6\xaa\xcb\xee\xfb\x27\xc5\x0f\xf9\xb2\xa0\x1c\x1a\xeb\x4d\xbe\x28\xaf\x78\xaf\x50\x5b\x39\x21\x69\xbd\xe6\x7d\x72\xd3\x6f\xb8\x41\x5a\x30\xfa\xd1\xe5\xbc\x51\xbf\xc9\x78\x96\x68\x23\xcf\x57\x0b\x23\x4a\xe8\x10\x92\x5b\x9a\xa5\x37\x37\x17\xff\xfe\xfa\x24\x3f\x27\xca\xb4\x6e\x4b\xfc\xa6\xff\xa8\xc4\x1f\x72\x1a\xed\x65\xf5\xec\xa7\x59\x46\x65\x6d\x42\x9e\x15\x7d\xb1\xe0\xbe\x87\x45\xe2\x4c\xd9\x43\x21\x0f\x3b\x89\x69\x1d\xe8\x5a\xd7\x63\x77\xea\xce\x9c\xdc\x87\x54\x87\x6e\xde\x50\xc7\x5b\xde\xc1\x94\x1e\x66\xf6\x5c\xe6\x8c\xaa\xca\x5f\xbd\x7d\xfb\xee\xd9\x4f\x79\x59\xaf\x69\x66\xf2\xeb\xaa\xdf\xe4\x87\xfe\xea\xff\x9f\xaf\xcb\xba\x6c\x8b\xed\x7c\x59\xf1\xa4\xb4\x84\x57\x39\xcd\x92\x0c\x71\x96\x75\xdd\x96\x08\xcc\x8a\x5b\xb9\xb8\x78\x9d\xbf\xa1\x9f\xd4\x19\x2a\xcb\x1d\xe9\x37\x59\xf7\x97\x2d\x4f\x54\x68\xf0\x72\x53\xe6\xc0\x59\x00\x35\x57\xc3\x79\xc9\x57\xda\xd7\x59\xfe\xfd\xa2\xfd\xc1\xf5\xaf\x58\x74\xcd\xf6\xd0\x6b\xc9\xeb\x4d\x59\x63\xa1\x08\x95\xda\x9e\xa8\x95\xd1\xfe\x59\x56\xb6\xed\x9c\xe8\x66\x7f\xc3\xcb\xa3\x7d\x39\xd6\x8a\x54\x46\xa8\x5c\x37\x3d\x2d\x7f\x8e\x72\x52\x45\x55\x7f\x2a\xb6\xd5\x8a\x16\x29\x4e\x64\x5a\x16\x89\xab\x86\xd6\x9b\x4b\x13\x46\x37\xd7\x98\x22\xda\x60\x44\xd6\xf3\x7b\xb3\x7b\xa0\xb3\xf7\x1e\xdf\x9b\x65\x75\x33\x17\x22\xc0\x14\x79\x55\x75\xc5\x82\xa8\xb3\x9c\x16\xad\x11\xbb\x3f\x33\xde\x49\x57\x14\x22\x4f\x20\x78\x4d\xf8\x04\x02\xe1\x67\xa4\x2c\x88\x4c\x83\x96\x28\x15\xf1\x63\x37\x92\x13\xf0\x42\xa8\x4e\x48\x18\x8d\x39\xb3\x85\x36\xac\x3c\xdd\xef\xb7\xd5\x52\x9a\x7e\x21\x79\x11\x41\xf9\x3c\xd6\x49\xf1\x70\x40\x30\xcb\x73\x68\x46\xbd\x66\xaa\x94\x27\xe4\x1d\xe5\x37\x25\xed\xb8\xcd\x61\x2d\x67\xd2\xb6\x39\xac\xbe\xc1\xe1\x60\x2b\x17\x49\x70\xfe\xbe\xa1\x0e\x03\xab\x02\x40\x6c\xe2\x94\x08\x0a\xb3\x00\x6d\xb9\x6b\x7a\x9e\x38\x2d\xc6\x64\xee\xba\xa2\x4c\x1a\x69\x57\x7c\xa2\xc3\xad\x6f\x64\x2b\xaf\x68\xab\x2e\xb9\xe2\x59\x46\x64\x65\xae\xdb\x89\xe8\x8f\x6c\x29\x4b\x4b\x71\x17\x50\xbb\x03\xed\xc2\x0d\x55\xc6\x13\xcf\x7c\x08\x55\x39\xd5\x4f\x0c\x89\xea\x01\x75\xa0\x1d\xdf\xd0\x99\xc9\x0b\xfd\x0c\x3f\xf4\xdb\xd7\x4f\xbd\x2a\xae\xae\xa8\x57\x1d\xed\xa6\x97\xf9\x72\xdb\xd0\x56\xfc\xe5\xfd\xeb\x8e\x37\xda\x66\xbe\x6f\x5a\xf0\x1f\x94\x75\x4e\x3f\x43\x9a\x9b\x68\x86\xa8\x0f\xbb\x05\x7d\x5d\x6f\xaa\xe5\x46\xa6\x9d\x4b\xf0\xfe\xa0\x54\x6a\xe2\xd0\xd1\x12\x9e\xe4\xb4\xb5\x68\x04\x34\x65\x40\x00\x1e\x83\x61\x1d\x83\x5f\x11\x8e\x1d\x5a\xda\x4e\x9b\xbe\xdf\x5b\xcb\x2f\x2f\x2f\xcf\xa5\xe9\x90\x7a\x5b\xdb\x85\xc3\x0c\xac\xc1\x96\x39\xa2\x3a\x6f\xea\x19\x90\xe4\xd0\x6e\x07\xf8\x43\x63\xb5\x9c\x23\xf3\xc2\x5d\x78\xc2\xff\x5d\xc4\xe9\xc1\x3c\x77\xc4\xeb\x5d\x03\x9b\x68\x8e\xc1\xa5\xcc\xb2\x6d\xb3\x9e\xb7\xb4\x1a\x86\x4c\xaf\x9b\xb5\x20\x50\x92\x11\x5b\x7a\x66\x28\xc1\xb3\x71\xdd\x32\xd7\x46\x90\x20\x58\xbc\xc8\xb4\x49\x9a\x3d\xf7\xd3\xed\x92\x77\x9a\x10\xb7\x06\xda\x0e\xf9\xe0\x93\x28\x13\xc4\xc9\x9d\xe9\x3b\x9a\x3f\xa5\xe6\x17\x6f\x68\x56\x41\xd2\x91\x7a\xd5\x36\x3b\x4a\x7d\x4e\x7f\x62\x42\xec\xe3\x1b\xae\x0f\x30\xc5\x6a\x45\x87\x4d\x77\x92\xbf\x7f\x7e\x96\xff\x3f\x7f\xf8\xfd\xef\x67\xf9\xab\x9e\x37\x36\xe3\xfa\x7f\x30\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\x7c\x8f\x37\xea\xbd\xfc\x7b\xe4\xfe\xb7\xf2\x73\x41\x7c\x66\x39\x5b\x36\xbb\x1f\x98\xb8\xef\x0a\x22\x25\x9c\x43\xd8\xaf\xdb\xe2\xa2\xac\x57\xf4\x43\xb8\x3e\xcd\x72\xc4\x45\xb3\x1d\x0f\x28\xcc\xef\x7c\xd9\xd4\x57\x55\xcb\xe3\xf9\xb9\x06\x6e\x19\x5b\x9c\x9f\x49\x8e\xb1\x50\x34\x65\x44\x8f\xaa\xab\x9b\x08\x8a\x91\xbe\xe5\x44\x45\x8f\x4c\x70\x78\xae\xa4\x3e\xcc\xf1\x85\xa0\x36\x63\xc1\x3b\x1a\x5d\x6b\xd3\xdd\xc5\xf9\x6e\xae\xae\xf8\xc4\xb7\xb3\x4a\x5b\x78\x27\xa9\x72\x6c\x79\x10\x42\xed\x3d\x18\xfb\x67\xba\x25\xce\x9e\xbd\xcd\xcb\x4f\x84\xbb\x4c\x43\xdb\x66\x75\x58\x02\x5f\x19\xf6\x84\x49\x3f\x11\x9c\x8e\x76\xda\xb2\x54\x64\x09\x24\x87\xbb\xc6\x74\x6d\x49\x40\x44\x69\x8c\xf4\x13\x37\xfa\x89\xce\x91\xd6\x35\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x42\x09\x1e\xf9\x92\x16\x9c\x90\x42\x7a\xd1\x49\xa7\x24\x9b\x36\x0f\xed\x8a\x03\x49\x39\xc5\x8a\xfa\xb2\xb8\x01\x15\xeb\x18\x17\x56\xe5\x55\x71\xd8\xd2\x6a\x5f\x95\xb4\x7e\xc4\x2e\xaf\xe6\xda\xd6\xb6\x69\x3e\xa2\x31\x9d\xaa\xe7\x06\x90\x9f\x6a\xa5\xaf\x01\x71\xac\x64\xe8\xac\x96\x0f\x60\xa1\x53\xda\x02\xed\x34\x3e\xde\x63\x7e\xb3\xa7\x69\xd6\xc9\xd4\x95\xce\xf9\xbc\xa5\x9c\x9a\x28\xc8\x42\x07\x1d\xe7\x72\x70\x8c\xda\xec\x5c\xb0\x70\xe8\xf3\x26\x0b\x8c\x26\x15\x08\xdf\x0d\xcb\xd2\xce\xa9\x89\x43\x94\xe3\x96\xb7\x98\x48\x5f\x76\xf2\x12\x81\x2e\x31\xce\x79\x94\x75\x74\xe0\x26\xf2\xa4\xf9\xa1\xd9\xf7\xc2\x33\xe6\x60\x36\xb8\x46\xab\x80\x99\xac\xe9\xbe\xcc\x32\x65\x34\xe7\x2a\xa6\xce\x3f\x55\x10\x02\xc3\x16\x93\x2a\x55\x74\xe5\x19\xfe\x23\x03\xb0\x74\xd9\x4d\x96\x0d\xbd\x79\xc7\x83\xec\x82\x10\x28\x78\xc2\xc3\x45\x0b\xcc\xfc\x12\x66\x7d\xaa\x70\xd0\x29\x92\x63\x5e\x16\xcc\x9f\x51\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa1\x3a\x51\x66\xa6\x12\x90\x0a\x25\xc6\x34\x33\xc3\xb3\x6a\xc0\x3d\xe1\x34\xa5\xd2\x36\xad\x03\xce\x26\x6f\xab\xf5\x86\x4e\x97\xe6\xfa\x44\x26\xe5\x7a\xd3\x94\xbc\xe7\x5f\x3d\x7b\xfa\xad\xf4\x63\xcd\x67\x6b\x28\xc4\xa7\x72\x71\xa0\x0d\x41\x33\xa6\x5b\x4f\xba\x10\xb8\x1b\x40\x8e\x64\x2d\x01\x1a\x0a\xbd\x23\x66\x2a\x10\x3a\xa5\x6f\x3e\x4f\x09\x5b\x84\x91\xd2\x26\x38\x4b\xc3\x42\x48\x55\x50\x9a\xaf\x1b\x08\x6a\x26\x18\x31\xbb\x90\xf5\x24\x76\xcd\xd7\x55\x3f\xbf\x62\x6a\xcb\x15\x3f\xe7\x0a\x98\x7b\xa1\x9c\xfc\x01\x65\x3d\xc8\x89\x62\x93\xf4\xb9\xfa\x2e\xbf\xff\x49\x59\xed\x3f\x30\x19\xe5\xad\x58\x6d\xb1\x22\x2a\xfe\xb5\xa5\x70\xd2\xa6\x7a\x08\x6c\x6b\x77\xd8\xe3\x70\x57\x0e\x39\x88\x51\xab\xe6\xba\x66\x82\x81\xe3\x82\x48\x63\xb5\xac\xe8\x90\x5b\x54\x75\x41\xa7\xa3\xd5\x82\x63\xe8\x3e\xa1\xc4\xdb\x77\x97\x00\x5c\x37\x8b\x43\xb5\x5d\x19\xc0\x2c\x33\x2e\x9a\x78\x68\x5d\x7c\x2f\x8f\x58\x52\x25\x7d\x59\x36\x2d\x9f\xbf\x18\x8d\x15\x3c\xc2\x0b\xf2\xe1\x2d\xcc\x7b\xc5\x82\x20\x60\x51\x2e\xb0\x6d\x3c\x0d\xb4\xfa\xcb\x8d\x32\x75\x40\x9b\xaa\xab\x1f\xf4\xe8\xe9\xf2\x40\x6d\xd1\xca\x73\x32\x15\xec\xf2\xc7\x3f\xd0\xff\x19\xb3\x88\x72\x68\xad\xc7\x13\xcf\x99\xb9\x64\x1e\x64\x2b\x26\x5d\x4d\x70\x3c\xac\xb4\x61\xb0\x1b\xab\xef\xaf\xa1\x40\x77\x10\xa4\x65\x2d\xd1\x96\x96\xb5\xfc\x86\x7e\xb0\xc8\xbb\xde\x62\x11\x8a\x5e\xe5\xd2\x86\xe6\x8d\x11\xe4\x44\xf6\xcc\x15\x0d\x8d\xc9\x7f\x5f\x7c\x2c\x21\xca\xc6\x39\x9f\xe2\x7e\x8e\xce\x5b\xf6\x2b\xeb\xcc\x3e\x64\x07\xe1\xdc\x9b\xed\x2a\x48\x97\xd8\x0d\x44\x8d\xca\x44\xe5\x13\x61\x02\xa2\x77\x24\xa1\x2c\x37\xf3\xa0\x70\xe3\x89\xec\xcb\xcf\xe0\x71\x90\x15\xf5\x6f\xbc\x4b\x38\x2b\xdb\xdd\x60\x89\x79\xe0\x6f\x6e\xe2\x0a\xb3\x42\xa2\xdb\x34\xd7\xd0\x5e\x05\x88\x0b\x4a\x81\xde\x2a\xe1\xef\x59\xeb\xb5\x6c\xb6\x84\xef\x0d\xaf\xca\xa7\x08\x7f\xe6\x53\xd3\xca\xa9\x5d\x12\x46\xb4\xd9\x54\x5b\x43\x59\xa2\x20\xd2\x5c\x51\x10\x75\x19\x28\xa5\x6a\x16\x41\x50\x09\x5f\x54\x2f\x32\xa3\x85\x87\xda\xc5\x5a\x7e\x55\x0b\xe7\xed\xfb\x49\x73\xac\x5a\xc7\x0f\x99\xc1\x25\x7d\x12\x72\x2b\x93\xce\x6a\x9f\xa2\x05\xf6\x5e\xe0\x07\x95\x26\x82\xb6\xf9\xe0\xf4\x7e\x73\xc3\x2d\xd3\xff\x41\x37\xa5\x34\x2d\xf2\x60\x9b\x72\xcf\xec\xda\xae\x03\x52\x6e\x59\x41\x72\xa3\xe2\x4b\x40\xcf\x1f\xe5\xb4\x20\x7c\x25\x1a\xfb\x4d\xd6\x35\xbc\xdd\xe7\x5f\x59\xc5\x4f\x15\x21\x22\xca\xa7\x27\xad\x28\x24\x49\xca\xe0\xc1\xd0\x1e\xbf\x39\x49\x05\xdb\x0d\x89\xef\x8b\x92\x4e\x7d\x2d\xb6\x9a\x99\x62\x82\x11\x88\xc4\x69\xec\x58\x28\x51\xb1\xc7\xa4\x64\x33\x62\x01\xb8\x87\x42\x64\xb5\x95\xc0\x6c\x82\x95\xf4\x1c\xe7\x44\x9b\x34\x61\xbb\x92\xa5\x97\xf9\x4e\x94\x97\xf2\x95\xbf\x29\x33\x3a\x8b\xd7\xd8\x47\x82\xe8\x4f\x59\x69\xb5\x86\x90\xa7\x98\xcf\x00\x65\xef\x4f\x01\x85\xb0\x94\x1f\x4d\x59\x4c\x74\xe9\x1a\x4a\x44\xe6\x84\x86\xd3\x4f\xe7\x25\x65\xcf\xec\x54\x11\x06\x05\xbc\x71\x47\xb4\x2a\x4e\xe2\x69\xce\x5a\x5f\x0f\xa5\x7c\x7e\x18\x15\xc3\x33\xc9\xfa\x7e\xf1\xc3\xfd\xee\xfb\x27\x8b\x1f\x02\x61\x5f\x6e\xca\xe5\x47\x41\xce\xaa\x5e\x34\x9f\xa1\x56\x80\x7a\xab\xa4\x5a\x69\xb3\xde\x5f\xe5\x1b\xca\x85\x54\x4b\x84\x88\x8a\xd1\xbc\x73\x6e\xb2\x66\xd4\x17\xa6\x57\x33\x51\x27\x96\x82\xfd\x11\x1f\xa1\x57\x64\x8c\xc4\xe9\x63\x28\x49\x85\x36\xd5\x82\xce\x34\x22\x4d\x90\x84\x5f\xe3\xef\xb9\x26\x97\xab\x01\x84\x63\x14\xda\x40\x48\x59\x0b\x17\x0a\x70\x27\x01\x1a\xc7\xa7\x28\x13\xd1\x85\x57\x16\xf3\xb7\xad\x76\x55\x3f\x42\x45\x26\xab\x85\xa2\xb4\xaa\x3f\x6d\x6d\x30\x86\x38\xbb\x74\x38\x51\x35\xc4\x4b\x18\x7a\x5e\x17\x24\x3e\xff\x21\xa7\x36\x0e\x3d\x4b\x88\xac\x94\xea\xe9\x74\x2a\x98\x19\x21\xd1\xb9\xe8\xe6\x87\x5a\x97\x89\x18\x64\x45\xce\x97\x15\xce\x4c\x6e\xd7\xb6\x90\x83\x4a\x25\xb6\xfc\x61\x58\xc1\x47\x33\x55\x84\xa2\x14\x9f\x63\xdc\x9f\x8a\xc5\x8b\x62\x0a\x17\x88\x62\xd7\xa5\xcc\x10\xc6\xcf\x60\x8c\x36\x24\x34\xc7\xc9\x22\xc9\xfb\x23\xf3\xd5\xbc\xbe\x8b\x43\xdf\x37\x2c\x3c\x6e\x19\x07\xa5\x8c\xf5\xf9\x0c\x80\x10\xaf\x63\x7d\x37\xb2\x2c\xe9\x2c\xa9\xfc\x0b\x2e\xa4\x03\x1d\x11\x53\x06\x0b\xf1\xe9\xd0\xf4\xd4\x0f\x50\x2b\xd1\x3a\x16\xf5\x4d\x54\x68\xa1\x0f\xdc\x5c\x3f\xdd\x93\x87\x6d\xf9\x28\xf6\x25\xec\x3f\x94\xd0\xfe\x48\x69\xb7\x35\xdf\x23\x53\x54\xe6\xb6\x81\xed\xcc\x5c\xaa\x2e\x33\xa0\x46\x9b\x4e\x2d\xf2\x79\x97\x11\x25\x27\x2e\x7a\x85\x59\xa6\x41\xa0\xf4\x6c\xd0\x56\x14\xda\xc7\xd3\xd7\xa7\x3d\x8e\xc7\x6a\xdf\x34\x73\x3a\xf9\xa0\x6f\xb1\xee\xe5\xdb\xb2\x5e\x27\x8a\x4a\x98\xbf\x80\x6f\xff\x2f\x2b\x17\xeb\x39\x24\x4c\xb7\x01\xdf\x36\xf5\x63\xa4\x05\x11\xc5\x4a\xab\x6a\xdb\x1a\xe4\x6a\xda\xe6\xb0\xde\xa8\x96\x2a\xfb\x95\x67\xed\x43\xa6\xeb\x5a\xba\x3a\x15\xeb\x2d\xc7\xd6\x5f\xf6\x76\x80\x37\x46\xf7\x8f\x65\xcb\xe2\x3c\x80\x92\x85\x3f\xb6\x22\xe9\x84\x04\x92\x1e\x39\xa3\xf7\x9e\x00\x69\xf2\xd5\x61\x7b\x92\x5f\x0b\xcb\x14\xcb\x04\x55\x82\x32\x53\x8c\xe2\x62\xf7\xa3\xe1\x35\xab\x82\xc6\x77\x03\x6b\xc6\x9f\xe9\xd8\xad\x61\x41\x6a\x32\xca\x90\x42\x6f\xf0\x83\x40\x59\x17\xf2\x21\xe3\xe3\xf8\xed\x40\x22\xe0\x73\x5b\xd3\x1c\x57\x8a\xac\x9f\xbd\x85\x2c\x8c\xf9\x7c\x42\x78\x78\x5f\x46\x43\x19\x7e\x85\xc1\x5f\x5c\xbc\xbc\x34\xe5\xc6\xc5\xcb\xfc\x63\xa9\x75\xbf\xec\xfb\x7d\xf7\x0b\xd4\x66\xa2\x03\x63\x85\xd9\x79\x71\xc3\x9c\xba\x24\xeb\x07\x32\x2e\xcb\x62\xa7\x9d\xe4\x9f\x52\xc5\x29\x31\x11\x9a\xc8\x3f\x89\xf3\x70\xea\xd8\x0c\x3c\xeb\xcf\x89\xa8\x22\xbb\x28\x23\xd6\xe2\xa7\xb6\xa8\x97\x56\x98\x59\x8d\x05\x12\xa4\xe4\x19\x89\x22\x55\x7f\x71\x20\x81\x04\x46\x3d\xf9\xa6\x65\x42\x82\x66\xbf\xa1\xa9\x10\x33\xa6\x66\xef\x24\x41\xb3\xcf\x36\x0d\x4b\xfb\x21\x77\x89\xef\xec\xb2\x2d\x4b\x6d\xf5\xb9\xd9\x0e\x32\x30\x90\xc2\xfb\xc8\xaf\x2c\x88\xb6\xa5\x5a\xf7\x7e\x1b\x69\xb9\x7f\xcb\x8a\xed\x9e\xa4\x6f\x66\x51\x1d\x18\x14\xba\x0b\x15\xc2\x73\x80\x60\x63\x1f\x76\x84\xc3\x4b\x28\x4a\xa8\xc0\xc3\xc7\xf3\x47\x4e\xc1\x9f\x56\xb6\x22\x7a\xf7\x0f\x55\xc8\xbf\x65\x57\xc6\x7a\xbb\xea\xaf\x36\x8a\xa4\x3a\x4e\xa7\xb3\x83\x20\x20\x69\x44\xa8\x00\x84\xd3\x8f\xa5\x8e\x9e\xf5\xbb\x94\x40\x92\x4d\x52\xf5\xae\xf8\x7c\x57\xc1\x5d\x33\x51\x4e\xa8\x7a\x2c\x64\xc4\x5b\x87\x98\x6c\x70\x02\x67\x05\xee\x51\x60\xc2\x4d\x02\xa9\xea\xe5\xf6\xb0\x3a\xda\x91\xee\xb0\xa0\xbd\xce\x12\xd3\x83\xfb\xdd\x03\xae\xb2\xfe\x48\xcc\x51\x1d\xe0\x7f\x91\xef\x1c\xdf\xdf\x99\x91\x79\x4e\xd5\x8a\x18\x99\x07\x73\x33\xf1\x78\x2b\x3e\x2f\x21\x0e\xce\x22\xa9\xf5\x22\x62\xd8\x9f\xd0\xa5\xa9\x08\x1f\x48\x14\x2b\xd0\x20\x2d\x13\x16\xce\xa2\x61\x7c\xce\xbc\xd6\x9c\x45\xaf\xda\xcb\x4a\x7c\x3e\x18\x47\x01\x6e\x0c\x10\x33\x31\x5b\x8c\xcb\x0d\x08\xc8\xd1\xe2\xc4\x51\x4e\x94\x7e\x37\x36\xa9\x1c\x29\xdf\x13\x0d\x98\xa8\x20\x90\x86\xa3\x05\x65\xed\x51\xe8\xd0\x41\x22\x4e\x68\xdb\xb8\x1c\x43\xcd\xe2\x2c\x85\x09\xf7\x6b\xe3\x25\xcb\x30\xcf\xa9\x22\x80\x95\x6a\x84\x7e\x2d\x1c\x14\x9c\x3a\x40\xd5\x33\x7a\x1c\xed\x58\xf2\xed\x0e\x7c\xb4\xb2\x94\x2c\x9c\x6a\x3a\xa3\xcc\x34\xa1\xaa\x12\x4d\x1c\xaf\x9e\xf0\x89\x4f\x8f\xbb\xea\x07\xd8\x57\x56\xed\xb5\x47\xe3\x8a\xb5\xf2\x00\x74\xac\xda\xa0\xda\x28\x3f\x57\x30\x1e\xbc\xa8\x3e\x95\xaa\xdc\x08\x3a\x1d\xe4\xcd\xb2\x2d\xed\x7f\x16\x72\x65\x54\x22\xd2\x34\x9f\x78\x47\x71\x7b\x9c\x2b\xe5\xc4\x98\xa0\x83\x62\x24\x51\x35\x09\x2c\x9a\xe5\xea\x84\xad\xab\x3d\x78\x17\x6c\xd0\x62\x7b\x5d\xdc\x74\x50\xf9\x19\x91\x61\x3b\x8c\x14\x67\x0a\x42\xfc\xdb\x1a\xbd\xf2\xd6\x3e\xda\x35\x36\x13\x6c\xb6\xe2\x13\x2d\xb0\x59\xd7\x50\x74\x80\x42\xa8\x12\xf1\x93\xe3\x1d\xf4\x00\x64\x25\x0d\x6b\x27\x58\xdc\x93\x6c\x57\x11\xcc\xef\x4a\xec\x27\xca\x9e\x30\x6f\x4b\xcd\x30\xaf\x49\x24\x58\xe6\xba\x82\x28\x81\x2e\x39\xad\xd7\x81\xea\x7f\x2c\x32\x52\x45\x73\xc8\x22\x77\x54\x04\xf1\x81\x49\xab\x62\xd6\x2a\x49\x17\xf5\x49\xd7\x57\xdb\x2d\xcf\xb4\xb9\xa4\x24\x32\x0b\x72\xb1\x4f\x30\x4d\xdd\xa6\xda\xe7\x0d\x6c\x16\x7e\x0a\x23\xda\x3a\xe9\x80\xed\x72\x25\x64\x30\xb6\xdd\xd0\x81\xdb\x5d\x95\x30\xe2\xec\xf2\x2b\x76\x9b\x98\x69\xd3\x2c\x6c\x88\x0b\xca\x91\x96\x45\x9c\x45\xd3\xfe\x80\xc0\xda\xb9\x85\x4a\x9b\x16\x23\x21\x2c\x05\xe8\x03\x66\x35\xd6\xd4\x59\x1f\x18\xcd\x46\x53\x00\x9e\x3f\x31\xf9\x4e\xce\xc3\x55\xa2\x25\x91\xf6\x81\x69\x77\x8c\x3b\x13\x17\x8f\xb9\x70\x21\xc9\xae\xb8\x44\x8e\xf1\x27\xc3\x8d\x91\xfd\xca\x78\xff\x21\x13\x4e\x78\x1e\x2c\x31\x67\xc2\x19\x0b\x5b\x8b\xc4\xec\x3f\x1a\x3a\x68\x61\x56\xf8\x57\xfa\x05\x1b\x44\x96\xd8\x96\x07\x2a\x1c\x75\xae\x61\x9c\x3c\x27\x54\xa2\xb3\x5e\x3d\x6c\x6e\xb2\xab\x06\xfb\x09\x1a\x9e\xe7\xf6\x3b\x63\xff\x85\x16\xc8\x75\xa1\xbf\x12\x95\x91\x14\x12\x7d\xe2\x73\xfb\xad\xa9\x21\x89\xb6\x45\x48\xf9\x45\x7f\x66\xac\x93\xd8\xcd\x40\x7f\x99\xdf\x86\x19\xca\x51\x5d\x3e\x54\x19\xff\x2d\x6f\xe6\xe0\x89\xbf\x22\xca\x53\x8b\x0c\x27\x44\xc0\x17\xd5\xec\x50\x45\xf0\x7e\xe0\x5a\xb2\x5f\xcd\xf3\xe8\x43\x16\xfd\x93\xcc\x35\x69\x4a\x85\x1e\xa6\x5f\x0c\x4b\x99\xee\xea\x4e\x79\xdf\x7f\xa3\x9f\xaa\x8f\x02\xc5\xc0\x0f\x55\x28\xc0\x0f\xc1\x8c\xc7\x70\x67\x72\x9f\x99\xea\xf7\x52\xe5\x9e\xe2\xd4\xd3\xfc\x99\xfc\x30\xd5\xc4\xa1\xc2\x18\x2b\x92\x10\xf6\x58\x38\xe7\x5d\xa5\x2b\x19\x06\xa1\xce\x75\x5e\x39\x31\x92\x6c\xa5\x12\x70\x13\x66\x0b\xc4\xd9\xc9\x66\x1d\x27\xe1\xb2\x62\x1e\xa2\x6f\xed\xec\x9c\x6c\xbd\x63\x71\x9d\xc0\xae\xcb\x85\x19\xbf\xf6\x65\xab\xe3\xdc\x15\x24\x84\x7e\xaa\x8a\xa0\x16\x73\x3c\x4d\x38\x74\x4d\xaf\x95\xc8\x82\x90\x32\x44\xcd\x68\x2c\x8d\x2d\x30\x6b\x7b\x04\xff\xa9\xd6\x4a\x6c\x4f\x35\xd8\x1d\x76\x8e\xb2\x33\xf1\x39\x3b\x85\xc1\xcb\x63\xec\xd6\xc8\x4d\xa8\x0d\xee\xb5\xfe\xcc\x0e\x7b\x36\x6a\xb9\xb9\xfc\x05\x09\x61\x2e\xd3\x7c\x27\xeb\x61\x56\xad\x58\x50\x6b\x09\xf8\xca\x09\x7f\x6c\xd9\xd1\x7d\x3c\xe1\xae\xa8\x5b\x7a\x35\x04\x89\x4a\x20\xd0\x28\x1d\x38\x16\x4a\x1c\x0d\x30\xb5\x74\xce\xe5\xac\x71\xde\x56\xf5\xc7\x4e\x57\x8a\xe7\xc9\xcb\xbd\x50\xd6\x11\xbe\x1f\x4a\x95\x44\xf8\xe7\xd8\x39\x4e\x8d\xa2\x6a\x22\x5d\xdc\x98\x36\x43\x8c\xa8\x8a\xfa\x6c\x9a\x85\xb0\x75\xdc\x1a\x3b\x34\xc3\x9a\x15\xd6\xac\x8b\x30\x02\x47\x8a\x46\xf3\x90\x9f\x89\x61\x58\x77\x17\x89\x54\x4d\xa7\xda\xe3\x48\xf7\x38\x0d\xca\x21\x25\x7b\xba\x2c\xb1\x1e\x59\xb5\x53\x33\x50\x63\x87\xeb\x5e\x9a\xab\x29\x25\x42\xeb\xd6\x3a\x53\x13\xcb\xa9\xd5\x29\x06\x68\x1b\x13\xa8\xcb\xbc\xda\x89\x3c\xf8\x8b\x99\xa7\xb1\xe0\x41\x60\x40\xf6\x2c\xed\xcf\x10\x4b\xb4\x5d\x33\xb0\xdc\x81\x2c\x86\x0a\xde\x62\x27\xcb\x1f\x28\x52\xb3\x4d\xd8\x35\x1b\x47\xc8\xe7\xc9\x73\xf9\x6f\x61\x5b\x0d\x6a\x0b\xde\x63\xf3\x01\x88\x4a\xfa\x09\xe4\x24\x57\x6c\x6d\x1d\xe5\x88\x07\xbd\x1f\xed\x18\x2b\x77\xcd\x2e\x71\x6e\xe0\x8a\xe3\xab\x99\xb9\x99\xb1\xa6\x59\x0c\xb5\xf0\x07\x12\x9f\xa8\x1a\x56\x5e\xa9\xc2\x11\x15\x6d\xf4\x9f\x25\x29\xb1\x66\x11\x29\xba\x20\x49\x9c\x0a\xe1\x64\xbb\x8c\x38\xd3\x86\x7c\xf5\xa7\x4d\xe8\x6b\x69\x4e\x36\x9e\x02\xef\xdb\x0a\x9a\x87\x94\x12\x8f\x68\x6f\x42\x67\x41\x66\x1b\xb8\x8c\x44\xf2\x4a\xe3\xd6\xaa\xf8\xdc\xc2\x2f\x4b\x09\xba\x2d\xda\x01\xcc\x15\x6b\xb2\x6d\x04\xcb\x15\xfc\x0f\x7d\xa4\x0f\xa1\x8a\x32\xd6\x67\x9a\x30\xc8\xb7\xc1\x48\xb6\x2d\xc8\xc4\x68\xd8\xc3\xed\x53\x19\x0e\x8e\xaa\x16\x8f\x9d\x60\x8f\x4d\xa8\x53\xfe\x0c\xe4\x8a\xd0\x41\xec\x01\x46\xac\x7e\x1c\xb6\x1e\xf1\xe8\xe7\xd4\x92\x20\x63\x4b\x77\xd1\x37\x19\xf5\x08\x38\x1e\xad\xda\x2b\x20\x4f\xaa\xe8\x63\x28\x0f\x21\xaa\xa4\x90\x3a\x4f\xec\x1c\x9d\x68\x73\xbe\xdc\xb6\xc1\xfc\xc7\x7f\x81\x59\x23\x69\x2a\x9a\x35\x42\x27\x07\x3b\x6c\x34\xca\xf1\x56\xa3\x0c\xb0\x42\x8a\xcb\x8e\xa1\x51\x6c\x0e\x7c\x0d\xb7\x22\x12\x0c\x4f\x0f\x25\x81\xfb\x51\x4c\xc0\xd1\xc4\xae\x6f\xf0\x9b\x83\xb3\xac\x88\x33\xdd\x48\x67\x9e\xae\xf9\x29\xe4\x35\x9a\x14\x81\x05\x67\x48\xcc\x04\x73\xfa\xb6\xd7\x89\x8b\xa6\x79\x10\x9f\x89\xe0\xc3\x38\xb2\x58\x9e\xa8\x90\xb4\xa9\xd6\x1b\x1a\x57\xb5\x63\x57\x01\x60\x92\xd9\xa3\xa3\x0c\xcb\x5f\x44\xa2\x9a\x75\xcd\x4a\x2a\x6e\x41\x9c\x16\x83\x0e\xfc\xfb\xae\x6f\x9b\x7a\xfd\xc3\xb3\x86\x85\x4b\xd6\xdd\xf0\xe1\xfa\xe3\xf7\x4f\x34\x9d\xc8\x30\x2f\x21\x7b\xb8\xbe\xa8\xfa\x97\x87\xc5\x83\x2e\x5f\xb3\xab\x36\xec\x58\x85\x73\xe0\x56\x27\x11\xf1\x28\xbd\xae\xc3\xb4\xc0\x9d\x9b\xf6\x78\xd7\x6c\x69\x83\xa4\x45\x9a\xdd\x4e\x96\x97\x08\xd8\x4e\x20\xd1\x7f\xf8\x95\x94\x35\x66\xae\x6c\x75\x7e\xa8\xc2\x59\x40\xf1\xb8\x3e\xba\x6c\xc6\xa1\x26\x1a\x11\xe5\x11\x19\x78\xa9\x9a\xc9\x78\x10\x41\x1d\x62\xa5\xc0\x7f\x8c\x4b\x61\x1d\x59\xbf\x34\xd6\xc5\x40\x6c\xe1\x2a\xac\x38\x95\xa4\x7e\x08\x1f\xc6\x69\xcb\x91\x2e\x54\x11\xcb\x21\x2f\x9f\x3d\xa6\x4b\x06\xe7\x1e\xba\x07\x74\x1d\xec\x6f\xa5\x68\x32\x76\xa5\x67\x36\x00\x47\xd1\x74\x46\x22\x4d\x1b\xc2\x24\x54\xad\x14\x9a\x66\xbd\xf0\xd4\x4c\x5c\xe8\x84\xa2\x09\x42\x92\x6c\xc5\xf4\xfa\x0b\xa9\xd9\xa8\xdd\x38\x70\x6b\xee\x0b\x28\x1a\xc6\x74\x8a\xe9\xa0\xb1\x40\x7f\xa2\x0b\xf5\x5a\xb5\x25\xc8\x60\x67\xee\x28\xe7\xbd\x6d\xd4\x30\x98\x5b\x22\xd6\x84\x04\xbb\xbe\x4c\xb6\x32\x77\x02\xee\xb7\xe2\x5c\x05\x05\xcc\xff\x97\xaf\x0a\xa2\x03\x7d\xf3\x91\x50\x69\x5c\x04\xe9\xc7\x0a\x05\xfa\x62\xc2\x91\x52\x97\xd3\x48\x1c\x86\xe2\x92\xda\xf5\x8f\x12\x18\x47\x57\xb4\xd6\xe0\xe0\x26\xda\x23\x5c\x89\x60\x37\xa0\x95\xd0\x11\x25\x03\xea\xc5\x15\xf6\x3f\x71\x6c\x35\x03\x41\x20\xe5\x1f\xfa\xed\x97\x25\xa9\xdf\x6d\x16\xa2\xde\x87\xda\x91\x4f\x41\x87\xb9\x4c\x45\x18\xe4\x39\x31\x1c\xf0\xbb\x3d\x95\x0a\x2f\x39\xbb\x53\x27\x76\x75\x8f\xb0\x22\x2f\x34\x11\x7b\x00\x80\x32\xe1\x5d\x98\x08\x7c\x45\xc5\x87\xd5\xa2\x8e\x37\xea\x52\x8b\x35\x20\xac\x33\x82\xb9\x11\x47\x9c\xfc\xf4\xfc\x15\x1d\x18\xa1\x41\xab\xf4\xe7\x62\xb9\xd1\x05\xbc\x16\xad\x07\xdc\x75\xb6\xdb\x21\xc5\x0d\x92\x84\x14\xb7\xbb\x06\x28\x89\x2d\x1e\x06\x35\x1a\x90\x0c\x26\xcd\x97\x39\x2e\x3b\xa7\x09\x92\xd6\xd0\x93\xe1\x59\x15\x86\xfa\x0d\xcd\x6c\xd0\x47\xf2\xd6\xda\xdf\x30\xf5\x77\x8e\x77\x85\xcc\xd0\x35\xe8\xf7\xc0\xe3\x8f\x20\x61\xf4\xce\x79\x0b\xb7\x81\x7e\x58\x87\x95\x82\xf8\xa5\xf4\x64\x64\x72\x31\x23\x51\x99\x2c\x36\x45\x59\xf6\x56\x4f\x3a\xe6\xbb\xe8\x0c\x23\x7e\x54\x1c\xdc\x42\x65\xfc\xa8\x1c\x2a\x9f\x4f\x36\x1b\x30\x5a\x9a\x1e\xd0\x9b\x5c\x8e\x41\x71\x1c\x81\x13\xac\x88\x58\x82\x11\xce\x25\x9e\x6a\xb9\x2e\xb7\x5b\xda\x0f\xda\x7a\xb4\xc7\xea\xd0\x13\x17\x0b\x05\x72\xf2\x6d\x19\x79\x5b\x99\x0a\xaf\xca\xb3\xca\x08\x82\xb6\x1b\xbc\x1b\x44\xf9\x60\xa7\xf5\xd9\xe9\xdb\xb7\xef\x2e\xe3\x21\xcd\xfb\xa0\x5e\x11\x2b\xf1\x4d\xf0\x7d\x1c\xf5\xcb\x3c\x20\xc3\x02\xa6\x10\xd1\x07\x53\x4b\x1c\x83\xf3\x64\xca\x79\x7f\xac\x1b\xd0\x9e\x86\xfb\x62\xb4\x3c\xe9\xff\xea\xd8\xfa\x65\xbf\x32\x77\xf3\x21\x33\x85\xf8\x3b\xfe\x9b\x79\x9b\x82\xb3\xc5\x60\xeb\x45\x93\x4d\xbc\x69\x42\x1d\x68\x56\x23\x1b\x03\x88\xf4\xa1\x80\xa8\x45\x73\xdf\xe0\xac\xb8\xca\x61\xca\x3f\x61\x95\x69\xd3\x62\xc3\xf0\xe4\x1e\xea\xea\x2f\x07\xb0\x67\xb0\xc0\xcf\x32\x76\xa9\x5d\x54\x5b\x39\x50\xfe\x18\x3e\x24\x9d\x7f\x0d\x6e\x43\xb8\xc6\xe9\xeb\xfb\x6e\xcf\x1e\xc9\x74\x36\x74\x4f\xef\x1d\xaa\x9c\xb5\x88\xec\x5c\x77\xef\x07\x92\x5f\xd8\x26\x4f\xcb\x47\x10\x3f\x8c\xaa\xe3\x0b\x8f\x4b\x51\x3e\x06\x6f\x19\xe0\xad\xa6\xf3\x6e\x61\x7e\x37\xd1\x78\xca\xc4\xff\x03\x6d\xf2\xed\xca\x38\x8e\x87\x2a\x75\xd3\x1c\x61\xef\x7e\x2a\xb6\x87\x54\x05\xc3\xad\x73\x99\xee\x51\x86\xab\x1e\xb1\x2c\xbc\xa7\x70\x5f\x97\x33\x08\x1b\x7e\xc4\xa4\xf5\xb7\xdf\xfb\xe3\x9b\xbd\xcc\xf8\x7d\x93\xa1\x27\xaa\xa4\x1e\x5e\xf4\x44\x9e\xdd\xc1\xe0\x3c\x5c\xc4\x40\xea\xc4\x6a\xb8\x3b\x5b\xc5\xb6\x17\x05\x75\xee\x56\x93\x49\x0b\x06\xe1\x15\xbb\x37\x6a\x0a\x0c\x14\xac\x5b\xb6\x15\xee\x91\x48\x3a\xdf\xf6\xcd\xdd\x4d\x5f\x24\xae\xab\x9e\x84\x75\xf6\x86\x0c\x8d\x5f\x10\xf2\xd3\x3c\xcd\x42\x56\x6e\x77\x87\xbb\x8c\xe8\x07\x1d\x69\xb8\x30\x2c\xbf\x2c\x65\x54\x9c\x4f\x7f\x81\x85\x46\x8e\x59\x4e\xdd\x0a\xfc\x43\xbf\x27\x4a\x29\xa0\x35\xc9\xa6\x92\x66\x5e\xd5\x15\x53\x80\x57\xf4\x87\x4e\x77\x91\x04\x52\x7c\x15\x3e\x17\x95\xa8\xb6\x47\xc4\xf0\x50\x8f\xfa\x37\xea\xf2\xa8\x63\xa3\x5b\x20\xbd\xb3\xa0\x6a\x7f\xcc\x1f\x12\x72\x71\x4f\xd0\x6b\xc2\x44\x01\x0f\xb5\xa8\x9e\xe9\x6f\x92\x68\xf3\xee\x18\x1a\xb9\x35\xf6\xb8\x6f\x8b\xe5\x47\x26\x2e\x84\x33\x65\x4b\x52\x01\x9c\xba\x0a\x3e\xff\x72\x42\xb4\x35\x4d\x80\x58\x18\xd4\x63\x4a\x8a\x59\xe5\x15\x4b\x10\x9f\x84\x13\x93\x0b\xc6\xaf\x2c\xe5\x21\x8b\x9e\x8f\x0c\xd0\x04\xc7\x00\xa7\xea\x8f\x41\xbe\xf5\x53\xcd\x85\x6a\x2f\xa7\x0d\xc9\xa7\x08\xeb\x27\x60\xbd\xa3\xe9\x5a\xb1\x4d\xaa\xd8\x76\xb9\xca\xbb\x66\x86\xcf\xae\xd9\xb8\x2d\x16\x87\x3f\xe9\x4f\x18\x1c\xd6\xc5\x5f\x25\xf5\x22\x7c\x00\xc3\x3b\xc5\xf9\x4e\xad\x07\x34\xf7\xcb\x8d\xba\xcd\x35\x57\x73\xb9\x78\x88\x13\xfb\x32\x58\x41\x99\x5c\x00\x8e\x56\x73\x57\x7c\xae\x76\x87\x5d\x1e\x00\x51\x94\x37\xc1\xfd\xd4\xae\x31\x9b\xb6\x4e\x0c\x2d\xe1\x5f\x6f\xa4\x18\xd6\x70\xbb\xad\x82\xfd\xe3\xe6\x6c\xe2\x33\x9a\x92\x78\xc4\x64\x7a\x85\xdc\xae\xe2\x86\x3b\xe4\x72\x17\xd7\xe7\x1e\x27\xcf\xa6\x80\x2a\x52\x8a\x09\xb7\xe8\x05\x51\xbc\x7b\x3f\xc8\xa2\x1b\xb9\xb4\x5a\x15\xfd\xdf\xe8\x2d\x76\x87\xff\x0a\x31\x13\x9a\x18\x71\xe9\x0c\xd7\xe1\x22\x2a\x4d\x40\x25\x27\xaa\x72\xb5\x85\xbb\x52\xf7\xe4\xc5\xab\x4b\x5c\xa8\x23\x9c\x14\xed\x9e\xde\x1a\x64\x8f\x9b\x59\xa8\x93\x0f\xdb\xaa\xeb\x84\x09\xab\x2b\x4c\x3c\x13\xc2\x09\xfd\x9f\xa8\x0c\xb4\xb2\x14\x03\xac\xb6\xe8\xae\xce\x1e\x6c\xea\xab\xfe\x4a\x12\xb5\x20\x27\x42\x17\x91\x5a\xf2\xcc\xf9\xae\xf0\x77\x39\xad\xda\x60\xb4\x8d\xcb\xe6\xed\xb5\xba\xd5\x94\xd0\x6b\x40\x80\xe6\x2a\x13\x5a\x6d\xe9\x4a\xb9\xaf\xc2\x11\x80\xbb\x78\x7c\x23\x27\xa5\xfd\x08\x1c\x50\xf8\x75\xf7\x5e\xa5\xb4\x51\x98\x5b\xda\xdf\xcc\xd9\x92\x00\x06\x69\x7f\x13\x13\x1c\x27\x49\x19\x34\x9d\x0e\x38\x78\xbb\x9c\x63\x95\xff\xf3\x7f\xfd\xef\xc7\x67\x3c\xec\xb3\xbe\xdd\xd2\x2f\x65\xd4\x19\x5e\x96\x41\x2a\xc8\xdf\xfd\x1b\x09\x5c\xd7\xea\xda\xf2\x8b\xfc\xca\xec\x1b\xa4\x80\xf2\x3b\xd5\xed\xe3\x47\xa6\x5f\x4c\x11\x32\x8d\x83\xc0\xa4\x20\x63\x69\x57\xd1\x86\x24\x5d\x7f\x56\xfd\xe5\x50\x2d\x3f\xce\x45\x45\xf3\x34\xff\x77\xfe\xca\x71\xb7\x5e\x8f\x6b\xa6\xfc\x81\x8c\x03\x39\x07\x67\x81\x77\x65\xc7\x19\xa7\xd7\x59\x22\xd9\x2f\x52\xf6\xe3\xc6\x08\xaf\x01\xf2\x85\xbd\x6c\x7f\x60\x67\x2e\x46\x08\x6b\xed\x9c\x52\x70\xf9\x91\x13\x85\x9e\x87\x1a\xb0\xb2\xa3\x3a\xd0\x3c\x75\x57\xee\xc2\x4e\x72\x59\xc8\x72\x6e\xc6\x3b\xbe\x96\x46\x43\x56\x89\x27\x53\xd7\xd1\x33\xbe\x4b\x18\xce\x26\x3d\x93\xfa\xb6\x84\x4c\x47\x7f\x32\x3a\xf2\xd8\x45\x51\xad\xd6\x7c\x1f\xbc\x2f\x60\xde\x45\xba\xd9\xac\xd9\xe8\x5d\xac\xb5\x22\x08\x73\x3f\xe9\xcf\x8c\xd2\xf9\xfb\x92\xfe\x8c\xc2\x32\x70\x10\x87\x71\xf0\x86\x6d\xb1\x28\x91\xfc\x1a\x3f\x08\xf9\xe9\xd4\xed\x69\x45\xe4\x0c\xb2\x8f\x6c\x09\xb7\x3b\x41\x44\xfc\xca\xf4\xde\x90\xd8\xb9\xe5\x67\x06\x4b\x5d\x5b\xb0\xb5\xf9\x7d\x71\x2d\x9f\x34\x5d\x1a\xcc\xe3\xa5\xfc\x92\x64\x5c\x99\x10\x50\xdc\x98\x08\xf0\xe0\xd7\x75\x37\x9c\xdb\x6f\xc9\x62\x07\xd8\x2d\x33\x71\xb6\x0c\x66\x11\xa2\x8c\x5c\x32\x84\x05\xe5\xfb\x21\x75\x96\x95\x2b\x5e\xa2\x19\xe2\x77\x88\x8d\x91\xc5\x7c\xf0\x32\x9a\xc5\x7f\x2c\xef\x67\xfa\x9d\x64\xee\xdb\x12\xbd\x14\x4b\x45\x27\x5b\x0d\xd7\xdd\x84\x41\xed\x0c\x50\xb6\xfa\x1c\x95\xb1\xc7\x2d\x93\xf0\xb9\xf0\x2f\xb0\xf3\x81\x2c\x71\xed\x94\xf9\x18\xf4\x1d\x99\x49\x27\xb0\x25\x7c\x4f\x7a\x1b\xa0\x81\xb1\xe3\xc3\x7c\x51\xce\xa9\x81\x22\xb2\x38\x7f\x36\x97\x88\x05\x5c\x59\x0b\xc3\x12\x9a\x08\x68\x60\x1b\xd8\x4a\x59\xe8\xc8\x6d\x1c\x76\xcd\xdd\x57\x0e\x12\x26\x51\x2e\x30\x0e\x5f\x33\xf6\xfc\x90\x59\xd3\x88\x18\x0c\x6b\x7e\x43\xbe\x3e\x93\x87\xdd\xa8\xbc\x38\x3e\x1a\x17\xab\x40\xe6\xb8\x57\xad\x5a\x1d\xdf\x01\xe8\x47\xe4\xd2\x75\x54\x90\x7c\xd5\xe8\xc4\x28\x8f\x2e\x45\x92\x0a\x8f\xd1\x54\xe1\x39\xad\x00\x34\x3c\x62\xe6\x02\xb7\x19\x0c\x9b\xd4\xcd\xab\x45\x63\x7c\xd9\xc8\xb5\x17\x44\x43\x68\x6c\x98\xf3\x8a\x67\xd1\x89\x5c\xc2\x06\xf7\xc0\xfa\x11\xa2\x35\x7b\x50\xf1\x27\x33\x86\x35\x8d\x84\x2f\xb0\x6e\x64\x64\x44\x5a\xca\x75\x25\xb1\x4e\x20\x20\xf1\xbc\x97\xdb\x95\xab\x84\x69\x0f\xb1\x0c\x88\x78\x21\xfd\xc1\x39\xd1\xb4\x0e\x5f\x97\xe5\x76\x0e\x3f\x13\xca\x90\xcf\x90\x89\xfd\xed\x90\x5e\x3d\x6e\x07\x38\xcf\x4a\xd1\x9e\xf8\x72\x55\x80\xd3\x34\x3e\xf9\xde\x86\xfd\xc3\x03\x07\x15\x01\x42\xaa\x2a\x34\x82\xf1\xd8\xe7\x0d\xbd\x30\x7c\x9e\x76\x4d\x3d\x83\x43\xd4\xa7\x15\xee\x64\xd8\xfd\x7b\x22\xed\x3d\xdf\x39\xa7\xe9\x8e\x27\x92\x5b\x1b\xad\x44\xa6\x76\x7b\x43\x44\x45\xb0\x34\xec\x28\x1d\xaf\x01\xd8\xb4\xab\xda\xc3\xd8\x34\x01\x7f\xcc\xc3\xbd\x87\x6b\x18\x41\x0d\x82\x8c\xd8\x5c\x3c\xc8\x62\x0b\x76\x84\x99\x2a\xa5\x0e\x1e\xd3\xb1\x9e\x2b\x5c\xc8\x87\x87\x1f\xfa\x83\x48\x06\x12\xd2\x24\x67\x5a\x6e\x37\x52\x66\x9e\xcc\x99\xc3\x13\xdc\x3c\xf4\x68\x4e\xbd\xb1\xfd\x4c\x0c\x5c\x11\x86\xc8\xab\x64\x6d\x51\x86\xb3\xef\xb9\x66\x4d\xc4\x45\x91\xb2\x76\x74\x09\x7b\x23\x47\x6f\x3c\xa1\x64\xb3\x25\xb6\x8b\x2e\xc4\xcf\xf1\x32\xb0\xe1\x82\xa1\x3f\x9f\xbf\x45\xa0\x8e\x35\x5f\xa4\x11\xb6\x5d\xce\xfc\x7d\xa1\x96\x71\xb9\xbc\x58\xc8\xb9\x30\xe0\xff\x6e\x6b\x28\x0c\x19\xed\xc4\x22\x31\x2a\x4d\x22\x74\x78\xfe\xe1\x8b\xeb\x9f\x2b\xa9\xa4\x13\x62\x2e\x12\x63\x9c\x9e\x10\xfb\x06\x2d\xdc\x28\xc3\x6c\xb4\x75\x20\x62\x06\x61\xee\x58\x43\x6a\xcf\x9f\x5f\x6f\x5c\xb3\x46\xef\x46\x26\x28\x85\xce\x3b\x92\x22\xcb\x18\x38\x87\xaf\x1b\x49\xc9\xd9\xed\xba\x93\x78\x81\x05\xa6\x33\xd5\xfa\x5e\xb3\x6c\x0c\xba\x9d\x34\x42\x38\x6d\x38\x2f\xb4\xca\x90\x9b\x35\xc4\x11\xf7\xa9\x12\xf6\x81\x14\x92\xdf\x6f\x1c\x79\x4f\x47\x3a\xc2\xb3\x53\x99\x46\x68\x12\xe2\x92\x7d\x39\xc6\xd1\xda\x68\x43\x4c\x17\x98\x8d\x90\xd5\xa1\xd5\x10\x11\xc6\x1f\x33\x9c\x1d\xfb\x83\xd0\x1e\xcd\x5c\xfd\x51\x14\x57\x9f\x8b\xa8\x11\x94\xb8\x4f\xd4\x40\x19\x17\x1b\x5d\x15\x47\x75\x96\x3e\xc4\x15\x26\x30\x0f\xe2\xfb\xa2\xec\x82\xcb\x4b\xb3\x60\xa1\x02\x0c\xf7\x80\x30\x52\xa9\xa2\x45\x27\x61\xff\x58\x06\xe9\x0e\x8b\x98\x29\x1f\x2a\x1b\xcd\xd8\xfb\x45\x18\xbb\xd9\x98\xd5\xb3\x9c\xc1\xbd\x53\x5d\xbc\x98\x7f\x25\x76\x9d\xe7\x6c\xd5\xb1\xb4\x02\x72\x73\x6e\x57\x4a\x42\xfa\x2e\xdc\xf7\xd0\x9b\x1f\x21\x47\xcf\x86\x67\xd0\xf8\x68\x9a\x5d\x28\x7e\xc7\x7f\x43\x2a\x51\x3c\x55\xfa\xd1\xdf\x70\xe1\x56\xc2\xde\x31\xd9\x03\xe7\xeb\x92\x67\x43\x6e\xd7\x65\xf1\xae\xe4\x44\x11\x66\x90\xef\xb3\x97\xc4\xe1\xb6\xf3\x50\xfe\x8c\x3f\xf3\xed\xa8\x96\xc0\x3e\x7b\xee\x79\xd0\x8c\x87\xa1\xa6\x26\xc1\xa4\x39\x0f\x29\x2d\xee\xa6\x80\x39\x2c\x46\x02\xfb\x8e\xe3\x64\x38\xe6\x3d\xa9\x98\xd5\xcf\x83\x9a\xa1\x91\x9e\x86\xa7\xb3\x8e\x63\x3e\x40\x27\xaf\x3f\xc7\xfd\x74\x40\xd2\xcd\x62\x02\x94\x4d\xa3\x11\x8e\x06\x3e\x04\xd2\xad\x11\x8e\xc7\xe1\xea\xc5\xf5\xa1\xa5\x1d\x2e\x90\x64\xce\xf7\x5b\x62\x7b\xc2\xf5\x73\x00\x85\x53\x2f\x69\x26\x54\xa6\x8d\x25\xf5\x49\x5d\x41\x63\x3a\x83\x55\xe2\xe9\x6b\xde\x6e\x05\x3b\x93\x31\xe3\x95\xae\xfd\xb0\x04\xbb\xde\x3c\x0d\x74\xa3\xfe\xcf\xff\xf9\x7f\x7a\x68\x13\xa5\x54\xf4\xb4\x4a\x6e\x59\xde\x0b\x03\xbb\x67\x37\x2e\x8b\x45\x93\x44\xbf\x10\x97\x6c\x89\x7a\xc6\xdc\xde\xaa\xbc\x82\xef\x31\x77\x4a\x6f\x67\x1e\xe9\x91\xa8\xa1\x9e\x46\xcd\x2e\xc6\x4f\xe5\x8e\x15\xa0\x36\x9e\xb2\x93\x20\x48\xe5\x08\x1a\x38\xd7\x17\x0b\x9a\xc1\xfb\x2b\x20\x5c\x98\x5f\x46\xa7\x98\x25\xd8\x65\x99\x2a\xe1\xda\xe4\x27\xb3\xee\xf3\xf8\x90\x14\x4d\xb0\xe0\x4a\xd0\x0a\x6f\x27\x4a\xdc\xba\xe9\x86\x30\x47\x6b\x1e\x6d\x2d\x2d\x79\xcb\x0e\x88\x10\x1c\x19\xef\x78\xd5\x47\xca\xa9\xf2\x10\x2a\xc3\x71\xce\x8c\x63\x3f\x04\x21\x9e\x83\x98\xc9\xc7\x24\x68\xa7\xd1\x3a\x89\xfc\xf3\x09\x1e\xba\xba\x52\x53\xf2\x54\x21\x41\xa9\x15\xbb\x9c\x4a\x19\xd9\x0a\x08\x03\x74\xa4\xc8\x8e\xd5\xc9\x30\xab\x68\x91\x37\x21\x61\xa2\x48\xa7\x41\xc9\x38\x2a\xd8\x38\x67\x06\x34\xeb\x95\x7c\x77\x93\x20\xbc\x91\x01\xf2\x0e\x3f\xa6\x40\xc4\xc1\x22\x48\x14\xef\xf5\x22\xb6\xb9\x78\x4e\x36\xcc\xb7\x1b\x42\x89\xd7\xb8\xeb\xd0\x7e\x41\x39\xbe\xfd\xc6\x47\x8f\xf8\xd3\xbc\x69\x70\x25\x0d\x9f\xb7\xb4\x13\x0b\x48\x43\xa3\x12\xbc\x93\xb0\x0a\x2c\xa2\xe1\x77\x7e\xff\xd7\x6f\x3f\x74\xbc\x0c\xd1\x51\xe9\xd7\xdf\x7f\x20\x5e\xeb\xfe\xaf\x7f\xf8\x00\x0f\xa5\x51\xe1\xf9\x15\x8b\xc3\xe3\x1a\x50\xd0\xa0\xa1\xd0\x68\x0e\x41\x93\x41\x3f\x23\x09\xfd\x2c\x4b\xf1\x79\xb0\xc5\x43\x30\xb3\xc1\x0e\x5f\x85\xac\x74\x87\xd7\x87\xdd\x5c\xc7\xd8\x09\x05\xb0\xaf\x50\xdc\x66\x60\x5e\x70\x93\xbf\x85\xef\x38\xdc\xdf\x31\x63\x79\x1f\x23\xfd\xcd\x8a\x99\x4b\xb1\x40\xbb\xf0\x61\xa7\xea\x62\x16\x7c\xcd\xcc\xba\xbb\x72\x0a\x07\x2d\xf6\x63\xe8\x66\xe3\x5c\xa3\x84\x50\xc3\x06\x10\xf8\xe3\x9b\xb2\x9f\xa5\x24\x0d\x1f\x36\xde\x34\xcb\x3a\x15\x40\x74\xd1\x71\x63\xd0\x83\xb7\x25\x66\xd5\xe0\xde\xe3\x73\x90\x79\x5b\x65\x6d\x52\x40\x8f\xb2\x88\x62\x0a\x3a\x58\x28\x9d\x66\x39\xe6\x69\x8e\xab\x15\x23\x14\x21\xc8\xbd\x30\xdd\xf8\xfa\x01\xc8\x92\x4c\xba\xb4\x17\xea\xb0\xcf\xaf\xac\x45\x45\x6e\x82\x0a\xf5\xa8\x11\x6d\x25\xab\x23\x43\xd5\xdb\x66\x2a\x12\x7c\x5d\x13\xfb\x46\x83\x2b\x9f\xe3\x47\x6c\xd9\xc2\xbc\x80\x07\x3d\x73\x9f\x01\xcd\x13\x8b\xbf\x26\x5a\x08\x2c\xbb\x37\xac\xb2\x74\xe2\x38\xa8\x61\x51\x4c\xea\xe1\xfb\x40\x86\x6b\x35\x47\x39\xd2\xcb\x6d\x5a\xa3\x2a\xd5\x58\xb5\x17\x3a\x37\x90\xbf\xad\x6d\x96\x9a\x88\x6c\xd2\x9f\xc1\xd9\xac\x1b\x2e\xb2\x35\x69\x3e\x0d\xb6\x89\x6c\x0f\xbe\x86\x00\xe2\x85\x71\x7f\x35\xc9\xbe\x44\xd4\xd4\x9d\x8b\x78\x6b\xe9\xa9\x23\x90\x13\x83\x91\x8c\x81\xf6\x26\xcd\x0c\xb7\xe8\xa5\x83\xb8\x4b\x6f\xf1\xfb\xc6\xb5\xe8\x75\x11\x80\x06\x37\x90\x49\xb0\x69\xff\x68\xe1\x31\xbc\x87\x4f\x05\xd9\x2f\xfa\x44\xb3\x87\xab\x73\xfa\xd1\xba\x8f\xfb\xf8\x4c\x37\x1e\xf5\x89\xd2\xd7\x3b\x74\x89\x8e\x4c\xee\x49\xcc\xae\x96\xd5\xbe\x08\xa4\xf2\xdc\xa5\x18\x64\xd1\xf7\xc5\x72\xc3\xdb\xda\x33\x5d\xbf\x89\xd8\xad\xd2\x36\xe3\x23\x86\x03\xa3\x08\x41\xfc\x36\x51\x3a\xc4\xed\xf2\xa5\x43\x22\x57\xf1\x5b\x26\x56\x02\x27\x42\x79\x6b\x81\x66\xb2\x0f\x0b\x31\xb5\xa9\x86\x90\x53\x82\x8a\x70\x12\xce\x56\xc9\x80\xfb\xeb\x26\x0f\x36\x0c\x44\x1d\xe7\x13\x2c\xd5\x6d\x41\x09\x16\x24\xff\xb4\x5a\x84\x09\x7b\x8a\x2b\x50\xc3\x06\xb5\x85\xa7\xb9\xfe\xd2\xfc\xc4\xbc\x92\x0f\xcc\x2a\x36\xf2\x86\xad\xce\x87\x2d\x56\x04\xfe\x9b\xf2\x71\x25\x9e\x87\x06\x84\xd0\xcf\xcc\x6d\xc5\xb6\xdc\x21\x22\x81\xa1\xd5\x9b\x9c\x73\x17\xe5\xb2\x60\x9e\x1d\x7d\xe6\xb1\x6e\x38\x14\x75\x1c\x3d\x2b\x7b\x3e\xf1\x7d\x6a\xa9\x9f\x2f\x6c\xfa\x98\xdb\xbc\x62\xa1\x7a\x53\x66\x0c\x66\x6a\x51\xf6\xd7\xb8\x98\x0d\xf7\x6e\x9e\x5c\x51\xd9\x74\xdf\x79\x2e\x82\xa8\xe7\x13\xb4\xf1\x84\x59\x89\x95\x52\xd2\xdf\xe1\x43\xe8\xa9\x4e\xe5\x40\x16\x9b\x40\x03\x50\x23\x5b\xd4\x6b\xe0\x30\x6b\xe5\x4b\xb6\xc2\x70\x43\x2b\x53\x0f\x08\x5d\xff\x9e\x8d\x60\x46\xb8\xf1\x9b\x10\x96\xdd\xb7\x35\xfd\x0f\x21\x5d\xeb\x47\x4d\xca\x65\x58\x33\x92\xf6\xcf\x55\x4f\xa5\xff\xe5\x83\xe1\x28\x6d\x95\xb9\x27\xd7\xc0\xcf\xf8\x99\x40\x0d\xb5\x22\x31\xcf\xb4\x35\xcf\xf1\x57\x75\x5d\x9a\xaf\x87\x3a\xa1\x8a\x4c\x4d\x70\xda\x90\x0c\xf5\x4e\xf4\x2b\x49\xbd\x26\x49\x8d\xc9\x94\xce\x66\x70\xd2\x9b\x25\x53\x03\xf6\xbb\x8d\x2d\x31\xd6\x84\x9c\xcb\x51\xb5\x81\x2e\x29\x4c\x4a\x96\xa4\x0a\x0e\x60\x4d\xfb\xc3\x5c\x33\xe9\x2b\x38\x61\x4d\xd7\xa5\xb0\xab\x43\xbc\x8d\xcc\xb3\x48\x85\x60\x34\x72\xd4\xd6\xfa\x5e\x75\x73\x5c\xc8\x10\x95\xe4\xa5\xde\xb2\x20\x72\xd4\xe7\x21\x9d\x9a\x93\xeb\xc0\x12\x52\x75\x2d\x01\x6a\x43\x14\xf7\x2b\xfa\xde\x20\x7c\x24\x03\x5c\x95\x1c\xf8\x0d\x1c\x66\x20\x11\x45\x3d\x87\xcf\x11\x86\x9a\xb8\x36\x24\xc3\x50\x3f\x07\x9d\x90\x41\x50\xc8\x50\x15\xdc\x48\xbe\xac\x36\xf1\x7e\x9d\xaa\x2f\x90\x80\x3e\x28\x13\x6d\xdc\xdd\xf1\xb6\x86\xd1\xd8\x05\x1f\x76\x45\x2d\xde\x84\x15\x5f\xa4\x67\x55\x87\x44\x0e\xc2\xdd\x86\x7e\x33\x51\xb3\xd4\x36\x20\x29\x40\x9e\xa9\x9d\x0d\x84\x3d\xd4\xba\x01\x51\x2a\x28\x58\x7f\x53\xcd\xc5\x83\x3e\x20\xa9\x22\x72\x74\x25\x4d\x87\xea\x49\x56\x2d\x2c\x45\x32\x6d\x0f\x7f\x77\x7f\xf5\x48\x36\x31\xee\x38\x8c\x1c\xc2\x38\x51\x06\xee\x0f\x6f\xa6\xa2\x55\x87\x38\x5b\x8c\x32\x7c\x50\x30\x10\xeb\xab\x7f\xcb\x9c\x19\xdb\x9d\x65\x51\x37\xe0\xb2\x27\x14\x19\x2e\x77\x5a\x99\x31\x04\x58\x45\x2d\xda\xfd\x2e\x69\xbb\x99\xd3\xd6\x98\xab\xa4\x49\xc7\x09\x6f\x14\xfe\x1a\xf6\xc0\x24\xac\x61\xcd\x41\xdc\x48\x07\xc4\x9a\x5c\x3e\x42\x24\x82\x94\x90\x68\x67\xb9\x67\xf5\xb9\x5c\x6d\x56\xf3\xa4\x32\x03\x49\xf5\x03\x0a\x3f\x39\x39\xc6\x71\x22\xe2\x90\xcf\x98\xf0\x4f\xf4\xb9\x71\xcc\xcf\x68\xc0\xac\xc9\xcd\x1f\x9a\x7d\xee\x51\x3a\xc8\x52\xee\x99\xf2\x5f\x9f\x11\xa2\x83\x6a\x55\x73\x59\x79\xad\x11\x95\x6b\x4a\x8c\x56\x79\x12\x0c\xe1\x0f\x6e\xe8\xdf\xe3\xdd\xee\xf1\x6a\xf5\x60\x62\xd4\x8e\x67\x0b\xc3\x1e\x18\x82\x55\x39\x32\xa0\x92\xae\x26\xc7\x02\x4f\xcf\x1d\xac\xfa\x7e\x9d\x7e\x81\xd2\x8e\xce\x69\x66\x3a\x9c\x6d\x52\x70\x37\xae\x5e\xc7\xf4\xbf\xd9\xb3\x19\xc3\xfc\xe9\x79\x43\xcb\x55\x21\x3f\x96\x81\xf8\xe0\xb2\x06\xf1\xaa\x6e\xed\x60\x70\x30\x52\x76\x8e\x68\xf7\xee\xc8\xa4\x48\x94\xfc\xa3\x53\xe2\xd8\xf6\x38\xad\x81\x75\x9f\x00\x9c\x66\xdc\x63\xeb\xff\x95\xcc\xfb\x54\xf3\x53\x68\x70\x07\xfb\x9e\x5d\x57\x1f\x2b\x2a\xf0\x27\xfa\x83\xdf\x33\x8d\x30\x96\xc7\x88\x62\xd4\x2e\x67\x7f\x93\xe4\xdb\x58\x39\x07\x2e\x2b\x6c\xb7\x64\x6d\x75\x2e\xa1\xe9\xe5\xfe\xc4\x61\xcb\x5e\x47\x1f\xe5\x34\x6d\x96\x07\xc8\xf5\x37\x7a\xe1\xfd\x3f\x70\xfb\xbc\x21\xa6\x6e\xa3\x31\xcd\xc1\x32\x57\xbd\x22\xd5\x4c\x1a\x54\x1c\x47\x28\x8c\xb9\x3e\x1f\xa4\x9b\x5c\xbc\x05\x28\x1d\xa7\xa7\x80\xfb\x07\x86\x90\xa0\x6c\xb2\xa6\x2b\x93\x1c\xe1\xe5\xfe\xb2\xaf\xf5\xad\x46\x90\x96\x7c\x73\xc2\x4d\x8d\xf5\x3c\x72\x71\xe0\x60\xfe\x98\x6f\x88\xf0\x6d\x3e\xac\xb7\x6a\xe2\x22\x81\xd0\x71\x20\xe0\xae\xb6\xc4\xc2\xb0\x6b\x03\xf7\xaf\xb4\x01\x46\x0a\xa6\xce\x1d\xec\x95\xa6\x51\x40\x39\x22\xc6\x00\x07\xa6\x73\xca\x5c\xd5\xea\x2a\xba\x26\xe3\x89\x79\xc3\xf1\xc8\xb5\x89\x04\x44\x9d\x13\xa6\xa1\xf8\x22\xf1\xb2\x9c\x7f\x6b\x5c\x82\xbf\x5a\x21\xe6\x6a\xea\x9b\x30\xa6\x2c\x75\x29\x5f\x1a\x42\x47\xf2\x7e\x2f\xdb\x1e\x71\x22\xc3\x0a\x8d\x4d\x9d\x40\x24\x54\x35\xb8\x1f\x98\x5a\x3b\x5d\x1d\x9d\x2e\x73\xe7\x26\xd1\x6e\xc2\xdb\x3d\x36\xfd\xe4\xf8\xb5\x53\x8f\x0b\x59\xda\x4c\x16\x0b\x41\x34\xe4\x57\xcc\x72\x01\x77\x95\xa1\x76\xdf\x47\xc0\x66\x72\xc1\x40\x03\xcb\x1d\x03\x12\x7b\xb0\x62\xd2\x31\x20\xbc\xf2\x23\x3e\xea\xc7\x40\x48\x94\x53\xbb\x09\xfb\x38\xea\xef\x08\xbc\x69\x9a\x8f\x12\x6e\x79\x81\x9f\x31\x67\xcd\xef\xac\x48\x26\xbf\x28\xf2\x32\xcd\x25\xe9\xae\x5a\xfa\xe7\x95\x7e\xe2\x84\x89\xc9\xd3\xe8\x18\xef\x2c\x76\xf6\x45\x32\x1c\xb5\x20\xbb\x7a\xd4\x4d\x66\x5c\x91\xde\xbe\x67\x96\xe9\xcb\x62\x57\x4c\xc5\xac\x18\xba\x12\x84\xda\x8b\xd5\x27\x3e\x59\x56\xc9\x13\x54\x9a\x36\xd1\x19\x46\xaa\x70\xc3\x4d\xe2\xcd\x83\x58\x76\x37\x5d\x5f\xee\xdc\xf8\x58\x97\xca\xee\xef\xfc\x58\x86\x92\x53\x3e\x1b\x39\x3e\x38\x41\xa0\x50\x0a\xcd\x1e\x3d\x43\x68\x4b\x1b\x80\x27\xa0\xfa\x8c\xc8\xcf\x06\x8a\x2d\xc3\xe1\x0f\x8f\x83\xdb\x00\xfe\x98\x44\xb2\x5f\xf0\x0c\x89\xb5\x5c\x4c\x2a\xec\x09\x8d\x87\x86\x68\xf2\x6e\x52\x2b\x1e\x31\x8b\x6e\x0e\xe5\x5c\x1a\x4c\x8b\xa8\x3b\x71\xa5\xa0\x6c\x8f\x4c\x0c\x60\xe6\x0a\x33\x98\xa1\x2d\xdf\xbc\xbb\x2e\x71\xff\xee\x96\xba\xc2\xe0\xa6\xea\x0a\xf3\x77\xa4\x02\x4d\xc0\x9c\x04\xde\x2b\xcc\x24\x6c\xb3\xf9\xa5\xd6\xc8\xb3\xf1\x1c\x30\xe3\xf2\xd2\x76\xd7\xdf\x88\xef\xce\x74\x05\x6f\x8b\x1d\x2e\x57\x33\xd4\x77\xb7\xd6\x31\xb3\x40\x89\x44\xa6\xe5\xd7\xed\xe0\x08\xb0\x18\xcb\x9c\xba\xcf\xdb\xc6\xea\xdf\x21\x60\x29\x91\xc5\x19\x6f\x5b\x16\xea\xfd\x37\xbe\x66\xf1\xf7\xfc\x6f\xbc\x7b\xe8\x4f\x45\xa4\xe4\xf3\xdf\x4d\xcd\x10\x5e\x69\xe0\x9d\x79\x32\xba\x14\x26\xf2\x0b\x4f\x02\x8a\x39\x94\x81\x10\x36\xc0\x18\x2f\x31\x75\x76\xd3\x94\x76\xba\xc6\x12\x62\x36\xa7\xad\xe8\x74\x4a\x29\xf1\xaa\x80\x9b\xd1\x5f\xc5\x34\xfa\x0c\x5f\xf9\xff\x60\x36\x30\x80\xe0\xf1\x3a\x84\xb6\x63\xf5\x41\x27\xb7\x2e\x34\x44\x97\xc4\x7d\x11\xfd\x78\x11\x22\x7b\x77\xa9\x37\x7b\x7a\xf8\xc4\xf0\xdc\x12\x38\xa6\xa8\x25\x86\x86\x84\x0b\x72\xe4\x98\x75\x2c\x7d\xd0\xb6\xf4\xec\xf5\xf8\xbe\x5c\x1f\xb6\x24\x0d\xb8\x0b\x0d\xc3\x02\xc3\x65\xb1\x7a\x94\x6f\x84\x43\x3c\x4f\x0e\x07\xa4\x46\x5d\x8e\xae\x85\xab\x0d\xea\xb8\xd6\xf2\x2b\x11\x72\xfd\x7e\xd8\x8a\x1c\xe0\x1d\x4e\xf0\xc7\x1a\xab\x2c\xbd\x28\x99\x34\xec\x66\x43\xfb\x00\xd5\xd3\x54\x2f\xc4\x22\x14\xfa\x20\xf7\x25\x27\x7a\x10\xad\x5b\x76\x63\x52\xd5\x52\x83\x23\x54\xa0\xe5\x5a\xef\xe0\x92\x4b\x14\x65\x04\xca\xe2\x3d\x4b\x97\x60\x7b\x4e\xc3\xdf\xf8\xed\x20\x21\xd5\xd8\x2d\x5d\x7f\xbe\xb3\xa0\x6c\x63\xb0\xa0\x11\x89\x91\xd8\xd2\x49\xe1\xb9\x50\x3c\xc0\x86\xd0\x45\x4a\xa3\x00\x32\x43\x1f\xde\xa5\xd2\xe8\xd7\xe0\x09\x70\xcd\xb8\x9b\xe8\xde\x60\x99\x18\x27\xe4\x29\x29\x20\x9e\x70\xf6\xd5\x95\xc3\x61\xb8\x06\xf2\xfd\xf4\x4f\xd5\xea\x40\x34\x88\x3b\x73\x5b\xbd\xbf\x4f\xeb\xa5\x79\xc4\x9d\x97\xa3\x75\x0f\x06\x84\x1d\x1e\xde\x27\x84\xe7\xc6\x55\x8c\x11\x39\x39\x22\x26\x3e\xc1\xcc\xa3\x3b\x09\xb1\x1e\xf3\x18\xed\xcd\x0b\x41\x22\xe1\x00\x3f\x24\xe4\x85\x61\xe9\x77\xa3\x63\x59\xed\x32\x3f\xb7\x5c\x27\x0e\x42\x56\xef\x4d\x82\xd9\x82\xbe\x33\x87\xc0\x12\x85\x70\xf8\xb2\x86\x30\x2a\x76\xea\x46\xaf\xdc\xb2\xcb\xf1\x24\x03\x3b\x59\xff\xc4\xfe\xf2\x3c\x32\x4f\x9c\x3d\x38\x86\x60\x5b\xdc\x30\x93\xd3\xfb\x63\x6e\x63\x24\xc9\xbd\xf7\xa4\xc9\x3a\x1c\x1d\x11\x31\x94\x61\xe0\xa7\x48\x30\x07\xce\xc7\xe8\xda\x14\x3d\x3a\x32\x51\x36\x80\x24\x5e\xe3\x3f\x32\x5b\xc7\x27\x2a\x12\xa2\x3b\xef\x61\x1f\xaf\xef\xf7\x47\x09\x9b\xbb\x2d\xed\x45\x16\xa6\x95\xfa\xde\xa5\x29\x84\xfd\x10\xe5\x02\x22\x9e\xdf\x64\xcf\x69\x9a\xf2\x13\x95\xc8\x4f\x82\xf9\x5f\x02\xd7\xb9\x8b\xf5\xde\x36\xdb\x1d\xef\x2b\x6e\x26\xc8\x04\x9c\xda\xb5\x5f\xe3\xca\x20\x6e\xf3\xf9\xb9\x67\x8f\x6f\xb6\x91\x5f\x89\x72\x45\xd0\x62\x58\xe9\x51\x4c\xb9\x43\xe8\x3f\xc6\x9a\x4f\x57\x66\xa2\xd1\x1d\xd1\xc6\xc6\xbb\xdf\x2c\xd1\x78\x46\x16\xd6\xe8\x00\xc3\x82\xfe\xdc\xd1\x65\x04\x64\x30\x82\x3b\x51\xd5\xe4\x89\x10\x03\x6b\x86\xae\x59\x81\xf6\x78\xf7\xd2\xbb\xfc\xf9\xc4\x1d\x7e\x27\x30\x70\x98\xfc\xc4\xe2\xce\x9e\xa6\x3c\x9e\xc4\xf2\x7e\xb4\xc0\x20\x28\x4d\x52\x57\x1a\x94\x66\x8c\x2f\x83\x86\x2d\x32\xcd\x58\x02\x6c\x5a\x6f\x60\xf6\x1d\x9b\x18\xd2\x64\xb1\xc4\x06\x20\x8f\x4e\x31\x3e\x46\x3f\xed\x8d\x3c\x07\xe4\xe5\xe0\x78\x71\x65\x78\x3c\x0e\x70\xf6\x96\x48\x36\xd6\x29\x51\x89\x1d\x9b\xb9\xb3\xc9\x59\xd3\x50\x13\x6e\xde\xc4\x9b\x57\x9e\x44\x4a\xfd\x26\xd5\xbd\x17\xe7\xe3\xcc\x95\x40\x98\xe9\x78\xa9\x96\x8d\x5a\x8b\xd1\xc4\x27\x51\xa7\xd3\x7b\xb5\x7a\x3b\x4b\xa2\x0a\x81\x91\xf4\x65\x67\x89\xf4\xc2\x6c\x3c\x42\x14\xeb\x5b\x2b\xfa\x4c\xf5\x30\x6c\xac\xe6\x5e\x6f\x1a\xc7\x56\xdd\xdd\x00\x23\xde\xb5\x88\xf7\x8a\xa4\x2a\xec\x0f\xb4\x00\x41\x6b\xa7\xaa\x00\x18\x6e\x76\x07\x9a\x1c\x68\xe9\x20\xf1\xeb\xdb\x97\xef\x2e\x2e\x61\xc4\xa5\x45\x23\x96\x65\xcd\x27\x7c\xfe\x27\x12\x11\xf1\x18\x19\x3f\x41\xa9\xe4\x73\xb9\xe4\x50\x63\x55\xad\x4f\x35\x5d\x97\x16\x03\xa6\x5e\xe9\x79\xe7\x03\xd1\x99\x80\x2e\xc6\xdc\x1c\xef\x42\xc2\xd9\x69\x5f\x2e\xab\x2b\xe2\x6a\x5f\xd3\x5a\xd5\xf2\xf2\x91\xf9\x9f\xdc\xea\xae\x1f\x46\x82\xfb\x98\x6c\xf3\xf5\x87\xb4\x64\xfa\xfd\xa1\x27\xe1\x68\x7a\x86\xa0\x53\x41\x57\x6c\x86\x6f\xd3\xe3\xe2\x54\x90\xb3\xbf\xe2\x43\x26\xd7\xfb\x82\x5f\xb2\x0f\x46\x7d\xf0\x4f\x65\x49\xd3\x5f\x4a\xd9\xb5\xaa\x19\xde\x56\x0b\x7d\xe1\x10\xe8\x1d\xa2\x90\xe0\xfb\x0e\x70\x9b\x82\x0b\x79\x51\x05\x1e\x79\x7c\x03\x55\xd1\x22\xd4\x6a\x0f\xb5\x81\x65\xb3\x39\xea\xc6\xfa\x94\xc9\x36\xe2\x10\xd1\xb5\xeb\xe1\x38\x05\xf7\xc5\x18\x2b\xcd\x91\xd0\x78\x28\xf1\x00\xe8\xae\xb8\x91\xd7\xc0\xd8\x66\xda\xd1\xe9\x59\xaf\x3a\xbb\xc8\xc7\x0f\x32\x6c\x9a\x6b\x56\xc7\xda\xfd\x92\xd1\x92\x8c\xfb\x16\xad\x89\x66\x42\x9c\x00\xe9\xf6\x8d\xc4\x9b\x78\xaf\x3f\xc7\x40\x62\x24\xe1\x51\xbd\x94\x5f\x63\x90\xbd\x3e\x5f\x11\x1e\xb2\x18\x83\x2c\x9a\x15\xaf\xd9\x4f\xf4\x67\xac\xb3\x0b\xef\x71\x9b\xe2\x0e\x7b\x79\xcf\x77\xe0\xc4\xe7\x95\x33\x08\x3b\xcb\xed\x95\x04\x9a\x66\x01\xb3\xb4\x3b\xa1\xe0\x58\xf4\x45\x3c\x8e\x30\x82\x0a\x74\x9e\x10\x22\x0b\xde\xd7\xde\x76\xaf\xaf\x6e\xfa\xe8\x91\xc3\x3e\xc9\x8d\x51\xed\xd7\x2b\x11\x0e\xb0\x9a\xb0\x69\xc9\xf3\x49\x27\x2c\x5c\xef\xdd\xc5\x1d\x53\x48\xed\xe5\xe9\x22\x8e\xdb\x49\x34\x00\xc1\xdb\x0d\x44\xa4\x2b\xb9\xb4\xe5\x82\xa7\x44\x9e\x9a\x03\xf7\xf1\x84\x8d\x7b\xa4\xc1\x6e\x78\x82\x24\xcc\xcd\x08\x22\xba\x4d\x02\xc8\xc2\xca\x0d\x79\x24\x05\x8f\xda\xcb\x97\x09\xf9\x70\x04\x38\x79\x28\x1d\x1d\xd5\x27\x89\x44\xc9\xc2\x84\xd5\x74\x2a\xce\x45\x82\xe7\x8a\xf5\x4e\x8e\x18\xf2\xcb\xa6\x7c\x43\x0f\x2a\x09\x12\x74\x8b\x76\x65\x57\x53\x95\x30\xf3\xa5\x24\x10\x60\x1f\xed\xb4\xd8\x76\x8d\x55\x21\xf7\x96\x3e\xf2\x3d\x16\x5a\x6f\xc8\x0e\xaa\xfc\x62\x31\x2e\xda\x66\x98\x16\x1f\xf6\x4c\x9e\x85\xd6\x5b\x3b\x18\xf2\xc3\x7f\xbd\x78\xf7\xf6\x24\xff\xfc\xf8\xfa\xfa\xfa\x31\x17\x7f\x7c\x68\xb7\x1c\x48\x70\xc5\x21\xf3\xff\xfb\x9b\xd7\x27\x79\xd9\x2f\x1f\xcd\xf2\x37\x42\xb5\x23\x31\x54\x87\x04\x38\x1b\xc1\xba\x4f\x04\xe2\x1f\xa7\xe6\xba\x63\x54\x0b\xea\x9f\x7f\xf1\xcc\x1d\xaf\x9e\xb9\xa2\xdb\xcb\x29\x70\x49\x77\x8c\xc2\xb2\x2d\xe1\xc9\x8d\x1f\x2e\x83\xb8\x86\x8f\x53\xc1\x95\x87\x20\x15\xb5\xa3\xdd\x78\xb5\xd4\xc7\x9c\x07\x20\xe6\xbc\x78\x06\xb7\xc5\xa8\xa0\xe5\x85\x0b\xa7\x30\x6b\x5c\x89\x4a\xb1\x95\x2c\x39\x60\x16\xa5\x2d\x44\xb9\xfa\x71\x58\x18\x41\x00\xf0\x16\xe9\xd3\xfc\x5f\x71\xed\x76\x63\xe6\x17\xce\x32\xdc\x02\xf0\x6c\x58\x18\xaf\x4c\x39\xe9\x87\x06\x20\x6f\x67\x99\xf4\x15\xf3\x82\x04\x36\xaa\x44\x95\x61\xec\x02\xce\xef\xda\x98\x72\x0c\xb8\x26\xd5\x8d\x8b\xa4\xe6\xf9\xe9\x6c\x9b\x17\xb9\x5d\x79\xa2\x91\x01\xcc\x76\x3d\x9e\x87\xc4\xfd\x23\x71\xfc\xb8\x05\x34\xc4\x9a\xf1\x4e\x1b\xe2\x06\x7c\x22\xce\xcd\xab\x93\xdc\x1c\x83\x4f\xd4\x08\x77\x62\xb7\x7b\xe8\xd7\xa1\x8e\xbf\xc5\x29\x53\x05\x22\xfb\x84\x13\x00\x7f\x72\x80\xce\x1b\x1a\x09\xcd\x62\xf5\xd7\x89\x49\xc1\x61\x2a\x31\x1c\x26\x17\xd9\x51\x78\x80\xaa\x12\x6e\x2c\xbe\x0b\x69\xcd\xf5\x31\xba\x72\x98\xe1\x9e\xfd\x2e\x7b\x44\x1b\x9e\xa2\x26\xa2\xad\x0a\x78\x17\xf7\xbf\x51\x68\x3d\x3f\x85\x15\x95\x48\x6d\x09\xfd\x03\xf1\x4b\x25\x9e\xe9\xe3\x7c\x36\xa2\xae\x91\x77\x55\xea\x3a\xe2\xcf\x14\x70\xd0\xc6\x88\x2d\xd2\xa5\x18\x8b\x53\xb1\x85\x63\x1c\xa0\x5c\x99\x30\xce\xc4\x5e\x3c\x40\xb8\xcb\x67\x21\x2d\xe5\xa7\x8d\xce\xe0\xe4\x48\x89\x0c\xee\x27\x82\x12\xf8\x33\x81\x39\xf3\xd4\xe9\x9a\x41\xe0\x72\xcd\x96\x12\x0b\xdf\x32\x8a\x50\xeb\x79\x15\xa9\xd5\xe2\x0d\x4a\x5c\xc4\x41\xe6\xf0\xfd\xfd\x21\x6d\x22\xe6\xbc\x16\x57\x0b\xf9\xe5\x67\x6b\xbf\x6d\x6e\x2c\x88\xef\x33\x7c\xe9\xc3\x04\x7e\x64\x11\x4c\x07\x15\x21\xa7\xea\x8a\xcc\x34\xa0\x50\x3b\x64\x4a\x56\xc2\x3f\x96\xf7\xa6\xb1\xa4\xac\xd5\xa6\x3a\x2d\xbc\x0e\xa2\xfe\xc3\xba\x90\x46\x3c\x94\x97\x8c\x35\x16\xae\x9b\x1a\x04\x70\xf1\x03\xf8\xb3\x7b\x43\x50\xa5\xa8\x9a\x15\x41\xa1\x1b\x5e\x6f\x91\x38\x07\x4d\x8d\x62\x1c\x7c\x36\x40\x0d\x83\xe4\xc6\x91\x1e\x0d\x92\xeb\x8b\xfa\x48\xb9\xae\x28\x4e\xfe\x30\x09\x93\xd6\xf0\x64\x59\xc6\x71\x70\xe3\x50\xbf\x20\x14\xee\xf4\xca\x0d\x45\xa7\x3b\x97\xfa\x36\x67\x98\x95\x1f\xdc\x17\x04\xc5\x1d\x5e\x6c\xfe\x02\x29\x6a\xaa\x2f\x71\x52\xdc\xec\xde\xe5\x1a\xb3\xaa\xae\xae\x66\x8b\x96\x84\x08\x8e\x3c\x8b\x57\xda\xf9\x6c\xe2\xef\xfc\x02\xdf\x02\xa2\xd7\xf5\x9f\xea\xbd\x7d\x49\xd4\x5b\x1f\x4f\xd5\xad\x57\x12\xe1\x8f\x3a\x7c\xb5\xfa\x19\xe5\x88\x6f\xea\xdb\x06\x4f\x08\x48\xce\x4c\x8a\xe0\x69\x60\xfe\x85\x98\xb9\xe1\x69\x60\x14\xba\xe0\x14\x07\xd6\xed\xb7\xc4\x7f\xeb\x13\xe9\x17\xfc\x81\x58\x34\x0e\xe2\x50\x93\x24\x5e\xae\x0c\xe6\x17\xf9\xf4\x50\x5c\x65\xb8\x1e\x62\x2a\x58\xbe\xf5\xa4\x37\xde\x21\x3c\x44\xe5\x2c\x30\xd4\xe0\x08\x8c\xd0\xaa\x82\x74\x10\x41\x7c\x8c\xcd\xfb\xab\xa0\x18\x8a\x10\x3a\xd1\x20\x58\x3f\xbd\x7a\x2b\x9f\x88\x54\xa3\x57\xc3\x11\x50\x87\x9d\x91\x25\x4b\xdf\xcf\xd8\xe3\xc6\x7d\x29\x37\xb4\x09\x8e\xf3\x72\x97\x6c\x6e\x9b\x12\xd8\x3b\x84\xd4\x91\x3a\x38\xf4\xce\x8e\x68\x41\xf0\x75\xbe\x60\xd5\xab\x7c\xb0\x04\x25\x6f\xa0\x71\xd8\x9d\xe8\xfe\xd9\x70\x90\x16\x22\x1f\x57\xde\x2d\x3a\x68\x29\xb8\xda\xcc\xa2\x08\xcd\xa6\xa2\x09\x59\x9e\x04\x81\x12\x6d\xb9\xec\x52\x05\x09\x10\xab\xb6\xb8\x82\x6f\x20\xff\x0d\xa9\x34\xb0\x58\xec\xbc\x2d\x1f\x0f\x8b\xd1\xe2\x09\x4a\x5d\xe0\x47\x48\x57\xdf\x3e\xfe\x13\xd2\x8a\x8d\xf8\x95\xc4\x95\x89\x2b\x66\xbe\xe1\xb8\x69\xaf\x81\x14\x74\x23\x0e\x1a\xc4\x2e\x88\x4f\x89\x62\x8f\x20\x2c\x94\x1f\xab\x77\x1a\x44\x18\xf0\x6e\x93\x87\xf9\xe1\xc8\x69\xbd\x84\xf8\xdd\xb7\xcd\xea\xc0\x2f\x3f\xf8\x7e\x27\xa5\x85\x7d\x29\x0d\x1b\xf9\x3d\x5c\xc8\x18\x08\x4b\x23\x2f\x33\xb0\x2f\x4c\x4b\x13\xc1\xaf\xd1\x48\xcc\x06\xdd\xe4\xd5\x8e\xea\xff\x24\xaf\x1f\x4b\xf5\xc4\x5b\x86\x10\xc4\xc4\x66\xd6\x12\x05\xd5\xf2\xa0\x9f\xb2\xf7\x95\x92\x32\xf1\xad\x53\x33\x0a\xc7\xf0\x19\x94\x0f\xbe\x6f\xe9\xa3\x7a\x31\x13\xcb\x21\xd9\x65\xec\xae\x03\xc9\x89\x63\xa9\xe3\x53\xc6\x72\x52\x7f\x21\x87\x16\xba\x9d\x35\x9c\x53\xc8\x61\xf9\x48\x98\xfc\xd7\xf2\x8b\xb5\x9f\x63\x6c\x1a\x07\xc9\xa6\xbc\xc7\xc3\xb5\x76\xf0\x61\x02\xfe\x54\x3e\x60\x1b\x4b\x43\xbc\x4b\x2e\xfe\x6f\x45\x9f\x60\x8a\x29\x4c\x75\x69\x69\xdb\x3f\xc6\xf1\x15\xbb\x31\xf4\xfa\x0c\xcd\x29\xa2\x44\x94\x19\x61\x3b\xfb\xd3\xd9\x4e\x81\x43\x5d\xba\x5d\x80\x3d\x71\xc3\xc0\xb3\x75\xb4\xd1\x84\x39\x8c\x50\xa9\xa1\x6c\x02\x58\x8e\x42\xcd\x8a\x0a\xf6\x21\xcc\xf4\xe9\x67\xed\x0c\x3d\xe8\xf0\xe6\x09\xeb\x92\x82\xcd\x89\x50\xe6\x96\xb3\x6e\xd4\x9a\x37\xdc\x48\x13\x77\x1c\x6e\xc3\x3d\x90\xfa\xe3\xb9\x7a\x94\x05\x61\x0a\xaa\x7b\x64\xc4\x82\x8c\xea\x52\xff\x65\xb7\xaf\x0c\x0f\xc2\xe3\xc1\xda\x7f\xbd\xad\x85\x83\xd9\x7e\x67\xd9\xaf\x4d\xbb\xfe\x10\x1f\x81\x0c\x7a\xfc\x44\x15\x0f\x6d\x0e\xc3\x84\x47\x9b\x8e\x00\xc6\x87\x9c\x62\x8d\x86\xc0\x2f\x78\x9b\xa6\x1a\x78\x06\x10\x5d\x9a\xbc\x4d\x0c\xbf\x54\x8b\x69\x3c\xb3\x40\x7e\xf2\xfe\x9c\x3a\x8c\xfa\xe6\x24\xbe\x5e\x74\x43\xfc\x45\xef\x5f\xab\x0b\x34\xc7\x80\xe3\x1f\xfc\x44\x20\x07\x07\x63\x45\xba\xb8\xb3\xbc\x42\x02\xce\x21\xf6\x68\xe1\xd7\x09\x45\x2b\x4a\x7f\x33\x84\xb6\x52\xd3\x01\xa7\xea\x2f\x4d\x1f\x3c\xd3\x96\x3c\xab\xe6\xe2\x35\xe1\xc1\xc3\xc4\xcb\x95\x2b\xc7\xac\x4c\xf8\xbf\x87\x37\x34\xb5\x13\x32\x85\x48\xbd\x0d\x3a\x09\x18\xcc\xd4\xe1\x60\x31\x17\x50\x17\xae\x54\xd5\x22\xe4\x00\xa9\xf0\x08\x63\x9d\xdc\x31\xed\x66\xb1\x19\x47\x6b\x36\xe2\x1c\x1f\x8b\x31\xd3\x08\xbf\xdb\x1f\x05\x3e\x09\xd6\xa9\x0a\x96\x42\x02\x7e\x4b\x72\xbe\x25\x49\x77\x9b\x68\x5c\x50\x11\x4b\x08\x3f\x1e\x79\x46\x6e\xfc\xe8\xe8\xd7\x87\x6a\x1d\xd7\x71\x7b\xb0\x56\xe7\x9f\x38\x76\x4b\xbc\xc5\x53\x75\xfa\xf9\x32\xaf\x56\x1e\xbc\x63\x16\xb2\xa6\x1e\x34\xfb\x47\x1c\x38\x53\x50\x47\x96\x92\x29\x08\x35\x7d\xa9\x49\x59\xfd\x42\x09\x53\xff\x39\xb7\xd0\xf4\x99\xce\x61\xaf\x47\x6f\x6e\x25\x9d\xfe\xba\xb7\xb7\x8e\xba\x60\x24\xb4\x62\xa8\xa4\x18\x05\xbc\xc7\x00\x6f\x2d\x92\x86\xbf\xf7\x1d\x0e\x8a\x75\xe7\x02\xa1\x56\x53\x09\x7c\x2f\xc6\xb5\xbb\xa3\xdf\x1f\x31\x9d\xdf\x16\x06\x7f\xd8\x4b\xa6\x31\x21\xf4\x82\xef\xe4\xad\x25\x3c\x5f\xd2\x0c\xcc\xb0\xff\x78\x68\xfc\x69\x8b\x28\x2b\x31\xae\x4d\xfb\x0c\x3e\xc6\xe6\x2f\x6a\xc4\xae\x5c\xb8\x2f\x91\x58\x23\xa1\x8d\x33\x07\x0e\x54\x26\x77\xf0\x2c\xac\x52\xed\x59\x7c\x55\x74\x9e\x84\xc3\x7f\x13\xdf\x2d\x8d\x91\xf1\xbf\x0b\xc5\xd4\x39\xd2\xde\xd2\x19\xa4\x47\x4a\x89\x5b\x14\x7b\x89\x4d\x1f\x81\xe4\x1b\x5c\xe2\x64\xce\xb0\x7c\xda\x86\xfc\x9d\xb7\xcd\xb6\x0c\x1d\xcd\xdf\x37\xec\xde\x6a\x20\x69\xe0\x81\xb4\x60\x28\x13\xd2\x55\xf0\xb7\xd8\xe4\x21\x5d\x9e\x61\x45\x74\x11\x97\xaa\xa7\xa5\x8f\x90\x08\xce\x5a\x6b\x87\xa0\xf2\xdd\x10\xba\x46\xb4\x33\x3d\x57\xdf\xf2\x43\xa1\x38\x54\x67\x88\x6c\x20\xcf\x9c\x6a\x4a\xda\xa8\xa4\x31\x8f\x13\x63\x77\xb2\xfb\xbd\xbe\xd9\x31\xce\x1f\xc4\xc4\xc6\x99\x12\xa2\x61\xdb\x3b\xbf\xcc\xa2\x6b\xfc\x8c\x5a\xcc\xc6\x69\x90\x68\xa9\x75\x10\x32\x54\xee\x98\x24\xed\x7a\x88\x2f\x69\x18\xf7\x07\x86\xcd\x9d\x98\x0a\x17\x9a\x35\xd5\x2d\xcb\x4b\x56\xd2\x0a\x7c\x15\x63\x3f\xe4\x7d\xfc\xa4\x1f\x1e\xe2\x4b\xfa\xc1\xad\xe0\xae\xb6\x88\x7c\xb7\xf4\x87\x83\x6c\x8a\x7b\x65\xe2\x52\x35\xec\x62\x8c\xd6\x7c\xe9\x4e\x72\xb8\xa5\xad\x06\x9c\x09\xdb\x7c\xc6\x47\xaa\xe4\x88\x17\xd1\x04\xf3\x20\x2e\xa2\x93\x8f\xd9\xdc\x4d\x04\x70\x29\x9e\x4b\x06\x50\xe7\xfc\x99\x04\x06\x1c\x9f\x4b\xd2\xaf\xc8\xec\x81\xfb\x52\xda\xa0\x99\x77\x1f\xc9\x02\x67\x61\x6b\x85\xf3\xf3\x87\x0a\x58\x3f\x5b\xc9\x15\x20\xa2\x6b\x0a\x6f\x30\xd7\xea\xb8\xb2\x40\xcc\x01\x15\x88\xf8\x18\xce\x76\xac\xe7\xdb\x9c\x3d\xa1\x84\xd9\xc4\x86\x6a\xae\x78\x80\x62\xe3\xbe\x77\x7d\xe5\xd0\x10\x8d\xbf\x4f\x5b\xdd\x7a\x3f\x6e\xdc\x95\x78\xae\xcb\x4b\xe2\x01\x61\x8e\x8a\x49\x33\xbf\xd5\xc7\x08\x12\xd1\x6e\xdd\x22\x5e\x80\xad\x35\x13\x0b\x87\x0a\xa8\xf0\xbb\x30\x4a\x56\x58\x0c\xa8\x01\x3c\x62\xa8\xa2\x07\xb7\x11\x85\xaf\xe8\x00\xc8\xc6\xed\x3d\x00\x59\x90\x08\x35\x1c\x68\x37\x92\x80\xdb\x3a\x22\x7b\xfe\x2b\x3a\x02\xba\xf1\x85\x1d\x39\xb1\x5e\xe8\x9b\xc0\xab\xd5\xe4\xfe\xbf\xad\x7f\x03\x41\x08\xc8\x99\x3c\x5a\x6d\xc4\x00\x9e\x62\x90\xd4\x26\x3d\xc5\x9c\xc2\x79\x36\x1b\xee\x12\xe7\xea\xe6\x76\x8a\xf3\xaa\xb5\xbe\xc0\xa9\x4d\x6f\x1f\xe8\x29\x17\xab\xaa\x69\xdd\xf1\xd8\x5d\xdd\xfb\x1b\x0a\x69\x5c\x7d\x76\xb4\xee\xdb\x1b\xe5\x74\x10\x72\x39\x79\x16\x20\xc6\x68\x17\x99\x0e\xce\x1d\xf2\x62\xf8\xaf\x58\xab\x0f\xd9\xaa\xe8\x36\x8b\xa6\xc0\xdb\xac\xcf\xec\x77\x26\xba\x32\x31\x70\xe3\xf9\xe8\xf8\x6e\x74\x3e\x7c\x47\xfa\xd6\x47\xc0\xd3\x67\xe2\x87\xef\xc6\x77\xf2\x72\xd2\xda\x58\xc4\xf5\x41\x6f\xcd\xa9\x33\x2c\xcf\x38\x6e\x53\xb1\xea\x9b\x13\xb2\x5d\x53\x57\xe2\x77\xf7\x46\x7e\x55\xfc\x08\xb8\xbf\xfa\xf9\x9c\x3f\xe4\xc5\x3a\x4d\xe1\x9b\x7e\x59\xdf\xf4\x78\x8f\xe4\x92\xff\x7e\x97\xdf\x5f\x65\x71\xe8\xd0\x6a\xb3\x82\x6e\x29\xba\x51\xf9\xed\xf2\xdd\x8b\xd3\xb8\xb8\xde\xda\x13\xda\xb1\x06\x74\x13\x3a\xf8\x83\xeb\xb6\x76\x12\x95\x1e\xba\xa9\x16\xed\x3e\x27\xbc\x41\x58\xff\xbf\x30\xed\xcc\xf7\x0b\x28\x5d\x17\x3f\x88\xe6\xf2\xc4\x25\x24\x0b\xe2\x33\xf6\xe1\x15\xc5\x24\x39\x3d\x4a\x63\xba\xbc\x8a\x92\x24\x71\x30\xdc\x24\xa1\x58\x8e\x5a\x31\x0b\x8c\x4f\x33\xf7\xe7\x98\x62\x8e\xd0\x49\xed\xe9\x53\x7a\x3e\x4b\x3c\xfe\x93\x24\xb9\x5d\x32\x18\x89\xe8\x85\x7d\xda\xb6\x59\xd3\xd1\x29\xba\xe6\x74\x78\xca\xaf\xa7\x75\xda\xbd\xe8\xa4\x0a\x84\x87\xf2\x29\x30\x06\xf7\x45\x97\x96\xc6\xfe\xf4\x09\x7a\x99\x77\x04\x18\xe3\x10\x11\xf1\x99\x40\x24\x13\xc3\x03\x32\x89\x2c\x3e\x05\xd9\x5d\x57\xf2\x5a\xc5\x05\x7e\x4c\xc2\xb4\x07\x68\x1d\x0f\xb5\xcb\x65\x37\x03\x8e\x6b\x81\xd7\x06\x1b\x7d\xdb\x85\x03\x0f\x84\x97\x05\xf3\x77\xd8\x8e\xdd\xad\x85\xdc\xb9\xc8\xfe\xe8\xfa\x9a\xa1\x96\x74\x37\x0d\xa6\x0f\xc8\x58\xb3\x1e\xb5\xea\xe7\x55\x44\xf9\xb0\x8b\x9c\x47\x81\x18\x28\xea\xad\x60\xd9\x5f\x54\xc7\xa0\x97\x11\x22\x54\xf3\xf5\x5d\x05\xfd\x67\x7a\x4f\xbd\x19\x74\x32\xa1\x79\x06\x72\x47\x0d\x83\x2e\x4e\x56\xf1\xf5\x9d\xc4\x49\x5b\xaf\xe5\xd4\x39\xd2\xc9\x1b\x3c\x47\xd9\xae\x54\x70\xdd\xb2\x53\xed\x0b\x73\xf4\xbb\xa3\xca\x63\xbd\xbe\xb5\xce\xaf\x18\xc6\xba\xea\xe7\xeb\x65\xec\x3e\x3f\xc5\xdb\x2e\x98\x70\xf3\xe1\x5e\x2e\x25\xbe\x4e\x9d\x2a\x2d\xa7\x8b\xdf\x36\xc1\xe8\x10\xab\x2b\xa6\xaa\x3f\xd6\xb7\xb6\x64\xf7\x1c\x56\xd4\xf1\xcb\xc5\xea\x32\xf0\xbe\x14\x33\xcb\x83\x19\xa5\x3d\x29\xf4\x99\xa4\x12\xc6\xf5\xee\x81\x44\xba\x7e\xb8\x2c\x70\x37\xf1\x3b\xbc\x80\x01\xd2\x8e\xd2\xc6\xd9\xf2\x6c\x3d\xba\xb5\xa1\xc1\x58\x1c\x5d\x77\x73\xdb\xa2\x2b\x7d\xf9\x45\x23\x70\x0e\x32\x7e\x18\x8c\x28\x4a\xc4\x40\xf2\x88\xc7\x4e\x26\xee\x21\xbb\x6b\x95\x2b\xb9\xfd\xab\x3e\x9e\x7a\x68\x5b\xfc\x79\xb5\x74\x1e\x19\x90\x6f\xf7\x96\x15\x7a\x90\xf4\xe2\xeb\xc6\xc8\x4f\xad\x8d\x36\xc2\x7b\x24\xeb\xd3\x6b\xff\xd0\x76\x98\xaa\xf8\x9f\xdd\x0e\xad\xeb\xd5\xe8\x3d\x7e\xc7\x1e\xe0\xb1\x29\x9a\xbb\xbe\xc2\x31\x71\x21\x8f\x4f\xfd\x82\x6f\x4f\xae\xe5\x91\xfc\xf9\xba\x69\x1b\xc2\x38\x89\x6f\xad\x0f\xe7\xbf\xb0\xb4\x6e\xa2\x00\x2c\x16\x37\xf3\x83\xc6\xaa\xb0\x32\x6f\x90\x4c\x6c\x1f\x07\x7a\x88\xa5\xc0\x3c\x59\x19\xd6\x43\x2f\xd5\x7a\x01\x6e\xca\x4a\x9d\x5a\x86\x2b\xa9\x65\x9a\x05\x5f\xf8\xd2\x18\x5e\x00\x7e\xa7\x29\x0e\x16\x76\x42\x8e\x88\x4c\x18\x70\xd8\xcf\x79\xa8\x08\xe1\x20\xc9\xf9\x6b\x24\xe7\x97\x9c\x3c\x6e\xc1\x7a\x15\x8a\x0d\x3a\x75\xac\xdc\x55\x5b\x8e\xca\x3c\xe7\x37\x8a\x86\xf0\x36\x73\x9b\xb2\xd8\x8f\xe6\xed\x25\x25\x8e\x66\x0d\x90\xe3\x09\x00\xec\xf1\x59\xf0\xa5\xaa\x15\x84\x68\x5f\xe2\xd5\x6a\x7b\xac\x8d\x0a\xde\x45\x43\xf8\x9a\x99\xf8\x23\x25\x94\x9b\x1a\xf6\x4a\x6d\x7b\xa3\x5e\x35\x0b\x0e\xc9\xd2\x19\xf4\x3b\xf9\x74\x50\x8b\xa6\xe9\x49\x96\x23\x50\x62\x23\xe1\x2a\x2b\xd3\xf4\x93\xa5\x33\x23\xbc\xfc\x38\x9a\x29\x81\x1e\x4f\x95\x40\x1f\x9f\xab\x1d\xbf\x14\x47\x6d\xb5\x87\x65\x7f\x20\x9a\x13\x1a\x7c\x73\xc1\x2f\xcc\x5d\x84\x8c\x51\x8b\xa3\x92\x1e\x43\x87\x85\xa7\x5a\x5e\xf2\x3b\x7f\x93\x4d\x9f\x71\xce\xad\x6d\x8f\xca\xfa\xc6\x47\xc5\xa7\x76\x4a\xdb\x10\x61\x61\xa2\xb4\x38\x2c\x3f\x96\xfc\x9c\x50\xb7\x99\xc3\xa9\xc3\xd7\x75\x6e\x60\xf9\x4f\x00\xcb\x5f\x12\x58\x7e\x09\x8d\xdb\x44\xad\x74\x8e\xee\xca\xbe\x80\x13\x92\xab\xe5\xc5\x19\xad\x80\x24\x4f\x95\x82\x26\x6e\xae\xf2\x8f\xee\x42\x66\x49\x5d\x0d\xef\xa0\xac\x53\x91\xe8\x34\x80\x4c\xd5\xc6\x71\x99\xe5\x40\x5f\xde\x2c\xf5\x09\xab\xcf\x3d\xf7\xe1\xbd\xa4\x38\x58\xc8\x78\x04\x6b\x34\x12\x7e\x28\x08\xeb\x42\xe0\x97\x29\xa1\x14\x0a\x16\x81\x85\x70\x11\xdc\x39\xfb\xee\x4c\x01\xee\x0b\xd9\x4c\x47\x21\xad\x79\x03\xb4\x96\x87\x70\xda\x68\x27\x53\x29\x64\x45\x04\x6c\xb9\xf7\xa5\x8f\x7b\x13\xce\xc1\xcf\x01\xd7\xbe\xec\x69\x6f\x4e\x53\x58\xb6\xd0\x3a\x8b\x4a\x34\xd2\xda\x7b\xc7\x0a\x26\x72\x05\xa4\x09\x49\x31\x4e\x18\x2f\x13\xd9\x6f\xcb\x4b\xc2\xd0\x48\x5a\x3c\x40\xe9\xaf\xa6\x59\x78\xb0\x10\x34\x5d\xd3\xe1\x2e\xde\x96\x6b\x56\x54\xc8\x45\x72\x84\xe1\xc2\x8d\xa0\xf7\x48\x36\xe9\xc6\xdf\xf1\xba\x6c\x30\x4a\x37\xb0\xd4\x29\xd1\x86\x79\x77\x88\xb2\x99\xd6\xe1\x03\xf4\xea\xc8\x20\xba\x98\x57\x5e\xaa\x76\x30\xef\x3c\x81\x94\x87\x15\xc5\xb0\xb9\xf5\xa5\x21\x57\x9a\xa0\x36\xa8\xe1\x35\x64\x4e\x37\xcb\xfb\xa2\xeb\xf8\x09\xe3\xa8\xea\x86\xb1\x80\x55\x2e\x72\x31\x05\xaa\x76\xb8\xdd\x1e\x6a\xe5\x98\xac\xf7\xca\x22\xc9\xae\xf6\xd1\xda\xec\x59\x68\xcd\xb9\xcb\xa8\x18\xe7\xc2\x61\x0a\xfc\x5a\x52\x1c\xd9\x15\x9f\xf5\x95\xc1\xf8\x8c\xe9\x1b\x7d\xb0\xd4\xdd\x9f\x3d\xb3\xdc\xd7\xfc\x76\xe9\xb1\xb2\xa6\xe3\x7b\x78\x41\x04\xe6\xf1\xb7\x78\xfb\x85\xf6\xc3\x7a\xdb\x2c\x0a\x76\x62\x91\x17\x69\xf1\xfc\xe9\x23\xad\x83\x5f\x1d\x72\x48\x39\x7c\xd5\xba\x18\x20\x29\x8d\x7e\x53\x2d\x68\x50\x22\xe8\x8f\x0b\x18\x80\x5c\x04\x03\x94\x6b\x49\x51\x3c\x29\x84\xb0\x1e\x9c\x21\x18\xca\xcf\xaa\x05\xa5\xa5\xe1\x3c\xec\xed\x7c\xaf\x67\xae\x8e\xe1\xa3\x1a\x5c\x19\xf7\x66\x05\xb3\x7d\x12\x47\xc9\xd7\x23\xcf\x7f\xce\x0d\xd9\xee\xaa\xeb\xe8\x6b\xa1\x93\x28\x13\xf5\xfb\x86\x31\x42\xfa\x0d\x39\x6f\x35\x1f\xa7\xb8\x81\x40\xa4\x7c\x35\x3b\x6a\x1d\x5d\x4f\x25\x4c\x29\xf7\x37\x5e\xae\xe6\x97\x8b\x72\xe6\x79\x11\xef\x9f\x45\x2c\x7f\x55\x3e\x44\xb7\x88\x01\xea\xd9\x6d\x37\xc6\xce\xa0\x23\x41\x75\x92\xbe\x03\x1c\x9d\x45\x7c\x68\x8e\xb4\x1f\x6d\xa4\x08\x8d\xe7\x9b\xf7\xda\xb1\xb4\x03\x62\xc7\x6b\x5a\xef\x5b\x95\x2a\x37\x93\xae\x4c\xb8\x4f\x9d\xba\x25\xbb\xcd\x37\x98\x6a\x95\xfb\xc3\x03\xea\x9e\x18\xb7\x13\x2a\x8f\x12\x9e\x7a\x23\x21\x75\xf3\x41\x52\x34\xfc\x98\xcd\x47\x54\xb0\x20\xdc\xc3\xf6\xdc\x76\x4e\x5a\x93\x12\xe3\xd7\xdf\xd3\x2e\x48\xca\xd8\x34\x2c\xe9\xaa\x3d\xcc\xed\x49\x65\x55\x05\xcf\xa0\x42\x14\xee\xad\xb5\xb4\xe1\xeb\x9c\xd0\x0c\x2b\x9d\x1d\x74\x79\x40\x69\x93\x6e\x4b\x29\x09\x71\x6a\x57\xed\x95\x98\x6b\x96\xeb\xbd\xa4\xf8\x57\x47\x24\xa5\x44\x8c\x21\xa6\x3c\x12\x6d\x68\xa5\xe9\x63\xa7\x2c\xd7\x49\xad\x66\xd0\x39\x57\x2b\xa0\xa6\x0f\x0b\xd7\x9b\xae\x24\x39\x82\xdf\x4d\xa7\x9d\xdb\x37\xcb\x66\x8b\xd3\x52\xd2\x78\xd3\x22\x4d\x61\x87\xb7\x34\x24\x15\x57\xa2\xf9\x4a\x49\xd7\x6b\xca\x5e\xde\x1d\x39\xe7\x77\x47\x24\x05\xda\xbb\x15\xfc\xa5\x59\x59\xf7\xec\xad\x4f\xb7\x93\xca\x72\xcf\xf5\x7b\x0a\xc6\xb9\x57\x15\x2d\x3f\x7b\xf2\x9d\x06\x02\xb6\x3a\x10\xba\xb8\x69\xc5\xcf\x79\xbf\xe5\xfe\xf2\x83\x9f\x30\xbc\xb1\x19\x42\x5e\xee\xd9\x54\xeb\x0d\x3c\x0e\x88\x24\xad\xc5\x85\x9f\x77\xd1\xcc\x26\x9e\xd9\x20\x8d\x6f\x0e\xf6\x47\xcd\x2c\x3f\xb1\x77\xa5\x03\xc1\x88\x00\x10\x46\x54\xf4\x12\x08\xaa\x9c\xba\x96\x97\x87\xdc\xa3\xd0\xc3\x17\x94\x40\x20\xc2\x81\xcd\xbd\xe7\xab\x5c\x8f\x2b\x44\x2d\xdd\xe9\xd3\x93\x72\xc7\x34\x09\x78\x35\x1b\xb5\x60\x7e\x56\x08\x3f\x79\x47\x6f\xba\x83\x75\xfd\xe2\x70\x57\xcf\x09\x15\x10\xe4\x0d\x7f\x8f\x82\x75\x2c\x0d\x2e\xf4\x7d\xb2\x92\xf5\xc7\x31\x8b\x97\x4a\xf1\x42\x2e\x9f\x7c\x36\xbc\x91\x50\x98\x36\xc9\x12\x0a\xd3\x6a\x86\x69\x2f\x00\x88\xc1\x3f\x81\xd8\xf1\x59\x3b\xef\x0a\x26\x4c\x74\xaa\xac\xf2\x8b\x53\x43\xfa\x5d\xbf\xb7\xc7\xc5\x2f\xde\x5c\x9e\xdf\xb2\x8b\x18\x54\x31\x1c\x90\x0e\xcd\x39\x4b\x51\x1d\x59\x0e\xdf\x2d\x40\x83\xec\x18\x55\xce\xc0\xb9\x4e\xb6\x4e\x37\x0d\x77\x1b\xaf\xc6\xc8\x4b\xd2\x17\xcd\xd9\x52\x9e\xb2\xd2\x32\xb3\xfc\x0d\xf1\x33\x15\xfb\x6a\x5a\x6b\xea\x2f\xc8\xef\xf0\x96\xfb\xa2\xb5\x37\x85\xf0\xaa\x72\xfe\xe0\xe4\xc1\x2c\xa1\x3b\xf3\x1e\x2f\xaa\x69\xa0\xb3\xcb\xd7\x17\xf4\x73\xd9\xde\x88\x33\x82\x8e\xf4\x63\xb5\x67\xb0\x39\xdf\x29\x13\x86\x9a\x52\x00\xfb\x47\xa4\xd8\xc6\x67\xab\x75\xd9\x7e\xe2\xe8\x9b\x8a\x3f\xe7\xa7\x6f\xa0\x2c\xa2\x24\x4f\x76\xb4\x69\x84\xda\x36\x76\x3d\x76\x82\x96\xa3\x49\xd8\x75\x23\x9d\xd5\x1e\x67\x0f\xfd\xb1\x7a\x5c\x14\xe0\x21\x4f\x2d\x9e\x05\x36\xd3\x23\xfe\x2e\x85\x4e\xd8\xbc\x40\xd5\x87\x72\x40\x5a\xe6\xae\x0b\x4a\xb3\x84\x8e\xfb\x43\x3b\xad\xe7\x0b\x5d\xf4\x7c\x65\x8e\xc1\xba\x6d\xd4\x93\xf1\x94\xd2\x12\x09\xe4\x5c\x8e\x16\xf5\x95\x18\x54\x1d\xbc\x26\xc6\x25\xbc\x59\x7d\x3c\xb1\x13\xae\x6f\xb7\xb8\xbb\x29\xca\x81\xeb\xaa\xc2\xfd\xb4\x23\x55\x0b\xff\x05\x18\xc2\x70\xf8\x5b\xa8\x71\x52\x0d\xcd\x91\xc5\x8b\x21\xe3\xf8\x81\x06\x31\x28\xbb\xc8\x68\xc2\xcb\xe3\x54\x55\x9e\xcb\x0d\x73\xc0\x73\xa5\xdd\xb8\x8b\xf5\x12\xed\xb4\xa9\x50\x83\x81\x59\x55\xa8\xa9\x9d\x59\x61\x8b\xfd\x3e\x1c\xdd\xfb\xfd\x36\x39\xb7\x1d\xc8\x27\x21\x7d\x0e\xe2\x8f\x1a\xa2\xce\x01\xc9\xb5\x6f\x0f\xc4\xb7\xbf\x15\x60\x78\xa4\x6b\x72\x73\x75\xc5\x6f\xaf\xf3\x8b\x31\x1a\x28\x95\x3f\x39\x9a\x75\x68\x5f\x83\x19\xcc\x59\xa7\x0b\x1d\x29\x8f\xe9\x99\x46\x38\x78\x8f\x44\x16\x4a\x0d\xbc\x3d\x60\x29\xb9\xbf\xef\x0f\xb5\x88\xdb\x2e\x4b\x1b\xe2\x2c\xdf\x08\x38\xc8\xb6\x69\xd8\x74\x0e\x6a\xed\xd8\xc7\xf7\x94\x4c\xbc\x42\xbf\x09\x13\xcc\x26\xec\xe5\x5c\xde\x40\x77\x65\x60\x40\x5f\xca\x9d\xab\x51\x21\xea\xf7\xb8\x04\xf5\xfb\x08\xb8\xb8\x69\x19\xf3\x75\x81\x2f\x39\x2e\x42\x8f\x11\xd5\x50\xb6\x85\x0d\x58\xd2\x86\x78\x83\x39\x08\x15\x77\x1b\x87\x1a\x17\x2f\xa7\xf1\x82\xa1\xc6\xdc\xa2\xcb\xc4\xd3\xb1\x73\x8d\x53\x3a\x17\x94\x53\xce\xb7\xcf\x7f\xd2\xf0\xa5\x82\x79\xbe\xd8\x11\x34\xe0\x2c\xcf\xcc\xb9\xe4\x2d\x5c\x41\x2c\xf7\x35\xbe\x46\x40\xc9\xca\x8d\xa6\x92\x00\xf8\xce\x23\xc2\xab\x28\xd0\xbf\x95\x37\x12\x56\x65\x02\x70\xcd\xcd\x05\x30\xfa\xca\x1f\x3e\xa0\xac\xc7\x92\xf5\xe0\xd1\xa8\x0c\x4b\xd3\xbb\xc3\x4e\x2e\x99\x56\x7f\x2d\xe5\xdd\x0b\xe6\x06\x24\x03\xad\x5d\xb0\x35\xe6\x8c\x33\x6e\x2b\xda\x4d\x94\xea\xc2\xda\xad\x16\x71\xe9\x9e\x99\xc7\xc4\xe4\xfa\x11\xa4\x67\xff\x63\xaa\x67\xa2\x63\xaa\x17\x1e\x62\xaa\x62\x95\xdf\x42\x94\xda\x75\x5b\xdb\x45\x17\x17\xaf\xd3\xad\x1a\x73\x23\x87\xf1\x90\xd9\xc5\x7b\xfc\x6c\x17\x3f\xef\x71\x2f\xe7\x4b\xcd\x8f\x5c\x09\x9d\x6a\x3f\xa9\x9a\x3a\xac\xa3\xfb\xcb\xb6\xea\xcb\x3f\xdc\x83\x17\xd4\xbd\xbe\x5a\x2d\xee\x3d\x4a\xa8\x5e\x85\x2b\x77\x8e\xec\x55\xcb\x23\xf3\x13\x34\x77\xac\x98\xda\xba\x28\x9c\xef\xe5\x1d\x30\xe5\x32\xd5\x7d\x3b\x9d\x5a\xa3\x47\x91\x9b\x08\xd4\xc8\x73\x12\xd6\x2f\xbe\x5d\xda\xba\x8c\x18\x5b\x1c\xf7\x55\xdf\x5b\x35\x3f\x21\x39\x76\x50\xde\x23\xb3\xf7\xc9\xf4\x22\x9b\x75\x0f\x4f\x92\xbd\xaa\xe5\x7e\xaa\x16\xc1\x48\x82\x26\xf2\x0d\xf7\xdf\x2b\x1f\x87\xfd\x1f\x61\xab\x8d\xe2\x76\xac\x55\x86\x6a\x59\xec\x89\xb7\x2e\x22\x2b\x75\x26\x09\xe1\x40\x90\xf8\x0a\x7c\x01\x72\xbe\x55\x37\x02\x89\xc1\x80\x6b\x90\xb4\x91\xd9\x6f\x20\x0c\x96\x38\x93\x28\x7a\x25\x85\xde\x73\x5e\x10\xd5\x7c\x61\x2b\x6d\xd1\x65\xc2\xca\x5b\xec\x83\xc9\x95\x47\x90\xa4\xf9\xb6\xac\xd7\x40\xbb\x7f\xe7\x4f\xe2\x82\xf9\x33\xcc\x90\x04\x35\x80\xf2\x9a\x2f\xef\x3d\xb5\x30\x07\xd0\x61\x53\x4a\x58\xdb\x3b\xd9\x55\xbf\x36\xfe\x4c\x7e\x83\xef\xe9\x1e\x2a\xec\x51\xf2\xab\xf9\xb6\x8e\xb4\x49\x1a\xb7\x7a\x2f\x7f\x7e\xfd\x6e\x00\x39\xb1\xbb\x35\x67\x82\x1a\x68\xce\xc4\xde\x87\xca\x1b\x44\x54\x25\x31\x28\xbb\x41\x45\xb1\x5b\x0c\x2e\x80\xcc\xaf\xe4\x4e\xaa\xbc\x8e\x2d\x4f\x98\xf1\xed\x0a\x2e\x81\x7d\xc7\x49\xcc\xdb\xe2\x41\xec\x51\xe9\x4e\xdf\x6c\x8c\xe0\xf1\x7d\x0a\x0d\x7e\xc4\x85\x67\x61\x92\xc5\x6b\x27\xcc\x31\x3c\x75\xa6\xa7\x58\x20\xc7\x33\x6c\xf9\x62\xa7\x8a\x2e\x7a\xb0\x4c\x4d\xd6\x24\x90\xc5\x8a\xb0\x5f\x6e\xbe\x02\xf4\x54\xbe\x53\x20\x18\x73\x3f\x15\xdb\x00\xf5\x4a\x13\x46\xad\xd6\xbe\xcd\x5a\x7c\x35\x1c\xa1\x13\x0f\x53\x47\xe8\xe4\x0e\xd7\xf4\x41\xae\xd0\x7c\xc5\xb7\x32\x57\x4e\x81\x3f\xd7\x24\x03\x35\x90\x58\xb3\x41\x68\xd5\xa1\x9f\xb4\xb9\xaa\x20\x78\x9d\xe1\x2b\xc1\x2e\xa5\x11\xbc\xa9\x05\x36\x92\x09\xd6\x95\x4b\x09\x03\x5e\x2f\xc3\xcc\x98\x8d\xea\xc5\x59\x98\x1b\x31\x67\x0d\x06\xb3\xad\xae\xca\x60\xfc\xd2\xd1\xbc\xa6\xb4\x04\x78\xd3\xf7\xfb\xce\xc2\x01\x71\xe4\xbe\x8b\xfc\x1d\x7d\x0c\x06\xe1\xab\xd2\x91\xc4\x9a\xc2\xcc\x54\xb0\x48\xba\x89\x91\x84\xe9\x29\x37\x68\x3d\x91\x1c\xb8\x1e\x49\x43\x4a\xbc\x6e\xf5\x0a\x55\xdc\xc5\x2f\x34\x69\x30\xa3\x57\xe5\x0a\x37\xc2\x57\xf3\x50\x42\xe7\xf5\xb9\xe5\x70\x9c\x04\xa8\x1f\xc3\xfc\x56\x7d\xec\x38\xab\xe8\x27\x3b\xcd\x50\xd6\x1f\x04\x55\x60\xcd\x15\xc2\xcf\xbb\x5e\x49\x6c\x85\x9b\xba\x2f\x3e\xe7\x2f\x2d\xdf\xd7\xc0\x36\x12\x94\x66\x2e\x1e\xbc\x0c\x41\xa2\xd4\x6b\x24\xe0\x1c\x2f\xf8\xe2\xfc\x7a\x2b\x41\x05\x1e\x1d\x2d\xce\xc1\x58\x5a\x3a\x46\x54\xe3\x6b\x15\x9d\xc5\xd4\xb4\x36\x2e\x33\x5d\x9b\x45\x32\x08\x75\xc8\xf3\x6d\x0f\x45\x50\x44\x2c\x83\xa4\x20\x61\x64\xd1\xae\xd5\x6c\x79\xda\xae\x0f\xf2\xaa\xad\xaf\xba\xe2\x80\x34\xa5\x3b\x21\xde\x54\x16\xa2\x66\x70\x46\x08\x38\xbb\x73\x26\xd0\x88\x1e\xae\x92\xf5\x44\x09\x78\xbf\xbb\x02\x67\xf0\x86\x8f\x3e\x93\x13\x45\x10\xca\x29\x96\x40\x14\xa7\x5b\x0b\xa8\x79\x56\xc0\x69\xa4\x63\x60\x2f\xbb\x04\x14\x62\x99\x65\x12\x85\x18\x4a\x19\x43\x86\x01\x63\x68\x6e\xcb\xb3\x65\x2b\x41\x58\xf9\xcf\x25\xfb\x8c\x86\x1c\x7f\x3a\x59\x5a\x47\xb4\x6f\x75\x90\x88\x0d\xfa\x33\xc2\xc7\x07\x8c\x65\x97\x5a\xc6\xc4\xa3\xc7\x29\x40\xf9\xb9\x5c\x1e\x9c\xa3\xcc\xcf\xf2\xad\x96\xe9\x58\x4d\x63\x57\x9b\x0e\x35\x1e\xbc\x3e\x97\x14\x07\x33\xf5\x2a\x96\x75\x1d\x12\x90\x49\x42\x47\xdb\x0f\xcd\xdb\x7c\x67\xe6\xfa\x6d\x1e\xd5\xfa\xb8\xcc\x56\x6e\x9d\x0f\xbc\xc1\x0d\x16\xc1\x40\x56\x08\xfe\x30\x0f\xc1\x20\x10\x15\x44\x20\x35\x30\x44\x80\x57\x9f\x66\x65\xc6\xd8\xe4\x17\x5a\x2d\xd9\x29\x90\xfd\x18\x40\x54\xf1\xb8\xf9\xe9\x36\x96\xa4\x21\x7b\x88\x67\xfa\x99\xc0\x54\xb5\xc8\xa4\x92\x25\xe6\xd5\x57\x92\xa6\x55\x3a\x17\x77\xd3\xeb\x84\xc7\xd3\x83\xf2\xe8\x42\x53\x86\x90\xd6\x32\x80\xd8\x09\x6d\x38\x1b\x5e\xe4\xf1\x69\x88\x2a\xed\xee\x21\xb8\x31\x0d\x97\xd1\xb2\x9a\x3d\x73\x10\xfb\xd9\xa8\xb7\x41\x39\xa3\x2b\x62\x0e\xfb\x77\x39\x7e\x66\xbf\xca\xdc\x7f\xb0\x8b\xe7\x6a\x65\x34\xe3\xbe\x73\xa8\x4b\xe2\x60\xc9\xe3\xd8\x59\x5b\xd6\xee\xc9\x06\xf9\x4a\x0a\x25\x8f\x63\x7e\x1b\x1f\xc1\xe4\x4b\x59\x47\x1f\x17\x0f\xef\x35\xa3\x56\xbe\x65\x22\x96\xe4\xc1\x43\xa2\x5d\xbb\x7c\x32\x2c\xcb\x96\xc7\x14\x8c\x33\xff\xc5\x2a\x96\x31\xda\xcb\xd6\xbf\xe9\x6b\xd2\xf2\xed\xc6\xf7\x44\xcc\x63\x4f\x64\xa4\xbf\x73\xcf\x3d\xa7\x4f\x71\xdb\xa3\xd6\x5f\x51\xc1\xe0\x05\xee\xf8\xa4\xf5\xd7\x74\x42\x86\x31\x7c\xa2\xd5\xd6\x2c\x79\xde\xd0\x57\xa8\x2f\xaf\x1e\x19\xd4\xa8\x3a\x19\xdb\x57\xd7\xa6\x23\x1c\x56\x17\x06\xfa\xf5\xdd\x1b\x3c\x48\xee\x5e\x6c\x6f\xea\xaf\x99\xb7\xc9\x67\x28\x7f\xd3\xe7\x32\xbf\xba\x5b\x21\xd8\xb9\xe2\xa9\x7d\x0f\x76\x8d\xe0\xfe\x34\xe2\xc7\x8d\x84\xf8\x81\x1c\xb1\x23\xe2\x3b\x7d\xf8\x6e\x00\xdb\xfd\xdb\xe3\xe3\x1d\x31\xd8\x43\xf6\x18\xb1\xbe\x1b\x0b\xfa\x2b\xc9\x55\xa7\xcf\xfe\x89\x32\xf8\x7e\x78\xcc\x96\xe8\x41\xdf\x34\xdb\x0f\x59\xb1\xe6\x21\xd1\xff\x19\xef\x60\xbd\x9a\x8b\xcd\x4c\x3f\x33\xf9\xe4\x5f\xdf\x72\xcd\xdf\x6a\x30\x5f\x7e\x20\xe1\xdb\x1d\x12\x76\x55\xcd\x67\x18\x27\x6c\x90\xb0\xe1\xf8\x78\xfc\xb9\xc2\xe7\xaa\xb8\xc1\xd7\x35\xbe\xae\xcb\xf2\xa3\x14\x06\x71\xa6\xe2\x4d\x4d\x42\x12\xa7\xdc\xe0\xfb\x86\x9f\x69\xc4\xf3\x0b\x4b\x04\x0d\xc6\x6b\x98\xf6\x81\x37\x2f\x6b\x58\xd2\x90\x6e\x1f\x94\xce\xad\x6a\xaa\xfc\xbc\xcf\xee\x91\x37\x9a\x84\x5f\xfc\x48\x1b\x35\xaf\x49\xf2\xf3\x3e\xce\xd4\x7e\x63\x15\xca\x6f\x4a\xe5\x7e\x68\xa2\xfc\xa4\xb4\xb6\xb8\x9e\xc7\x7e\xe9\x2f\xa4\xc6\x5e\xe9\x2f\x9a\xde\x55\xdb\xec\xf9\x41\x9c\x0f\x99\x3d\x54\x17\x5f\xa8\x7b\x46\x79\xe6\xa1\xcc\x31\xad\x58\x6b\x6f\x0f\x65\x1f\xf6\x1c\x6c\x65\x96\xd9\xc3\x94\x55\xbd\x3f\x04\x45\x6c\x7c\x14\x55\xc0\x62\xc8\x60\xb9\x9f\x49\x50\xb3\x0c\x6a\x5e\x8e\xa3\xb5\x00\xc3\x04\x05\x2f\x6b\x5a\xf2\x87\x7f\xfb\x1b\xe0\xe9\xf7\xdf\xff\x9e\xbf\xf9\xe9\x51\x5e\x7e\xe6\xe8\xfd\x5d\xbe\x53\x27\x24\x03\xa3\xef\xe7\x09\x24\x87\x86\xc1\xb5\x39\xf5\x7a\x91\x6b\x73\x68\x3e\xfb\xbf\x01\x00\x00\xff\xff\xc3\xc5\xba\xdd\x19\xd9\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4361,8 +4382,8 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 55286, mode: os.FileMode(420), modTime: time.Unix(1472453742, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 55577, mode: os.FileMode(436), modTime: time.Unix(1472493935, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4381,8 +4402,8 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 57050, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 57050, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4401,8 +4422,8 @@ func confLocaleLocale_fiFiIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 53951, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 53951, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4421,8 +4442,8 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 56663, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 56663, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4441,8 +4462,8 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 54659, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 54659, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4461,8 +4482,8 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 61945, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 61945, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4481,8 +4502,8 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 56961, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 56961, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4501,8 +4522,8 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 53390, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 53390, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4521,8 +4542,8 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 54775, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 54775, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4541,8 +4562,8 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 55230, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 55230, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4561,8 +4582,8 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 79763, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 79763, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4581,8 +4602,8 @@ func confLocaleLocale_trTrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 55222, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 55222, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4601,8 +4622,8 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 50219, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 50219, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4621,8 +4642,8 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 50193, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 50193, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4641,8 +4662,8 @@ func confLocaleLocale_zhTwIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 50059, mode: os.FileMode(420), modTime: time.Unix(1470918741, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 50059, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4661,8 +4682,8 @@ func confReadmeDefault() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/readme/Default", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} - a := &asset{bytes: bytes, info: info} + info := bindataFileInfo{name: "conf/readme/Default", size: 23, mode: os.FileMode(436), modTime: time.Unix(1471423275, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -4685,7 +4706,7 @@ func Asset(name string) ([]byte, error) { // It simplifies safe initialization of global variables. func MustAsset(name string) []byte { a, err := Asset(name) - if (err != nil) { + if err != nil { panic("asset: Asset(" + name + "): " + err.Error()) } @@ -4884,6 +4905,7 @@ var _bindata = map[string]func() (*asset, error){ "conf/gitignore/Yii": confGitignoreYii, "conf/gitignore/ZendFramework": confGitignoreZendframework, "conf/gitignore/Zephir": confGitignoreZephir, + "conf/label/Default": confLabelDefault, "conf/license/Abstyles License": confLicenseAbstylesLicense, "conf/license/Academic Free License v1.1": confLicenseAcademicFreeLicenseV11, "conf/license/Academic Free License v1.2": confLicenseAcademicFreeLicenseV12, @@ -4975,504 +4997,288 @@ func AssetDir(name string) ([]string, error) { } type bintree struct { - Func func() (*asset, error) + Func func() (*asset, error) Children map[string]*bintree } var _bintree = &bintree{nil, map[string]*bintree{ "conf": &bintree{nil, map[string]*bintree{ - "app.ini": &bintree{confAppIni, map[string]*bintree{ - }}, + "app.ini": &bintree{confAppIni, map[string]*bintree{}}, "gitignore": &bintree{nil, map[string]*bintree{ - "Actionscript": &bintree{confGitignoreActionscript, map[string]*bintree{ - }}, - "Ada": &bintree{confGitignoreAda, map[string]*bintree{ - }}, - "Agda": &bintree{confGitignoreAgda, map[string]*bintree{ - }}, - "Android": &bintree{confGitignoreAndroid, map[string]*bintree{ - }}, - "Anjuta": &bintree{confGitignoreAnjuta, map[string]*bintree{ - }}, - "AppEngine": &bintree{confGitignoreAppengine, map[string]*bintree{ - }}, - "AppceleratorTitanium": &bintree{confGitignoreAppceleratortitanium, map[string]*bintree{ - }}, - "ArchLinuxPackages": &bintree{confGitignoreArchlinuxpackages, map[string]*bintree{ - }}, - "Archives": &bintree{confGitignoreArchives, map[string]*bintree{ - }}, - "Autotools": &bintree{confGitignoreAutotools, map[string]*bintree{ - }}, - "BricxCC": &bintree{confGitignoreBricxcc, map[string]*bintree{ - }}, - "C": &bintree{confGitignoreC, map[string]*bintree{ - }}, - "C Sharp": &bintree{confGitignoreCSharp, map[string]*bintree{ - }}, - "C++": &bintree{confGitignoreC2, map[string]*bintree{ - }}, - "CFWheels": &bintree{confGitignoreCfwheels, map[string]*bintree{ - }}, - "CMake": &bintree{confGitignoreCmake, map[string]*bintree{ - }}, - "CUDA": &bintree{confGitignoreCuda, map[string]*bintree{ - }}, - "CVS": &bintree{confGitignoreCvs, map[string]*bintree{ - }}, - "CakePHP": &bintree{confGitignoreCakephp, map[string]*bintree{ - }}, - "ChefCookbook": &bintree{confGitignoreChefcookbook, map[string]*bintree{ - }}, - "Cloud9": &bintree{confGitignoreCloud9, map[string]*bintree{ - }}, - "CodeIgniter": &bintree{confGitignoreCodeigniter, map[string]*bintree{ - }}, - "CodeKit": &bintree{confGitignoreCodekit, map[string]*bintree{ - }}, - "CommonLisp": &bintree{confGitignoreCommonlisp, map[string]*bintree{ - }}, - "Composer": &bintree{confGitignoreComposer, map[string]*bintree{ - }}, - "Concrete5": &bintree{confGitignoreConcrete5, map[string]*bintree{ - }}, - "Coq": &bintree{confGitignoreCoq, map[string]*bintree{ - }}, - "CraftCMS": &bintree{confGitignoreCraftcms, map[string]*bintree{ - }}, - "DM": &bintree{confGitignoreDm, map[string]*bintree{ - }}, - "Dart": &bintree{confGitignoreDart, map[string]*bintree{ - }}, - "DartEditor": &bintree{confGitignoreDarteditor, map[string]*bintree{ - }}, - "Delphi": &bintree{confGitignoreDelphi, map[string]*bintree{ - }}, - "Dreamweaver": &bintree{confGitignoreDreamweaver, map[string]*bintree{ - }}, - "Drupal": &bintree{confGitignoreDrupal, map[string]*bintree{ - }}, - "EPiServer": &bintree{confGitignoreEpiserver, map[string]*bintree{ - }}, - "Eagle": &bintree{confGitignoreEagle, map[string]*bintree{ - }}, - "Eclipse": &bintree{confGitignoreEclipse, map[string]*bintree{ - }}, - "EiffelStudio": &bintree{confGitignoreEiffelstudio, map[string]*bintree{ - }}, - "Elisp": &bintree{confGitignoreElisp, map[string]*bintree{ - }}, - "Elixir": &bintree{confGitignoreElixir, map[string]*bintree{ - }}, - "Emacs": &bintree{confGitignoreEmacs, map[string]*bintree{ - }}, - "Ensime": &bintree{confGitignoreEnsime, map[string]*bintree{ - }}, - "Erlang": &bintree{confGitignoreErlang, map[string]*bintree{ - }}, - "Espresso": &bintree{confGitignoreEspresso, map[string]*bintree{ - }}, - "ExpressionEngine": &bintree{confGitignoreExpressionengine, map[string]*bintree{ - }}, - "ExtJs": &bintree{confGitignoreExtjs, map[string]*bintree{ - }}, - "Fancy": &bintree{confGitignoreFancy, map[string]*bintree{ - }}, - "Finale": &bintree{confGitignoreFinale, map[string]*bintree{ - }}, - "FlexBuilder": &bintree{confGitignoreFlexbuilder, map[string]*bintree{ - }}, - "ForceDotCom": &bintree{confGitignoreForcedotcom, map[string]*bintree{ - }}, - "FuelPHP": &bintree{confGitignoreFuelphp, map[string]*bintree{ - }}, - "GWT": &bintree{confGitignoreGwt, map[string]*bintree{ - }}, - "Gcov": &bintree{confGitignoreGcov, map[string]*bintree{ - }}, - "GitBook": &bintree{confGitignoreGitbook, map[string]*bintree{ - }}, - "Go": &bintree{confGitignoreGo, map[string]*bintree{ - }}, - "Gradle": &bintree{confGitignoreGradle, map[string]*bintree{ - }}, - "Grails": &bintree{confGitignoreGrails, map[string]*bintree{ - }}, - "Haskell": &bintree{confGitignoreHaskell, map[string]*bintree{ - }}, - "IGORPro": &bintree{confGitignoreIgorpro, map[string]*bintree{ - }}, - "IPythonNotebook": &bintree{confGitignoreIpythonnotebook, map[string]*bintree{ - }}, - "Idris": &bintree{confGitignoreIdris, map[string]*bintree{ - }}, - "JDeveloper": &bintree{confGitignoreJdeveloper, map[string]*bintree{ - }}, - "Java": &bintree{confGitignoreJava, map[string]*bintree{ - }}, - "Jboss": &bintree{confGitignoreJboss, map[string]*bintree{ - }}, - "Jekyll": &bintree{confGitignoreJekyll, map[string]*bintree{ - }}, - "JetBrains": &bintree{confGitignoreJetbrains, map[string]*bintree{ - }}, - "Joomla": &bintree{confGitignoreJoomla, map[string]*bintree{ - }}, - "KDevelop4": &bintree{confGitignoreKdevelop4, map[string]*bintree{ - }}, - "Kate": &bintree{confGitignoreKate, map[string]*bintree{ - }}, - "KiCAD": &bintree{confGitignoreKicad, map[string]*bintree{ - }}, - "Kohana": &bintree{confGitignoreKohana, map[string]*bintree{ - }}, - "LabVIEW": &bintree{confGitignoreLabview, map[string]*bintree{ - }}, - "Laravel": &bintree{confGitignoreLaravel, map[string]*bintree{ - }}, - "Lazarus": &bintree{confGitignoreLazarus, map[string]*bintree{ - }}, - "Leiningen": &bintree{confGitignoreLeiningen, map[string]*bintree{ - }}, - "LemonStand": &bintree{confGitignoreLemonstand, map[string]*bintree{ - }}, - "LibreOffice": &bintree{confGitignoreLibreoffice, map[string]*bintree{ - }}, - "Lilypond": &bintree{confGitignoreLilypond, map[string]*bintree{ - }}, - "Linux": &bintree{confGitignoreLinux, map[string]*bintree{ - }}, - "Lithium": &bintree{confGitignoreLithium, map[string]*bintree{ - }}, - "Lua": &bintree{confGitignoreLua, map[string]*bintree{ - }}, - "LyX": &bintree{confGitignoreLyx, map[string]*bintree{ - }}, - "Magento": &bintree{confGitignoreMagento, map[string]*bintree{ - }}, - "Matlab": &bintree{confGitignoreMatlab, map[string]*bintree{ - }}, - "Maven": &bintree{confGitignoreMaven, map[string]*bintree{ - }}, - "Mercurial": &bintree{confGitignoreMercurial, map[string]*bintree{ - }}, - "Mercury": &bintree{confGitignoreMercury, map[string]*bintree{ - }}, - "MetaProgrammingSystem": &bintree{confGitignoreMetaprogrammingsystem, map[string]*bintree{ - }}, - "MicrosoftOffice": &bintree{confGitignoreMicrosoftoffice, map[string]*bintree{ - }}, - "ModelSim": &bintree{confGitignoreModelsim, map[string]*bintree{ - }}, - "Momentics": &bintree{confGitignoreMomentics, map[string]*bintree{ - }}, - "MonoDevelop": &bintree{confGitignoreMonodevelop, map[string]*bintree{ - }}, - "Nanoc": &bintree{confGitignoreNanoc, map[string]*bintree{ - }}, - "NetBeans": &bintree{confGitignoreNetbeans, map[string]*bintree{ - }}, - "Nim": &bintree{confGitignoreNim, map[string]*bintree{ - }}, - "Ninja": &bintree{confGitignoreNinja, map[string]*bintree{ - }}, - "Node": &bintree{confGitignoreNode, map[string]*bintree{ - }}, - "NotepadPP": &bintree{confGitignoreNotepadpp, map[string]*bintree{ - }}, - "OCaml": &bintree{confGitignoreOcaml, map[string]*bintree{ - }}, - "OSX": &bintree{confGitignoreOsx, map[string]*bintree{ - }}, - "Objective-C": &bintree{confGitignoreObjectiveC, map[string]*bintree{ - }}, - "Opa": &bintree{confGitignoreOpa, map[string]*bintree{ - }}, - "OpenCart": &bintree{confGitignoreOpencart, map[string]*bintree{ - }}, - "OracleForms": &bintree{confGitignoreOracleforms, map[string]*bintree{ - }}, - "Packer": &bintree{confGitignorePacker, map[string]*bintree{ - }}, - "Perl": &bintree{confGitignorePerl, map[string]*bintree{ - }}, - "Phalcon": &bintree{confGitignorePhalcon, map[string]*bintree{ - }}, - "PlayFramework": &bintree{confGitignorePlayframework, map[string]*bintree{ - }}, - "Plone": &bintree{confGitignorePlone, map[string]*bintree{ - }}, - "Prestashop": &bintree{confGitignorePrestashop, map[string]*bintree{ - }}, - "Processing": &bintree{confGitignoreProcessing, map[string]*bintree{ - }}, - "Python": &bintree{confGitignorePython, map[string]*bintree{ - }}, - "Qooxdoo": &bintree{confGitignoreQooxdoo, map[string]*bintree{ - }}, - "Qt": &bintree{confGitignoreQt, map[string]*bintree{ - }}, - "R": &bintree{confGitignoreR, map[string]*bintree{ - }}, - "ROS": &bintree{confGitignoreRos, map[string]*bintree{ - }}, - "Rails": &bintree{confGitignoreRails, map[string]*bintree{ - }}, - "Redcar": &bintree{confGitignoreRedcar, map[string]*bintree{ - }}, - "Redis": &bintree{confGitignoreRedis, map[string]*bintree{ - }}, - "RhodesRhomobile": &bintree{confGitignoreRhodesrhomobile, map[string]*bintree{ - }}, - "Ruby": &bintree{confGitignoreRuby, map[string]*bintree{ - }}, - "Rust": &bintree{confGitignoreRust, map[string]*bintree{ - }}, - "SBT": &bintree{confGitignoreSbt, map[string]*bintree{ - }}, - "SCons": &bintree{confGitignoreScons, map[string]*bintree{ - }}, - "SVN": &bintree{confGitignoreSvn, map[string]*bintree{ - }}, - "Sass": &bintree{confGitignoreSass, map[string]*bintree{ - }}, - "Scala": &bintree{confGitignoreScala, map[string]*bintree{ - }}, - "Scrivener": &bintree{confGitignoreScrivener, map[string]*bintree{ - }}, - "Sdcc": &bintree{confGitignoreSdcc, map[string]*bintree{ - }}, - "SeamGen": &bintree{confGitignoreSeamgen, map[string]*bintree{ - }}, - "SketchUp": &bintree{confGitignoreSketchup, map[string]*bintree{ - }}, - "SlickEdit": &bintree{confGitignoreSlickedit, map[string]*bintree{ - }}, - "Stella": &bintree{confGitignoreStella, map[string]*bintree{ - }}, - "SublimeText": &bintree{confGitignoreSublimetext, map[string]*bintree{ - }}, - "SugarCRM": &bintree{confGitignoreSugarcrm, map[string]*bintree{ - }}, - "Swift": &bintree{confGitignoreSwift, map[string]*bintree{ - }}, - "Symfony": &bintree{confGitignoreSymfony, map[string]*bintree{ - }}, - "SymphonyCMS": &bintree{confGitignoreSymphonycms, map[string]*bintree{ - }}, - "SynopsysVCS": &bintree{confGitignoreSynopsysvcs, map[string]*bintree{ - }}, - "Tags": &bintree{confGitignoreTags, map[string]*bintree{ - }}, - "TeX": &bintree{confGitignoreTex, map[string]*bintree{ - }}, - "TextMate": &bintree{confGitignoreTextmate, map[string]*bintree{ - }}, - "Textpattern": &bintree{confGitignoreTextpattern, map[string]*bintree{ - }}, - "TortoiseGit": &bintree{confGitignoreTortoisegit, map[string]*bintree{ - }}, - "TurboGears2": &bintree{confGitignoreTurbogears2, map[string]*bintree{ - }}, - "Typo3": &bintree{confGitignoreTypo3, map[string]*bintree{ - }}, - "Umbraco": &bintree{confGitignoreUmbraco, map[string]*bintree{ - }}, - "Unity": &bintree{confGitignoreUnity, map[string]*bintree{ - }}, - "VVVV": &bintree{confGitignoreVvvv, map[string]*bintree{ - }}, - "Vagrant": &bintree{confGitignoreVagrant, map[string]*bintree{ - }}, - "Vim": &bintree{confGitignoreVim, map[string]*bintree{ - }}, - "VirtualEnv": &bintree{confGitignoreVirtualenv, map[string]*bintree{ - }}, - "VisualStudio": &bintree{confGitignoreVisualstudio, map[string]*bintree{ - }}, - "VisualStudioCode": &bintree{confGitignoreVisualstudiocode, map[string]*bintree{ - }}, - "Waf": &bintree{confGitignoreWaf, map[string]*bintree{ - }}, - "WebMethods": &bintree{confGitignoreWebmethods, map[string]*bintree{ - }}, - "Windows": &bintree{confGitignoreWindows, map[string]*bintree{ - }}, - "WordPress": &bintree{confGitignoreWordpress, map[string]*bintree{ - }}, - "Xcode": &bintree{confGitignoreXcode, map[string]*bintree{ - }}, - "XilinxISE": &bintree{confGitignoreXilinxise, map[string]*bintree{ - }}, - "Xojo": &bintree{confGitignoreXojo, map[string]*bintree{ - }}, - "Yeoman": &bintree{confGitignoreYeoman, map[string]*bintree{ - }}, - "Yii": &bintree{confGitignoreYii, map[string]*bintree{ - }}, - "ZendFramework": &bintree{confGitignoreZendframework, map[string]*bintree{ - }}, - "Zephir": &bintree{confGitignoreZephir, map[string]*bintree{ - }}, + "Actionscript": &bintree{confGitignoreActionscript, map[string]*bintree{}}, + "Ada": &bintree{confGitignoreAda, map[string]*bintree{}}, + "Agda": &bintree{confGitignoreAgda, map[string]*bintree{}}, + "Android": &bintree{confGitignoreAndroid, map[string]*bintree{}}, + "Anjuta": &bintree{confGitignoreAnjuta, map[string]*bintree{}}, + "AppEngine": &bintree{confGitignoreAppengine, map[string]*bintree{}}, + "AppceleratorTitanium": &bintree{confGitignoreAppceleratortitanium, map[string]*bintree{}}, + "ArchLinuxPackages": &bintree{confGitignoreArchlinuxpackages, map[string]*bintree{}}, + "Archives": &bintree{confGitignoreArchives, map[string]*bintree{}}, + "Autotools": &bintree{confGitignoreAutotools, map[string]*bintree{}}, + "BricxCC": &bintree{confGitignoreBricxcc, map[string]*bintree{}}, + "C": &bintree{confGitignoreC, map[string]*bintree{}}, + "C Sharp": &bintree{confGitignoreCSharp, map[string]*bintree{}}, + "C++": &bintree{confGitignoreC2, map[string]*bintree{}}, + "CFWheels": &bintree{confGitignoreCfwheels, map[string]*bintree{}}, + "CMake": &bintree{confGitignoreCmake, map[string]*bintree{}}, + "CUDA": &bintree{confGitignoreCuda, map[string]*bintree{}}, + "CVS": &bintree{confGitignoreCvs, map[string]*bintree{}}, + "CakePHP": &bintree{confGitignoreCakephp, map[string]*bintree{}}, + "ChefCookbook": &bintree{confGitignoreChefcookbook, map[string]*bintree{}}, + "Cloud9": &bintree{confGitignoreCloud9, map[string]*bintree{}}, + "CodeIgniter": &bintree{confGitignoreCodeigniter, map[string]*bintree{}}, + "CodeKit": &bintree{confGitignoreCodekit, map[string]*bintree{}}, + "CommonLisp": &bintree{confGitignoreCommonlisp, map[string]*bintree{}}, + "Composer": &bintree{confGitignoreComposer, map[string]*bintree{}}, + "Concrete5": &bintree{confGitignoreConcrete5, map[string]*bintree{}}, + "Coq": &bintree{confGitignoreCoq, map[string]*bintree{}}, + "CraftCMS": &bintree{confGitignoreCraftcms, map[string]*bintree{}}, + "DM": &bintree{confGitignoreDm, map[string]*bintree{}}, + "Dart": &bintree{confGitignoreDart, map[string]*bintree{}}, + "DartEditor": &bintree{confGitignoreDarteditor, map[string]*bintree{}}, + "Delphi": &bintree{confGitignoreDelphi, map[string]*bintree{}}, + "Dreamweaver": &bintree{confGitignoreDreamweaver, map[string]*bintree{}}, + "Drupal": &bintree{confGitignoreDrupal, map[string]*bintree{}}, + "EPiServer": &bintree{confGitignoreEpiserver, map[string]*bintree{}}, + "Eagle": &bintree{confGitignoreEagle, map[string]*bintree{}}, + "Eclipse": &bintree{confGitignoreEclipse, map[string]*bintree{}}, + "EiffelStudio": &bintree{confGitignoreEiffelstudio, map[string]*bintree{}}, + "Elisp": &bintree{confGitignoreElisp, map[string]*bintree{}}, + "Elixir": &bintree{confGitignoreElixir, map[string]*bintree{}}, + "Emacs": &bintree{confGitignoreEmacs, map[string]*bintree{}}, + "Ensime": &bintree{confGitignoreEnsime, map[string]*bintree{}}, + "Erlang": &bintree{confGitignoreErlang, map[string]*bintree{}}, + "Espresso": &bintree{confGitignoreEspresso, map[string]*bintree{}}, + "ExpressionEngine": &bintree{confGitignoreExpressionengine, map[string]*bintree{}}, + "ExtJs": &bintree{confGitignoreExtjs, map[string]*bintree{}}, + "Fancy": &bintree{confGitignoreFancy, map[string]*bintree{}}, + "Finale": &bintree{confGitignoreFinale, map[string]*bintree{}}, + "FlexBuilder": &bintree{confGitignoreFlexbuilder, map[string]*bintree{}}, + "ForceDotCom": &bintree{confGitignoreForcedotcom, map[string]*bintree{}}, + "FuelPHP": &bintree{confGitignoreFuelphp, map[string]*bintree{}}, + "GWT": &bintree{confGitignoreGwt, map[string]*bintree{}}, + "Gcov": &bintree{confGitignoreGcov, map[string]*bintree{}}, + "GitBook": &bintree{confGitignoreGitbook, map[string]*bintree{}}, + "Go": &bintree{confGitignoreGo, map[string]*bintree{}}, + "Gradle": &bintree{confGitignoreGradle, map[string]*bintree{}}, + "Grails": &bintree{confGitignoreGrails, map[string]*bintree{}}, + "Haskell": &bintree{confGitignoreHaskell, map[string]*bintree{}}, + "IGORPro": &bintree{confGitignoreIgorpro, map[string]*bintree{}}, + "IPythonNotebook": &bintree{confGitignoreIpythonnotebook, map[string]*bintree{}}, + "Idris": &bintree{confGitignoreIdris, map[string]*bintree{}}, + "JDeveloper": &bintree{confGitignoreJdeveloper, map[string]*bintree{}}, + "Java": &bintree{confGitignoreJava, map[string]*bintree{}}, + "Jboss": &bintree{confGitignoreJboss, map[string]*bintree{}}, + "Jekyll": &bintree{confGitignoreJekyll, map[string]*bintree{}}, + "JetBrains": &bintree{confGitignoreJetbrains, map[string]*bintree{}}, + "Joomla": &bintree{confGitignoreJoomla, map[string]*bintree{}}, + "KDevelop4": &bintree{confGitignoreKdevelop4, map[string]*bintree{}}, + "Kate": &bintree{confGitignoreKate, map[string]*bintree{}}, + "KiCAD": &bintree{confGitignoreKicad, map[string]*bintree{}}, + "Kohana": &bintree{confGitignoreKohana, map[string]*bintree{}}, + "LabVIEW": &bintree{confGitignoreLabview, map[string]*bintree{}}, + "Laravel": &bintree{confGitignoreLaravel, map[string]*bintree{}}, + "Lazarus": &bintree{confGitignoreLazarus, map[string]*bintree{}}, + "Leiningen": &bintree{confGitignoreLeiningen, map[string]*bintree{}}, + "LemonStand": &bintree{confGitignoreLemonstand, map[string]*bintree{}}, + "LibreOffice": &bintree{confGitignoreLibreoffice, map[string]*bintree{}}, + "Lilypond": &bintree{confGitignoreLilypond, map[string]*bintree{}}, + "Linux": &bintree{confGitignoreLinux, map[string]*bintree{}}, + "Lithium": &bintree{confGitignoreLithium, map[string]*bintree{}}, + "Lua": &bintree{confGitignoreLua, map[string]*bintree{}}, + "LyX": &bintree{confGitignoreLyx, map[string]*bintree{}}, + "Magento": &bintree{confGitignoreMagento, map[string]*bintree{}}, + "Matlab": &bintree{confGitignoreMatlab, map[string]*bintree{}}, + "Maven": &bintree{confGitignoreMaven, map[string]*bintree{}}, + "Mercurial": &bintree{confGitignoreMercurial, map[string]*bintree{}}, + "Mercury": &bintree{confGitignoreMercury, map[string]*bintree{}}, + "MetaProgrammingSystem": &bintree{confGitignoreMetaprogrammingsystem, map[string]*bintree{}}, + "MicrosoftOffice": &bintree{confGitignoreMicrosoftoffice, map[string]*bintree{}}, + "ModelSim": &bintree{confGitignoreModelsim, map[string]*bintree{}}, + "Momentics": &bintree{confGitignoreMomentics, map[string]*bintree{}}, + "MonoDevelop": &bintree{confGitignoreMonodevelop, map[string]*bintree{}}, + "Nanoc": &bintree{confGitignoreNanoc, map[string]*bintree{}}, + "NetBeans": &bintree{confGitignoreNetbeans, map[string]*bintree{}}, + "Nim": &bintree{confGitignoreNim, map[string]*bintree{}}, + "Ninja": &bintree{confGitignoreNinja, map[string]*bintree{}}, + "Node": &bintree{confGitignoreNode, map[string]*bintree{}}, + "NotepadPP": &bintree{confGitignoreNotepadpp, map[string]*bintree{}}, + "OCaml": &bintree{confGitignoreOcaml, map[string]*bintree{}}, + "OSX": &bintree{confGitignoreOsx, map[string]*bintree{}}, + "Objective-C": &bintree{confGitignoreObjectiveC, map[string]*bintree{}}, + "Opa": &bintree{confGitignoreOpa, map[string]*bintree{}}, + "OpenCart": &bintree{confGitignoreOpencart, map[string]*bintree{}}, + "OracleForms": &bintree{confGitignoreOracleforms, map[string]*bintree{}}, + "Packer": &bintree{confGitignorePacker, map[string]*bintree{}}, + "Perl": &bintree{confGitignorePerl, map[string]*bintree{}}, + "Phalcon": &bintree{confGitignorePhalcon, map[string]*bintree{}}, + "PlayFramework": &bintree{confGitignorePlayframework, map[string]*bintree{}}, + "Plone": &bintree{confGitignorePlone, map[string]*bintree{}}, + "Prestashop": &bintree{confGitignorePrestashop, map[string]*bintree{}}, + "Processing": &bintree{confGitignoreProcessing, map[string]*bintree{}}, + "Python": &bintree{confGitignorePython, map[string]*bintree{}}, + "Qooxdoo": &bintree{confGitignoreQooxdoo, map[string]*bintree{}}, + "Qt": &bintree{confGitignoreQt, map[string]*bintree{}}, + "R": &bintree{confGitignoreR, map[string]*bintree{}}, + "ROS": &bintree{confGitignoreRos, map[string]*bintree{}}, + "Rails": &bintree{confGitignoreRails, map[string]*bintree{}}, + "Redcar": &bintree{confGitignoreRedcar, map[string]*bintree{}}, + "Redis": &bintree{confGitignoreRedis, map[string]*bintree{}}, + "RhodesRhomobile": &bintree{confGitignoreRhodesrhomobile, map[string]*bintree{}}, + "Ruby": &bintree{confGitignoreRuby, map[string]*bintree{}}, + "Rust": &bintree{confGitignoreRust, map[string]*bintree{}}, + "SBT": &bintree{confGitignoreSbt, map[string]*bintree{}}, + "SCons": &bintree{confGitignoreScons, map[string]*bintree{}}, + "SVN": &bintree{confGitignoreSvn, map[string]*bintree{}}, + "Sass": &bintree{confGitignoreSass, map[string]*bintree{}}, + "Scala": &bintree{confGitignoreScala, map[string]*bintree{}}, + "Scrivener": &bintree{confGitignoreScrivener, map[string]*bintree{}}, + "Sdcc": &bintree{confGitignoreSdcc, map[string]*bintree{}}, + "SeamGen": &bintree{confGitignoreSeamgen, map[string]*bintree{}}, + "SketchUp": &bintree{confGitignoreSketchup, map[string]*bintree{}}, + "SlickEdit": &bintree{confGitignoreSlickedit, map[string]*bintree{}}, + "Stella": &bintree{confGitignoreStella, map[string]*bintree{}}, + "SublimeText": &bintree{confGitignoreSublimetext, map[string]*bintree{}}, + "SugarCRM": &bintree{confGitignoreSugarcrm, map[string]*bintree{}}, + "Swift": &bintree{confGitignoreSwift, map[string]*bintree{}}, + "Symfony": &bintree{confGitignoreSymfony, map[string]*bintree{}}, + "SymphonyCMS": &bintree{confGitignoreSymphonycms, map[string]*bintree{}}, + "SynopsysVCS": &bintree{confGitignoreSynopsysvcs, map[string]*bintree{}}, + "Tags": &bintree{confGitignoreTags, map[string]*bintree{}}, + "TeX": &bintree{confGitignoreTex, map[string]*bintree{}}, + "TextMate": &bintree{confGitignoreTextmate, map[string]*bintree{}}, + "Textpattern": &bintree{confGitignoreTextpattern, map[string]*bintree{}}, + "TortoiseGit": &bintree{confGitignoreTortoisegit, map[string]*bintree{}}, + "TurboGears2": &bintree{confGitignoreTurbogears2, map[string]*bintree{}}, + "Typo3": &bintree{confGitignoreTypo3, map[string]*bintree{}}, + "Umbraco": &bintree{confGitignoreUmbraco, map[string]*bintree{}}, + "Unity": &bintree{confGitignoreUnity, map[string]*bintree{}}, + "VVVV": &bintree{confGitignoreVvvv, map[string]*bintree{}}, + "Vagrant": &bintree{confGitignoreVagrant, map[string]*bintree{}}, + "Vim": &bintree{confGitignoreVim, map[string]*bintree{}}, + "VirtualEnv": &bintree{confGitignoreVirtualenv, map[string]*bintree{}}, + "VisualStudio": &bintree{confGitignoreVisualstudio, map[string]*bintree{}}, + "VisualStudioCode": &bintree{confGitignoreVisualstudiocode, map[string]*bintree{}}, + "Waf": &bintree{confGitignoreWaf, map[string]*bintree{}}, + "WebMethods": &bintree{confGitignoreWebmethods, map[string]*bintree{}}, + "Windows": &bintree{confGitignoreWindows, map[string]*bintree{}}, + "WordPress": &bintree{confGitignoreWordpress, map[string]*bintree{}}, + "Xcode": &bintree{confGitignoreXcode, map[string]*bintree{}}, + "XilinxISE": &bintree{confGitignoreXilinxise, map[string]*bintree{}}, + "Xojo": &bintree{confGitignoreXojo, map[string]*bintree{}}, + "Yeoman": &bintree{confGitignoreYeoman, map[string]*bintree{}}, + "Yii": &bintree{confGitignoreYii, map[string]*bintree{}}, + "ZendFramework": &bintree{confGitignoreZendframework, map[string]*bintree{}}, + "Zephir": &bintree{confGitignoreZephir, map[string]*bintree{}}, + }}, + "label": &bintree{nil, map[string]*bintree{ + "Default": &bintree{confLabelDefault, map[string]*bintree{}}, }}, "license": &bintree{nil, map[string]*bintree{ - "Abstyles License": &bintree{confLicenseAbstylesLicense, map[string]*bintree{ - }}, - "Academic Free License v1.1": &bintree{confLicenseAcademicFreeLicenseV11, map[string]*bintree{ - }}, - "Academic Free License v1.2": &bintree{confLicenseAcademicFreeLicenseV12, map[string]*bintree{ - }}, - "Academic Free License v2.0": &bintree{confLicenseAcademicFreeLicenseV20, map[string]*bintree{ - }}, - "Academic Free License v2.1": &bintree{confLicenseAcademicFreeLicenseV21, map[string]*bintree{ - }}, - "Academic Free License v3.0": &bintree{confLicenseAcademicFreeLicenseV30, map[string]*bintree{ - }}, - "Affero General Public License v1.0": &bintree{confLicenseAfferoGeneralPublicLicenseV10, map[string]*bintree{ - }}, - "Apache License 1.0": &bintree{confLicenseApacheLicense10, map[string]*bintree{ - }}, - "Apache License 1.1": &bintree{confLicenseApacheLicense11, map[string]*bintree{ - }}, - "Apache License 2.0": &bintree{confLicenseApacheLicense20, map[string]*bintree{ - }}, - "Artistic License 1.0": &bintree{confLicenseArtisticLicense10, map[string]*bintree{ - }}, - "Artistic License 2.0": &bintree{confLicenseArtisticLicense20, map[string]*bintree{ - }}, - "BSD 2-clause License": &bintree{confLicenseBsd2ClauseLicense, map[string]*bintree{ - }}, - "BSD 3-clause License": &bintree{confLicenseBsd3ClauseLicense, map[string]*bintree{ - }}, - "BSD 4-clause License": &bintree{confLicenseBsd4ClauseLicense, map[string]*bintree{ - }}, - "Creative Commons CC0 1.0 Universal": &bintree{confLicenseCreativeCommonsCc010Universal, map[string]*bintree{ - }}, - "Eclipse Public License 1.0": &bintree{confLicenseEclipsePublicLicense10, map[string]*bintree{ - }}, - "Educational Community License v1.0": &bintree{confLicenseEducationalCommunityLicenseV10, map[string]*bintree{ - }}, - "Educational Community License v2.0": &bintree{confLicenseEducationalCommunityLicenseV20, map[string]*bintree{ - }}, - "GNU Affero General Public License v3.0": &bintree{confLicenseGnuAfferoGeneralPublicLicenseV30, map[string]*bintree{ - }}, - "GNU Free Documentation License v1.1": &bintree{confLicenseGnuFreeDocumentationLicenseV11, map[string]*bintree{ - }}, - "GNU Free Documentation License v1.2": &bintree{confLicenseGnuFreeDocumentationLicenseV12, map[string]*bintree{ - }}, - "GNU Free Documentation License v1.3": &bintree{confLicenseGnuFreeDocumentationLicenseV13, map[string]*bintree{ - }}, - "GNU General Public License v1.0": &bintree{confLicenseGnuGeneralPublicLicenseV10, map[string]*bintree{ - }}, - "GNU General Public License v2.0": &bintree{confLicenseGnuGeneralPublicLicenseV20, map[string]*bintree{ - }}, - "GNU General Public License v3.0": &bintree{confLicenseGnuGeneralPublicLicenseV30, map[string]*bintree{ - }}, - "GNU Lesser General Public License v2.1": &bintree{confLicenseGnuLesserGeneralPublicLicenseV21, map[string]*bintree{ - }}, - "GNU Lesser General Public License v3.0": &bintree{confLicenseGnuLesserGeneralPublicLicenseV30, map[string]*bintree{ - }}, - "GNU Library General Public License v2.0": &bintree{confLicenseGnuLibraryGeneralPublicLicenseV20, map[string]*bintree{ - }}, - "ISC license": &bintree{confLicenseIscLicense, map[string]*bintree{ - }}, - "MIT License": &bintree{confLicenseMitLicense, map[string]*bintree{ - }}, - "Mozilla Public License 1.0": &bintree{confLicenseMozillaPublicLicense10, map[string]*bintree{ - }}, - "Mozilla Public License 1.1": &bintree{confLicenseMozillaPublicLicense11, map[string]*bintree{ - }}, - "Mozilla Public License 2.0": &bintree{confLicenseMozillaPublicLicense20, map[string]*bintree{ - }}, + "Abstyles License": &bintree{confLicenseAbstylesLicense, map[string]*bintree{}}, + "Academic Free License v1.1": &bintree{confLicenseAcademicFreeLicenseV11, map[string]*bintree{}}, + "Academic Free License v1.2": &bintree{confLicenseAcademicFreeLicenseV12, map[string]*bintree{}}, + "Academic Free License v2.0": &bintree{confLicenseAcademicFreeLicenseV20, map[string]*bintree{}}, + "Academic Free License v2.1": &bintree{confLicenseAcademicFreeLicenseV21, map[string]*bintree{}}, + "Academic Free License v3.0": &bintree{confLicenseAcademicFreeLicenseV30, map[string]*bintree{}}, + "Affero General Public License v1.0": &bintree{confLicenseAfferoGeneralPublicLicenseV10, map[string]*bintree{}}, + "Apache License 1.0": &bintree{confLicenseApacheLicense10, map[string]*bintree{}}, + "Apache License 1.1": &bintree{confLicenseApacheLicense11, map[string]*bintree{}}, + "Apache License 2.0": &bintree{confLicenseApacheLicense20, map[string]*bintree{}}, + "Artistic License 1.0": &bintree{confLicenseArtisticLicense10, map[string]*bintree{}}, + "Artistic License 2.0": &bintree{confLicenseArtisticLicense20, map[string]*bintree{}}, + "BSD 2-clause License": &bintree{confLicenseBsd2ClauseLicense, map[string]*bintree{}}, + "BSD 3-clause License": &bintree{confLicenseBsd3ClauseLicense, map[string]*bintree{}}, + "BSD 4-clause License": &bintree{confLicenseBsd4ClauseLicense, map[string]*bintree{}}, + "Creative Commons CC0 1.0 Universal": &bintree{confLicenseCreativeCommonsCc010Universal, map[string]*bintree{}}, + "Eclipse Public License 1.0": &bintree{confLicenseEclipsePublicLicense10, map[string]*bintree{}}, + "Educational Community License v1.0": &bintree{confLicenseEducationalCommunityLicenseV10, map[string]*bintree{}}, + "Educational Community License v2.0": &bintree{confLicenseEducationalCommunityLicenseV20, map[string]*bintree{}}, + "GNU Affero General Public License v3.0": &bintree{confLicenseGnuAfferoGeneralPublicLicenseV30, map[string]*bintree{}}, + "GNU Free Documentation License v1.1": &bintree{confLicenseGnuFreeDocumentationLicenseV11, map[string]*bintree{}}, + "GNU Free Documentation License v1.2": &bintree{confLicenseGnuFreeDocumentationLicenseV12, map[string]*bintree{}}, + "GNU Free Documentation License v1.3": &bintree{confLicenseGnuFreeDocumentationLicenseV13, map[string]*bintree{}}, + "GNU General Public License v1.0": &bintree{confLicenseGnuGeneralPublicLicenseV10, map[string]*bintree{}}, + "GNU General Public License v2.0": &bintree{confLicenseGnuGeneralPublicLicenseV20, map[string]*bintree{}}, + "GNU General Public License v3.0": &bintree{confLicenseGnuGeneralPublicLicenseV30, map[string]*bintree{}}, + "GNU Lesser General Public License v2.1": &bintree{confLicenseGnuLesserGeneralPublicLicenseV21, map[string]*bintree{}}, + "GNU Lesser General Public License v3.0": &bintree{confLicenseGnuLesserGeneralPublicLicenseV30, map[string]*bintree{}}, + "GNU Library General Public License v2.0": &bintree{confLicenseGnuLibraryGeneralPublicLicenseV20, map[string]*bintree{}}, + "ISC license": &bintree{confLicenseIscLicense, map[string]*bintree{}}, + "MIT License": &bintree{confLicenseMitLicense, map[string]*bintree{}}, + "Mozilla Public License 1.0": &bintree{confLicenseMozillaPublicLicense10, map[string]*bintree{}}, + "Mozilla Public License 1.1": &bintree{confLicenseMozillaPublicLicense11, map[string]*bintree{}}, + "Mozilla Public License 2.0": &bintree{confLicenseMozillaPublicLicense20, map[string]*bintree{}}, }}, "locale": &bintree{nil, map[string]*bintree{ - "locale_bg-BG.ini": &bintree{confLocaleLocale_bgBgIni, map[string]*bintree{ - }}, - "locale_cs-CZ.ini": &bintree{confLocaleLocale_csCzIni, map[string]*bintree{ - }}, - "locale_de-DE.ini": &bintree{confLocaleLocale_deDeIni, map[string]*bintree{ - }}, - "locale_en-US.ini": &bintree{confLocaleLocale_enUsIni, map[string]*bintree{ - }}, - "locale_es-ES.ini": &bintree{confLocaleLocale_esEsIni, map[string]*bintree{ - }}, - "locale_fi-FI.ini": &bintree{confLocaleLocale_fiFiIni, map[string]*bintree{ - }}, - "locale_fr-FR.ini": &bintree{confLocaleLocale_frFrIni, map[string]*bintree{ - }}, - "locale_it-IT.ini": &bintree{confLocaleLocale_itItIni, map[string]*bintree{ - }}, - "locale_ja-JP.ini": &bintree{confLocaleLocale_jaJpIni, map[string]*bintree{ - }}, - "locale_lv-LV.ini": &bintree{confLocaleLocale_lvLvIni, map[string]*bintree{ - }}, - "locale_nl-NL.ini": &bintree{confLocaleLocale_nlNlIni, map[string]*bintree{ - }}, - "locale_pl-PL.ini": &bintree{confLocaleLocale_plPlIni, map[string]*bintree{ - }}, - "locale_pt-BR.ini": &bintree{confLocaleLocale_ptBrIni, map[string]*bintree{ - }}, - "locale_ru-RU.ini": &bintree{confLocaleLocale_ruRuIni, map[string]*bintree{ - }}, - "locale_tr-TR.ini": &bintree{confLocaleLocale_trTrIni, map[string]*bintree{ - }}, - "locale_zh-CN.ini": &bintree{confLocaleLocale_zhCnIni, map[string]*bintree{ - }}, - "locale_zh-HK.ini": &bintree{confLocaleLocale_zhHkIni, map[string]*bintree{ - }}, - "locale_zh-TW.ini": &bintree{confLocaleLocale_zhTwIni, map[string]*bintree{ - }}, + "locale_bg-BG.ini": &bintree{confLocaleLocale_bgBgIni, map[string]*bintree{}}, + "locale_cs-CZ.ini": &bintree{confLocaleLocale_csCzIni, map[string]*bintree{}}, + "locale_de-DE.ini": &bintree{confLocaleLocale_deDeIni, map[string]*bintree{}}, + "locale_en-US.ini": &bintree{confLocaleLocale_enUsIni, map[string]*bintree{}}, + "locale_es-ES.ini": &bintree{confLocaleLocale_esEsIni, map[string]*bintree{}}, + "locale_fi-FI.ini": &bintree{confLocaleLocale_fiFiIni, map[string]*bintree{}}, + "locale_fr-FR.ini": &bintree{confLocaleLocale_frFrIni, map[string]*bintree{}}, + "locale_it-IT.ini": &bintree{confLocaleLocale_itItIni, map[string]*bintree{}}, + "locale_ja-JP.ini": &bintree{confLocaleLocale_jaJpIni, map[string]*bintree{}}, + "locale_lv-LV.ini": &bintree{confLocaleLocale_lvLvIni, map[string]*bintree{}}, + "locale_nl-NL.ini": &bintree{confLocaleLocale_nlNlIni, map[string]*bintree{}}, + "locale_pl-PL.ini": &bintree{confLocaleLocale_plPlIni, map[string]*bintree{}}, + "locale_pt-BR.ini": &bintree{confLocaleLocale_ptBrIni, map[string]*bintree{}}, + "locale_ru-RU.ini": &bintree{confLocaleLocale_ruRuIni, map[string]*bintree{}}, + "locale_tr-TR.ini": &bintree{confLocaleLocale_trTrIni, map[string]*bintree{}}, + "locale_zh-CN.ini": &bintree{confLocaleLocale_zhCnIni, map[string]*bintree{}}, + "locale_zh-HK.ini": &bintree{confLocaleLocale_zhHkIni, map[string]*bintree{}}, + "locale_zh-TW.ini": &bintree{confLocaleLocale_zhTwIni, map[string]*bintree{}}, }}, "readme": &bintree{nil, map[string]*bintree{ - "Default": &bintree{confReadmeDefault, map[string]*bintree{ - }}, + "Default": &bintree{confReadmeDefault, map[string]*bintree{}}, }}, }}, }} // RestoreAsset restores an asset under the given directory func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) - if err != nil { - return err - } - return nil + data, err := Asset(name) + if err != nil { + return err + } + info, err := AssetInfo(name) + if err != nil { + return err + } + err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) + if err != nil { + return err + } + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + if err != nil { + return err + } + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil } // RestoreAssets restores an asset under the given directory recursively func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil + children, err := AssetDir(name) + // File + if err != nil { + return RestoreAsset(dir, name) + } + // Dir + for _, child := range children { + err = RestoreAssets(dir, filepath.Join(name, child)) + if err != nil { + return err + } + } + return nil } func _filePath(dir, name string) string { - cannonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 450143112..46b513b26 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -11,6 +11,8 @@ import ( "io/ioutil" "net/http" "net/url" + "path" + "regexp" "strings" "time" @@ -20,6 +22,7 @@ import ( "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/bindata" "github.com/gogits/gogs/modules/context" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/markdown" @@ -938,9 +941,58 @@ func Labels(ctx *context.Context) { ctx.Data["PageIsIssueList"] = true ctx.Data["PageIsLabels"] = true ctx.Data["RequireMinicolors"] = true + ctx.Data["LabelTemplates"] = models.LabelTemplates ctx.HTML(200, LABELS) } +func getLabelTemplateFile(name string) ([]byte, error) { + relPath := path.Join("conf/label", strings.TrimLeft(name, "./")) + + // Use custom file when available. + customPath := path.Join(setting.CustomPath, relPath) + if com.IsFile(customPath) { + return ioutil.ReadFile(customPath) + } + return bindata.Asset(relPath) +} + +func InitializeLabels(ctx *context.Context, form auth.InitializeLabelsForm) { + if ctx.HasError() { + ctx.Flash.Error(ctx.Data["ErrorMsg"].(string)) + ctx.Redirect(ctx.Repo.RepoLink + "/labels") + return + } + data, err := getLabelTemplateFile(form.TemplateName) + if err != nil { + ctx.Redirect(ctx.Repo.RepoLink + "/labels") + return + } + r, _ := regexp.Compile("#([a-fA-F0-9]{6})") + for i, line := range strings.Split(string(data), "\n") { + if len(line) > 0 { + line_x := strings.SplitN(strings.Trim(line, " \t"), " ", 2) + if len(line_x) == 2 && len(line_x[1]) > 0 { + if r.MatchString(line_x[0]) { + l := &models.Label{ + RepoID: ctx.Repo.Repository.ID, + Name: line_x[1], + Color: line_x[0], + } + if err := models.NewLabel(l); err != nil { + ctx.Handle(500, "InitializeLabelsFromTemplate", err) + return + } + } else { + log.Warn("Line %d on the label template file '%s': Bad HTML color code", i+1, form.TemplateName) + } + } else { + log.Warn("Line %d on the label template file '%s': Line is malformed", i+1, form.TemplateName) + } + } + } + ctx.Redirect(ctx.Repo.RepoLink + "/labels") +} + func NewLabel(ctx *context.Context, form auth.CreateLabelForm) { ctx.Data["Title"] = ctx.Tr("repo.labels") ctx.Data["PageIsLabels"] = true diff --git a/templates/repo/issue/labels.tmpl b/templates/repo/issue/labels.tmpl index 1edb15bcc..85c18570a 100644 --- a/templates/repo/issue/labels.tmpl +++ b/templates/repo/issue/labels.tmpl @@ -33,8 +33,43 @@
+ {{template "base/alert" .}}
{{.i18n.Tr "repo.issues.label_count" .NumLabels}}
+ {{if $.IsRepositoryWriter}} + {{if eq .NumLabels 0}} +
+
+
+

+ {{.i18n.Tr "repo.issues.label_templates.title"}} + + + +

+

{{.i18n.Tr "repo.issues.label_templates.info"}}

+
+
+ {{.CsrfTokenHtml}} +
+ +
+ +
+
+
+
+ {{end}} + {{end}}
{{range .Labels}}