diff --git a/cmd/atlas/README.md b/cmd/atlas/README.md deleted file mode 100644 index 96516c07..00000000 --- a/cmd/atlas/README.md +++ /dev/null @@ -1,100 +0,0 @@ -# Atlas CLI -This command-line tool helps developers become productive on Atlas. It aims to provide a better development experience by reducing the initial time and effort it takes to build applications. - -## Getting Started -These instructions will help you get the Atlas command-line tool up and running on your machine. - -### Prerequisites -Please install the following dependencies before running the Atlas command-line tool. - -#### goimports - -The `goimports` package resolves missing import paths in Go projects. It is part of the [official Go ecosystem](https://golang.org/pkg/#other) and can be installed with the following command: -``` -$ go get golang.org/x/tools/cmd/goimports -``` -#### dep - -This is a dependency management tool for Go. You can install `dep` with Homebrew: - -```sh -$ brew install dep -``` -More detailed installation instructions are available on the [GitHub repository](https://github.com/golang/dep). - -#### golang-migrate -Bootstrapped applications use [golang-migrate](https://github.com/golang-migrate/migrate) for database migrations. You can install the `migrate` binary with the standard Go toolchain: - -``` -$ go get -u -d github.com/golang-migrate/migrate/cli github.com/lib/pq -$ go build -tags 'postgres' -o /usr/local/bin/migrate github.com/golang-migrate/migrate/cli -``` -See the official golang-migrate [GitHub repository](https://github.com/golang-migrate/migrate) for more information about this tool. - -### Installing -The following steps will install the `atlas` binary to your `$GOBIN` directory. - -```sh -$ go get github.com/infobloxopen/atlas-app-toolkit/cli/atlas -``` -You're all set! Alternatively, you can clone the repository and install the binary manually. - -```sh -$ git clone https://github.com/infobloxopen/atlas-app-toolkit.git -$ cd atlas-app-toolkit/cli/atlas -$ go install -``` - -## Bootstrap an Application -Rather than build applications completely from scratch, you can leverage the command-line tool to initialize a new project. This will generate the necessary files and folders to get started. - -```sh -$ atlas init-app -name=my-application -$ cd my-application -``` -#### Flags -Here's the full set of flags for the `init-app` command. - -| Flag | Description | Required | Default Value | -| ------------- | --------------------------------------------------------------- | ------------- | ------------- | -| `name` | The name of the new application | Yes | N/A | -| `db` | Bootstrap the application with PostgreSQL database integration | No | `false` | -| `gateway` | Initialize the application with a gRPC gateway | No | `false` | -| `registry` | The Docker registry where application images are pushed | No | `""` | - -You can run `atlas init-app --help` to see these flags and their descriptions on the command-line. - -#### Additional Examples - - -```sh -# generates an application with a grpc gateway -atlas init-app -name=my-application -gateway -``` - -```sh -# generates an application with a postgres database -atlas init-app -name=my-application -db -``` - -```sh -# specifies a docker registry -atlas init-app -name=my-application -registry=infoblox -``` -Images names will vary depending on whether or not a Docker registry has been provided. - -```sh -# docker registry was provided -registry-name/image-name:image-version -``` - -```sh -# docker registry was not provided -image-name:image-version -``` - -Of course, you may include all the flags in the `init-app` command. - -```sh -atlas init-app -name=my-application -gateway -db -registry=infoblox -``` \ No newline at end of file diff --git a/cmd/atlas/commands/command.go b/cmd/atlas/commands/command.go deleted file mode 100644 index ee24c5ac..00000000 --- a/cmd/atlas/commands/command.go +++ /dev/null @@ -1,24 +0,0 @@ -package commands - -import "flag" - -// Command generically represents a command that is runnable via the atlas -// command-line tool (e.g. init-app) -type Command interface { - GetName() string - GetFlagset() *flag.FlagSet - Run() error -} - -// GetCommandSet returns a mapping between command names and commands -func GetCommandSet() map[string]Command { - cmdBootstrap := bootstrap{} - return map[string]Command{ - cmdBootstrap.GetName(): cmdBootstrap, - } -} - -// GetCommandNames returns a list of all the command names -func GetCommandNames() []string { - return []string{commandInitApp} -} diff --git a/cmd/atlas/commands/initialize.go b/cmd/atlas/commands/initialize.go deleted file mode 100644 index b1767c52..00000000 --- a/cmd/atlas/commands/initialize.go +++ /dev/null @@ -1,321 +0,0 @@ -package commands - -import ( - "errors" - "flag" - "fmt" - "go/build" - "html/template" - "os" - "os/exec" - "strings" - - "github.com/infobloxopen/atlas-app-toolkit/cmd/atlas/templates" -) - -const ( - // the full set of command names - commandInitApp = "init-app" - - // the full set of flag names - flagAppName = "name" - flagRegistryName = "registry" - flagWithGateway = "gateway" - flagWithDebug = "debug" - flagWithDatabase = "db" -) - -var ( - // flag set for initializing the application - initialize = flag.NewFlagSet(commandInitApp, flag.ExitOnError) - initializeName = initialize.String(flagAppName, "", "the application name (required)") - initializeRegistry = initialize.String(flagRegistryName, "", "the Docker registry (optional)") - initializeGateway = initialize.Bool(flagWithGateway, false, "generate project with a gRPC gateway (default false)") - initializeDebug = initialize.Bool(flagWithDebug, false, "print debug statements during intialization (default false)") - initializeDatabase = initialize.Bool(flagWithDatabase, false, "initialize the application with database folders") -) - -// bootstrap implements the command interface for project intialization -type bootstrap struct{} - -func (b bootstrap) GetName() string { return "init-app" } - -func (b bootstrap) GetFlagset() *flag.FlagSet { return initialize } - -func (b bootstrap) Run() error { - if *initializeName == "" { - return initializationError{ - errors.New("application name is required"), - } - } - wd, err := os.Getwd() - if err != nil { - return initializationError{err: err} - } - root, err := templates.ProjectRoot(build.Default.GOPATH, wd) - if err != nil { - return initializationError{err: err} - } - app := Application{ - Name: *initializeName, - Registry: *initializeRegistry, - Root: root, - WithGateway: *initializeGateway, - WithDatabase: *initializeDatabase, - } - if err := app.initialize(); err != nil { - return initializationError{err: err} - } - return nil -} - -type initializationError struct{ err error } - -func (e initializationError) Error() string { - return fmt.Sprintf("Unable to initialize application: %s", e.err.Error()) -} - -// Application models the data that the templates need to render files -type Application struct { - Name string - Registry string - Root string - WithGateway bool - WithDatabase bool -} - -// initialize generates brand-new application -func (app Application) initialize() error { - if _, err := os.Stat(app.Name); !os.IsNotExist(err) { - msg := fmt.Sprintf("directory '%v' already exists.", app.Name) - return errors.New(msg) - } - if err := os.Mkdir(app.Name, os.ModePerm); err != nil { - return err - } - if err := os.Chdir(app.Name); err != nil { - return err - } - if err := app.initializeDirectories(); err != nil { - return err - } - if err := app.initializeFiles(); err != nil { - return err - } - if err := generateProtobuf(); err != nil { - return err - } - if err := initDep(); err != nil { - return err - } - if err := resolveImports(app.getDirectories()); err != nil { - return err - } - if err := initRepo(); err != nil { - return err - } - return nil -} - -// initializeFiles generates each file for a new application -func (app Application) initializeFiles() error { - fileInitializers := []func(Application) error{ - Application.generateDockerfile, - Application.generateReadme, - Application.generateGitignore, - Application.generateMakefile, - Application.generateProto, - Application.generateServerMain, - Application.generateConfig, - Application.generateService, - Application.generateServiceTest, - } - if app.WithGateway { - gatewayInitializers := []func(Application) error{ - Application.generateGatewayDockerfile, - Application.generateGatewayMain, - Application.generateGatewayHandler, - Application.generateGatewaySwagger, - } - fileInitializers = append(fileInitializers, gatewayInitializers...) - } - for _, initializer := range fileInitializers { - if err := initializer(app); err != nil { - return err - } - } - return nil -} - -// initializeDirectories generates the directory tree for a new application -func (app Application) initializeDirectories() error { - dirs := app.getDirectories() - for _, dir := range dirs { - if err := os.MkdirAll(fmt.Sprintf("./%s", dir), os.ModePerm); err != nil { - return err - } - } - return nil -} - -// getDirectories returns a list of all project folders -func (app Application) getDirectories() []string { - dirnames := []string{ - "cmd/server", - "pkg/pb", - "pkg/svc", - "docker", - "deploy", - } - if app.WithGateway { - dirnames = append(dirnames, - "cmd/gateway", - ) - } - if app.WithDatabase { - dirnames = append(dirnames, - "db/migrations", - "db/fixtures", - ) - } - return dirnames -} - -// generateFile creates a file by rendering a template -func (app Application) generateFile(filename, templatePath string) error { - t := template.New("file").Funcs(template.FuncMap{ - "Title": strings.Title, - "Service": templates.ServiceName, - "URL": templates.ServerURL, - "Database": templates.DatabaseName, - }) - bytes, err := templates.Asset(templatePath) - if err != nil { - return err - } - t, err = t.Parse(string(bytes)) - if err != nil { - return err - } - file, err := os.Create(filename) - if err != nil { - return err - } - defer file.Close() - if err := t.Execute(file, app); err != nil { - return err - } - return err -} - -func (app Application) generateDockerfile() error { - return app.generateFile("docker/Dockerfile.server", "templates/docker/Dockerfile.application.gotmpl") -} - -func (app Application) generateGatewayDockerfile() error { - return app.generateFile("docker/Dockerfile.gateway", "templates/docker/Dockerfile.gateway.gotmpl") -} - -func (app Application) generateReadme() error { - return app.generateFile("README.md", "templates/README.md.gotmpl") -} - -func (app Application) generateGitignore() error { - return app.generateFile(".gitignore", "templates/.gitignore.gotmpl") -} - -func (app Application) generateMakefile() error { - return app.generateFile("Makefile", "templates/Makefile.gotmpl") -} - -func (app Application) generateProto() error { - return app.generateFile("pkg/pb/service.proto", "templates/pkg/pb/service.proto.gotmpl") -} - -func (app Application) generateServerMain() error { - return app.generateFile("cmd/server/main.go", "templates/cmd/server/main.go.gotmpl") -} - -func (app Application) generateGatewayMain() error { - return app.generateFile("cmd/gateway/main.go", "templates/cmd/gateway/main.go.gotmpl") -} - -func (app Application) generateGatewayHandler() error { - return app.generateFile("cmd/gateway/handler.go", "templates/cmd/gateway/handler.go.gotmpl") -} - -func (app Application) generateGatewaySwagger() error { - return app.generateFile("cmd/gateway/swagger.go", "templates/cmd/gateway/swagger.go.gotmpl") -} - -func (app Application) generateConfig() error { - return app.generateFile("cmd/config.go", "templates/cmd/config.go.gotmpl") -} - -func (app Application) generateService() error { - return app.generateFile("pkg/svc/zserver.go", "templates/pkg/svc/zserver.go.gotmpl") -} - -func (app Application) generateServiceTest() error { - return app.generateFile("pkg/svc/zserver_test.go", "templates/pkg/svc/zserver_test.go.gotmpl") -} - -func runCommand(command string, args ...string) error { - cmd := exec.Command(command, args...) - if *initializeDebug { - cmd.Stderr = os.Stdout - cmd.Stdout = os.Stderr - } - if err := cmd.Run(); err != nil { - return err - } - return nil -} - -// generateProtobuf calls "make protobuf" to render initial .pb files -func generateProtobuf() error { - fmt.Print("Generating protobuf files... ") - if err := runCommand("make", "protobuf"); err != nil { - return err - } - fmt.Println("done!") - return nil -} - -// initDep calls "dep init" to generate .toml files -func initDep() error { - fmt.Print("Starting dep project... ") - if err := runCommand("dep", "init"); err != nil { - return err - } - fmt.Println("done!") - return nil -} - -// resolveImports calls "goimports" to determine Go imports -func resolveImports(dirs []string) error { - fmt.Print("Resolving imports... ") - for _, dir := range dirs { - if err := runCommand("goimports", "-w", dir); err != nil { - return err - } - } - fmt.Println("done!") - return nil -} - -// initRepo initializes new applications as a git repository -func initRepo() error { - fmt.Print("Initializing git repo... ") - if err := runCommand("git", "init"); err != nil { - return err - } - if err := runCommand("git", "add", "*"); err != nil { - return err - } - if err := runCommand("git", "commit", "-m", "Initial commit"); err != nil { - return err - } - fmt.Println("done!") - return nil -} diff --git a/cmd/atlas/main.go b/cmd/atlas/main.go deleted file mode 100644 index 59bd5d8f..00000000 --- a/cmd/atlas/main.go +++ /dev/null @@ -1,27 +0,0 @@ -//go:generate go-bindata -pkg templates -o templates/template-bindata.go templates/... -package main - -import ( - "fmt" - "os" - - "github.com/infobloxopen/atlas-app-toolkit/cmd/atlas/commands" -) - -func main() { - commandSet := commands.GetCommandSet() - if len(os.Args) < 2 { - fmt.Printf("Command is required. Please choose one of %v\n", commands.GetCommandNames()) - os.Exit(1) - } - command, ok := commandSet[os.Args[1]] - if !ok { - fmt.Printf("Command \"%s\" is not valid. Please choose one of %v\n", os.Args[1], commands.GetCommandNames()) - os.Exit(1) - } - command.GetFlagset().Parse(os.Args[2:]) - if err := command.Run(); err != nil { - fmt.Println(err) - os.Exit(1) - } -} diff --git a/cmd/atlas/main_test.go b/cmd/atlas/main_test.go deleted file mode 100644 index b0ce6ba7..00000000 --- a/cmd/atlas/main_test.go +++ /dev/null @@ -1,69 +0,0 @@ -package main - -import ( - "context" - "fmt" - "log" - "net/http" - "os" - "os/exec" - "testing" - "time" -) - -func TestMain(m *testing.M) { - if len(os.Getenv("e2e")) == 0 { - log.Print("skipping end-to-end tests") - return - } - - if err := os.RemoveAll("test"); err != nil { - log.Fatalf("failed to delete test folder: %v", err) - } - log.Print("installing atlas cli") - if out, err := exec.Command("go", "install").CombinedOutput(); err != nil { - log.Print(string(out)) - log.Fatalf("failed to install atlas cli: %v", err) - } - log.Print("running init-app") - if out, err := exec.Command("atlas", "init-app", "-name=test", "-gateway").CombinedOutput(); err != nil { - log.Print(string(out)) - log.Fatalf("failed to run atlas init-app: %v", err) - } - defer func() { - log.Print("cleaning up bootstrapped files") - if err := os.RemoveAll("test"); err != nil { - log.Fatalf("failed to delete test folder: %v", err) - } - }() - - packages := []string{"server", "gateway"} - ctx, cancel := context.WithCancel(context.Background()) - defer cancel() - for _, pkg := range packages { - output := fmt.Sprintf("./test/bin/%s", pkg) - log.Printf("building %s", pkg) - build := exec.Command("go", "build", "-o", output, fmt.Sprintf("./test/cmd/%s", pkg)) - if out, err := build.CombinedOutput(); err != nil { - log.Print(string(out)) - log.Fatalf("failed to build %s: %v", pkg, err) - } - log.Printf("runnning %s", pkg) - if err := exec.CommandContext(ctx, output).Start(); err != nil { - log.Fatalf("failed to start server %s: %v", pkg, err) - } - } - log.Print("wait for servers to load up") - time.Sleep(time.Second) - - m.Run() -} - -func TestGetVersion(t *testing.T) { - resp, err := http.Get("http://localhost:8080/test/v1/version") - if err != nil { - t.Errorf("expected get/version to succeed, but got error: %v", err) - } else if resp.StatusCode != 200 { - t.Errorf("expected response to be status 200, but got %d: %v", resp.StatusCode, resp) - } -} diff --git a/cmd/atlas/templates/.gitignore.gotmpl b/cmd/atlas/templates/.gitignore.gotmpl deleted file mode 100644 index ba077a40..00000000 --- a/cmd/atlas/templates/.gitignore.gotmpl +++ /dev/null @@ -1 +0,0 @@ -bin diff --git a/cmd/atlas/templates/Makefile.gotmpl b/cmd/atlas/templates/Makefile.gotmpl deleted file mode 100644 index 5f46ddb5..00000000 --- a/cmd/atlas/templates/Makefile.gotmpl +++ /dev/null @@ -1,94 +0,0 @@ -PROJECT_ROOT := {{ if .Root }}{{ .Root }}/{{ .Name }}{{ else }}{{ .Name }}{{ end }} -BUILD_PATH := bin -DOCKERFILE_PATH := $(CURDIR)/docker - -# configuration for image names -USERNAME := $(USER) -GIT_COMMIT := $(shell git describe --dirty=-unsupported --always || echo pre-commit) -IMAGE_VERSION ?= $(USERNAME)-dev-$(GIT_COMMIT) -{{ if .Registry }}IMAGE_REGISTRY ?= {{ .Registry}} -{{ end}} -# configuration for server binary and image -SERVER_BINARY := $(BUILD_PATH)/server -SERVER_PATH := $(PROJECT_ROOT)/cmd/server -SERVER_IMAGE := {{ if .Registry }}$(IMAGE_REGISTRY)/{{ end }}{{ .Name }} -SERVER_DOCKERFILE := $(DOCKERFILE_PATH)/Dockerfile.server -{{ if .WithGateway }} -# configuration for gateway binary and image -GATEWAY_BINARY := $(BUILD_PATH)/gateway -GATEWAY_PATH := $(PROJECT_ROOT)/cmd/gateway -GATEWAY_IMAGE := {{ if .Registry }}$(IMAGE_REGISTRY)/{{ end }}{{ .Name }}-gateway -GATEWAY_DOCKERFILE := $(DOCKERFILE_PATH)/Dockerfile.gateway -{{ end }} -# configuration for the protobuf gentool -SRCROOT_ON_HOST := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) -SRCROOT_IN_CONTAINER := /go/src/$(PROJECT_ROOT) -DOCKER_RUNNER := docker run --rm -DOCKER_RUNNER += -v $(SRCROOT_ON_HOST):$(SRCROOT_IN_CONTAINER) -DOCKER_GENERATOR := infoblox/atlas-gentool:v1 -GENERATOR := $(DOCKER_RUNNER) $(DOCKER_GENERATOR) -{{ if .WithDatabase }} -# configuration for the database -DATBASE_ADDRESS := localhost:5432 -{{ end }} -# configuration for building on host machine -GO_CACHE := -pkgdir $(BUILD_PATH)/go-cache -GO_BUILD_FLAGS ?= $(GO_CACHE) -i -v -GO_TEST_FLAGS ?= -v -cover -GO_PACKAGES := $(shell go list ./... | grep -v vendor) - -.PHONY: all -all: vendor protobuf server-docker{{ if .WithGateway }} gateway-docker{{ end }} - -.PHONY: fmt -fmt: - @go fmt $(GO_PACKAGES) - -.PHONY: test -test: fmt - @go test $(GO_TEST_FLAGS) $(GO_PACKAGES) - -.PHONY: server-docker -server-docker: - @docker build -f $(SERVER_DOCKERFILE) -t $(SERVER_IMAGE):$(IMAGE_VERSION) . -{{ if .WithGateway }} -.PHONY: gateway-docker -gateway-docker: - @docker build -f $(GATEWAY_DOCKERFILE) -t $(GATEWAY_IMAGE):$(IMAGE_VERSION) . -{{ end }} -{{- if .Registry }} -.PHONY: push -push: - @docker push $(SERVER_IMAGE){{ if .WithGateway }} - @docker push $(GATEWAY_IMAGE){{ end }} -{{ end }} -.PHONY: protobuf -protobuf: - @$(GENERATOR) \ - --go_out=plugins=grpc:. \{{ if .WithGateway }} - --grpc-gateway_out=logtostderr=true:. \{{ end }}{{ if .WithDatabase }} - --gorm_out=. \{{ end }} - --validate_out="lang=go:." \ - --swagger_out=:. $(PROJECT_ROOT)/pkg/pb/service.proto - -.PHONY: vendor -vendor: - @dep ensure -vendor-only - -.PHONY: vendor-update -vendor-update: - @dep ensure - -.PHONY: clean -clean: - @docker rmi -f $(shell docker images -q $(SERVER_IMAGE)) || true - {{ if .WithGateway }}@docker rmi -f $(shell docker images -q $(GATEWAY_IMAGE)) || true{{ end }} -{{ if .WithDatabase }} -.PHONY: migrate-up -migrate-up: - @migrate -database 'postgres://$(DATABASE_ADDRESS)/{{ .Name | Database }}?sslmode=disable' -path ./db/migrations up - -.PHONY: migrate-down -migrate-down: - @migrate -database 'postgres://$(DATABASE_ADDRESS):5432/{{ .Name | Database }}?sslmode=disable' -path ./db/migrations down -{{ end }} diff --git a/cmd/atlas/templates/README.md.gotmpl b/cmd/atlas/templates/README.md.gotmpl deleted file mode 100644 index fcc2cb8c..00000000 --- a/cmd/atlas/templates/README.md.gotmpl +++ /dev/null @@ -1,51 +0,0 @@ -# {{ .Name }} - -_This generated README.md file loosely follows a [popular template](https://gist.github.com/PurpleBooth/109311bb0361f32d87a2)._ - -One paragraph of project description goes here. - -## Getting Started - -These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. - -### Prerequisites - -What things you need to install the software and how to install them. - -``` -Give examples -``` - -### Installing - -A step-by-step series of examples that tell you have to get a development environment running. - -Say what the step will be. - -``` -Give the example -``` - -And repeat. - -``` -until finished -``` - -End with an example of getting some data out of the system or using it for a little demo. - -## Deployment - -Add additional notes about how to deploy this application. Maybe list some common pitfalls or debugging strategies. - -## Running the tests - -Explain how to run the automated tests for this system. - -``` -Give an example -``` - -## Versioning - -We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/your/project/tags). diff --git a/cmd/atlas/templates/cmd/config.go.gotmpl b/cmd/atlas/templates/cmd/config.go.gotmpl deleted file mode 100644 index 8a02470c..00000000 --- a/cmd/atlas/templates/cmd/config.go.gotmpl +++ /dev/null @@ -1,14 +0,0 @@ -package cmd - -const ( - // ServerAddress is the default address for the gRPC server, if no override is specified in the flags - ServerAddress = "0.0.0.0:9090" - {{ if .WithGateway -}} - // GatewayAddress is the default address for the gateway server, if no override is specified in the flags - GatewayAddress = "0.0.0.0:8080" - // GatewayURL is the default URL endpoint for the gateway server. - GatewayURL = "/{{ .Name | URL }}/v1/" - {{ end }}{{ if .WithDatabase -}} - // DatabaseAddress is the default address for the database, if no override is specified in the flags - DBConnectionString = "host=localhost port=5432 user=postgres password=postgres sslmode=disable dbname={{ .Name | Database }}"{{ end }} -) diff --git a/cmd/atlas/templates/cmd/gateway/handler.go.gotmpl b/cmd/atlas/templates/cmd/gateway/handler.go.gotmpl deleted file mode 100644 index 9c8eeea9..00000000 --- a/cmd/atlas/templates/cmd/gateway/handler.go.gotmpl +++ /dev/null @@ -1,19 +0,0 @@ -package main - -import ( - "context" - "net/http" - "github.com/grpc-ecosystem/grpc-gateway/runtime" - "google.golang.org/grpc" -) - -// New{{ .Name | Service}}Handler returns an HTTP handler that serves the gRPC gateway -func New{{ .Name | Service }}Handler(ctx context.Context, grpcAddr string, opts ...runtime.ServeMuxOption) (http.Handler, error) { - mux := runtime.NewServeMux(opts...) - dialOpts := []grpc.DialOption{grpc.WithInsecure()} - err := pb.Register{{ .Name | Service }}HandlerFromEndpoint(ctx, mux, grpcAddr, dialOpts) - if err != nil { - return nil, err - } - return mux, nil -} diff --git a/cmd/atlas/templates/cmd/gateway/main.go.gotmpl b/cmd/atlas/templates/cmd/gateway/main.go.gotmpl deleted file mode 100644 index fc7b5d95..00000000 --- a/cmd/atlas/templates/cmd/gateway/main.go.gotmpl +++ /dev/null @@ -1,50 +0,0 @@ -package main - -import ( - "context" - "flag" - "log" - "net/http" - "github.com/grpc-ecosystem/grpc-gateway/runtime" - "github.com/infobloxopen/atlas-app-toolkit/gw" -) - -var ( - ServerAddress string - GatewayAddress string - SwaggerDir string -) - -func main() { - // create HTTP handler for gateway - errHandler := runtime.WithProtoErrorHandler(gw.ProtoMessageErrorHandler) - serverHandler, err := New{{ .Name | Service }}Handler(context.Background(), ServerAddress, errHandler) - // strip all but trailing "/" on incoming requests - serverHandler = http.StripPrefix( - cmd.GatewayURL[:len(cmd.GatewayURL)-1], - serverHandler, - ) - if err != nil { - log.Fatalln(err) - } - // map HTTP endpoints to handlers - mux := http.NewServeMux() - s := &http.Server{ - Addr: GatewayAddress, - Handler: mux, - ReadTimeout: 10 * time.Second, - WriteTimeout: 10 * time.Second, - } - mux.Handle(cmd.GatewayURL, serverHandler) - mux.HandleFunc("/swagger/", SwaggerHandler) - // serve handlers on the gateway address - log.Fatal(s.ListenAndServe()) -} - -func init() { - // default gateway values; optionally configured via command-line flags - flag.StringVar(&ServerAddress, "server", cmd.ServerAddress, "address of the gRPC server") - flag.StringVar(&GatewayAddress, "gateway", cmd.GatewayAddress, "address of the gateway server") - flag.StringVar(&SwaggerDir, "swagger-dir", "share", "directory of the swagger.json file") - flag.Parse() -} diff --git a/cmd/atlas/templates/cmd/gateway/swagger.go.gotmpl b/cmd/atlas/templates/cmd/gateway/swagger.go.gotmpl deleted file mode 100644 index 4e4f0468..00000000 --- a/cmd/atlas/templates/cmd/gateway/swagger.go.gotmpl +++ /dev/null @@ -1,17 +0,0 @@ -package main - -import ( - "log" - "net/http" - "path/filepath" - "strings" -) - -// SwaggerHandler returns an HTTP handler that serves the swagger spec -func SwaggerHandler(rw http.ResponseWriter, req *http.Request) { - p := strings.TrimPrefix(req.URL.Path, "/swagger/") - p = filepath.Join(SwaggerDir, p) - p += ".swagger.json" - log.Printf("serving %s", p) - http.ServeFile(rw, req, p) -} diff --git a/cmd/atlas/templates/cmd/server/main.go.gotmpl b/cmd/atlas/templates/cmd/server/main.go.gotmpl deleted file mode 100644 index cca3b79a..00000000 --- a/cmd/atlas/templates/cmd/server/main.go.gotmpl +++ /dev/null @@ -1,64 +0,0 @@ -package main - -import ( - "flag" - "net" - "github.com/grpc-ecosystem/go-grpc-middleware" - "github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus" - {{ if .WithGateway }}"github.com/infobloxopen/atlas-app-toolkit/mw"{{ end }} - "github.com/grpc-ecosystem/go-grpc-middleware/validator" - "github.com/sirupsen/logrus" - "google.golang.org/grpc" - {{ if .WithDatabase }}"github.com/jinzhu/gorm" - _ "github.com/jinzhu/gorm/dialects/postgres"{{ end }} -) - -var ( - ServerAddress string - DBConnectionString string -) - -func main() { - logger := logrus.New() - // create new tcp listenerf - ln, err := net.Listen("tcp", ServerAddress) - if err != nil { - logger.Fatalln(err) - } - // create new gRPC server with middleware chain - server := grpc.NewServer( - grpc.UnaryInterceptor( - grpc_middleware.ChainUnaryServer( - // validation middleware - grpc_validator.UnaryServerInterceptor(), - {{ if .WithGateway }} - // collection operators middleware - mw.WithCollectionOperator(), - {{ end }} - // logging middleware - grpc_logrus.UnaryServerInterceptor(logrus.NewEntry(logger)), - ), - ), - ){{ if .WithDatabase }} - // create new postgres database - db, err := gorm.Open("postgres", DBConnectionString) - if err != nil { - logger.Fatalln(err) - }{{ end }} - // register service implementation with the grpc server - s, err := svc.NewBasicServer({{ if .WithDatabase }}db{{ end }}) - if err != nil { - logger.Fatalln(err) - } - pb.Register{{ .Name | Service }}Server(server, s) - if err := server.Serve(ln); err != nil { - logger.Fatalln(err) - } -} - -func init() { - // default server address; optionally set via command-line flags - flag.StringVar(&ServerAddress, "address", cmd.ServerAddress, "the gRPC server address"){{ if .WithDatabase }} - flag.StringVar(&DBConnectionString, "db", cmd.DBConnectionString, "the database address"){{ end }} - flag.Parse() -} diff --git a/cmd/atlas/templates/docker/Dockerfile.application.gotmpl b/cmd/atlas/templates/docker/Dockerfile.application.gotmpl deleted file mode 100644 index 3872aa66..00000000 --- a/cmd/atlas/templates/docker/Dockerfile.application.gotmpl +++ /dev/null @@ -1,11 +0,0 @@ -# build the server binary -FROM golang:1.10.0 as builder -WORKDIR /go/src/{{ .Root }}/{{ .Name }} -COPY . . -RUN CGO_ENABLED=0 GOOS=linux go build -o bin/server ./cmd/server - -# copy the server binary from builder stage; run the server binary -FROM alpine:latest as runner -WORKDIR /bin -COPY --from=0 /go/src/{{ .Root }}/{{ .Name }}/bin/server . -ENTRYPOINT ["server"] \ No newline at end of file diff --git a/cmd/atlas/templates/docker/Dockerfile.gateway.gotmpl b/cmd/atlas/templates/docker/Dockerfile.gateway.gotmpl deleted file mode 100644 index 1e597f92..00000000 --- a/cmd/atlas/templates/docker/Dockerfile.gateway.gotmpl +++ /dev/null @@ -1,11 +0,0 @@ -# build the gateway binary -FROM golang:1.10.0 as builder -WORKDIR /go/src/{{ .Root }}/{{ .Name }} -COPY . . -RUN CGO_ENABLED=0 GOOS=linux go build -o bin/gateway ./cmd/gateway - -# build the gateway binary -FROM alpine:latest as runner -WORKDIR /bin -COPY --from=0 /go/src/{{ .Root }}/{{ .Name }}/bin/gateway . -ENTRYPOINT ["gateway"] \ No newline at end of file diff --git a/cmd/atlas/templates/formatting.go b/cmd/atlas/templates/formatting.go deleted file mode 100644 index c5e21a81..00000000 --- a/cmd/atlas/templates/formatting.go +++ /dev/null @@ -1,83 +0,0 @@ -package templates - -import ( - "fmt" - "strings" - "unicode" -) - -var ( - errEmptyServiceName = formatError{"empty service name"} - errInvalidFirstRune = formatError{"leading non-letter in service name"} - errInvalidProjectRoot = formatError{"project must be initialized inside $GOPATH/src directory or below"} - errMissingGOPATH = formatError{"$GOPATH environment variable not set"} -) - -// ServiceName takes a string and formats it into a valid gRPC service name -func ServiceName(str string) (string, error) { - if len(str) < 1 { - return str, errEmptyServiceName - } - if first := rune(str[0]); !unicode.IsLetter(first) { - return str, errInvalidFirstRune - } - // split string on one or more non-alphanumeric runes - fields := strings.FieldsFunc(str, isSpecial) - for i := range fields { - fields[i] = strings.Title(fields[i]) - } - return strings.Join(fields, ""), nil -} - -// DatabaseName generates the name of the application's database -func DatabaseName(str string) (string, error) { - if first := rune(str[0]); !unicode.IsLetter(first) { - return "", errInvalidFirstRune - } - fields := strings.FieldsFunc(str, isSpecial) - return strings.Join(fields, "_"), nil -} - -// ServerURL takes a string and forms a valid URL string -func ServerURL(str string) (string, error) { - if len(str) < 1 { - return str, errEmptyServiceName - } - // split string on one or more non-alphanumeric runes - fields := strings.FieldsFunc(str, isSpecial) - url := strings.Join(fields, "-") - return strings.ToLower(url), nil -} - -// ProjectRoot determines the root directory of an application. The project -// root is considered to be anything in $GOPATH/src or below -func ProjectRoot(gopath, workdir string) (string, error) { - if gopath == "" { - return "", errMissingGOPATH - } - if len(workdir) < len(gopath) { - return "", errInvalidProjectRoot - } - if workdir[:len(gopath)] != gopath { - return "", errInvalidProjectRoot - } - projectpath := workdir[len(gopath):] - dirs := strings.Split(projectpath, "/") - if len(dirs) < 2 { - return "", errInvalidProjectRoot - } - return strings.Join(dirs[2:], "/"), nil -} - -// isSpecial checks if rune is non-alphanumeric -func isSpecial(r rune) bool { - return (r < '0' || r > '9') && (r < 'a' || r > 'z') && (r < 'A' || r > 'Z') -} - -type formatError struct { - msg string -} - -func (e formatError) Error() string { - return fmt.Sprintf("formatting error: %s", e.msg) -} diff --git a/cmd/atlas/templates/formatting_test.go b/cmd/atlas/templates/formatting_test.go deleted file mode 100644 index 5ea3311b..00000000 --- a/cmd/atlas/templates/formatting_test.go +++ /dev/null @@ -1,192 +0,0 @@ -package templates - -import ( - "testing" -) - -func TestServiceName(t *testing.T) { - var tests = []struct { - appname string - expected string - err error - }{ - {"ddi.dns.config", "DdiDnsConfig", nil}, - {"ddi-dns_config&007!", "DdiDnsConfig007", nil}, - {"addressbook", "Addressbook", nil}, - {"addressBook", "AddressBook", nil}, - {"addressøB00k", "AddressB00k", nil}, - {"", "", errEmptyServiceName}, - {"4ddressBook", "4ddressBook", errInvalidFirstRune}, - } - for _, test := range tests { - name, err := ServiceName(test.appname) - if err != test.err { - t.Log(err) - t.Errorf("Unexpected formatting error: %s - expected %s", name, test.expected) - } - if name != test.expected { - t.Errorf("Unexpected service name: %s - expected %s", name, test.expected) - } - } -} - -func TestServerURL(t *testing.T) { - var tests = []struct { - appname string - expected string - err error - }{ - {"ddi.dns.config", "ddi-dns-config", nil}, - {"ddi-dns_config&007!", "ddi-dns-config-007", nil}, - {"addressbook", "addressbook", nil}, - {"addressBook", "addressbook", nil}, - {"addressøB00k", "address-b00k", nil}, - {"", "", errEmptyServiceName}, - {"4ddressbook", "4ddressbook", nil}, - } - for _, test := range tests { - name, err := ServerURL(test.appname) - if err != test.err { - t.Errorf("Unexpected formatting error: %v - expected %v", err, test.err) - } - if name != test.expected { - t.Errorf("Unexpected service name: %s - expected %s", name, test.expected) - } - } -} - -func TestProjectRoot(t *testing.T) { - var tests = []struct { - gopath string - workdir string - expected string - err error - }{ - { - gopath: "/Users/person/go", - workdir: "/Users/person/go/src", - expected: "", - err: nil, - }, - { - gopath: "/Users/person/go", - workdir: "/Users/person/go/src/SomeProject", - expected: "SomeProject", - err: nil, - }, - { - gopath: "/Users/person/go_projects", - workdir: "/Users/person/go_projects/src/SomeProject", - expected: "SomeProject", - err: nil, - }, - { - gopath: "go", - workdir: "go/src/github.com/SomeProject", - expected: "github.com/SomeProject", - err: nil, - }, - { - gopath: "/Users/person/go", - workdir: "/Users/person/go/src/github.com/infobloxopen/SomeProject", - expected: "github.com/infobloxopen/SomeProject", - err: nil, - }, - { - gopath: "/Users/person/go", - workdir: "/Users/python", - expected: "", - err: errInvalidProjectRoot, - }, - { - gopath: "/Users/person/go", - workdir: "/Users/person/hi/src/SomeProject", - expected: "", - err: errInvalidProjectRoot, - }, - { - gopath: "/Users/person/go", - workdir: "/Users/person/go", - expected: "", - err: errInvalidProjectRoot, - }, - { - gopath: "", - workdir: "/Users/person/go/src/SomeProject", - expected: "", - err: errMissingGOPATH, - }, - } - for _, test := range tests { - root, err := ProjectRoot(test.gopath, test.workdir) - if root != test.expected { - t.Errorf("Unexpected service name: %s - expected %s", root, test.expected) - } - if err != test.err { - t.Errorf("Unexpected formatting error: %v - expected %v", err, test.err) - } - } -} - -func TestIsSpecial(t *testing.T) { - var tests = []struct { - r rune - expected bool - }{ - {'a', false}, - {'z', false}, - {'A', false}, - {'Z', false}, - {'0', false}, - {'9', false}, - {'_', true}, - {'.', true}, - {'&', true}, - {'/', true}, - {' ', true}, - {'Σ', true}, - } - for _, test := range tests { - if result := isSpecial(test.r); result != test.expected { - t.Errorf("Unexpected alphanumeric result: %t - expected %t", result, test.expected) - } - } -} - -func TestDatabaseName(t *testing.T) { - var tests = []struct { - appname string - expected string - err error - }{ - { - appname: "ddi.dns.config", - expected: "ddi_dns_config", - err: nil, - }, - { - appname: "contacts", - expected: "contacts", - err: nil, - }, - { - appname: "_contacts", - expected: "", - err: errInvalidFirstRune, - }, - { - appname: "some&.!@app!name", - expected: "some_app_name", - err: nil, - }, - } - for _, test := range tests { - db, err := DatabaseName(test.appname) - if err != test.err { - t.Errorf("Unexpected formatting error: %s - expected %s", err, test.err) - } - if db != test.expected { - t.Errorf("Unexpected service name: %s - expected %s", db, test.expected) - } - } -} diff --git a/cmd/atlas/templates/pkg/pb/service.proto.gotmpl b/cmd/atlas/templates/pkg/pb/service.proto.gotmpl deleted file mode 100644 index 63e5a859..00000000 --- a/cmd/atlas/templates/pkg/pb/service.proto.gotmpl +++ /dev/null @@ -1,45 +0,0 @@ -syntax = "proto3"; - -package service; - -import "google/protobuf/empty.proto"; -import "google/api/annotations.proto"; -import "github.com/lyft/protoc-gen-validate/validate/validate.proto"; -import "protoc-gen-swagger/options/annotations.proto";{{ if .WithDatabase }} -import "github.com/infobloxopen/protoc-gen-gorm/options/gorm.proto";{{ end }} - -option go_package = "{{ if .Root }}{{ .Root }}/{{ .Name }}{{ else }}{{ .Name }}{{ end }}/pkg/pb;pb"; - -// The {{ .Name | Service }} service, GetVersion RPC, and Version message -// make up a simple "starter" example. It allows the Atlas CLI to generate an -// end-to-end example for the sake of demonstration. Feel free to change -// GetVersion to better-suit how your versioning system, or get rid of it entirely. - -// Here are some helpful resources to aid you in your protobuf quest: -// https://github.com/infobloxopen/atlas-contacts-app/blob/master/proto/contacts.proto -// https://developers.google.com/protocol-buffers/docs/proto -// https://github.com/grpc-ecosystem/grpc-gateway -// https://developers.google.com/protocol-buffers/docs/style - -// Happy protobuffing! - -// TODO: Write a protobuf schema for the {{ .Name | Service }} service. The -// messages and RPCs will compose the API for the service. - -// TODO: Structure your own protobuf messages. Each protocol buffer message is a -// small logical record of information, containing a series of name-value pairs. -message VersionResponse { - string version = 1; -} - -// TODO: Define the {{ .Name | Service }} service and its methods. Feel free -// to change the name of {{ .Name | Service }} to better-suit your naming -// conventions. -service {{ .Name | Service }} { - rpc GetVersion (google.protobuf.Empty) returns (VersionResponse) { - {{ if .WithGateway }}// TODO: Provide mappings between REST endpoints and service methods. - option (google.api.http) = { - get: "/version" - };{{ end }} - } -} diff --git a/cmd/atlas/templates/pkg/svc/zserver.go.gotmpl b/cmd/atlas/templates/pkg/svc/zserver.go.gotmpl deleted file mode 100644 index 72f7d698..00000000 --- a/cmd/atlas/templates/pkg/svc/zserver.go.gotmpl +++ /dev/null @@ -1,52 +0,0 @@ -package svc - -import ( - "context" - "fmt" - "time" - {{ if .WithDatabase }}"github.com/jinzhu/gorm"{{ end }} -) - -// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -// ~~~~~~~~~~~~~~~~~~~~~~~~~ A BRIEF DEVELOPMENT GUIDE ~~~~~~~~~~~~~~~~~~~~~~~~~ -// -// TODO: Extend the {{ .Name | Service }} service by defining new RPCs and -// and message types in the pb/service.proto file. These RPCs and messages -// compose the API for your service. After modifying the proto schema in -// pb/service.proto, call "make protobuf" to regenerate the protobuf files. -// -// TODO: Create an implementation of the {{ .Name | Service }} server -// interface. This interface is generated by the protobuf compiler and exists -// inside the pb/service.pb.go file. The "server" struct already provides an -// implementation of {{ .Name | Service }} server interface service, but only -// for the GetVersion function. You will need to implement any new RPCs you -// add to your protobuf schema. -// -// TODO: Update the GetVersion function when newer versions of your service -// become available. Feel free to change GetVersion to better-suit how your -// versioning system, or get rid of it entirely. GetVersion helps make up a -// simple "starter" example that allows an end-to-end example. It is not -// required. -// -// TODO: Oh yeah, delete this guide when you no longer need it. -// -// ~~~~~~~~~~~~~~~~~~~~~~~~~~~ FAREWELL AND GOOD LUCK ~~~~~~~~~~~~~~~~~~~~~~~~~~ -// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -const ( - // version is the current version of the service - version = "0.0.1" -) - -// Default implementation of the {{ .Name | Service }} server interface -type server struct{ {{ if .WithDatabase }}db *gorm.DB{{ end }} } - -// GetVersion returns the current version of the service -func (server) GetVersion(context.Context, *empty.Empty) (*pb.VersionResponse, error) { - return &pb.VersionResponse{Version: version}, nil -} - -// NewBasicServer returns an instance of the default server interface -func NewBasicServer({{ if .WithDatabase}}database *gorm.DB{{ end }}) (pb.{{ .Name | Service }}Server, error) { - return &server{ {{ if .WithDatabase}}db: database{{ end }} }, nil -} diff --git a/cmd/atlas/templates/pkg/svc/zserver_test.go.gotmpl b/cmd/atlas/templates/pkg/svc/zserver_test.go.gotmpl deleted file mode 100644 index 71b7c8fa..00000000 --- a/cmd/atlas/templates/pkg/svc/zserver_test.go.gotmpl +++ /dev/null @@ -1,37 +0,0 @@ -package svc - -import ( - "context" - "testing" - "github.com/golang/protobuf/ptypes/empty" -) - -func TestGetVersion(t *testing.T) { - var tests = []struct { - name string - expected *pb.VersionResponse - err error - }{ - { - name: "verify service version", - expected: &pb.VersionResponse{Version: version}, - err: nil, - }, - } - for _, test := range tests { - t.Run(test.name, func(t *testing.T) { - server, err := NewBasicServer({{ if .WithDatabase }}nil{{ end }}) - if err != test.err { - t.Errorf("Unexpected error when creating server: %v - expected: %v", - err, test.err, - ) - } - res, err := server.GetVersion(context.Background(), &empty.Empty{}) - if res.Version != test.expected.Version { - t.Errorf("Unexpected version in response: %v - expected: %v", - res.Version, test.expected.Version, - ) - } - }) - } -} diff --git a/cmd/atlas/templates/template-bindata.go b/cmd/atlas/templates/template-bindata.go deleted file mode 100644 index c985b53c..00000000 --- a/cmd/atlas/templates/template-bindata.go +++ /dev/null @@ -1,596 +0,0 @@ -// Code generated by go-bindata. -// sources: -// templates/.gitignore.gotmpl -// templates/Makefile.gotmpl -// templates/README.md.gotmpl -// templates/cmd/config.go.gotmpl -// templates/cmd/gateway/handler.go.gotmpl -// templates/cmd/gateway/main.go.gotmpl -// templates/cmd/gateway/swagger.go.gotmpl -// templates/cmd/server/main.go.gotmpl -// templates/docker/Dockerfile.application.gotmpl -// templates/docker/Dockerfile.gateway.gotmpl -// templates/formatting.go -// templates/formatting_test.go -// templates/pkg/pb/service.proto.gotmpl -// templates/pkg/svc/zserver.go.gotmpl -// templates/pkg/svc/zserver_test.go.gotmpl -// templates/template-bindata.go -// DO NOT EDIT! - -package templates - -import ( - "bytes" - "compress/gzip" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _templatesGitignoreGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xca\xcc\xe3\x02\x04\x00\x00\xff\xff\x0c\xbf\xc6\xec\x04\x00\x00\x00") - -func templatesGitignoreGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesGitignoreGotmpl, - "templates/.gitignore.gotmpl", - ) -} - -func templatesGitignoreGotmpl() (*asset, error) { - bytes, err := templatesGitignoreGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/.gitignore.gotmpl", size: 4, mode: os.FileMode(420), modTime: time.Unix(1523468144, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesMakefileGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x6b\x8f\x9b\x38\x17\xfe\x1c\xff\x8a\xa3\xbe\x91\x1a\xf4\xca\x41\x7b\xfb\x12\x29\xea\xd2\x84\x66\xb2\x9d\x09\x23\x60\x5a\x8d\x54\x09\x39\xe0\x10\xab\x80\x59\xdb\x64\x76\x94\xc9\x7f\x5f\x99\x3b\x34\xb3\x5d\x6d\xbf\x10\x5f\xce\xe5\x39\xcf\xb9\x38\xf7\xae\xf3\x87\xbd\xf2\x03\xd7\x71\xfc\xc9\x64\xb1\x84\xf3\x19\xd8\x01\xe6\x2e\xe7\x0a\x2e\x97\xf3\xb9\x5d\x9a\x7a\xbd\x23\x29\xad\x8e\x69\x22\xeb\x55\xff\x30\x8b\xe0\x72\x41\xef\x1f\xb6\xb7\xeb\xe0\xde\xf2\x6f\x4a\x93\x7b\x96\xa1\xb5\xb3\xfa\x68\xbb\x1f\xb6\xb7\x76\x77\x3e\x9d\xad\x1e\xdc\xf5\xd6\x35\xcc\x88\x87\x5f\xa9\x40\xe8\x7f\x10\xf2\xec\xc0\xe2\x42\x10\xc5\x78\x06\x07\x2e\x80\xa5\x24\xa6\x90\x91\x94\x4a\xf4\xe0\xd9\xee\xce\xba\xb3\x6b\x75\xbd\x35\xd0\x66\xeb\x07\x2b\xe7\xee\x6e\xeb\xd7\xc7\xf2\x48\x93\x04\x62\xa6\x20\xa2\x32\x14\x6c\x4f\x01\xe3\x88\x09\xf5\xbc\xc4\x45\x26\x8b\x3c\xe7\x42\xd1\x08\x30\x26\xc9\x13\x79\x96\xf0\xf2\x02\x34\x3c\x72\xc8\x05\xc5\x21\x4f\x53\xa6\x0c\xb4\xbd\xb3\x36\x76\xf0\xc9\x76\xbd\xad\xb3\x9b\x4c\xde\x35\xfe\xb4\x7b\x03\x47\xf4\x84\xa7\xb3\xce\xb3\x81\x1a\xde\x68\xcc\xa4\x12\xcf\x70\xb9\x54\x16\x5c\x7b\xb3\xf5\x7c\xf7\x11\xde\x95\xdc\xb6\x02\x97\x0b\xaa\x08\xbb\x5c\xae\x86\x2d\xa9\x38\x51\xa1\xb9\x23\xe2\x19\x48\x16\x55\x44\x20\xcf\x76\x3f\xd9\x6e\xf0\x7e\xbb\xb3\xdc\x47\xa8\x23\xee\x08\x37\xcc\x4a\xb1\x91\xeb\x91\xdd\x4f\xb5\x61\x86\x69\x34\x12\x2d\xf1\x0e\x6a\xa0\x8b\x65\x3a\x1b\x46\x63\x98\x6d\xb6\x7b\x15\xd0\x58\xea\x92\x5d\x79\x1e\x25\xdf\x30\xd7\x65\xbe\x0f\x2c\xa1\xf3\x1a\x43\xed\xf2\x33\x53\xc7\x0d\x51\xf4\x89\x68\xaf\x57\x89\x89\xeb\xeb\x6f\x98\xd9\x58\xbe\xfd\xd9\x7a\xac\xa9\xb9\xc2\x4c\xad\xd9\x0a\xfe\x23\x37\x63\xe1\x1f\x67\x07\x8f\x4d\x76\xb4\xc0\xf7\x79\x6a\x94\xbb\x2e\xbb\x46\x8e\x3a\x52\xc8\x05\x57\x7c\x5f\x1c\x20\xa6\x99\xe2\x3c\x41\x9e\xbb\xd2\x71\x05\xce\x2e\xb8\x71\xbc\x61\x97\x44\x4c\xe8\xd6\x82\xe9\x8c\xec\x65\x4e\xd4\x11\xa6\xb3\x84\x48\xf5\xc4\x45\x04\xd3\xd9\x9d\xf5\xd1\x2e\xf1\xdc\x6e\x3d\xdf\x30\x0c\xa3\x35\xb6\xdd\x05\x2b\x67\xe7\x5b\xdb\x9d\xed\x6a\x83\x66\xcc\x4d\x29\x42\x73\xc4\x65\xdd\xf8\x81\xfb\xb0\xd3\x82\x5a\xb2\x6a\x76\x10\x45\x06\x18\x8b\x74\x2c\xf1\xff\x25\xe0\x13\x4c\x67\x23\xd4\xc6\xa2\x3b\xea\xfb\x6e\x3d\x6c\xec\x9d\xed\x5a\xbe\x53\xa2\x61\xd9\x81\xef\x13\xfe\x97\x49\x54\x42\x24\xae\x99\x58\x9c\x7e\x42\x9d\x58\x9f\xf3\xda\xbb\xd1\x1d\xb4\x72\x46\xbf\x36\xd7\x44\x91\x3d\x29\x27\xdf\xab\xfc\x47\xb5\x0c\x5a\x5b\xfe\x7b\xcb\xb3\x03\x6b\xbd\x76\x6d\xcf\x2b\x1d\x26\x3c\x24\xc9\x91\x4b\xb5\xf8\xed\xd7\x5f\x7e\xfe\x4e\x36\xf7\x05\x4b\x22\x96\xc5\xc0\x33\xd0\x3a\x90\x92\xf0\xc8\x32\x8a\x36\x4e\xb0\xb2\x56\x37\x55\x3d\xe2\xfc\x6b\x1c\x31\x31\x2e\x76\x8e\x43\x12\x1e\x4b\xd9\xea\xfc\xc3\xad\xb5\xf1\xea\x49\xd6\x18\x30\x00\x33\xc0\x27\x2d\xe4\xdb\x9e\xdf\x93\xc1\x27\xc0\x21\xd7\xad\xb9\x71\x82\x7b\x6b\xf5\xd1\xda\xd8\xde\x70\xc0\x72\x48\x98\x54\x30\x37\xe7\xf3\x39\xbc\x40\x2c\x68\xae\xd5\x4e\x34\x8b\xb8\x30\x10\x9a\xdf\xdf\x38\xbb\xc7\x05\x90\x24\x41\x24\x49\x16\xf5\x4d\x57\xa0\x55\xef\xe3\xaa\x20\xae\x4e\x80\xa6\xdb\x3b\x99\x9a\xae\xd6\xf8\x21\x55\xe8\x90\xaa\x05\x9a\xfc\x1e\x73\xbd\xab\xa2\x6b\x10\xf7\x60\x28\x2a\x15\xd2\x9f\x4a\xa9\x94\xd7\xdb\x4a\xa1\x0b\xdf\x78\xd5\xc2\x00\x2f\x1a\xec\xb4\xff\xba\xb0\xcb\xac\x01\x3e\xe8\x1a\x1e\xcf\x43\x03\xb0\xea\xce\xcb\xa9\xa1\x0b\x7b\xf0\xd8\x18\x30\x7f\x65\x1c\x36\x38\x86\xa4\xa0\xe1\xf6\x3a\x92\x6f\x67\x4e\x0d\x65\x30\xdf\x5e\xc3\x52\x93\x7e\x3e\xe3\xf1\xe8\x6b\x31\xe5\x85\x3c\x22\xfd\xe9\xf9\xd7\xdb\x71\xb4\xd7\x23\x1b\xab\x0c\x51\xf5\x11\x34\xab\xd6\x6f\x5d\x4c\xa8\x59\x68\xff\xd3\x59\xd7\xbe\xf0\x05\x4d\x30\x8e\x79\xc0\x0b\xb5\xcc\x93\x22\x66\x99\x5c\xc6\x22\x0f\x17\x73\xf8\xf2\x0a\x1a\x8c\xb5\x40\x33\xb0\x4b\xcd\x84\xc7\x8a\x4b\x15\x51\x21\x96\x4a\x14\xb4\xd6\x6e\xa7\xfc\xb5\x09\x51\xfa\x15\x69\xa9\xdf\x17\xd7\x17\x27\x92\xb0\x88\x28\x5a\x5e\xbe\x49\x48\x16\x2f\x63\xbe\x98\xbf\xa9\xe0\xca\x27\x12\xc7\x54\x94\x97\x8b\xf9\x37\x0f\x54\xfe\x35\x36\xf3\x7d\xf9\x7e\xb3\x90\xce\xcb\xd0\xbb\x32\xad\xda\x0c\x55\x3f\x65\x3a\x68\x0e\x34\x93\x85\xa0\x80\xab\x53\xcc\xb3\xe4\x79\xac\x81\x8b\x5c\x23\x42\x83\xdd\x50\x1f\x4d\x5a\x9d\x30\xa1\x24\x43\xe5\xb7\x97\x72\x91\xb2\xaa\xe0\xea\xe7\xa5\x3a\x2d\x1f\x68\x09\xf8\xcf\x71\x35\x18\xfa\xbf\x97\xa6\x13\x4d\xae\xa6\xe2\xdf\x9b\x1d\x56\x4c\x6b\x77\x50\x3a\xd7\x72\xd4\x84\x93\xb2\x58\x10\x45\x71\x91\xa3\x6e\xa9\x03\xab\x77\x80\x9b\xb9\x0e\x6f\x73\x2e\x55\x2c\xa8\x5c\x98\xe6\x74\xb6\xb6\x7c\xab\x3f\xe6\x8d\xee\x8f\xf2\x0b\xf4\x3c\xbd\x93\x32\x49\x79\x44\x97\x11\x93\x64\x9f\xd0\xb7\x80\xcb\xf7\x76\x6e\x46\x7b\xb3\x72\xc2\x78\x26\xa1\xc8\x7b\x24\x37\x50\x22\xfe\x94\xa1\xfe\xe6\x3f\x21\x2b\xdf\x9c\x1f\x84\x57\x22\xe9\x58\xfd\x3b\x00\x00\xff\xff\x81\x72\x40\x2f\x40\x0c\x00\x00") - -func templatesMakefileGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesMakefileGotmpl, - "templates/Makefile.gotmpl", - ) -} - -func templatesMakefileGotmpl() (*asset, error) { - bytes, err := templatesMakefileGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/Makefile.gotmpl", size: 3136, mode: os.FileMode(420), modTime: time.Unix(1525810416, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesReadmeMdGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x54\x4d\x6f\xdc\x36\x10\xbd\xf3\x57\x0c\xe0\x4b\x0d\x34\xda\x38\x06\xfa\x91\x9b\x8b\xb8\x41\x0f\x69\x83\x38\x48\x0e\x46\x11\x8f\xa4\x27\x89\x05\xc5\x61\x39\xa3\xdd\x08\x41\xfe\x7b\x41\x4a\xde\x3a\x39\xed\x42\xf3\xf1\xde\xcc\x7b\xc3\x0b\xfa\xf2\x85\x9a\x3f\x79\x06\x7d\xfd\xea\xdc\xa7\xf7\x93\x57\x1a\x11\x91\xd9\xd0\xd3\xbb\xdb\x9b\x57\x6f\x6e\x9b\xb9\xa7\xc1\x07\x50\x10\x51\x84\x95\x06\x09\x41\x4e\x4a\x4c\xf7\x49\xd2\x12\x38\x93\x61\x4e\x81\x0d\x7f\xff\x30\x99\x25\x7d\x79\x38\x8c\x5e\xad\x19\xbd\x4d\x4b\xdb\x74\x32\x1f\xde\x2e\x39\x05\xfc\x26\x62\xd3\xe1\xea\xf9\xaf\xd7\x57\x57\x6d\xfb\xfc\xfa\xa7\xab\xe1\xfa\x45\xff\xcb\xcf\xfc\xe2\xb2\xf9\xe4\xdc\x5f\x11\x94\x38\xf3\x98\x39\x4d\x24\x03\xa5\x2c\xff\xa0\x33\xea\xa1\x5d\xf6\xc9\xbc\x44\x1a\x05\x4a\x13\x32\x1a\xe7\x2e\x2e\xe8\x35\xcc\x7c\x1c\xe9\xce\x38\x1b\x7a\xe7\xde\x4f\x50\x90\x8f\x6a\x79\xe9\x4a\x85\xd2\xc9\x87\x40\x23\x8c\x56\x59\x88\xa9\x93\xb4\x96\xee\x36\xe1\x8c\xb0\x24\xe2\xd8\x53\x5e\x62\x2c\xdd\x24\x96\xdc\x4c\x41\x3a\x0e\x34\x73\x37\xf9\x08\x1a\x24\x53\x8f\x23\x82\xa4\x19\xd1\x6a\x85\x41\x2b\x7e\x5a\x72\x12\x85\x36\x74\x07\x50\x8f\x14\x64\xad\x49\xa5\x28\x8a\x41\x4b\xd3\x49\x4e\x64\xb2\x87\xbf\x21\x20\x91\x98\x82\x3f\x82\x74\x55\xc3\x5c\xa7\xbb\xa0\xb7\x19\x19\xff\x2e\x5e\xbd\x41\x9d\xfb\x38\xb1\x91\x4d\x3e\x8e\x5a\x87\x89\x40\x5f\x1a\x96\x71\x39\x84\xda\x51\x65\xb0\x13\x67\x54\x7a\x3b\xe0\x93\x78\xe9\xfc\xf0\xf0\xe0\x5e\x17\x2c\x7c\xe6\x39\x05\x68\xfd\x52\x01\xff\xd8\x32\x7d\x1c\x9d\xbb\x21\x35\xa4\x67\xed\xfa\xac\xfc\x92\x22\xfb\x32\xc6\x70\x2e\x23\xab\x7c\x10\x42\x65\x33\xf1\x11\x05\xad\xac\x9a\xbf\xd9\x14\xe2\xd1\x67\x89\xf5\xff\xbe\xe3\xc6\xb9\x3b\x5e\xe9\xb4\x4d\x84\x0a\xb5\x29\xd5\xe2\x29\xc5\x12\xdb\xf1\x36\x96\x37\x45\x27\x24\xb0\xed\x69\x4b\x34\x1f\x68\xf0\xd1\xeb\x84\x7e\x4b\xba\x8d\x3d\x9d\xbc\x4d\xc4\xf1\xb1\xba\x10\x1f\x77\xb7\xa8\xcc\xa0\x9e\x8d\x49\x16\x7b\xf4\xc2\xb6\x78\x92\x4c\x8b\x96\x24\xbf\x89\x57\x64\x31\x0b\x45\xd4\x59\x36\xd3\xbd\x3a\xcb\xeb\xdc\x4d\xdf\x13\xf7\xbd\x2f\x56\xe3\xb0\x4b\xcd\x6d\xe9\xfb\xbd\xda\x5e\x89\x53\x0a\xbe\xe3\x92\xdc\xd0\x1b\x5e\x5b\x50\xf0\x6a\x1b\xa1\x4e\xe6\x59\x22\x25\x6f\x03\x87\xa0\x54\xed\xd6\x2e\xe3\x58\x29\x5b\xb9\xca\xd1\x43\x37\x0e\xef\x76\xab\x16\xe6\xc5\x84\xea\xdc\xed\xe7\x14\xd8\x9f\x5d\x96\x97\x58\xa3\xbc\x98\xcc\xf5\xa2\x6b\x5e\x1d\xaa\x92\x39\x3b\xed\xbc\xec\xff\xb7\xf5\xe8\x08\xfa\x80\xac\x5e\x62\x35\xc4\x47\xd0\xa2\xa0\xfb\x3b\xcc\x1f\x90\xb7\x6b\x7f\x79\x38\x28\xe6\x23\x72\x23\x79\x3c\x5c\xd6\xee\xc7\x73\x4d\x43\xbf\x57\x34\x3c\x7e\x53\xe2\x23\xfb\xc0\x6d\xc0\x8f\xa4\xd8\xf4\xbd\x37\x1e\xeb\x7d\x54\x5a\x19\x49\xd4\x9b\xe4\xf5\xe9\x7b\x72\x7e\x4a\xca\x61\x1e\xf6\xb3\x39\x94\xc2\xcb\x86\xdc\x7f\x01\x00\x00\xff\xff\x07\x15\x93\x01\xcb\x04\x00\x00") - -func templatesReadmeMdGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesReadmeMdGotmpl, - "templates/README.md.gotmpl", - ) -} - -func templatesReadmeMdGotmpl() (*asset, error) { - bytes, err := templatesReadmeMdGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/README.md.gotmpl", size: 1227, mode: os.FileMode(420), modTime: time.Unix(1523468144, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesCmdConfigGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x90\x4f\x4b\xf3\x40\x10\xc6\xef\xf9\x14\x43\x4e\xef\x0b\x9a\xc4\x7f\xd0\x0a\x7b\xd0\x16\xbc\x88\x48\x8b\x78\x9e\x66\x27\xe9\x62\xb2\x13\x76\xb6\x2d\x12\xf7\xbb\x4b\x62\x6c\x4a\x41\xa8\x92\x4b\x78\x98\x99\xe7\xb7\xbf\x06\xf3\x37\x2c\x09\xf2\x5a\x47\x51\xce\x56\x3c\xfc\x8b\x00\xd2\x14\x96\xe4\xb6\xe4\xee\xb4\x76\x24\x02\x46\xc0\xaf\x09\x34\x15\xb8\xa9\x3c\xe0\x10\x17\xec\xfa\xbc\x5c\x3c\xcf\x40\xfa\x8d\x33\x30\x05\x58\x06\xde\x92\x73\x46\x53\xb7\x2a\x0d\xe5\xa6\x30\xa4\xc1\xd8\x7e\xbe\xa8\xb0\x94\x08\x8e\x4a\x14\xc4\x59\xd2\x7f\xb7\xd3\x6c\x9a\xc5\x11\x40\xdb\x76\xe7\x92\x57\xe3\xd7\x0f\xe8\x69\x87\xef\x70\x1e\xc2\x17\xe1\x10\x9c\x8a\x38\xac\xff\x81\xf2\xa8\xe8\x00\x73\x92\x4d\x7a\xcc\x91\xe6\x65\xf1\x78\x4c\xd2\x45\x64\x75\xc3\xc6\xfa\x1f\x70\x92\xb1\xa5\x9b\x56\x10\xa7\x6d\x0b\xc9\x13\xd6\x04\x1f\xfd\x81\x10\xd2\xed\x45\x3a\x28\x21\xab\x21\x84\x03\x37\x73\xf4\xb8\x42\xa1\x51\xce\x77\x72\xa2\x1d\x3d\x8c\xff\xca\xcb\xfc\x7e\xc6\xd6\x52\xee\x0d\xdb\xa5\x77\xc6\x96\x1d\xf9\x9a\xc5\xab\x8a\x73\xac\xba\x3f\x68\xd8\x79\x75\x73\x7d\x75\x09\x1b\x21\xa7\x1a\x16\x5f\x3a\x12\x68\x50\x64\xc7\x4e\x8f\x89\x48\x55\xb3\x26\xa5\x8d\xe0\xaa\x22\xd0\x2b\x8b\x35\xa9\x03\x11\xfb\x67\x86\x10\xef\x35\x44\xff\xa3\xcf\x00\x00\x00\xff\xff\x31\x49\x29\x19\xc6\x02\x00\x00") - -func templatesCmdConfigGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesCmdConfigGoGotmpl, - "templates/cmd/config.go.gotmpl", - ) -} - -func templatesCmdConfigGoGotmpl() (*asset, error) { - bytes, err := templatesCmdConfigGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/cmd/config.go.gotmpl", size: 710, mode: os.FileMode(420), modTime: time.Unix(1525733031, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesCmdGatewayHandlerGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6e\xdc\x30\x0c\x40\x67\xf3\x2b\xd8\x9b\x6c\xc0\x95\xf7\x00\x37\x14\x69\x8b\x74\xe8\x25\x48\x03\x74\x28\x3a\x28\x32\x23\x0b\xb5\x29\x83\xa2\x73\x3e\x5c\xfd\xef\x85\x7c\xbe\x76\x29\x32\x49\x24\xc8\x47\x3e\x8e\xd6\xfd\xb2\x9e\x70\xb0\x81\x01\xc2\x30\x46\x51\x2c\xa1\xd8\xb9\xc8\x4a\xb3\xee\xa0\xd8\x31\x69\xd3\xa9\x8e\xf9\xef\x83\x76\xd3\xb3\x71\x71\x68\xbc\x8c\xee\x3d\xb9\x98\x4e\x49\x69\x0b\xbd\x55\x3a\xda\x53\x23\x13\x6b\x18\x68\xed\x88\xd1\xf7\x64\x7c\xec\x2d\x7b\x13\xc5\xaf\x95\x3b\xa8\x00\x9a\x06\x0f\x74\x3c\x9f\xd1\x1c\xec\x40\xf8\x1b\xbf\x91\xbc\x06\x47\xcb\x72\x67\xb9\xed\x49\x50\x48\x27\xe1\x84\x96\xf1\xee\xe9\xe9\x01\xbb\x2d\xaf\x9d\x55\x4c\x24\xaf\x94\x50\x3b\x42\xff\xf8\x70\x8b\xdb\x70\x78\x99\xd8\xfd\x1f\x8c\x7f\xc9\xa5\xd3\x19\x37\x47\x73\x7b\x79\x6b\xcc\x9b\x7d\x68\x5b\xc1\xa4\x12\xd8\xd7\x18\x47\x4d\x68\x8c\xd9\x7c\x4c\xe6\xd0\xd7\x69\xbe\x1f\x35\x44\xae\xb0\xcc\x77\x31\x1b\xb3\x46\x12\x89\x52\xe1\x19\x8a\x61\x9a\xf1\x66\x8f\xd7\xbe\x03\x1d\xaf\xad\x65\x66\x1a\x63\x2a\x28\xda\x60\xfb\xfb\x3c\xe1\x66\x8f\x3f\x7e\xe6\xe1\xe6\xe3\x25\x15\x22\x9f\xd7\xf8\x7b\xd0\xee\x0b\x27\x72\x93\x50\x59\x2d\x50\x90\x48\x2e\x1f\x9f\xcd\x23\xf9\x90\x94\xe4\x2d\xcd\xcf\x12\x87\x4f\xdc\x8e\x31\xb0\x66\xe5\x1a\x87\x69\xfe\xe7\x59\xe3\x75\x85\x0a\x8a\xf0\x92\xf7\xc7\x77\x7b\xe4\xd0\x67\x87\xe2\x72\xfd\x1c\xae\x6a\x50\x2c\x70\xcd\xad\x18\x0e\x3d\x2c\xf0\x27\x00\x00\xff\xff\x3f\xd4\x1f\xb5\x43\x02\x00\x00") - -func templatesCmdGatewayHandlerGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesCmdGatewayHandlerGoGotmpl, - "templates/cmd/gateway/handler.go.gotmpl", - ) -} - -func templatesCmdGatewayHandlerGoGotmpl() (*asset, error) { - bytes, err := templatesCmdGatewayHandlerGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/cmd/gateway/handler.go.gotmpl", size: 579, mode: os.FileMode(420), modTime: time.Unix(1523908338, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesCmdGatewayMainGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x4d\x6f\xdc\x38\x0c\x3d\x4b\xbf\x82\xeb\xc3\xc2\x06\x66\x6c\xec\x35\x8b\x1c\xb2\x1f\x69\x0e\x49\x30\x48\xd2\xf6\x50\xf4\xc0\xd8\xb4\x46\x8d\x2c\xb9\x94\x3c\x1f\x48\xe7\xbf\x17\xb2\x35\x93\x8e\x83\x9e\x64\x91\xf4\xe3\x7b\x8f\x54\x8f\xf5\x0b\x2a\x82\x0e\xb5\x95\x52\x77\xbd\xe3\x00\xb9\x14\x59\xed\x6c\xa0\x5d\xc8\xa4\xc8\x5a\x83\x2a\x9e\xc6\x8d\x87\xa5\x50\xad\x43\xe8\xe3\xb7\xd2\x61\x3d\x3c\x97\xb5\xeb\x2a\xc5\x7d\xbd\xa4\xda\xf9\xbd\x0f\x94\xae\x0a\x03\x6d\x71\x5f\xf1\x60\x83\xee\x68\xf6\x87\xb6\xad\x7b\x36\x6e\xe7\x7a\xb2\x15\x06\x83\x7e\x89\x7d\xbf\x0c\xce\x99\x17\x1d\x2a\xb5\xcd\x64\x21\xe5\x06\x39\x12\x7a\x24\xde\x10\x5f\x35\x0d\x93\xf7\x42\xf8\xc0\xda\x2a\x29\x3e\x4c\x1d\x8e\xf1\x63\xf8\x71\x8b\x4a\x11\xff\xa7\x19\xe0\x54\x5c\x48\xd9\x0e\xb6\x1e\xb5\xe6\x05\xbc\x4a\x51\x55\x50\x33\x61\x20\xb8\x79\x7a\x5a\xc1\x1a\x6d\x63\x88\xa1\x75\x0c\x89\xba\x14\xc4\x7c\x93\xe2\x17\x97\x90\x94\x94\x9f\x75\x58\xaf\xd8\x05\xf7\x3f\xb3\x3b\x16\xe4\x6a\x5b\x8e\xc1\x3b\xf2\x1e\x15\xfd\x9a\x2b\xa4\xf0\xa3\x84\x74\x5f\x00\xf1\x88\x78\x4f\xdb\xd7\x57\x28\xef\xb1\x23\xf8\x01\x51\xa6\xae\x09\x0e\x87\x23\x66\x1a\x44\xf9\x0f\xd6\x2f\x8a\xdd\x60\x9b\xbc\x58\xc0\x99\x1d\x23\xd6\x5b\x9f\xaa\x82\xa8\xb8\x07\x34\x06\x9e\x87\x00\x81\x51\x1b\x6d\x15\x64\x55\x06\xce\x82\xb6\xb5\xeb\xe2\x9d\xe9\xfb\x40\x3e\xf8\x19\x37\xb8\x84\x38\xe0\xf2\x31\xa2\xac\x98\x5a\xbd\xcb\xa5\x10\x75\xd7\x94\xc9\xef\x8f\x0f\xb7\x5f\x2e\x0c\xd9\xfc\x3c\x56\x2c\xff\xfa\xba\x90\x62\xa6\x54\x8a\x42\x0a\xdd\x8e\x82\xff\xb8\x04\xab\x4d\xf4\x5e\x18\xa7\xca\x6b\x0c\x68\x8c\xcd\x89\x23\xf1\xc3\xc8\xbd\xc3\x7e\x1a\x07\xd9\xa6\x77\xda\x06\x0f\xc1\x1d\x67\xe3\xa5\xe8\x86\x5d\xf4\x6d\x64\x78\x4f\xdb\xd1\x89\xbb\x61\x97\x17\x63\xaa\x9c\xba\xce\x88\x2d\xe0\x8c\xd2\x59\xe9\xf5\x60\xeb\x3c\xab\xfc\xb4\x32\x55\xb6\x80\xb4\x3d\xe7\x8e\xc6\xff\x4f\x2c\xa2\x8b\x61\x4d\xc7\x2d\x01\x9c\x06\x21\xc5\xc8\xea\x56\xfb\x40\xf6\xca\x36\x23\xb7\xfc\x7c\x47\x17\xd0\x0d\xbb\x42\x1e\xd2\x32\x6a\xab\xc3\x69\x19\x1b\x6a\x71\x30\xe1\x04\xbb\x41\x33\x90\xff\x1b\x5c\x1f\xb4\xb3\x68\xcc\x1e\x6a\x67\x5b\xad\x06\xa6\x06\x36\x1a\xa1\x76\x5d\x87\xb6\x59\x1a\x6d\x09\xe2\x43\xf5\x52\xc4\x63\x9c\x9d\x55\x9f\x90\xf3\x3f\x67\xbb\x92\x4d\x56\x64\x0b\x88\x1e\xcd\x93\x49\x09\xb8\x76\x12\xf8\xb0\xfa\x37\x79\x97\x15\xef\xa1\xe7\xd2\xb2\xc4\x3c\x81\xbf\x4b\xcf\xd1\x93\xce\xdf\x37\x78\x7b\xc8\x91\xf8\x74\x59\x36\x3a\xb2\xcf\xfc\x1a\x99\xe2\x47\xa3\x99\xea\xe0\x78\x7f\xc4\x4d\x85\xe5\x37\xef\x2c\xb4\xda\xd0\x09\x7a\x85\xec\x29\x8f\xf6\xff\x0c\x00\x00\xff\xff\x80\x9a\x14\x2f\xfa\x04\x00\x00") - -func templatesCmdGatewayMainGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesCmdGatewayMainGoGotmpl, - "templates/cmd/gateway/main.go.gotmpl", - ) -} - -func templatesCmdGatewayMainGoGotmpl() (*asset, error) { - bytes, err := templatesCmdGatewayMainGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/cmd/gateway/main.go.gotmpl", size: 1274, mode: os.FileMode(420), modTime: time.Unix(1525718022, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesCmdGatewaySwaggerGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xc1\x4a\xc3\x40\x10\x86\xcf\xd9\xa7\x18\x16\x84\x54\xcb\xe6\x2e\xf4\x26\x52\xc4\x43\x68\x2b\x9e\x97\x3a\xd9\x8c\xa6\x93\xed\xcc\xd4\x08\xe2\xbb\xcb\xa6\xf1\xe2\x6d\x98\x7f\xbf\x9d\xef\xcf\xf1\xf8\x11\x13\xc2\x29\x12\x3b\x47\xa7\x3c\x8a\x41\xed\x2a\x3f\x8c\xc9\xbb\xca\x33\x5a\xd3\x9b\xe5\x32\xe7\x68\x7d\xd3\xd1\x80\x65\x28\x0b\x35\x21\x4e\xea\xdd\xca\xb9\xa6\x81\xfd\x14\x53\x42\xd9\x46\x7e\x1b\x50\x40\xd0\x2e\xc2\x0a\x91\x61\x7b\x38\xb4\xd0\x2f\x7b\xeb\xa3\x81\xa2\x7c\xa2\x82\xf5\x08\x7a\xc5\x40\x33\x1e\x5d\x77\xe1\xe3\xbf\x8f\x6a\x99\xa0\x28\x84\x1d\x6a\x1e\x59\xf1\x55\xc8\x50\xd6\x20\x78\x86\xdb\x25\x39\x5f\x50\x6d\x05\xdf\xae\xca\x70\xbf\x81\xc5\x2c\x1c\x84\x4e\xad\x60\x47\x5f\xb5\xe0\x39\xbc\xec\x9e\x43\x1b\xad\x5f\x83\x6f\x96\xb3\x8d\x5f\x15\x66\x03\x7f\xc5\xc2\xd3\x48\x5c\x2f\x0a\x0f\x24\x6b\xc8\xf3\x8b\xbb\x0d\xf8\xb0\x40\xe1\x5d\x47\xf6\xae\x1a\xc6\x14\x5a\x21\xb6\xae\xf6\xa5\x11\x71\x82\x1b\xf5\x57\x64\x36\xdb\x97\x9e\x8f\x34\x60\x2d\xd3\x6c\x3c\x67\x3f\xee\x37\x00\x00\xff\xff\xcd\xd6\xe8\xba\x78\x01\x00\x00") - -func templatesCmdGatewaySwaggerGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesCmdGatewaySwaggerGoGotmpl, - "templates/cmd/gateway/swagger.go.gotmpl", - ) -} - -func templatesCmdGatewaySwaggerGoGotmpl() (*asset, error) { - bytes, err := templatesCmdGatewaySwaggerGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/cmd/gateway/swagger.go.gotmpl", size: 376, mode: os.FileMode(420), modTime: time.Unix(1523908338, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesCmdServerMainGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\x41\x6f\xe3\x36\x10\x85\xcf\xe4\xaf\x98\xea\x50\x48\x80\x2c\xdd\x13\xe4\xd0\x38\x6d\x51\xa0\x48\x82\x04\xed\x1e\x03\x9a\x1a\xd3\xdc\x50\x24\x41\xd2\xf6\x7a\xbd\xfa\xef\x0b\x52\x92\x2d\x3b\x0e\xb0\xbe\x58\x00\x67\x38\xef\x51\xef\xa3\x6c\x19\x7f\x67\x02\xa1\x65\x52\x53\x2a\x5b\x6b\x5c\x80\x9c\x92\x6c\xa9\x98\xc8\x28\xc9\x34\x86\xf8\x10\x32\xac\xd6\x8b\x8a\x9b\xb6\x16\xce\xf2\x19\x72\xe3\x77\x3e\x60\x5b\x0b\x33\x4b\x2b\xad\x6c\x1a\x85\x5b\xe6\xf0\xda\xfe\x5a\x19\x21\xa4\x16\xf1\xe9\xd6\x3e\xa3\x64\xbf\x07\xb9\x84\xea\x8b\x0c\xab\xbf\x59\xc0\x2d\xdb\x41\xd7\x4d\x67\x4a\xbd\x34\x0b\x65\xbe\x19\x8b\xba\x66\x41\x31\x3f\x63\xd6\xce\x82\x31\xea\x5d\x86\xba\xdd\x66\xfb\x3d\xa0\x6e\xa0\xeb\xae\x35\xb3\x61\x4a\x36\x2c\x18\x77\x76\x0c\x2f\xdd\xda\x7a\xd4\x47\x97\x99\x30\x46\x28\xac\x84\x51\x4c\x8b\xca\x38\x91\xc6\x9f\xfa\x7f\x60\x81\x2d\x98\xc7\xb3\x03\x7c\x95\xfa\xfb\x6a\x5d\x0b\xe3\xda\x8c\x92\x37\xf8\xa4\x56\x37\x92\x29\xe4\xc1\xd7\xd6\xf8\x20\x1c\xfa\xc9\xc1\x0a\x4a\x37\xcc\xc5\xb4\x5e\xd1\x6d\xd0\xfd\xd1\x34\x0e\xbd\x07\x42\x88\x0f\x4e\x6a\x41\xc9\xc3\xfd\xdc\x68\x8d\x3c\x48\xa3\x5f\xd3\x1a\x8c\xb5\x82\xd2\xe5\x5a\xf3\x94\x7c\x5e\xc0\x9e\x92\x18\x03\x3a\xb8\xb9\x83\xfe\x88\xd5\x23\x6e\xf3\x82\x92\xba\x06\xee\x90\x05\x04\x8d\x5b\x08\xdc\x82\x92\x3e\xa0\x46\xb7\xa4\x44\xe9\x12\xd0\xa5\x5d\x1a\x43\xf5\x6f\xaa\xe4\x59\xe0\x36\x2b\xe1\xc4\x57\x41\x89\x5c\xa6\xde\xdf\xee\x40\x4b\x15\x25\x07\xcd\xea\x2f\x16\x98\x52\x3a\x47\xe7\x0a\x4a\xba\x73\x4d\xf1\xf2\x3c\x07\x9f\x86\xc1\x56\x86\x15\x1c\xf3\x02\xbe\x8a\xe8\x92\xa1\x7a\x73\x07\x31\x83\x68\xbd\x17\xcf\x29\x21\x69\xe5\x3f\xcd\xdc\xee\x1f\x1d\xd0\x71\xb4\xc1\xa4\x42\xaa\xbc\x1d\x87\x55\xf3\x38\x2c\x75\x1e\x77\x93\x68\x66\xa0\x42\x1a\x3d\xd1\x4e\xc5\x34\xe2\x00\x4d\x35\xd9\x3c\x15\x2b\xca\xd4\x7c\x11\x6c\x18\x45\xb8\x51\xaa\xcf\x0a\x8c\x45\x17\xe7\xf9\x73\xb9\x76\x9b\x76\xcf\x0f\xad\x4f\x43\xe7\x44\x62\x04\xbf\x9f\x3a\xdc\xae\x8b\xbe\x87\xa0\x3f\x31\x7d\xc4\xe0\x4f\x1d\xdc\x2e\xef\xc3\x2a\x7a\xa1\xf4\x1b\x7f\x8a\xcb\xb4\x9f\x67\x38\x02\x0c\xcd\xd0\x43\x49\xb3\x38\xb0\x13\x61\xaf\x9e\x6c\x44\xe7\x40\x7a\x09\x1f\xf1\xbd\x02\xa2\xc9\x8b\xa8\x6b\x70\x28\x22\x9a\x2e\x61\x24\x39\x82\x6c\xad\xc2\x16\x75\xe8\x53\x4d\x58\x85\x15\x26\x7c\x06\xd6\x28\xf1\x07\x83\x7e\x93\xa0\xba\x67\x5e\xf2\x81\x8d\xcb\xe7\x6e\x16\x07\xe1\xab\x88\xb7\x8b\xea\x65\xf0\xb8\xdf\x43\xf5\xc8\x5a\x84\x1f\xe9\x06\x45\xb7\x5d\x37\x88\xf6\xce\x4a\x98\x5c\xa7\xe8\x2e\xad\x56\xa9\x27\x57\xba\xb8\xfd\x45\xd5\x6e\xf8\x08\x48\x2d\x43\xff\x11\xa8\x6b\x68\x70\xc9\xd6\x2a\x8c\x17\x8e\xf5\xd7\xf7\x16\x8c\x8d\x6f\x8a\x29\xb5\x03\x8f\x01\x36\x92\x01\x37\x6d\xcb\x74\x33\x53\x52\x23\xc4\xbf\x0c\x4f\x49\x7c\x54\x7d\x5a\xff\x33\x97\xff\x7e\xf2\x11\x28\x21\x1b\xe6\x65\x25\xf0\xb6\xa9\xce\xab\x29\x82\xc9\x75\x1f\xbb\x3f\xa5\xec\x5c\xee\x23\x33\x25\x64\xcd\x62\x90\xbb\x58\x8d\x9a\x23\x95\x27\x82\x23\x3f\x49\xe3\x99\x39\x8f\x79\x41\x3b\xfa\x33\x00\x00\xff\xff\x74\x4c\xd9\xc4\x35\x07\x00\x00") - -func templatesCmdServerMainGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesCmdServerMainGoGotmpl, - "templates/cmd/server/main.go.gotmpl", - ) -} - -func templatesCmdServerMainGoGotmpl() (*asset, error) { - bytes, err := templatesCmdServerMainGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/cmd/server/main.go.gotmpl", size: 1845, mode: os.FileMode(420), modTime: time.Unix(1525718010, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesDockerDockerfileApplicationGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xcf\x41\x4b\xc3\x30\x18\xc6\xf1\x7b\x3e\xc5\xc3\x76\x6e\xd2\x5d\x27\x3d\xe8\x56\xc7\x50\x9b\x11\x27\x32\x44\x24\xed\x62\x0d\xa4\xc9\x48\x52\x71\x8c\x7e\x77\xa9\xad\x30\x10\xd9\x2d\x09\xe1\x7d\x7f\xff\x29\xca\x56\x9b\x3d\xe2\x87\x42\x50\xfe\x53\x79\x94\xda\x4a\x7f\x24\xb7\x82\x3f\xa0\x76\x46\xda\x7a\x3e\xa3\xb3\x94\xa6\x90\x61\xf8\xad\x3c\x79\xe6\xe2\x6e\xb9\x16\x60\xb5\x63\xc1\x57\xec\x74\x02\x15\xce\x45\x74\xdd\xcf\xb9\x90\x8d\x42\xd7\x91\x05\xdf\xec\x40\x41\x89\x78\x2a\xb0\x58\xf1\xb7\xbc\xb8\xbe\xb9\xcf\x97\x59\x8a\x15\xe7\x8f\x99\xd1\xb6\xfd\x42\xed\x46\x46\xe2\xfa\xf5\x6c\x94\x50\x56\x35\xfb\xf1\x42\xc8\x14\x95\x3b\x1c\xff\x4a\xf1\xee\x5d\xf3\x0b\x43\x88\xb2\x56\x57\xf0\xad\xfd\xaf\x49\x9a\x83\xb6\x6a\x6e\x64\x54\x21\xf6\x4d\xbe\xb5\xf6\x3c\xa9\xd4\x76\x70\x27\x49\x3f\x3a\x4b\x2f\x55\xb2\x73\x33\xc9\x8b\xad\xd8\x6d\xf8\xba\xd8\xe2\x65\x32\xbc\x4e\x5e\xbf\x03\x00\x00\xff\xff\x1d\x6e\xd7\xb3\x68\x01\x00\x00") - -func templatesDockerDockerfileApplicationGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesDockerDockerfileApplicationGotmpl, - "templates/docker/Dockerfile.application.gotmpl", - ) -} - -func templatesDockerDockerfileApplicationGotmpl() (*asset, error) { - bytes, err := templatesDockerDockerfileApplicationGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/docker/Dockerfile.application.gotmpl", size: 360, mode: os.FileMode(420), modTime: time.Unix(1524595073, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesDockerDockerfileGatewayGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x41\x4b\x03\x31\x14\x04\xe0\x7b\x7e\xc5\x50\xcf\x9b\x6c\xaf\x85\x3d\x68\xbb\x96\xa2\x26\x25\x56\xa4\x88\xc8\xdb\x36\xc6\x40\x36\x91\x6c\x16\x2d\x65\xff\xbb\xd4\xb6\xa0\xa7\xde\xde\x1b\x06\xe6\xbb\x42\xd3\x3b\xbf\x45\xfe\x30\xb0\x94\xcd\x17\xed\xd0\xb8\x40\x69\xc7\x6e\xb5\x7a\x80\x8d\x9e\x82\x9d\x8c\xf9\xb8\xe4\x25\xa8\x3b\xd6\x4d\x62\xcf\x4a\xdf\xcd\x16\x1a\xc2\x46\xd1\xa5\x8d\xd8\xef\xc1\x75\x8c\x19\xc3\xf0\x7b\x4b\x6a\x0d\x86\x81\x4d\xd5\x72\x0d\x0e\xce\xf4\x93\xc4\x74\xae\xde\x6a\x79\x7d\x73\x5f\xcf\xaa\x12\x73\xa5\x1e\x2b\xef\x42\xff\x0d\x1b\x4f\x8e\x22\x1e\xe6\xc5\x99\xc2\xc5\xa6\xdd\x9e\x3f\xc6\x2e\x69\xc9\x7f\xba\x60\x26\x9e\xb2\xe9\xf2\x41\x9b\xfa\x10\xfe\x62\x1b\x17\x8e\xa2\xa2\x78\x4f\xb1\xad\xca\x4b\x7e\xf1\x4f\xc3\x6a\xb9\xd2\xeb\xa5\x5a\xc8\x15\x5e\x46\xa7\x78\xf4\xfa\x13\x00\x00\xff\xff\xa0\xad\x45\xbf\x45\x01\x00\x00") - -func templatesDockerDockerfileGatewayGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesDockerDockerfileGatewayGotmpl, - "templates/docker/Dockerfile.gateway.gotmpl", - ) -} - -func templatesDockerDockerfileGatewayGotmpl() (*asset, error) { - bytes, err := templatesDockerDockerfileGatewayGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/docker/Dockerfile.gateway.gotmpl", size: 325, mode: os.FileMode(420), modTime: time.Unix(1524595073, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesFormattingGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x55\x61\x6f\xdb\x36\x10\xfd\x6c\xfd\x8a\x57\x61\xab\x25\xc0\xb5\xbb\x7e\x9b\x57\x0f\x28\xb6\x66\xeb\x90\x6d\x41\x92\x7d\x59\x60\x0c\xb4\x74\x92\x6f\x91\x48\xe1\x48\x39\x48\x5b\xff\xf7\x81\x94\x6c\xcb\x5e\x9a\x65\x18\xd6\x7c\x09\x43\xbe\x7b\x3c\xbe\xf7\x74\x69\x54\x76\xab\x4a\x82\xa3\xba\xa9\x94\x23\x1b\x45\x5c\x37\x46\x1c\x92\x68\x14\x17\xb5\x8b\xa3\x51\x6c\x9d\xb0\x2e\xad\x5f\xb6\x9a\x33\x93\x53\x1c\xa5\x51\xb4\x51\xe2\x51\x24\xf2\xb6\x6e\xdc\xfd\x15\xc9\x86\x33\xfa\x45\xd5\x04\x60\x81\xc2\x48\xad\xdc\x5b\x11\x23\x1f\x62\xf2\x08\xd8\x0e\x02\xad\x6a\x8a\xb7\xa1\xf4\x9d\xde\xa8\x8a\xf3\x33\x16\xeb\x2e\x5b\xfd\x40\x69\x45\x2a\x67\x5d\x42\x1b\xfd\xa2\x22\xe7\x48\xc0\xfa\x11\xaa\x0b\x31\x7f\x52\xe6\x2e\x8d\x71\xa7\x54\x4d\x77\x84\xba\xb5\x0e\x2b\x02\x6b\x76\xac\x2a\x7e\x4f\x39\x58\x5b\xce\x09\x5f\xfc\xf0\xeb\xc5\x9b\xeb\x1f\x67\x56\x32\xe4\x2c\x94\x39\x23\xf7\x30\x82\x15\x55\xe6\xae\xbf\xe9\x67\xb6\x96\x75\xd9\x41\x11\x7e\x4e\x6e\xea\x69\x40\x7a\xc3\x62\x74\x4d\xda\x61\xa3\x84\xd5\xaa\x22\x68\xe3\x60\xc9\xc5\x5b\xaf\xe2\x6c\x86\xa1\x72\x4e\xdd\x92\x85\x42\xa7\x39\x94\xce\x7b\x62\x0b\x76\x60\xed\x0c\x14\xc2\x3b\x51\x5e\x5e\x7c\x77\xa4\x43\x54\xb4\x3a\x1b\xb2\x25\xd6\x49\xcf\x94\x22\xe9\x16\x13\x90\x6f\x31\xc5\x87\x68\xc4\x05\x2a\xd2\xfe\x20\xc5\x6b\x7c\xe5\xb7\x46\x42\xae\x15\xed\xab\x02\xf2\xd4\xda\x68\xb4\x0d\x75\x85\x37\x0c\xf3\x05\xa4\xd5\xe1\x9e\x9b\x97\xcb\xf4\x1b\x3c\xeb\x03\x32\x7d\x67\xcf\x83\x57\x49\x00\xa6\x0f\x51\x9f\x5a\x1f\xa8\x67\x33\xd8\xa6\x62\xb7\x13\xc0\x68\x18\x4d\xde\x80\xda\x08\x85\x10\xa8\xaa\x59\x2b\xdd\xd6\x24\x9c\x85\xeb\x6d\x34\x2a\x98\xaa\xdc\xfa\x7e\xfa\xb0\x4e\xcf\xc2\xce\x59\xab\xb3\x24\x5c\xc8\xf6\xaa\xa1\x8c\x55\x95\x46\xa3\xc2\x08\x38\x34\xaf\x74\x49\xe8\x8b\x7d\x8b\xdd\xf2\x86\x97\x38\x30\x5d\xb3\xab\x28\xd9\x9f\xa4\xa1\xcf\xc3\x5b\x02\xe6\x27\xc3\xba\x87\x4c\x10\xc7\xe9\x04\x9a\xab\x68\x1b\xec\xfd\x5e\x39\xb5\x52\xb6\xf3\xb7\x24\x4d\xe2\x3f\x34\xb8\x75\xe7\x1a\x4c\x11\xd6\xaa\x69\x2a\xce\x94\x63\xa3\xc7\x16\x79\x5f\xd4\x79\x3a\xa4\x78\x82\xa9\xff\xc1\x9c\x38\xfe\xb4\x37\xff\x4e\xe4\x47\x15\xfa\xe3\x58\x22\x1f\x30\x92\xdf\x2e\xcf\x3f\x95\x7f\xbb\x4f\xbd\x07\x75\x87\x87\xb8\x87\xd2\xff\x2b\xec\x9f\x25\x91\xad\x54\x43\xe8\xb1\x58\x2f\xe2\xbf\xcb\x79\x6d\xce\xcd\x1d\x49\xd2\x4a\x75\xa4\xe4\x70\xfa\xe5\xe4\x48\x6a\xd6\x7d\xd8\x24\xec\x1d\x66\x5a\x01\xa5\x87\xa9\x9b\xe2\x7a\x4d\xe8\x67\xa4\xe7\x0a\x05\x6c\x91\x99\x30\x1b\x85\x72\x38\xe3\xe7\xa6\xd2\xf7\x6e\xed\xb5\x60\x7d\x34\x30\x77\x63\xb2\x73\x66\xd0\x4a\x52\x9a\x46\xb9\xf5\x04\x77\x46\x6e\x73\xfe\x27\x9f\x3a\x34\x16\x0b\xc4\xf1\x03\xe1\x3c\x1a\xbf\xbb\x81\xe4\xbd\xed\xd9\xbd\xbf\xfe\xcf\x8e\xe6\x91\x78\x0f\x3a\xdc\xd1\xf4\x14\x37\xf3\x01\xc1\x12\xcf\x16\xbb\x9e\x9e\xcc\xd5\xeb\x18\x8a\xe6\x8b\x3d\xef\x80\x76\xbe\x8c\x46\x39\xcb\x51\x46\xae\x7c\xd2\x92\x41\xed\x04\xf1\xcc\xdb\xdf\xbf\xd0\xe3\xfd\xf3\x5e\x3d\xbd\x91\x87\xbe\x43\x4f\x73\xf3\x6a\xbe\xec\xd8\x87\xf9\xd9\x87\x12\xd9\x9a\xb2\x5b\x0b\x2e\x42\xa2\x7d\x0e\x4e\xa3\xde\xd9\xbc\xaf\x48\x24\x20\x53\xac\x8c\xa9\x7c\x7f\xfd\xcd\x89\xe0\x35\xc6\x2f\xc7\xf8\xf8\x11\x82\x6f\x31\xfe\x7a\x9c\xe2\xf9\xf3\x7e\x5f\x1d\xf6\xdf\x0f\xf7\xdf\x1c\xf6\x7f\x1f\xa7\xbe\x3b\x77\xdf\xd0\xf0\xbf\xac\x7f\x52\x9b\x39\x7f\x53\x6d\xcb\xdd\x50\xd8\x46\x5d\x5b\xc9\x11\x36\x45\xf8\x95\xa4\xbb\xaf\xf8\xd0\x5e\x51\xbb\xe9\x55\x23\xac\x5d\x91\xc4\x5d\x89\xf3\x88\x90\xc8\x39\xbe\xb4\x5e\xdd\x69\x6d\x4b\xdf\xc4\x5f\x01\x00\x00\xff\xff\x6b\x78\x7a\xc4\x30\x09\x00\x00") - -func templatesFormattingGoBytes() ([]byte, error) { - return bindataRead( - _templatesFormattingGo, - "templates/formatting.go", - ) -} - -func templatesFormattingGo() (*asset, error) { - bytes, err := templatesFormattingGoBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/formatting.go", size: 2352, mode: os.FileMode(420), modTime: time.Unix(1525794669, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesFormatting_testGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xe3\x36\x10\x3e\x4b\x4f\xc1\x08\xc8\x8f\x0b\x5b\xf6\xa1\xc0\xa2\x2e\x02\x34\x69\xb6\xed\x02\xdb\x76\x91\x9f\x4b\x8b\xc2\xa0\x24\x5a\x66\x23\x91\xc4\x90\x72\x77\x1b\xf8\x69\xfa\x12\xbd\xf7\xde\x67\x2a\x46\xa2\x64\x51\x8e\x56\x4e\xea\x4d\xeb\x93\x87\xf3\xcd\x0f\x67\x3e\x72\x28\x45\xe3\x7b\x9a\x32\x62\x58\xae\x32\x6a\x98\xf6\x7d\x9e\x2b\x09\x86\x9c\xf9\x5e\x60\x98\x36\x5c\xa4\x81\x3f\xf2\xfd\x65\x21\x62\x72\xcb\xb4\xb9\x61\xb0\xe6\x31\xfb\x81\xe6\xec\xcc\x90\xcf\x2c\x26\xbc\x1d\x91\x07\xdf\x5b\x53\x20\xb8\xa2\xc9\x39\xf9\xf9\x17\x6d\xa0\x88\x0d\xae\x7b\x54\x29\x41\x73\x46\x88\x36\xc0\x45\xea\x7b\x1e\x7b\xaf\x58\x6c\x58\xd2\x5a\x01\x20\xe5\x8f\x01\x48\xf0\xbd\x0d\x1a\x3e\x04\x49\xc2\xc3\x44\xe8\x30\x96\x62\xc9\xd3\x60\x4c\x82\xab\x84\x5f\x09\xfd\x75\x2d\x0b\x9e\x6d\xc6\x35\x74\x92\x08\xbd\xa8\xa0\x27\xb3\xd9\xab\xa3\x2e\x7e\x36\x7b\xe5\x98\xd0\x24\x01\xa6\x75\x24\xe5\x3d\x42\x2f\x1c\x71\x07\x76\xe9\xc2\x2e\x7b\x60\x7f\xfd\x79\x39\x9b\x39\xc0\x4a\xdc\x02\x51\x17\x8c\x71\xa7\xaf\x73\x65\x3e\xb4\x8a\x6a\x01\x9f\xbb\x01\x5d\x91\x01\xbc\x11\x6b\x9a\xf1\xe4\x1b\x0e\xda\x5c\x17\xa2\x34\xdb\xf8\xde\x52\x02\x59\x8c\xcb\x1e\x90\xf9\x39\x01\x2a\xca\xee\x62\x47\xb0\x9a\xd8\x83\xd2\x1c\x95\x4e\x27\x99\x36\xa1\x6d\xd2\xc8\xf7\x3c\xbe\x2c\x51\x47\xe7\xa5\x71\x88\xff\xd1\xde\x33\xe1\x5b\x99\x9e\x31\x80\x51\x25\xbd\xc6\x56\x2d\xcf\x82\x3b\xd1\xf4\x73\x29\x21\xa7\x06\x49\x51\x35\x72\x4e\x8e\x35\x99\x90\x46\x7f\xac\xb1\x12\x65\x22\x95\x6f\xab\x40\x8f\x9b\x2a\x74\x49\x95\x26\x76\x6d\xf8\xd0\x1b\x52\x57\x3b\x29\xed\x9e\x18\x6e\xe3\x6f\x3a\xe4\x66\x70\x77\xfd\xf6\xbf\xa2\xb6\x65\xf0\x24\xde\x9b\xdc\xae\xc5\x64\x80\xdf\x74\x3f\x7e\x0f\xc0\xb6\xfc\xb6\x0b\x93\xe8\xb9\x04\x8f\x5c\x82\xbb\x11\x9f\x41\x68\xdb\xbd\xbd\xe9\xbc\x1f\x81\xd7\x0e\xa3\xd6\xd5\xc6\xc6\x8d\xb3\xff\x03\x75\xdf\x81\xfc\x95\xc5\xe6\x5a\x4a\xf3\x04\xf2\xa6\x52\x51\xb3\x22\x2d\xf2\xfe\x26\xe1\x3e\xe1\xf0\x0c\x3a\xe3\x1e\x2b\x7f\x73\x42\x48\x30\xbd\xd3\x0c\xf4\x54\x31\xd0\x52\x4c\x53\x19\x60\xdf\x6b\xf7\xf3\x47\x00\x53\x0d\x71\x05\xaa\x23\xce\x91\x43\xe5\x02\xa0\x05\xfe\x04\xcf\x70\xa5\x22\xd1\x21\x22\x4e\x6f\x64\xce\x6c\xf1\x76\xa2\xef\xea\x9e\x95\xc8\x42\x55\x3e\xf4\x60\x46\x0d\xf2\x53\xa5\xf6\x48\x55\x6c\x1d\x52\x6e\x56\x45\x14\xc6\x32\xff\x68\xdc\x8f\xc2\x3e\x61\x9b\x5a\x71\xb9\x58\xca\x28\x93\xef\xa5\x62\x62\xdf\x5c\x07\x6c\x0e\x9b\xf8\x07\xb3\x92\x62\x90\xca\xdb\x29\xde\x3a\xbb\x87\xaa\xda\x8a\x0f\x32\xe8\x45\xf3\xa9\x01\x07\x8b\xff\xef\x0f\xf7\x23\xf1\xbf\xe7\x5a\x73\x91\x7e\xfb\xe3\xbb\x8b\xdb\xef\xea\xd0\xc3\x53\x08\x30\xd1\x7a\x0a\x39\x17\x31\x5e\xdb\x55\xd2\xf6\x0e\xb7\x09\xdb\xa1\x84\x86\x07\x9d\x16\x55\x26\x7d\xef\xaa\x17\x98\x81\xee\x50\x7a\xa3\x6f\x14\x8b\x39\xcd\x9e\x30\x92\xec\x68\x21\x04\x0a\xc1\xda\xe3\x27\x92\x32\xab\x67\xcd\x29\x3d\x1d\x93\x25\xcd\xb4\x7d\x4e\x9c\xfe\xde\x91\x2f\x3a\xf2\x4f\x1d\x79\xd6\x91\xbf\xe8\xc8\x8b\xd3\x31\x31\x50\xd4\x62\xe8\x8a\x27\xae\x38\x75\x45\xe2\x8a\x7f\xff\xd1\x92\x87\xc9\x84\xb4\x60\xba\xc8\x4a\x25\xdf\x16\x10\xeb\x0c\xa3\x2f\x6b\xe5\x13\x58\x43\x33\xb5\xa2\xa2\xc8\x19\xf0\xd8\x9a\xcf\xc9\xb1\x71\xfa\x69\x90\x3c\xa5\x6a\x9f\xc7\xc6\x15\x35\x34\xa2\xfa\xe5\xbe\x02\x71\x6f\xd6\x1a\xcf\x7a\xf7\xe1\xdc\x39\xd9\x49\xc2\x17\xdb\xa7\xf2\xe0\x15\xdf\x72\x1c\x4b\x61\x68\x33\xa8\x5b\x2e\x3b\x8a\xbd\x9c\x2d\x7a\xbd\xf5\x5f\x7d\xcd\x07\x5d\xaf\x57\x2d\x73\x76\x12\x1e\x7d\x45\x95\x3a\xc2\xb5\x1d\xe7\x08\x58\x50\xa5\x16\x2d\xed\x63\xf9\x0e\x53\x31\x89\x9a\x5b\xcd\xed\xf8\x81\x9f\xd7\xbb\xf7\x58\xdf\xf3\x3a\x89\x0e\x7a\x5d\xe2\x06\xfb\xd8\xfe\x4f\x00\x00\x00\xff\xff\xe8\xc2\x11\x41\x1c\x11\x00\x00") - -func templatesFormatting_testGoBytes() ([]byte, error) { - return bindataRead( - _templatesFormatting_testGo, - "templates/formatting_test.go", - ) -} - -func templatesFormatting_testGo() (*asset, error) { - bytes, err := templatesFormatting_testGoBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/formatting_test.go", size: 4380, mode: os.FileMode(420), modTime: time.Unix(1525725726, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesPkgPbServiceProtoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x4c\x7d\xda\x00\xb1\x84\xa2\xb7\x04\x39\x14\x49\xba\x0d\x50\x74\x83\x64\xd1\x3d\x16\x63\x69\x24\x11\x21\x39\x2c\x67\x64\xc7\x48\xfd\xdf\x0b\x92\x96\x23\x24\x69\x0b\xec\x8d\xe2\xc7\x7b\x8f\x6f\x1e\x47\xb2\xf7\x8a\xcf\x70\x05\xab\x10\x59\xf9\xa7\xd5\x65\x55\x05\x6c\x9f\x70\x20\x10\x8a\x5b\xd3\xd2\x65\x55\x19\x17\x38\x2a\xac\x06\xe6\xc1\x52\x93\xb7\x6e\xa6\xbe\x21\x17\x74\x5f\xe7\xcf\xd5\xe5\xdb\x5d\x18\x4c\x83\xde\xb3\xa2\x1a\xf6\xf2\x7e\x9b\xd1\x71\xda\xd4\x2d\xbb\xc6\xee\x7b\x2d\xa8\xed\x7a\x20\xbf\xde\xa2\x35\x1d\x2a\x35\xef\x06\xef\x50\x16\xa7\x64\x87\xc3\x40\xb1\xe1\x90\x09\x3f\x22\x7f\x79\x01\xd3\x43\xfd\xcd\xe8\x78\x83\x8a\x1b\x14\x82\xc3\xe1\x23\x49\xc6\xf7\xbc\xb1\xfc\xcc\x81\xfc\x52\xda\xc0\xd1\x9d\x18\xd2\xc7\x02\x9a\x7c\x97\xd0\xaa\xb2\x0c\x03\xff\x39\x5b\x79\x05\xab\x23\xf5\x03\xb3\xc2\xe1\xf0\xf2\x72\x1a\x36\x69\xfc\x3b\x3a\x2a\xd3\x64\xe5\x38\x5a\x4e\x66\xe4\x26\x3c\x0d\x4d\xd8\x5c\x86\x4d\x2a\x53\xd3\xc0\xd7\x91\xe0\xb4\xf1\x6f\x78\x2c\x05\x83\xc3\x61\xae\xdd\x39\x7c\x26\xfd\x83\xa2\x24\x3d\x0f\xf7\xd7\xe7\x80\xbe\x83\x79\xc2\x91\x08\x0e\x94\x90\x1c\x3e\x11\x4c\x01\x10\xc4\xb8\x60\x09\x56\xa2\x18\x95\xe2\x0a\xe8\x19\xd3\x4c\x0d\x77\x0a\x68\x2d\xef\x04\x74\x24\xf8\x59\x2d\x0a\x5c\xff\x76\x07\xca\x30\x90\xa7\x88\x4a\x80\x3e\xa1\x91\xef\xd6\xca\xeb\xa4\xfa\x78\x1a\x7a\x8e\xf9\x98\x24\x22\xee\xa1\x23\xc7\x5e\x34\xe6\xfa\xd4\xf0\x0b\x91\x85\x3e\x12\x25\xb4\x76\x44\x3f\x10\x24\xa4\x85\x7c\x65\xd8\x90\x2a\xc5\xb5\x4c\x46\x61\xe4\x1d\xec\x79\x8a\xb0\x2d\xeb\xc6\x0f\x20\x7b\x51\x72\xe7\xc0\x11\x06\x52\x88\xa6\x4b\x54\x46\x81\xbc\x9a\x48\x76\x5f\x67\xdb\x7e\xa5\x48\x80\x91\x40\xd8\x11\x8c\x64\x43\x3f\x59\x88\x24\x3c\xc5\x96\x24\x31\xa1\xe9\x12\x3a\x18\x5f\x48\xe6\xc8\xc3\x5f\x13\x89\x5e\x24\x94\x51\x35\xc8\x45\xd3\xfc\x5b\x68\x30\x19\xb4\x6e\xd9\x2b\xb6\x2a\x6b\x0c\xa1\xd9\x58\xde\x34\x0e\x45\x29\x96\x4c\x35\xf3\x72\x49\xd1\x12\xb6\xa3\x2d\x59\x0e\x14\xa5\x2e\x0f\x2a\x33\x94\x24\xb2\x5d\x6f\xa6\xbe\xa7\x28\x4d\xc7\xad\x34\xef\x0e\x2f\x34\x0d\x31\xb4\x6b\x6a\xb9\x78\x53\x3e\x07\x54\xda\xe1\xfe\x7b\xe9\x44\xf7\x96\x8a\x93\x18\xc2\xfe\x64\x4e\x6f\xfc\xf0\x43\x09\xe6\x97\x9b\x2f\x17\xf0\x2d\x9a\x14\x89\x57\xf3\xa4\x1d\xc9\xe1\x29\x0b\xff\x19\xdd\x3a\xa7\x3b\x67\xb3\xc4\x54\x72\x76\x1f\xee\xaf\x05\x76\xc6\x5a\x68\xd9\x05\x16\x2a\x61\xbc\xbf\x7b\x4d\xd8\xf1\xfc\x42\xc8\xa3\xc6\xa9\xd5\x29\x52\x29\x26\xef\xfc\xab\xa6\x19\xbd\x86\x5b\x6c\x47\x98\x6f\x0c\xe5\xc6\xf3\x32\x18\x01\xcc\x6a\xc4\xa1\xb5\x60\x79\x30\x2d\xa6\xd0\xb4\x1c\x4b\xca\x7c\xcf\xd1\xe5\x38\x9f\x43\x2e\xab\xc9\x99\xc4\x24\xc8\x90\xa4\x3d\x1e\x1d\xa5\xe6\x36\x11\x04\x34\x51\xea\x6a\x86\x3f\x86\xfc\x81\x24\xb0\x17\x82\x97\x0a\x40\x34\x26\x80\x63\xbe\xe1\x0a\x7e\xbc\xac\x0e\x8b\x5b\xdd\x50\x6f\x3c\xfd\xbf\x93\xd9\x37\xa3\x02\x8e\x74\xe4\x4e\x16\xaf\x2d\x81\xbd\x3e\xb8\x84\x94\x24\x26\xa9\x1f\x23\xbe\x79\x83\xd9\x4d\x8f\xce\xf8\x21\x21\xb5\xec\xb7\xe9\xa5\xa5\x86\x5b\xcd\xe4\x1f\x03\xa5\xfb\xc5\xd0\x2e\xdf\xf7\xa7\x63\xee\xe6\xca\xd4\xb7\xe9\xef\x72\x06\x91\x74\x8a\x5e\xe0\xd3\x1b\x8f\xce\x32\x08\xc0\xa2\xa7\x7f\x2e\xb9\x4e\xad\x72\x36\xe9\x3e\xf2\xd6\x74\x04\x0e\x43\x30\x7e\x90\xa4\x7f\x47\xe4\xe1\xe1\xf6\xf1\x6b\x6a\x54\x81\x8d\xd7\x92\xad\x59\xf2\xec\x53\x86\x3f\x36\xf3\x59\x1d\x06\x53\xa7\x37\x73\x06\x57\x47\x7e\x48\xbd\xe6\x02\x56\xcd\xb1\x50\xab\x3c\x7b\x58\xfc\x10\x00\x0e\xd5\xa1\xfa\x27\x00\x00\xff\xff\x08\x75\xeb\xe7\x6b\x07\x00\x00") - -func templatesPkgPbServiceProtoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesPkgPbServiceProtoGotmpl, - "templates/pkg/pb/service.proto.gotmpl", - ) -} - -func templatesPkgPbServiceProtoGotmpl() (*asset, error) { - bytes, err := templatesPkgPbServiceProtoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/pkg/pb/service.proto.gotmpl", size: 1899, mode: os.FileMode(420), modTime: time.Unix(1525469677, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesPkgSvcZserverGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x51\x4f\xeb\x46\x13\x7d\xc6\xbf\xe2\xc8\x0f\x9f\x02\x0a\xce\xfd\x5e\x91\xfa\x00\x24\x20\x54\x4a\x10\x17\xee\x55\x1f\xd7\xf6\x38\xde\x5e\x7b\xd7\xdd\x1d\x13\xdc\x34\xfd\xed\xd5\xac\x6d\x12\x4a\x4a\xab\xea\xe6\x21\x8e\x37\x3b\x67\x66\xce\x39\x3b\xdb\xa8\xec\x9b\x5a\x11\xfc\x73\x16\x45\xba\x6e\xac\x63\x4c\xa2\xa3\x38\xb3\x86\xe9\x85\xe3\xe8\x28\x2e\xea\xf0\x60\x5d\x53\x1c\x1d\x6d\x36\xd0\x05\x92\xaf\x9a\xcb\xb9\x62\x95\x2a\x4f\xd8\x6e\xe3\x95\xe6\xb2\x4d\x93\xcc\xd6\xb3\x5f\xb4\xf9\xad\x6c\x67\x2b\xeb\xea\x78\xb3\x01\x99\x1c\xdb\x6d\x74\x1c\x45\xb3\x19\xfe\xf8\x9e\x9f\x0f\x01\x71\x8e\x8b\x87\x9b\xc5\x15\xe6\x8b\x2f\x8b\xdb\xe5\xfd\x4f\x8b\xbb\x47\x5c\x3f\xdd\xcc\x17\x7f\x1f\x13\xcd\x66\x82\xf9\xb8\x9c\x2f\xcf\xb0\x78\x61\x29\x9d\x4b\xc2\x66\x83\xe4\x4e\xd5\x84\xdf\xf1\x99\xdc\xb3\xce\xa4\x65\xf8\xe1\x67\xda\x21\xa7\x42\x1b\x6d\x56\x30\xb4\xc6\xc3\xfd\xa5\x87\x32\xb9\x40\x29\x93\xa3\x26\xef\x85\x62\xee\x1a\xf2\xd0\x26\x40\x36\xe9\x6c\x88\x4f\x1a\x67\xd9\xa2\xd0\x15\x25\x78\x2c\xc9\xd3\x2b\xc2\x18\xea\x05\x2a\xb3\x75\x63\x3d\x85\xe8\xf3\xfb\x1b\x14\xd6\xa1\xb3\xad\x1b\xeb\x48\x70\x5e\x30\x39\xd4\x36\xd7\x45\x27\xc5\x84\x3c\x01\xdc\x67\x25\xd5\x4a\x72\x0b\xd2\x5f\x73\x4f\x91\xa9\xaa\x42\x5c\xab\x6f\x43\x40\xda\x16\x31\xd8\xc2\xd1\x8a\x0c\x39\xc5\xb4\x03\x4b\xdb\x22\x14\xeb\x13\xc1\xda\xf1\x75\xe9\x48\xf6\x29\x03\x5d\x37\x15\xd5\x64\x58\xb1\xb6\x06\xb6\xf8\x07\x12\xc9\x09\x8a\x36\x4c\xae\x50\x59\x60\x41\xfb\xdd\x3b\xb4\xc7\x58\x46\x2e\x6c\xbf\x29\x45\x68\xd1\x15\xb9\xc0\x17\xbd\x68\xcf\xbe\x47\xf3\x3a\xa7\x77\x54\xa7\xc9\x6a\x8f\x6a\xc4\x7d\xfa\x18\x9e\x5d\x9b\x31\x54\xe5\x48\xe5\x9d\xa0\x3f\xeb\x9c\x44\x84\x00\xf6\xae\xa1\x8f\x9a\xd9\xab\x7c\xc8\x3b\x45\xda\x32\xac\xa9\xba\xc0\x97\x28\x27\x85\x5d\x13\x7f\x21\xe7\x05\xb2\x68\x4d\x26\xd8\x09\x7e\xb6\x2d\xd6\xba\xaa\x60\x88\x72\xd1\xe0\x35\x39\x94\xe9\x76\x06\xeb\x6c\x1b\xc0\x54\x1e\x76\x05\x27\xbc\x92\xd2\xeb\x9d\xbc\xf1\xf3\x53\x93\x8f\x3a\x1e\x48\x8c\x75\x49\x46\xd0\xc9\xe1\xb9\xff\xcf\x4b\xa3\xfb\x0e\x13\xac\x94\x32\x5b\x13\xd4\xb3\xd2\x95\x4a\x85\xc7\x2b\xa2\x0a\x85\x23\x92\x32\xb2\x52\x99\xd5\x9b\x04\x6c\x91\x12\x33\xb9\x53\xdf\x6a\x46\x69\xd7\x01\x53\xb0\x86\x3c\x62\x55\xdf\x79\xa6\x7a\x0a\xeb\xb0\x22\x86\xd3\xb9\x24\xd7\x0c\x32\xac\x1d\x55\x5d\xb2\x8f\x59\x52\xd5\x78\x04\xbb\xb6\x0d\x94\x60\xf9\x40\x13\x62\xcf\xca\xb1\x28\x4a\x2f\x2a\xac\x70\xa9\x44\xd7\xca\xae\x45\x4d\x99\x46\xa7\x6c\x4f\x29\x98\x25\xec\x48\x70\xc3\x62\x31\x63\x59\x80\x1c\xfd\xda\x6a\x47\xf9\x5b\xf2\x96\x25\x3a\x52\xe5\x14\x39\x55\x14\x58\x14\x53\xb6\x62\xb1\x40\x9c\xa8\x61\x2c\x2a\x6b\x56\xe4\x7a\xe9\x34\xbf\x1e\x90\x0f\x66\x18\xae\xce\x1f\x16\x5f\x17\xb7\xb7\x38\xbf\x9b\xe3\x7a\xb9\x9c\xe3\xf6\xe9\xf2\xc7\x0f\x42\xbe\xff\x18\x8d\x32\x6b\x7c\x18\xfb\x3b\x51\x84\x11\xb1\x4a\xd6\x3a\x27\xde\x1b\x97\x87\xc3\x3c\x3a\xe2\x68\x5c\xff\x01\xf1\xa7\xe4\x53\xf2\xff\x78\x18\xf4\x73\x2a\x54\x5b\xf1\x7f\x98\x05\xbb\xe3\x13\xc9\xc4\x1c\x57\xfb\x13\xba\xc1\xe1\xfb\x27\x4f\x71\x22\x17\x4e\x32\xbf\x78\xbd\x72\xb0\x0d\x95\xec\xf9\xc6\x11\xb7\xce\xfc\xab\xc6\xe4\x5c\x60\xd2\xe7\x3e\xde\xc3\x98\x0c\x17\x63\x72\xd9\x3f\xa7\x38\xa1\xba\xe1\x2e\x59\xc8\xf7\x31\x26\x27\x4d\x9a\x0c\x7b\x1f\xc8\x37\xd6\x78\x9a\x82\x9c\xb3\xee\x18\x9b\xe8\xa8\x2f\x01\xff\x7b\xbf\x6b\x33\xbc\x9f\x8d\x25\x6d\xa7\x30\xba\x8a\xfa\x2e\xee\x68\x7d\xa1\xbc\xce\x3e\xf7\x6c\x8c\x9d\xc8\xb4\x35\x9e\x95\xc9\x68\xec\x20\x1f\x98\x7f\xc7\x66\x68\xe9\x2d\xce\xe4\x00\x9b\xdb\x6d\x3e\xf2\xfa\x8e\xd2\x63\x4c\x9a\x34\x39\xa8\x5e\x0f\x78\xa8\xd5\xbe\x90\x83\xca\x89\x70\x67\x18\xf3\xed\x29\x37\xb6\xfe\x67\x00\x00\x00\xff\xff\xbc\x64\xd6\x99\x9f\x08\x00\x00") - -func templatesPkgSvcZserverGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesPkgSvcZserverGoGotmpl, - "templates/pkg/svc/zserver.go.gotmpl", - ) -} - -func templatesPkgSvcZserverGoGotmpl() (*asset, error) { - bytes, err := templatesPkgSvcZserverGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/pkg/svc/zserver.go.gotmpl", size: 2207, mode: os.FileMode(420), modTime: time.Unix(1525469808, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesPkgSvcZserver_testGoGotmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xd1\x6b\xdb\x30\x10\xc6\x9f\xa5\xbf\xe2\x66\x68\x71\x8a\xa7\xbc\x07\xf2\x52\x56\xf6\xb6\x87\xae\xdb\x1e\xc6\x18\x8a\x72\x76\x44\x13\xc9\x9c\xce\x6e\x83\xf1\xff\x3e\x4e\x76\xdc\xb2\x96\x06\x62\xa4\x93\xf4\xbb\xef\xfb\xa4\xd6\xba\x47\xdb\x20\xa4\xde\x69\xed\x4f\x6d\x24\x86\x52\xab\xc2\xc5\xc0\xf8\xcc\x85\x56\x05\x63\x62\x1f\x1a\x19\x36\x9e\x0f\xdd\xce\xb8\x78\x5a\x37\xf1\x68\x43\xb3\x6e\x29\x72\xdc\x75\xf5\xba\xe5\x73\x8b\x69\x8d\xa7\x96\xcf\x85\x5e\x69\x5d\x77\xc1\xc1\x03\x26\xfe\x8a\xfc\x13\x29\xf9\x18\x4a\x86\x9b\x99\x66\x1e\x56\x30\x68\xd5\x5b\x02\xa9\x24\xd8\xc2\xef\x3f\x89\xa9\x73\x2c\x75\x15\xec\x09\x41\x7e\x89\xc9\x87\x46\x2b\x85\xcf\x2d\x3a\xc6\x3d\xdc\xb4\x3b\x33\x03\xef\x31\xb5\x31\x24\x94\x65\xa2\xbc\x1f\x90\x28\x92\x56\xa3\x50\xe4\x9f\x51\x9b\xbc\x54\xf4\x48\xbe\x3e\x43\x42\xea\xbd\x43\xe8\x27\x4a\x51\xc9\xb6\x0b\x7f\x03\xd7\x6f\x1b\x0c\xf3\x7c\x73\x39\x33\x4e\x67\x88\x26\x32\x04\x7f\x94\x8a\x94\x47\xad\xea\x48\xf0\xb7\xca\xce\x60\xb3\x05\xb2\xa1\xc1\xd9\xa7\x48\x62\x73\xdf\x85\x52\xe6\x46\xc4\x55\x20\x59\xbd\x0d\x47\x29\x11\x8a\x54\x89\x27\xe1\x7c\xc3\xa7\x5b\x9b\xbc\xfb\x9e\xcb\xe5\x30\x80\xaf\xc1\xfc\xf2\x7c\xf8\x62\xd9\xee\x6c\x42\x18\xc7\xe0\x8f\xc3\x00\x18\xf6\x30\x8e\x2b\x81\xf8\x3a\x9f\xff\xb4\xcd\x0a\x8c\x8c\x33\x5c\xb1\xb9\x93\xac\xea\xb2\xf8\x11\x96\x74\x73\x7c\xf0\x74\xc0\x00\x8e\xd0\x8a\x1c\x98\x64\x6c\xe0\xaa\x87\xcf\xf0\x92\xd3\x55\x3f\x25\x97\x73\xa8\x16\xfa\x54\xcb\xad\x47\xf9\x10\xa6\xc5\xc1\x44\x32\xaf\x9e\xc4\xfc\xd0\xcc\xad\x75\x8f\x0d\xc5\x2e\xec\xcb\x55\x05\xd7\xf9\x1d\x99\x3b\xf9\x0e\x8b\x0d\xc2\x74\xb9\x98\x17\x3b\xb3\x9c\x65\xe1\x03\x6f\xf3\xdd\x81\x0f\x82\xca\x17\xfb\x81\xa9\x57\xdd\xaa\xf7\x7b\xfd\xe7\x54\x74\x8e\x7a\xd4\xff\x02\x00\x00\xff\xff\xc6\xf3\x8a\xe8\x54\x03\x00\x00") - -func templatesPkgSvcZserver_testGoGotmplBytes() ([]byte, error) { - return bindataRead( - _templatesPkgSvcZserver_testGoGotmpl, - "templates/pkg/svc/zserver_test.go.gotmpl", - ) -} - -func templatesPkgSvcZserver_testGoGotmpl() (*asset, error) { - bytes, err := templatesPkgSvcZserver_testGoGotmplBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/pkg/svc/zserver_test.go.gotmpl", size: 852, mode: os.FileMode(420), modTime: time.Unix(1525469808, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _templatesTemplateBindataGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x5b\x8f\x1e\xc9\x75\xa5\x7d\xcd\xfa\x15\xe5\x06\x6c\x90\x1f\xfa\x23\xf3\x10\x79\x6a\x40\x17\xb6\x24\x6b\x7c\x21\xdb\xb0\x3c\x37\x33\x39\x30\x22\x33\x22\xe8\x82\x48\x16\xa7\x58\x2d\xa7\x24\xf4\x7f\x1f\xac\x1d\xcf\x66\x16\x8b\x55\xec\x66\x93\x3d\x18\x40\x54\x93\x55\xef\x9b\x19\x87\x1d\xfb\xb8\xf6\x8a\x17\x2f\x2e\x7f\x7d\x9d\xf2\xe5\xcb\xfc\x26\xdf\xc4\xdb\x9c\x2e\xb7\x3f\x5f\xbe\xbc\xfe\xff\xb7\xab\x37\x29\xde\xc6\xe7\x17\x2f\x5e\x5c\xbe\xbb\xfe\xfe\x66\xcf\xef\xbe\xd3\xdf\x6f\xf3\xeb\xb7\xaf\xe2\x6d\x7e\xf7\xe2\xf9\xcb\xab\xdb\xab\x97\x6f\xae\x6f\xf2\xf3\x97\xd7\xb7\xaf\xdf\xbe\xfa\xf0\xd7\xbf\x8f\x7f\xcc\xe5\xea\xd5\xc3\xbf\xfc\xb7\xdf\xfe\xfd\x6f\x7e\xff\xdb\xe7\xaf\xd3\x83\xbf\xdd\x5f\xa7\x17\xfb\xf5\x9b\x72\xf5\xf2\xf9\xcb\xeb\x47\x3f\xf1\x32\xde\xe6\xff\x8a\x7f\x7e\xf1\x9f\xf1\x4d\x7a\x95\x6f\x7e\xca\x47\x5f\xc7\xab\x37\x3f\xe5\x73\xef\xfe\x2b\xbe\x7c\xf9\xe9\x47\xbe\xcb\x37\x7f\xca\x37\x9f\x7c\x62\xba\xde\xff\x98\x6f\x5e\xfc\xc6\xfe\x63\x4b\x11\xdf\xbe\x7d\x75\xb5\xc7\xdb\xab\xeb\x37\x3f\xf1\x1b\x8c\xe8\xc1\x4f\x97\xeb\x9b\xd7\xf1\xf6\xf6\xea\x8d\x96\xe9\xb1\x5f\xfd\xc7\x6d\x7e\x77\xfb\xd1\xef\xdf\xfe\xf1\xe5\x8b\xb7\x9b\x4d\xe2\x6a\xcf\xcf\xdf\xde\x5c\xdf\x3e\x3c\x07\x7d\xf0\xdd\x9f\xf6\x17\x7f\xa9\xf3\x7d\x6c\xaa\xf7\x3e\xe6\x2f\x7d\xf0\xb3\xfe\xb7\xf7\x22\x56\x07\xf7\x9b\x7f\xb9\xfc\xe7\x7f\xf9\xf7\xcb\xdf\xfe\xe6\x9f\xfe\xfd\x6f\x2e\x2e\xde\xc6\xfd\x8f\xf1\x65\x3e\xbf\x76\x71\x71\xf5\xfa\xed\xf5\xcd\xed\xe5\xd3\x8b\x27\xdf\x6c\x7f\xbe\xcd\xef\xbe\xb9\x78\xf2\xcd\x7e\xfd\xfa\xed\x4d\x7e\xf7\xee\xc5\xcb\xbf\x5c\xbd\xd5\x0f\xca\xeb\x5b\xfd\xe7\xea\xba\xfe\xff\x8b\xab\xeb\xef\x6f\xaf\x5e\xe9\x1f\xd7\xf6\x85\xb7\xf1\xf6\x3f\x5f\x68\x65\xf5\x17\xfd\xe0\xdd\xed\xcd\xd5\x9b\x97\xf6\xbb\xdb\xab\xd7\xf9\x9b\x8b\x67\x17\x17\xe5\xfb\x37\xfb\x25\xa3\xfb\xb7\x1c\xd3\x53\xfd\xe5\xf2\x7f\xfe\x2f\xbd\xf6\xdb\xcb\x37\xf1\x75\xbe\xac\x5f\x7b\x76\xf9\xd4\x7f\x9a\x6f\x6e\xae\x6f\x9e\x5d\xfe\xf5\xe2\xc9\xcb\xbf\xd8\xbf\x2e\xbf\xfb\xd5\xa5\x46\xf5\xfc\x9f\xf3\x7f\xe9\x21\xf9\xe6\xa9\x0d\x5b\xff\xfe\x87\xef\x4b\xc9\x37\xf6\xd8\x67\xcf\x2e\x9e\x5c\x15\xfb\xc2\xdf\xfc\xea\xf2\xcd\xd5\x2b\x3d\xe2\xc9\x4d\xbe\xfd\xfe\xe6\x8d\xfe\xf9\xed\x65\x79\x7d\xfb\xfc\xb7\x7a\x7a\x79\xfa\x8d\x1e\x74\xf9\xb7\xff\xfb\xbb\xcb\xbf\xfd\xd3\x37\x75\x24\xf6\xae\x67\x17\x4f\x7e\xb8\xb8\x78\xf2\xa7\x78\x73\xb9\x7d\x5f\x2e\xeb\x7b\xea\x4b\x2e\x9e\xfc\x47\x1d\xce\xaf\x2e\xaf\xae\x9f\xff\xfa\xfa\xed\x9f\x9f\xfe\xdd\xf6\x7d\xf9\xf6\xf2\xe5\x5f\x9e\x5d\x3c\xd9\x5f\xfd\xd6\x47\xfa\xfc\xd7\xaf\xae\xdf\xe5\xa7\xcf\x2e\xbe\xd6\x78\xf4\x98\xfa\xfc\x47\x1e\x94\x6f\x6e\xea\xb8\xf9\xe1\xf6\x7d\x79\xfe\x0f\x1a\xfa\xd3\x67\xdf\xea\x13\x17\x3f\x5c\x5c\xdc\xfe\xf9\x6d\xbe\x8c\xef\xde\xe5\x5b\x2d\xf9\xf7\xfb\xad\x9e\x62\xf3\x63\x3f\x2e\x9e\x5c\xbd\x29\xd7\x97\x97\xd7\xef\x9e\xff\xe3\xd5\xab\xfc\x4f\x6f\xca\xf5\xfb\xef\xb1\x85\xfe\xf3\x3b\x4f\xb0\x3d\xbc\xbc\x64\x1b\x2f\x9e\xbc\xbb\xfa\x8b\xfd\xfb\xea\xcd\xed\x18\x2e\x9e\xbc\x96\x46\xbc\x7c\xff\xd0\xdf\x5f\xa7\x6c\x3f\xfc\xf7\xab\xd7\xf9\x52\x62\xf2\x5c\x7f\xd3\x7b\x4c\x54\x9e\x96\xab\xfb\xef\x7a\x76\xf9\xcf\xf1\x75\x7e\xfa\x8c\x37\xe8\x9d\xcc\xb2\x5c\x3d\xd7\xdb\x2f\x7e\xf8\xc4\x77\xff\x70\xf5\x17\x7d\xd7\x46\xf3\xe1\x57\x35\xd0\x4f\x7e\x55\x63\x7d\xfa\xec\xee\xc8\x3f\x7c\x80\xa6\xf6\x63\x0f\xd0\xe4\x9e\x3e\x3b\x27\xfa\xd1\x13\x98\xfd\xe3\x0f\xf9\xa7\x77\xbf\xb9\xba\x79\xfa\xec\x72\xbb\xbe\x7e\x75\xf7\xdb\xf1\xd5\xbb\x1f\x99\xf9\x9f\xdf\xd5\x89\xe7\x9b\x12\xf7\xfc\xd7\x1f\xee\x7c\x1b\x91\x90\x94\xff\xc7\x7b\xbd\xf0\x3b\x37\x42\xbf\x33\x55\x73\xf9\x2b\xe4\xe2\xe9\x37\xeb\xd1\x96\xf5\x98\xb7\xf5\x68\xe6\xf5\x68\x9a\x87\xff\x94\xb2\x1e\x21\xae\xc7\xae\x3f\xfb\x7a\xe4\x7e\x3d\x9a\x6e\x3d\x9a\xf0\xe1\x67\xf4\xa7\xd9\xd7\x63\x2b\xeb\xb1\x8f\xeb\x91\xf7\x0f\x3f\xd3\x34\xdf\xb8\xe6\x78\x6c\x6c\xc8\xf6\x43\x3a\xc3\x4f\xc0\x1d\x9d\x73\xf1\xe4\xc9\xa3\xb3\xfc\xf6\xe2\xc9\x93\x6f\x3e\x61\x89\xbf\xf9\xf6\xe2\xc9\xb3\xf7\xe2\xf9\xd8\x53\x34\x94\xff\xcf\xce\xd6\xdd\xa1\xd8\xe1\x7a\xaf\xc1\x7e\x64\x2e\x3f\xa6\x2b\xde\x1f\x71\x3b\xa4\xdf\xfd\xea\xfe\x86\xff\x55\x47\xe1\xbb\xcb\x4f\xcf\xe5\x52\x42\xff\xdd\x65\xf8\xf6\x52\xc2\xfb\xdd\x5d\xd9\x7e\x1a\xba\xe6\x99\xfd\x5c\x22\xf9\x5d\x15\xd9\xff\xfe\xe6\xea\x78\xda\x0e\x5d\x1f\xc6\xb9\x0d\xe1\xdb\xcb\xe6\xd9\x0f\x17\x4f\xa2\x5e\xff\x77\x36\xdd\xbf\xda\x1c\xbf\xbb\x64\xaa\x1a\xdb\x77\xf6\xff\x3f\xbc\xdf\x89\xf8\xed\xc3\xe2\xe6\x5e\xcd\x17\x48\x5b\x0c\xeb\x31\x8c\xeb\x31\x6e\xeb\x31\x97\xf5\x58\xb6\xf5\xe8\xe7\xf5\x68\xa7\xf5\x28\x79\x3d\xda\xbd\x7e\x6e\x8e\xeb\x11\xfb\xf5\xd8\xf2\x7a\x2c\xed\x7a\xb4\x71\x3d\x4a\xa8\x92\x1a\xda\xf5\x98\xb6\xf5\x28\xdb\x7a\xb4\xdd\x7a\x74\xcb\x7a\xe4\xb8\x1e\xa9\x5b\x8f\x39\xac\xc7\x38\xae\xc7\xd6\xad\xc7\x92\xd6\xa3\x59\xd6\xa3\xeb\xd7\x63\x6c\xd6\x63\x88\xeb\x31\xa7\xf5\x18\x42\xfd\x79\xaf\xef\x35\xeb\xd1\x36\xeb\x11\x35\x1e\x7d\x66\x59\x8f\xb4\xad\xc7\x18\xd6\x63\x1a\xd7\x63\xd1\x3b\x97\xf5\x98\xca\x7a\x0c\x1a\xaf\xbe\xa7\x31\x87\xf5\xd8\xfa\xf5\x18\xd2\x7a\x8c\xa9\x9e\x0c\x3d\x47\x9f\xd9\xf3\x7a\xe4\xa1\x3e\x7f\x2f\xeb\xb1\x2d\x75\x8e\x65\x5a\x8f\x98\xd7\xa3\xf4\xeb\x31\x4f\xeb\xb1\xa5\xf5\x28\x3a\x6d\xfd\x7a\xa4\x69\x3d\xa6\x76\x3d\xca\x5e\xdf\xa7\xf7\x6f\x6d\x9d\x8f\x3e\xdf\x6a\x5c\x5a\xdb\x76\x3d\xf2\xb8\x1e\x9d\xde\x31\xad\x47\x13\xeb\xdf\x97\xa9\x7e\x4e\xef\xd2\x98\x96\xb8\x1e\x53\xac\xef\xd0\xfc\xb5\x46\x31\xad\xc7\x9c\xd7\x63\xd4\x9a\x74\xeb\x91\xb7\xf5\x18\x86\xba\xde\x7d\x53\xf7\x4f\xeb\x31\x75\x75\x8d\x73\xa9\xfb\xba\x69\x3d\xa7\xfa\x79\xfd\x3e\xe5\x3a\xee\x11\xed\xb1\xf4\x75\x3f\x96\x71\x3d\x62\xbb\x1e\xdb\x50\xd7\xa6\xc4\xf5\x18\xe7\xf5\xd8\xb6\x0f\x9f\xa3\x75\x9d\xa6\xf5\xe8\x73\xdd\x23\x8d\xab\xcd\xeb\x91\xb4\xf7\xc3\x7a\xa4\x71\x3d\xfa\xa1\x6a\xa4\x79\xae\x6b\xa5\x75\x8d\xcb\x7a\x84\x66\x3d\xf2\x5c\xf7\x43\xeb\xad\x71\x48\x1b\xed\xfa\xb9\xc6\xdd\xd5\x9f\xef\xc3\x7a\x4c\x5a\xaf\x71\x3d\x9a\xa9\xae\x91\xf6\x37\x0e\xeb\xd1\x85\xf5\x88\xda\xdb\xa6\xca\x96\xf6\x38\x20\x5f\x36\x3f\xc9\x45\xae\xfb\xb8\xc5\x3a\x17\xc9\xeb\x34\xd4\xf5\xd4\xd8\x52\x53\xe5\x4c\x6b\x62\xcf\xdf\xea\x7e\xe8\x7b\x63\xae\x3f\xd7\x9e\xee\x53\x1d\x63\x98\xeb\x3a\x49\x6b\x8e\x5d\x7d\x7f\xa7\xf1\x74\xeb\xd1\x6b\xcc\xfa\xf9\xbe\x1e\xa1\xb0\xc7\x7d\x9d\xbb\xe4\x54\x6b\xb2\x69\x8e\x1a\xa7\xc6\x3f\xd6\xbd\xea\xf7\xfa\x4e\xcd\x39\xb5\xf5\xec\x69\x1f\xf5\x7b\xc9\x50\xab\x7d\x59\xea\xbe\x14\xd6\x4a\xda\x5d\xb2\xab\xef\x6a\x9f\x77\xbd\x63\xa8\xeb\xd5\xb5\xf5\xfd\x43\x5f\xc7\x67\x1a\x3f\xd4\x39\x6b\x0d\xfa\xb1\xee\x9d\x9e\x65\x67\x62\xac\xbf\x8b\xfc\x5e\x67\x39\xec\x55\x3e\xb4\x46\x3a\xcf\xfa\xbe\x64\x43\x32\x1e\xa6\xba\xc6\x92\xe9\x38\xd5\xef\xd8\x1a\x6b\xae\x9c\x71\x7d\x57\x32\xa3\xbd\x97\xae\xd0\xf9\xd6\x19\x9a\x1a\x64\x5b\x3f\x1b\xd7\x63\xd8\xeb\x73\x4d\xce\xb4\xd7\x7b\x3d\x5f\x6d\x5b\x9f\xb1\x0c\x55\x9e\x24\x73\x9a\xb3\xce\x47\xb3\xad\x47\x8c\x75\x9d\x24\x93\x7a\x86\xce\xe3\xac\xbd\x48\x55\xbe\x74\x4e\x87\x16\x39\x46\x77\x48\xae\x74\xfe\xb4\x87\xf6\xee\x61\x3d\x42\xa8\xfb\x67\x63\x93\xbc\x96\x2a\x37\xda\x7b\xad\xcf\x94\xeb\x3b\x34\x3e\x8d\x43\x73\x8f\x33\xcf\xcb\xec\xd5\x54\xe7\x29\xd9\xd3\x59\x97\x2c\x4a\x6e\xf4\xdf\x94\xea\x5e\xe8\x2c\x8d\x6d\x1d\xa3\xce\x6d\xcf\x9a\x68\xbc\x45\x7b\xae\xf5\x92\xae\xe4\xfc\x8e\xd2\x3b\x71\x3d\x5a\xed\x85\xbe\xa3\x7d\x99\xd1\x51\x63\x5d\xb3\x16\xf9\x1d\xe6\xaa\x37\x97\xae\xea\x0c\xc9\x8a\xce\x61\xa7\xdf\xa3\x13\x24\xc3\x7a\xa6\xf4\x70\x53\xd6\xa3\xdb\xeb\xda\x98\x4e\x92\x2e\xd6\x7c\xd0\x63\x7d\x5f\x65\x47\x32\xdf\xa4\xba\x8e\xb6\xdf\x4b\xdd\xd3\x28\xd9\x9a\xea\xbf\xf5\xc7\xf4\xc9\x56\xf5\x88\xc6\xa8\xf5\xd3\x98\xf4\xae\x92\xea\xbf\xa5\xc3\xe2\x5e\xf7\x46\xfb\xb1\x77\x55\xc6\x22\xbf\x97\xfe\x93\x9c\x69\x5d\xb5\x9e\x9a\x6f\x6e\xab\xbe\x19\xa7\x7a\x36\x65\x67\x42\x42\x5e\x43\xd5\x15\x92\x15\xcd\x57\x6b\xa7\xf3\xaf\xbd\xea\xd8\x33\xad\x9b\xf4\xa4\xd6\x71\xb8\x73\x46\x34\x76\xc9\x99\x74\x91\xec\x94\x9d\xdf\xb1\xda\x04\xc9\x88\xce\x94\xf4\xe6\xc2\x73\x64\x8f\xa4\xd3\xed\x7c\x65\x9e\x3f\xd7\x9f\xe9\x3c\x6b\x5f\x25\x97\x92\x25\xcd\x49\x7a\x4d\xba\x6f\x96\x4e\xd3\x1a\xed\x55\xb7\x69\xfd\x83\xf4\x63\xa8\xf2\xad\x77\xda\x99\x09\x55\x26\x25\xff\xae\x1b\xa4\x5f\x52\x5f\xd7\x46\xba\xd5\xf4\x69\x5b\xdf\x2d\x79\x91\x2c\x4a\x46\xfb\x74\xee\xb1\xce\xb9\x6c\xad\xce\xac\x64\x44\xb2\xa7\x31\x4b\xa7\x69\x0d\xa5\x63\x86\xad\xda\x45\x3d\x53\xfb\xad\x75\x9b\xfb\xaa\x03\x4d\x86\x53\xb5\x31\xd2\x45\x53\x5f\xc7\xa3\x71\xeb\x59\x65\xae\xe7\x5b\xf6\x7a\x6b\xea\xf8\x34\x47\xd9\x63\xd9\x69\x3d\x4b\x7b\x23\xbd\x6d\x73\xd0\xdf\xe7\x2a\xcf\x53\xa8\x32\xa7\xb1\xcb\x4e\x49\x36\xcd\x66\xf7\x75\xcd\x34\x3e\xed\xbd\xd6\x46\x9e\xa9\xe9\xd3\xad\xca\xb5\xde\xe7\x73\x1d\x59\x4b\x1f\xbf\xbd\x3b\xa3\xeb\xba\xba\x17\x5a\xb3\xd9\xed\x5e\x5f\xe5\xca\xf6\x07\xbd\xa3\xb9\x99\xed\xc8\x75\xcf\x25\xab\xcb\x5e\xcf\x7a\xc0\xdf\xb0\x9f\x95\x7a\x3e\x52\x44\x0e\x24\x8f\x09\x5d\xd8\x55\xf9\x92\xbf\x20\x7d\x9a\xd8\x7f\x9d\xf9\x9e\x35\xec\xa6\xba\x37\xf2\x49\x0a\xba\x43\x7a\x40\xfb\xa4\x71\x6b\x2f\x34\x36\x9d\xe5\x1d\x1d\xd3\x60\xa3\x36\xe4\x5c\xe7\x5d\xba\x49\x7b\xa8\x77\xcb\x26\x48\x3e\x3b\xfc\x19\xbd\x2f\x6c\xf5\xb9\xda\x1f\xad\x49\xc2\xce\x6a\x3e\x7a\xbe\x64\x4e\x63\xd4\x59\x91\x3c\xe8\xf3\xf2\x1b\x64\x4f\x64\x2f\x74\x8e\x74\xe6\xa5\x4b\x74\x56\xcc\x9e\x76\xd8\x87\xb9\xda\x35\xf9\x71\x7a\x86\x9e\xa5\xbd\xd7\x7e\xcb\xff\xd3\x59\x95\x1e\xd5\x9c\x75\x76\x34\x4f\x8d\x5f\xe7\xaa\x6f\xeb\x1f\xc9\xec\xc4\x59\x94\x9e\x91\xde\x93\x7e\xd2\x38\x12\x3e\x9f\xf9\x4b\x3d\x36\x68\xa8\x72\xa2\x9f\x6b\xcf\x12\x72\xd4\xe3\x7f\x6a\xac\x1a\xb3\xd6\x57\xfa\x33\x07\x64\x3a\xd7\xf5\x96\x7d\xde\xdb\xfa\x7b\xfb\x5c\x5b\xd7\xc4\x9e\xbd\xd4\x73\x2b\xb9\xd5\xba\x6b\xac\x7e\xb6\xb4\xcf\xf2\xcd\x64\x77\x64\xa7\x76\xf7\xa1\xe6\xaa\xd7\x24\x3b\x1a\x43\xcf\x59\x92\x6c\xc8\x37\x94\x0e\x90\x3f\x23\xf9\x36\xfd\xa8\x71\x70\xd6\xa5\xe7\x25\xff\x1b\xe3\xd7\xd9\x90\x4f\xa7\x71\xda\xb9\xc5\x86\xed\xec\x8d\xd6\x5e\x7b\x2b\xfd\x63\xff\x5d\xaa\xad\xd2\x18\x75\x36\xa5\xbb\x64\x23\xb4\xe6\x92\x6f\xf9\x17\xb2\x85\xa6\xc3\xd8\xeb\x19\x7d\xa6\x35\xd1\x19\x92\x8c\xeb\x9d\x36\xae\xb1\xca\x89\xd6\xc4\x9e\x31\xd7\x77\x9a\x3d\x1d\xea\xe7\xb4\x17\xda\x1f\x9d\x7f\xf3\x0b\x36\xce\xd6\x86\xaf\x36\x55\x3f\xbc\xd3\x73\x22\x76\xa8\xab\xe7\x45\x36\x50\x3a\x5e\xba\x58\x6b\xae\x31\xd8\xcf\xda\x6a\xb7\x35\x67\xf9\x73\x5a\x1f\xd9\x00\xed\x67\x57\xaa\x0d\xca\xf8\x29\xd2\x0f\xe6\xaf\x35\xf5\x5c\xc8\x6e\xc8\x97\x92\x9f\xa9\xf1\xea\xb3\x1a\x9f\xce\x45\xe0\xcc\xe8\xb3\x92\x17\xe9\x67\xfb\xce\x72\xbe\xd3\x62\x8c\xa6\xee\xad\xcb\x91\xfc\x4e\xe9\x35\x93\xd3\xb1\xee\x83\x6c\xb3\x7c\x15\xad\xaf\x6c\x4f\x19\x39\x0f\xf8\xc8\xd2\x51\x5a\x5f\xd9\x44\xb3\xcf\x4d\x9d\xcf\x90\xab\xec\xca\xc6\x98\x0f\x9d\x19\x6b\x8f\x1c\xcf\x75\xed\x74\x16\x14\x4f\xcc\x03\x67\xb8\xab\xf6\x51\x36\xa2\x2c\xe7\x7a\x99\x5d\x61\xfd\xa4\x13\xe5\x03\x68\x0f\x4c\x6f\xb4\x55\x16\x64\x3f\x24\x5b\xfa\xb9\xf6\x54\xe3\x93\xed\x37\x9b\x3a\xd7\xf8\x47\xb2\xa8\xb5\x94\x9e\x1e\x78\xfe\x86\x5f\xd3\x20\x4f\x16\x2f\xe4\x6a\x43\x25\xef\x0d\xba\x44\xb6\x40\x73\xd1\x18\x47\x6c\xa3\xfc\x2c\xe9\x66\xfd\x4c\x3e\x84\x62\x3d\xc9\x88\xe4\xc9\x7c\xd2\x58\xf7\x46\xf6\x4e\xcf\x08\x9c\x55\xed\x8d\xce\xfa\x9e\xaa\xad\x93\xac\x4b\x9f\x04\x7c\x18\xcd\x49\xf2\x28\x7d\x24\x59\x91\x0f\x6d\xf3\x1f\xab\xde\x97\x8f\x59\x78\xa6\xfc\x68\x5b\x03\xe4\x4e\xbe\x94\xf6\x3a\x31\x1e\xcd\x51\xff\xd5\xd9\xd7\xbe\xe9\xdd\xf2\xbf\x25\xab\xa6\x73\x73\x5d\x83\x70\xc7\x0f\x94\xfc\x8d\x1e\xa3\xce\x55\xa7\x47\x62\x4a\xc5\xa9\x7a\x96\xf9\xaf\x53\xd5\x01\x92\x6d\xd9\x13\x9d\x6b\xed\x9b\xf4\x81\xd6\x43\xbf\x2b\xf8\xcc\xa6\x6f\x25\x0b\xa9\x7e\x66\xc2\x3f\xd6\x59\x73\x19\x95\xbe\xd5\xd9\x97\x7e\x35\x3f\x28\xb2\xc7\x43\xf5\x43\xdd\x07\xd4\x3e\x36\xe8\x12\xed\x89\xe4\xc7\xfc\x44\xe2\x5d\xf3\xd5\xf6\xfa\x7c\xe9\x42\xed\xa5\xce\x8c\x6c\xe0\x8c\x7f\x2c\x39\x92\x6d\x93\xad\x97\x2d\x1f\x9a\xea\x5b\x05\x6c\xe8\x82\x2c\x44\xd7\x3b\x7d\x95\x55\xc5\x79\x9a\xab\xf4\xa0\x6c\x8d\xf4\xbe\x74\x45\xe6\xbc\x49\x0f\x46\xc6\x29\x5d\x6c\xfe\x9a\xc7\x3b\x33\x7e\x75\x5b\xd7\x44\x67\x4f\xfb\xa6\xf5\xd5\x33\xa5\xa3\xcc\xfe\xa7\xaa\x9b\xf4\x6f\xd9\x90\x44\x3e\x41\xf6\x4e\x36\x26\x60\x53\x14\x6b\x0e\xd8\xa8\xc4\x98\x12\x71\x88\xd6\xc5\x6c\xd2\x7c\xfa\x1f\x13\xbe\xb8\x7c\x22\x93\xa3\xa5\xea\x8a\xc8\xb3\xb4\x7e\x7a\x8f\x6c\x82\xf9\xdf\xa5\xca\xb3\xec\x95\xf6\xa0\xf3\xb3\xb4\x57\xb9\x50\xbc\x2e\x3f\xc6\xe2\xdf\xb1\xfa\x90\x7a\x96\xf6\x4a\xbf\x9b\x53\x8d\x09\xe4\xa7\xda\x79\xd8\xaa\xdf\xac\xb3\x2e\x3d\xaa\x31\x6a\xaf\x25\x7b\xda\xa3\x80\x1c\xe9\x2c\xeb\x77\x63\xa8\x3a\xd4\xe4\x82\xf1\x49\x4e\x0a\xb1\xb6\xe6\x10\xc6\x33\x5e\xb2\xb8\xaf\xab\xfa\xb4\x23\x66\x97\xbd\xd6\xef\xb5\x87\x3d\xeb\x65\x7a\x26\x57\xb9\x35\x9f\x3f\xd7\xf1\x6a\xdc\x3a\x77\x1d\x7a\x59\x3e\x90\xe5\x7f\x42\xb5\x33\x1d\xfe\xab\xd6\x54\x7a\x4a\xb6\xe4\x7e\x36\x51\x32\x66\x36\x12\x3d\x1e\xf0\x43\x1f\xcb\x26\x7e\x98\x7a\xfa\x82\x64\xe2\x87\x0f\xba\x97\x4b\xbc\x57\xb6\x7b\x24\x93\xf8\xe1\x23\x3e\x2b\x91\xf8\xe0\x34\xbe\x7e\x1e\xf1\xa3\x79\x90\x45\xec\xdb\x7e\xfc\xdc\x44\xe2\x30\xb7\x4d\x68\xc7\xaf\x9a\x48\xd4\xb6\xbc\xce\xbf\x4f\x5f\x90\x48\xd4\xe1\x32\xa7\x3c\xd5\x03\x98\x30\xc8\x3a\xc4\x96\x58\xeb\xab\x30\x4a\xa8\x32\x86\x44\x06\x58\xca\x50\x0a\xb3\x27\x39\x24\xc5\x62\x49\xa0\xed\x74\xb8\xe4\x44\x49\x31\xcb\x48\x48\xf1\xe9\xb3\x01\x65\xaa\x83\xa4\x83\x37\x93\xcc\xec\x08\x68\x3d\x89\xa2\x40\x42\xce\x5d\x44\x61\x36\x3c\xcf\x1d\x76\xfd\x3d\x90\xe8\x90\x42\xb2\x24\x64\xaa\x4a\xb6\x60\xf8\xf5\xbb\x9d\x04\x87\x1c\x04\x53\x08\xb1\x2a\x87\x19\x67\x4b\x87\x50\xca\x40\x73\x30\x63\x91\x48\x82\xee\x18\xbe\xa9\x2a\x07\xad\x81\x39\x3e\x28\x35\x39\xce\x89\x20\x6c\xf3\xa0\x6e\xab\x9f\x33\x67\x25\x9f\xca\x4d\xcf\x91\x43\xdc\xa0\x10\x2c\xc1\x49\x52\x72\x21\x50\x93\xc2\xb6\x39\xe5\x3a\xaf\x40\x22\xc6\x1c\xf0\xae\x1a\xc0\x9e\xe4\xd7\xc8\xe7\x74\xf8\xb5\x17\x53\x39\x93\x8f\x72\x14\x14\xdc\x4d\x24\x22\xcc\xb1\xda\xab\xe1\xb5\x04\xe1\x52\xf7\x55\xfb\x1d\x18\xb7\x94\xaa\x25\xcf\x4a\x5d\x33\x29\xe0\x9e\xbd\x90\xe1\x97\x72\x1b\xbb\x3a\xd7\x4c\x60\x20\xa3\x1a\x0b\xc1\x0e\x7f\x14\x2c\x15\x82\x2d\xad\xb3\xe6\x2d\x05\x9d\x71\x18\x02\x49\x52\x29\x55\x19\x26\x7d\x4e\x06\x47\x86\x43\xcf\xb3\x40\xc2\x13\x03\x24\x14\x2d\xe1\x4b\xf2\x45\x63\xb2\x00\x39\x60\x48\x30\x12\x96\x10\xc7\xd9\xc9\x38\xbb\x72\xc6\x0a\x09\x3c\x0b\x10\x42\xdd\x3f\x73\xbc\x62\x35\x7c\x36\x67\x8c\x68\xc7\xbc\xe5\x2c\x7a\xd2\x54\x06\x46\x0e\xaa\x94\xb0\x9c\x06\x4b\xb0\x6f\x35\x99\xa2\xef\x68\xad\x2c\xd1\xd7\x54\xc7\x42\xb2\x6c\x41\xf8\x52\xbf\xa3\xf7\xcc\x38\xe7\x1a\xc7\x3c\xa1\xa8\x7b\xf6\x64\xac\x8e\xa1\x1c\x24\x73\xda\xfb\xea\x78\xc9\x11\xcb\x04\x8d\x5a\x3b\x73\xe8\x08\x4c\xcc\x40\xcf\xd5\xe9\xd0\x9e\x6a\x5f\xb4\x06\x89\x75\xd1\x77\x2d\x51\x46\x12\x45\x67\xc3\x9d\x97\x89\xe4\x8e\xd6\xba\xc1\x91\xd7\x77\xf4\x2c\x8d\xbd\x23\xa1\x60\x09\xc3\xa5\x06\x65\x23\x73\x08\x18\x2a\x39\x52\x72\x58\x26\x64\x72\xc6\xd9\x92\x0c\xb9\x7c\xeb\x59\x96\x88\x0d\x55\xe6\x24\xc3\xb6\x57\x33\x8e\x27\x41\xb3\xe4\xc9\x1c\xc1\x4c\xa2\xbe\x23\xa1\xef\x86\xd1\x13\xcb\x73\x1d\x97\xce\xaa\x05\x8e\xa1\x3a\x08\xe6\xf4\x73\x4e\x75\x06\x23\x86\x5b\x63\xd7\x1f\x4b\x74\x64\x9c\xce\x44\x52\x09\x19\xb5\xc0\x8f\xb3\x6c\x8e\x78\xae\x8e\xb8\x15\x37\xd0\x45\x81\x42\x84\xd6\x49\xeb\x3a\xa1\x93\x66\x74\x9f\xce\xb0\x25\xf5\x48\xa4\x8c\x38\xa8\x92\x8f\x9e\x24\xbf\x05\x24\x33\x41\xc6\x4e\x02\xb9\xa9\xbf\xd3\xb8\xcc\x59\x46\xd6\xcc\x29\xe0\xdc\x8d\x18\x7d\x05\x35\x0d\x49\x9b\x44\x32\x40\x67\xbb\x25\x09\x63\x09\x37\x1c\x3c\xed\x9b\x25\x9a\x12\xe7\x6f\xaf\xef\x94\x23\x6e\x4e\x08\xce\xae\x82\x08\x05\xd8\x1d\x09\x3f\x73\xc8\x76\x1c\xb7\x0e\xc7\x17\x1d\xda\x92\x78\xd3\x3e\xea\x79\x0b\x0e\xa4\xf4\x5f\xeb\xf2\xd8\xd6\xf7\xce\x24\xd9\x2d\x80\x24\x00\xd3\xbb\x36\x8a\x3d\x9a\xaf\xd6\x61\xc3\xde\x68\x1d\x15\xb4\x28\xb0\xe8\x96\x1a\x94\x66\x0a\x51\xb2\x01\x92\x2f\xe9\x27\x8d\x43\x32\xb6\x90\xf0\xb0\xe4\xfd\x54\x65\xd7\x02\xcf\x54\x6d\x4c\xa0\xa0\xe4\x4e\xb0\x05\x9d\x24\x83\xf5\xae\x89\xa4\xc7\x46\x01\xab\x4f\xac\x21\x89\xb7\x3d\xd4\x77\x49\x2e\xf4\x99\x16\x27\x5d\xce\xea\x46\xe2\xd9\x12\xea\x4d\x4d\x76\xcc\xe9\x4c\x10\x4c\x38\x9b\x72\x08\xcd\x39\x9d\xeb\xba\xeb\x1c\xce\x14\x75\x6c\xbc\xa5\xae\x93\xe9\xcb\x50\x83\x52\xd9\x25\xcd\x49\xce\xb4\xf4\x81\x25\xb4\x08\xfe\x75\x7e\x77\x12\xbc\x89\x71\x26\x4f\xac\x51\xfc\x92\xe3\x27\x5d\x92\xef\x05\x7b\xa3\x07\xb7\x24\xb4\x12\x01\x98\xbd\xbf\x67\xed\xd9\x27\x8d\x55\xcf\x97\x4d\x6b\xd9\xab\x61\xab\xe7\x59\xeb\x38\x92\x0c\x8f\xd8\x9e\x8c\xee\x92\x5c\xc9\xde\xc8\xe6\x35\x14\xe4\x2c\x41\x12\x48\x86\x79\x91\xad\xaf\x8e\xac\xf6\x76\xc0\x2e\x2a\xb8\xd3\xfe\x04\xf4\x92\xf4\x54\xa6\x10\x20\x99\xd4\xba\x66\x92\x64\xda\x3f\xb7\xcb\x7a\xae\xf4\xaf\xe4\x2f\x91\x28\xb4\x62\xdd\x58\x1d\x7a\xbd\xc7\x8a\x9e\x04\x0e\x3b\x05\x31\x4f\xa2\xd8\xb9\x4b\x35\x90\xd2\xbc\x7b\xe4\x33\x23\x0b\x19\x9b\xa2\x3d\x2f\x24\x69\x1a\x82\x27\x0b\xfa\xf6\x53\xf7\xf6\x9e\x34\x9e\xea\xda\xe9\x1d\x9a\x7f\x21\xf9\xb3\xe3\xd4\x2f\xe8\x26\x0b\xa4\xca\x69\x9b\x3b\x02\x9b\x8e\x80\xa2\xa3\xd8\xa4\xa0\x45\xba\x2d\x61\x0b\x76\x82\x7d\xb3\xdb\x7d\x95\x23\xc9\xd0\xfb\x22\x14\x49\xd8\xcc\x33\xf4\xfe\xbd\x21\x81\xd9\x9c\x7e\x96\xd6\xab\x50\x8c\xd2\x9a\xb7\x14\xd9\x26\x0a\xba\xd2\x7f\x56\xa4\x59\xaa\x3c\xca\x87\x91\x5d\xb6\x75\x58\xaa\x9c\x6b\x9c\x53\x3e\x21\x0f\xf2\x47\xf4\x9c\x42\x42\xbd\x27\x01\xa5\xb3\x20\xd9\x9d\xb1\x49\x13\x45\xb9\x8f\x20\x11\x53\x4d\x26\x58\x61\xaf\xad\xdf\x39\x61\x11\x1f\x07\x31\x1f\xba\xbd\x5f\x10\xc4\x7c\xf8\xa0\x7b\x41\xcc\x7d\x78\xe1\x23\x51\xcc\x87\xcf\xf8\xac\x28\xe6\xc1\x79\x7c\xfd\x28\xe6\xe3\x89\x10\xc6\xb4\x5d\x37\xfd\xbf\x80\x87\xf8\xf5\xeb\xf4\x6b\x43\x6a\xfe\xee\xfa\x0b\x22\x19\x85\xcf\x3a\x65\xf2\xc8\xa4\x01\xe5\x35\x06\xbc\x6d\x03\xdb\x94\xea\xf9\xb4\xa4\x57\x02\xda\x46\xda\x57\x56\x4d\xa7\x78\x22\xfc\x97\x66\x9c\x48\x11\x49\x0b\x6d\x94\xd0\x83\x97\x53\xe6\x6a\x01\xc6\xb1\x5a\x22\x9d\x8c\x11\x4f\xd6\xca\xc5\xa4\x28\x2c\x25\xd3\xa1\xa9\xb7\x3a\x2e\x7d\x6e\xa4\x5c\x29\x8f\x24\xba\xa5\xf0\xe7\xce\x94\xc2\xb0\x3a\x3a\xe9\x0d\xe9\xac\x1e\x6f\xc1\xd2\x3b\x94\x7e\xa4\x79\xe4\x89\xc8\x43\x1d\x28\x4f\x14\xac\x8e\xd6\x26\x51\x16\x37\xaf\x92\xf4\x89\xfe\x9b\xbd\xac\x8c\x65\x6a\x28\xa9\x48\x5b\xc8\xb3\x6f\xbc\x4c\x3a\xd4\x68\x2e\xa2\x95\x1c\xea\x21\xcf\x25\xe3\xe9\x6f\x68\x2b\xfd\x7e\x27\x0d\x51\xdc\xca\xf6\x94\x0e\x86\xaa\x99\x35\x17\x2b\x2d\x53\xe2\xd2\x3b\xa5\xb9\x34\xd7\x2e\xd6\x88\x26\x0f\x35\x1d\x65\x29\xb1\x50\xa3\x27\x69\xae\x89\xf4\xa1\xd6\x4c\x96\x4e\x5a\x46\x72\x31\xe7\x33\x75\xb9\x63\x45\xad\x6c\x88\x16\x97\x35\x1d\xf1\x5e\x76\xd2\xb7\x1a\xa3\x45\x3f\x63\x5d\x6b\x2b\xdf\x4e\xd5\x52\x25\x52\x8a\x96\x3a\xc6\x73\xcf\x94\xcf\x2d\xf5\xdd\x31\xff\x96\x92\xc2\x4e\x89\x66\xc6\xeb\x22\x35\xa3\x3d\xd2\x58\x33\xb2\x3b\x61\x69\xad\x8c\x0a\x58\x6c\x01\x8a\x32\x52\x76\x91\x0c\x58\xf9\xbf\xab\x5e\x81\x41\x68\xf0\x76\x77\x22\xed\x96\xb1\x58\x8a\xb5\xad\xde\xb5\x45\x9f\x44\xee\x91\x68\x4c\xb2\xed\x10\x06\x59\x92\x06\xef\x48\x9e\xe5\xcc\xd8\xf5\x1e\x8b\x9c\x3d\x8d\x48\x79\x22\xe2\x59\xce\x44\x5b\xbd\xa7\x9b\x03\xd1\x7d\x47\xa4\x85\xec\x4d\xa4\x04\x65\x01\x5b\xbc\xab\x99\xb5\xd8\xf1\x62\x0a\x96\x4a\xf3\xd0\x78\xe4\xdd\x66\x52\xfa\xda\x0b\xcd\x43\xcf\xd9\xf1\xf6\x5a\xd2\xb7\xbe\x6f\x06\x2f\x8a\x75\x1c\x5a\xe7\x8d\x08\x5e\xde\x9e\xc9\xc7\x52\xd7\x6a\x22\xf5\x3b\x91\xb2\x6e\x99\x4b\xf4\x28\x7e\xac\x9e\xbd\x95\xf8\xbb\xfa\x7d\x79\x3a\x23\xe9\xf1\x40\x1a\x71\x26\x4d\x3d\x00\xc5\xb1\x34\xdf\x40\xaa\x91\xb2\x8d\x3c\x20\xe9\x89\x8e\xcc\x87\x79\xe2\xa4\x3a\x5b\xca\xb5\xe6\x1d\xb3\x37\x92\xa3\x1e\xe8\x83\x45\xae\x7d\x3d\x33\xf7\xf5\x99\x45\xf4\x6d\xb5\xc4\x1d\x11\xcd\x0e\x0c\xe3\x31\xcb\xf8\x91\x26\xfd\x02\xe3\xf8\xd1\xb3\xee\xd9\xc7\x87\x00\xf6\x8f\xd8\xc8\x8f\x1e\xf5\x59\x66\xf2\xb1\x49\x7d\x7d\x4b\xf9\xf0\x94\xb0\x96\x53\xdb\x7c\x76\xce\x6f\xea\xfb\xa6\x6f\xbf\xb6\xb1\xfc\x5d\xc5\xf3\xff\xb7\xda\xb3\xf0\x45\x46\x73\xc2\x68\x4a\x89\x8c\x60\xc7\x1c\xcb\x20\x05\x39\x52\x67\xb5\x1c\xf5\x5c\x95\xcc\x08\x4e\x6c\x19\xa8\x69\x53\x93\xb5\x90\x7f\x39\xf1\x06\x52\x7a\x0a\x0d\x2c\xe5\xd7\x83\x41\x98\x4f\x25\xd3\xe3\xaa\x7a\xcd\xab\x23\x4d\x18\x31\x0c\x0a\xc9\x65\x54\x2c\x25\x57\x6a\xaa\x41\xe3\xdd\xa8\x67\xeb\xf3\x9e\xcf\xb7\x7a\xfc\x5c\x8d\xa1\x87\xf2\x56\x6b\x4d\x60\x18\xa9\x29\x5b\x3d\xaa\xc5\xcd\xec\xea\x5c\xcd\x00\xb5\x27\x26\x47\xf3\xb4\xf0\x64\x06\x53\x04\xd6\x28\x52\xc3\xd4\xa1\xd4\x3c\x65\x54\x74\xd0\xf5\x2e\x4b\x5f\x95\x3a\xfe\xc9\xc3\xb7\xbe\xa6\x0c\xf4\xc7\xf0\x7b\x3b\x58\x14\xb0\x14\x7a\x87\x8c\x7d\xa0\x1e\xa6\x67\x36\x84\x6a\x03\xca\xd8\x42\xb6\x9e\x3a\x24\xd8\x84\x76\xae\xcf\x93\xd2\x96\x53\xa2\x10\xaa\x10\x4e\x4e\x84\x2f\x72\x3c\x0c\xa3\xd4\xa3\x38\x4b\xdd\x2f\x85\x24\x11\x99\x90\x52\xb5\xd4\x63\x21\x05\xb8\x53\xff\x68\x49\x7b\x21\x03\x85\xb4\x97\xd5\x8d\xc0\xdc\xe8\x7b\x5a\xeb\x9d\x70\x40\x72\xb2\x79\x0a\x76\xa9\xca\x54\xfb\xde\x61\x24\x67\x1c\x10\xab\xc7\x92\x06\xd0\x1f\xed\x83\xa5\x30\x12\x63\x64\xee\x01\x8c\x85\xfd\x2c\x50\x77\xda\x48\xef\x96\x3a\xa6\x09\xac\x96\x19\xf1\x06\xe7\x09\x7c\x67\xa1\x16\x36\x13\x76\xec\xa4\xa0\x12\x18\x50\x4b\x23\x60\xd0\x2c\xa4\x59\xea\xda\x9a\x41\x26\x1c\x32\xa3\xb0\x55\xe7\xc3\x31\x74\x86\x4f\x98\xea\x1e\xe8\xfb\x81\xcf\xe9\x3d\x86\xb3\x22\xf5\x26\x83\x9e\x1c\xf7\xb5\x54\x99\x6d\xef\x28\xfe\x08\x8e\xc3\xd2\x8c\x53\x95\xa9\x96\xba\x92\xa5\xc6\x3b\xc2\xf4\x0e\x27\x63\xa9\x86\xcf\xb0\x4e\xb1\xae\xa3\x9c\xcf\xb9\x9c\x75\x65\x33\x38\xac\x63\xa4\x46\xae\xcf\xc8\xe0\x8d\x7d\x75\xae\x74\xee\x24\x53\x23\x21\x6a\x71\xfc\xe3\x9d\xe7\xf5\x60\x57\x32\xe9\xc7\x4c\x6a\x41\x67\x59\xce\x60\x07\xd6\x40\xef\x2d\xf3\xe9\x28\x9b\x21\xdf\xea\x9e\x4f\xd4\xe2\x07\xb0\xc0\x5d\x3a\xd3\xa4\x26\x17\xac\x87\x9e\xb3\x83\xad\x35\x43\x8f\x53\x27\x07\x55\xdf\xd9\xc1\xdf\xb4\xa4\x06\x03\x25\x0a\xc3\x95\xb5\x75\x0d\x0d\x3f\x3a\x50\xfb\x66\xbd\x0b\xb8\x5e\xbd\x5b\x63\x9f\xa8\xfb\xcb\xb1\xd7\x3a\x16\xc7\xd8\x80\x2d\x35\xe7\x85\x50\x37\xa1\xf7\xcc\xe9\xeb\xea\x5c\x0a\x29\xb7\x08\x4e\x70\x00\x6f\x62\x38\x15\xc7\xde\x7a\x9d\x38\x91\x96\x06\x23\xf3\x91\x51\x2f\x60\xd0\xc0\x25\x86\xfe\x47\x8d\xfa\xc3\x1a\xff\xcb\x8c\xfb\xc3\xcf\x7c\xc0\xc8\x3f\xda\x23\xf7\xb8\xb5\x7f\xf8\xd9\x9f\x6b\xf5\x3f\x39\xeb\x5f\xc6\xfa\x7f\x62\xae\xb8\x01\xc3\xb4\x7c\x76\xcc\xbc\x34\x73\xdf\xcf\xbf\x90\x1b\xf0\xfb\x78\xf5\xe6\xcb\x7c\x00\x4a\x00\x1f\x94\x00\xe7\xea\x03\xf4\x94\x89\x36\x52\xef\x99\x52\x9a\x61\x87\xc6\x7a\xf6\x1c\x13\x28\xdd\x36\x83\x3d\xdb\x28\x27\x8d\xd4\xf6\x65\x13\x7a\xce\xbe\x02\x8e\x32\x92\x5a\x04\x47\x6a\x36\x37\x80\x19\xe5\xfc\x6c\xa4\x91\x7a\x52\x68\xfa\x6e\x26\x20\x56\xf0\xb5\x91\x7e\x33\x4c\x46\xae\xb6\x77\xa1\x94\xb0\x80\x99\xcd\xe8\xf7\x19\x7c\x88\x61\x03\x06\xf4\x54\xac\x73\xd2\xf8\x74\x0e\x65\x1f\xa5\x6f\x27\xd2\xaa\xd6\xc5\x03\x5e\xba\x25\xa8\xcc\x60\x20\x2d\xc5\x99\xaa\x8f\x10\xf1\x3d\x06\xb0\x9c\x7a\xee\x42\x90\xa3\xb9\xcc\x60\x34\x34\xdf\x48\xfa\x4e\xbe\x51\x26\xe8\x4d\xe0\x26\xb5\xd6\x66\x83\xc1\x29\x66\xc6\xb8\x53\xce\x33\x2c\x18\xa5\x87\x42\x19\xaf\xc1\x3e\x4a\x2f\x49\xb7\x19\x7e\x31\x55\x9f\x43\x01\x8e\xd9\x89\xa6\x8e\x2b\x83\x09\xd7\xda\x5b\x99\x65\xac\xe3\xd1\xfa\xf4\xe0\x1b\xb4\xbe\x13\x78\xd2\x96\xd2\xe4\x0c\xa6\x4a\xf6\x68\xa2\x47\x43\xb2\xb1\x83\xdf\xd4\x5e\x18\x36\x92\x54\xbe\xa5\x9e\x43\x0d\xb8\x32\xcf\xe8\x97\xaa\xc3\x27\x4a\x4e\x29\x9f\x7d\x1e\xda\xc3\x06\x7c\x46\x01\x87\x6f\xd8\x95\xa6\xce\xd5\xec\xd6\x52\xfd\x3a\xd9\xd6\x96\xfe\x0b\x9b\x1b\xf8\xa7\x09\xac\x4d\xa0\x44\x6b\x81\x15\xa5\xa0\x4c\x3a\x5a\xbe\x64\x00\x1f\x6d\x7b\x3e\xd6\x60\xde\xd6\x7a\xac\x09\x8a\x8d\xc4\xcc\x00\x3e\x6f\xa0\xac\x38\x52\x8e\xda\x3c\xc8\x8c\x75\xbf\x77\xf0\xf6\x5a\xf3\x91\x5e\x03\xf9\x90\x13\x38\x53\xad\xd9\x76\x27\x31\x31\x81\xeb\xca\x24\x10\xb4\xd7\x6e\xf3\x16\xf0\x27\x13\x89\x92\x48\xc9\xa7\xc1\xcf\x96\xdd\xb0\xf4\xaa\xa7\xc6\x03\xb6\x68\xab\xeb\xa1\xb1\xe8\x77\x05\x7c\xa7\xf6\xaf\xd0\xc3\x22\xff\x5d\xb2\x23\x9b\x14\xc1\x3c\xdb\xb9\x27\xf0\xd4\x5a\x6a\xec\x96\x7c\x28\xd5\xa7\xf2\xd2\xae\xa5\xa8\x4b\x8d\x11\x3a\xd6\xbb\x21\xf0\x8f\x23\xb2\xc7\x9a\xce\x60\xe6\xdc\xef\xb0\x20\x77\xa9\x72\x9a\xc0\x7a\xc9\xfe\xa6\x54\xe5\xd2\x4a\xe4\x7b\x9d\xef\x4e\xf9\xba\xc5\x1f\xb0\x04\xc1\x56\xd7\x24\x72\x56\x2d\xf1\x33\xd7\x94\x71\x1f\xaa\x6c\x2d\xbc\xb7\xc1\xb7\x1f\xf0\xa5\xb4\x27\x2d\x09\x94\x01\x39\x94\xcc\xce\x94\x68\xfc\x8c\x65\x30\xc7\x5e\x2a\x31\xdc\x5c\xc6\xef\xc5\x57\xd4\x3b\x67\xca\xd1\x99\x1e\x10\xf9\x1f\x96\xee\xa7\xcc\x30\xd0\x27\xb4\x93\xc8\x90\x7c\x6b\x2f\xb5\x8e\xde\xff\x64\x31\x42\xa9\xeb\xb1\x81\x13\x96\x2f\xd4\xe0\x3f\x16\x92\x68\xc3\x78\x96\xb6\x2d\xc1\x06\x2e\xd8\x7b\x5e\x4c\x97\xc5\x7a\x56\x1a\xd6\x73\x66\x6e\x56\xba\x98\x6b\xb2\x27\x6e\x55\xaf\x4b\x17\x5a\xd9\x63\x06\x8e\x10\xab\xbf\xdb\xec\xa7\xff\x6a\xf8\x40\x7a\x35\x24\x0f\xa6\xe7\x67\xe6\x84\x0e\xb0\x12\xfa\x54\xc7\x1a\xe9\x3f\x4a\x77\xe2\x88\x1d\x8c\xf6\x48\x22\x2d\x52\x3e\x99\x47\x4a\xf2\x81\xb3\x12\xee\xc9\x5a\xcb\x59\xd9\x4e\x3c\x7f\x4b\x1f\x82\x95\x69\x48\xf6\xd8\xfe\xcd\xe0\x8e\x1b\xfc\xee\x0e\xdd\x4c\xf9\x51\x72\x95\xf1\x6b\x1d\xfb\xbd\x01\x71\x18\xc0\xe6\xcf\x0d\x3f\xa3\x94\x34\xa3\xaf\xad\x93\xd3\xfb\x33\x3a\x7a\x41\x28\x11\xef\xe0\x9d\x25\xfb\x0b\x31\x90\x74\x9c\x61\xb8\xe9\x01\xd1\xbe\xb9\x0c\x19\xfc\x00\xdc\x76\x87\xae\x2f\x94\x7a\x03\xf3\xb3\x64\x33\x65\xdc\xc0\xb9\x4d\xf4\x32\x59\x3f\x0a\xf6\x76\x24\x01\x64\x72\x1d\x29\x45\x83\x93\x6d\xe8\xbb\xb0\x72\x3f\x18\x47\xcd\xa3\x05\x7b\x68\x7e\x26\x7d\x76\xde\x13\xd4\xe2\xc7\x8e\xf4\x24\xc8\x0e\x68\x3e\xd6\xaf\x34\x02\x01\x02\x4a\x31\xb1\x77\x6e\x33\xb4\xd6\xae\xf3\x1a\x7a\x36\x02\xfd\x43\xd6\xe7\x11\xe8\x97\xd9\xcf\x78\x6e\xa1\x04\x66\x49\x6c\xb0\xbc\x1a\xb3\x27\x43\xad\x97\x31\x54\xbb\xac\xfd\xb5\x24\x2b\x36\x41\xbe\x83\xde\x63\xba\x97\xd8\xa8\x90\x00\xd6\xd9\xe8\xe9\x41\x59\x28\x23\xe9\x8c\x69\xdc\x19\xdb\xba\x31\xa6\x1e\x4c\xe6\x46\x81\x60\x27\xd6\x5d\xe8\x9f\x32\x3c\xf8\x54\xe5\xd2\x20\x43\x33\x7e\xc4\x8c\xae\xa4\x34\xdb\x63\x1f\x1d\xc2\x62\xf0\x00\x5f\x87\xa9\xea\xd7\x05\x5c\x7d\x26\x2e\xb5\x18\xd4\xcb\xde\x03\x7d\x8d\x24\x95\x3b\xe4\xd3\xf0\xef\x4d\x9d\xeb\x04\xec\xc2\x62\xf9\x05\xbf\x65\x3c\x3b\x88\x3f\xc2\x01\x12\xcf\xcb\xce\x74\xe8\x8c\x4f\x95\xd0\x1e\x76\x1f\xbf\x4a\x40\x71\xf7\x81\x9f\x88\x26\x3e\x24\xbd\xf8\xd1\x50\xe2\xee\x53\x7f\x66\x1c\xf1\xc0\x4c\x7f\xd9\x20\xe2\xfe\x14\xdf\x97\xdd\xa6\xcf\x6e\x43\x1e\xa6\x76\x6e\xba\xee\x17\x0a\x21\xfe\x50\xa9\x4a\xbe\x28\x8a\x90\xa6\x99\xb1\x00\x56\x18\xbe\x53\x7e\x93\xf6\xdf\x01\x8d\x44\xb2\x27\xf2\x60\x0c\xe9\x1a\x00\x38\x00\x14\x90\x85\xe8\xc6\x53\x93\x04\xb4\x56\x47\x87\x89\x4e\xb9\x65\xc6\xe8\xec\xb2\xce\x31\xba\xe7\xa4\xd9\x12\x25\x21\x03\x96\xd1\xd9\x13\x3d\xf3\xd4\x55\xad\xb5\x70\x22\x37\x32\x4e\x3a\x85\x3b\xde\xb2\x59\xfd\x96\xcc\x19\x60\x94\x96\x6e\x28\x3b\xdd\x13\x9a\x84\xf2\x5d\xc6\xf3\xed\xc9\x36\xed\x58\x31\xd3\xfc\x7d\xf5\x0a\x12\x5d\x9d\x76\xea\xbb\xaa\x99\x34\x27\x79\xd3\xd6\x65\xd6\xd6\x13\x3c\x02\x92\x6a\x28\x23\x74\x0e\xb6\xc0\xc2\xeb\x99\x1b\x96\xd7\xca\x4b\x89\xc8\x04\x74\xb9\xd6\xc4\x10\xca\x19\xed\xdf\x50\xe6\x02\xec\xb3\xe3\x2d\x48\xab\x8d\x74\x7f\xf7\x44\x5e\x09\x04\xf1\x04\xd8\x24\xd2\x4d\x6a\xd9\x58\xb7\x86\x1d\xd1\xd3\x4c\xf9\xea\x4e\x97\x81\x34\xb6\x75\x3f\x92\xf1\xcb\x80\x14\x1c\x14\x27\x8d\x18\xe9\x5a\xd1\xbe\xb7\x74\xbf\xd9\xf7\x96\xba\xf6\x03\x96\x54\xe3\x4e\x74\xf6\x4e\x78\x0f\xf2\x12\x3a\xba\xc1\x07\x40\x77\x23\x1d\x76\xd6\xe5\x95\xeb\xfa\x58\x96\x97\xf2\xdb\x0e\x40\x50\x11\xa9\x75\xf9\x01\x82\x94\x87\x10\xf0\xbe\x36\x3a\xe1\xbc\x93\xc8\xba\xdb\xbc\x53\x0a\xcb\x38\x90\xd9\xb5\x0e\x4b\xef\x1a\xe4\xe7\x2d\x59\x36\xcb\x70\x17\xbc\x01\xc0\x92\x01\xf4\xba\xd6\xd5\xa2\xb3\x52\xa3\x9f\x11\xeb\x62\x1d\xec\x5b\x95\x97\x26\x9d\x56\x2d\x60\xd9\xad\xa3\x64\xaa\x9a\x3f\xe2\x7d\xc9\x4b\x69\x01\x6a\x48\x3e\x36\x7e\x57\x28\x4d\xb5\xed\xd9\x61\xd5\xd2\x5d\xf5\x1e\x6c\xc4\x3a\x5a\xd4\x41\x89\x4b\x5e\xb4\x75\x13\xa5\xb3\x4c\xda\xd3\x11\x68\xc8\xfa\x0c\x38\xe7\x9e\xc5\xd9\x01\xf7\xc8\xbb\x93\x67\x36\xcd\x77\xc1\x1d\x9f\xb2\x38\xf7\xb4\xcd\x57\x31\x3a\xf7\x9e\xf9\x09\xbb\xf3\x11\x2d\xd3\x8f\x9a\x9e\x7b\xcf\xfe\x99\xd6\xe7\xe1\x59\xff\xb2\x06\xe8\x81\xb9\x3a\x82\x7d\xfa\x6c\x00\xfb\x2f\x94\xc5\xfa\x83\x91\x3d\x7d\x71\x12\x6b\x01\x4b\x2d\x95\x3c\xd2\x98\xe7\x38\x76\x39\x52\x52\xef\xd9\x0b\x0a\xee\xac\x93\x90\x9a\x9b\x13\x43\xdb\xf6\x67\x12\xb8\xa7\xe1\xdb\x02\x5d\xff\x2c\xb4\x2e\x19\xb2\x05\x1d\xfb\x85\xc6\xab\x44\x93\xfa\x70\xa7\x89\xd0\x93\x5d\x4e\x22\x21\xc7\xcc\x51\x27\xd6\xb0\x46\x13\xba\x35\x77\x78\x73\x67\x06\x29\x41\x22\xba\x27\x00\x1f\x68\xaa\x8d\x1c\xd3\x16\x42\x0d\x6b\xd0\xa6\x1a\x3f\xe2\x84\x0f\x24\xa2\x06\x9a\x2c\xcd\x3c\x83\x54\x58\x40\xa0\x44\x0a\x50\x3b\x38\xb4\x1d\xc4\xc7\x4c\x93\xa2\xd6\xae\x27\xc0\x4d\x90\x25\xc8\xec\x59\xd0\x3e\x56\x13\xbe\x43\x62\x61\x63\xe9\x48\xb8\x51\x84\x33\xb2\x90\x0d\x73\xd6\xd3\xf8\x8a\x4a\x1d\x71\x9c\xb5\x37\x03\xe6\xbf\x90\xf0\x29\xf9\xc4\xa1\x75\x5e\x7c\x71\x13\x4e\x43\xaa\x9e\x1f\x69\xda\xd9\xc0\x90\x6d\xcb\x89\x13\x9c\x09\x6e\x23\xc9\xcb\x81\x06\xbb\x0e\xa4\x41\xa0\x29\x35\x10\xac\x06\xf6\xa7\x27\x08\xf1\x66\xfd\x96\x82\xa6\x54\x9c\xd4\x7c\xa0\xa9\xb6\xa7\x69\x2d\xdd\x49\x2a\xf4\x60\xe3\x2d\x58\x1a\xeb\x77\x2c\xd1\x41\x50\xa8\x60\x53\x72\x34\x52\x4c\x34\x33\x4b\xc3\xda\xe6\xb8\x7e\x0f\x18\xf7\xea\x26\x4d\x34\x1f\x35\x98\x91\x04\x8e\x53\xf2\x94\xc0\x1d\x9a\x3a\x5f\xce\x62\x66\x07\x0a\xc5\xdc\xab\xf6\xc4\xa0\xee\x20\x54\x64\xfe\x0d\x61\x41\xa0\x60\x32\x44\xf2\xa4\xc3\x3d\xda\xa7\xb3\x21\xda\x92\x56\x03\xbd\x13\x04\xa0\x03\xe8\x92\x4c\x83\xf6\x8c\x5c\xf5\x14\x85\x9c\xa0\xa6\x07\x59\xd3\x81\xef\xdf\x59\xf7\xf7\x8d\xb0\x0d\x64\x35\xb1\xca\x9f\xf5\x49\x44\xd6\x01\x62\x07\x99\xd4\x8d\x04\x86\x61\x8d\x53\x3d\x9f\x46\x6e\x40\x23\x66\x03\xc6\xbb\x21\x81\x68\xa4\x1f\x05\x6c\x39\xae\x9a\x3d\xbf\xe7\x7b\x9e\xf8\x20\xe9\x1a\xc0\x8c\x0e\x34\x6c\xde\x6d\xa4\xd4\xde\x1a\x4a\x66\xa8\x72\x69\xfd\x08\x24\xf3\xac\xf9\x14\x3c\xb0\xe6\xd9\x52\xec\xb6\x20\x91\x42\xf2\x4c\x13\xfc\x4c\xe3\x6d\x47\x43\x5c\x01\x6f\x6f\x28\x1e\x92\x28\x32\xb7\x0b\x68\x29\xe9\x19\x73\x33\xd0\x7f\x56\xf8\xe2\xf3\x3d\x32\x14\x20\x83\xd1\x7a\x87\x50\xcf\x47\x0b\x22\xc5\x92\xce\xe9\x24\x98\x28\xe0\x74\xad\x81\xd0\x13\xda\x0d\xf2\x46\x9f\xc6\x4e\xf3\x59\x20\x21\x33\xe0\x62\x27\x02\x64\x8d\x2f\x34\x67\xf3\xa8\x5c\x32\xad\xf9\x4e\xdf\x8c\x35\x13\x8f\x24\xc4\xba\xba\x0e\x61\x3a\x49\x76\x02\xc9\x2c\xc7\xb2\x16\x50\x52\xda\x03\x3d\x47\x32\x69\xe1\x42\x5b\xe5\xc7\x50\x33\x34\x0a\x17\x0a\x65\x3a\x97\xd2\x43\x19\xe4\x9c\x25\x29\x78\x66\x43\x31\x75\x26\x6c\x90\x4c\xb4\x13\x4d\xfc\xe8\x93\x71\xc1\x15\x77\x37\x86\xa2\xbc\x6c\x4d\x8b\x6c\x79\x13\xb0\x17\x7f\x03\x8d\x97\x9b\x27\xa0\x69\xbc\x2f\xf4\x35\x59\x31\x70\xa0\x71\x9b\x9e\x21\xbd\x5f\x67\x3f\x82\xab\xd7\x3e\xf4\xc8\xac\xe4\x52\x72\xdd\x83\xa1\x97\xae\x0f\x4e\x8a\x03\xd2\xae\x85\x3c\x62\xe7\xac\x1b\x46\xbf\x45\x77\xce\x15\xb1\xb5\x39\xd1\x4a\x04\x45\x84\xdc\xea\x77\xad\x37\xca\x2f\x34\x93\x43\x36\xb3\x80\x7a\xdb\x49\x44\x46\x48\x52\xac\x30\x01\x91\xc2\x88\x9d\xdb\x28\xd2\xf6\xde\x13\x95\xd1\x87\xf9\xc4\x7a\xf7\x20\x95\x26\x30\xf4\x19\x14\x66\xcb\xda\x76\x20\x2d\x77\x6c\xd2\x44\x62\x49\xa1\x5e\x0b\x1e\x7a\x06\x21\xb6\x91\x04\x77\xbb\x67\x85\x51\x92\x93\xda\x97\x40\x42\x68\x63\xdd\xdf\xf7\x5e\xb4\xd8\xf6\x0c\xba\x32\x30\x97\xa6\xbe\xcf\x50\x60\x84\x78\xa6\x27\x40\xaa\xed\xe8\xf7\x48\x93\xf8\xe4\x8d\xf5\x1d\x89\xf3\x4c\xf2\x3f\xd0\xfb\xe1\xb6\x33\x81\x02\x1c\xeb\xbe\xe7\xf9\x2c\xa2\xc9\x76\xcf\x5e\x2c\xa7\x51\xb5\x01\xf1\xa6\x67\x17\x7a\xc1\xbc\xb0\x22\x59\xb1\xde\x15\x4f\xc8\x61\x53\xad\x81\x98\x84\xb2\x85\x8c\xb9\xbe\xaf\x21\xc4\x8a\x24\xcb\x36\x9a\xa1\x75\xfe\x0c\x45\x48\xa1\x22\x95\xf3\xdc\xbf\x2f\x50\x51\x78\xce\xf4\xbc\x05\x9a\x8c\x07\xf0\xe0\x33\x05\xa2\x1d\x44\xe5\x32\x9f\x3d\x36\x99\xc2\x7d\x24\x61\x17\x21\xd9\x90\xbe\xd8\xd0\x77\x05\x24\xa1\xf4\xdc\x48\x12\xbd\x01\x39\xdb\x51\xfc\x2a\xf4\x77\xf9\x9a\x8f\x80\x39\x76\x6c\x7b\x87\x0c\xb7\x24\x66\x0b\x49\x74\x23\x26\x1a\xeb\xef\x66\x8a\x95\x33\xc5\x21\x6b\x4e\xa7\x8f\xa9\xf1\x7e\x11\x7a\x67\x7a\xd0\x90\xbb\xf7\xba\x41\xb0\x33\x00\x40\xda\xc3\x59\xd4\xb2\x73\x00\x90\xc3\x7a\x79\x68\xd0\xb6\xc2\x7d\x0f\x41\x98\x93\x7b\x74\x75\x1e\x8e\x98\x6c\xb7\x13\xc9\xd9\xf9\x3e\xb0\x4e\x5a\x4f\x43\x54\x22\x43\x3b\x48\x45\x4b\xce\xd2\xc4\x1c\x49\xf8\x0d\xe8\x23\x23\xe3\x01\x78\x61\xc8\xc4\x54\xcf\xe5\x42\xe3\xfa\x80\xfd\x32\x39\xed\xab\x8d\xb6\x3e\x4a\xe6\xd5\x33\x97\x4c\x42\xb2\x27\x91\x38\xd1\x6b\xd8\xd3\x0f\xd9\xf7\x1f\x87\x77\x13\x64\x3a\xd2\x45\x96\x3c\x45\xcf\x7f\x22\xbc\xfb\xd8\x93\xff\xb2\xd0\xee\xe3\xe7\x3d\x10\xd6\x3d\x48\xa1\xfb\x78\x48\xf7\xf1\x33\x3f\x37\x9c\x7b\x74\x96\xbf\x4c\x28\xf7\xc8\xfc\x3c\x95\x38\x87\xe1\x67\xa5\x12\xdb\xe6\xab\xc6\x71\x95\x6c\xf8\xa4\x1c\xfe\xfb\x93\xa3\xf8\x0b\x62\x3a\x23\xab\x28\x67\xbf\xe0\x0e\x92\x5c\xb6\x6f\x27\x1e\xb0\x14\x16\xb6\x74\xef\xcf\x46\xfd\x04\x19\x97\xce\x83\x15\x79\xe6\xaa\xb3\x76\x7a\x14\x8d\xe0\x00\x92\x1a\x03\x11\x06\xfa\x2b\x39\x63\x0d\xc5\xf6\xdd\x11\xc0\x90\x50\xcd\x20\x98\x65\xe3\x23\x64\x80\x4e\x2c\x93\x00\x3a\x59\x51\x04\x7b\xe8\xbd\xb9\x1d\xfd\x4e\x03\xf6\xd7\x09\x7b\x66\xfc\x55\x03\x43\xd0\xc3\x33\x39\x81\x0b\xfe\xd2\x44\xda\x68\x9b\xce\x3e\x48\xd9\x0b\xcd\x55\xfe\x9f\xc7\x03\x1e\x13\x6d\xf8\xa7\x4e\xce\x37\x92\xd6\x8c\xf8\xba\xd6\x9f\x0a\xd9\x83\xd6\x6a\xa3\x87\x4d\x31\x80\x11\xa5\x41\xe0\x33\x80\xf0\x9f\xe8\x0e\x68\x21\xe0\x32\x72\x87\x40\x4a\x12\x62\x46\xeb\x7f\xa5\xff\xda\x0a\x9e\xed\x99\x9a\x73\x20\xa1\xfb\x94\x13\xc4\x35\x1b\xe4\x69\x66\x93\xa7\xea\x5b\x6d\x10\x97\x6d\x90\x3e\x2e\x80\xb8\x66\x08\x47\x32\x44\x64\x0b\xfd\xa9\x1b\x20\xcf\xe0\x28\x76\xd6\xc4\xc8\x90\x22\x3e\xef\x7e\x82\x08\x07\x48\x11\x0b\x7d\x85\x01\x62\xb2\x36\x9c\x00\x49\x27\xcf\x0c\xf1\x04\x2c\x0e\xf4\xc2\x5b\xaf\x1e\x85\x7e\x27\x61\xd2\x3a\x15\xc0\x1d\x05\x00\x5e\x00\xb5\x2e\x1b\xaf\x31\x5a\xb1\x0d\x70\xca\x00\x38\x42\x76\x56\xfe\xc2\x06\x08\xa1\xd0\xbd\x11\xe9\xbd\x9a\xbc\x4f\x93\x3e\xf0\x1e\x3f\xcc\xe2\xe8\x42\x31\xd3\xc1\xb2\xfd\x1d\x5f\x26\x55\xe0\xc0\xe8\x29\x45\x88\x95\xb2\xf7\x76\x76\x00\x1d\xbc\x37\x96\xde\xbd\xfb\x36\xc0\x52\xb4\x19\x80\x21\xfe\xec\xa7\x52\x7c\x3f\xaa\x05\xbe\xc0\x1e\xfc\xe8\xb3\xef\xd9\x86\x9f\xc2\x9b\xfe\x88\x99\xf8\xd1\x57\x7d\x96\xc9\xf8\xa9\x8b\xf2\xf5\xcd\xc7\x4f\x5b\x02\x4f\x08\x8e\x9f\x8d\x6e\x0f\xc3\x32\x34\x53\xff\x8b\x1a\x12\x92\xa7\x5f\x6a\x44\xf2\x69\x44\x2c\x38\x6f\xeb\x81\x6f\x08\x56\x26\x1a\xdb\x77\x10\x3f\x7b\x39\x91\xee\x11\xe4\x79\x9f\x4e\x16\xd6\x05\x86\x3c\x39\xf7\x72\xce\x06\x98\xab\x66\x92\x69\x09\x44\x95\x8c\x54\x20\xc0\x5e\x3c\x70\xa3\x2d\x6c\xf4\x46\xe9\xad\x1e\xf6\x8d\x40\x31\x42\x2c\x90\xa8\xe1\x34\x34\xc1\x3a\x42\x20\x81\x00\xb2\x2a\x36\xec\xa0\x7d\x73\xb6\x43\xed\x04\xbc\x99\x80\xc9\x5a\x75\x9a\x1a\xf4\xee\x04\x11\x52\x36\x13\xcd\xac\xe6\x40\x92\xc0\x5a\xbc\x65\x87\x6a\xbb\xa1\x70\x87\xea\xa8\xf7\x30\x5d\x05\x0c\xe4\x8e\x82\x4c\x04\xd1\x2d\x88\x81\x9d\x36\xb2\xd4\x9e\xad\x32\x89\x04\xe6\x0e\x32\x6a\x26\x79\x69\xc9\x18\xd6\x3f\x90\x58\x6a\x48\x9e\xcd\xa0\x2e\x14\x48\x4c\x18\xe4\x06\x36\xd9\x02\xe3\xd0\x0e\x8a\x29\xb2\x5e\x4e\xbe\x60\x86\x97\x64\xce\x4e\xc2\xa3\x45\x51\x46\x82\x74\x4b\x78\x94\x13\x51\xae\xe7\x1b\xdb\x67\xa9\x41\x47\x07\x1a\xc3\x1b\x90\x17\x58\x33\x77\x5a\xd3\x12\xeb\xd6\xc3\xe5\xdd\xc1\x08\xec\x2c\xc7\x1b\x28\xeb\x0e\x84\xd2\x06\x9b\x4f\x81\x15\x78\xc1\xf9\x6e\x31\xfc\x23\xf5\x1a\x0f\x7a\x22\x01\xaa\xa3\x64\xac\xcd\x8b\x1a\x60\x40\x5e\x0b\x4c\xb3\x86\x10\xa1\x36\x98\x40\x69\x46\x92\x55\x66\xdc\x86\xaa\xe8\xb5\x2f\x11\x84\x83\xd6\xb0\x40\x84\x71\x5f\xf1\x47\x47\x2a\x0e\xa7\x9c\x7d\x8e\xe2\xff\xe0\xd4\x7e\x45\xa5\xff\xc1\x73\x7f\x54\xe1\x7f\x78\xed\xc5\x4f\x54\xf6\x1f\xbc\xe2\x8b\x14\xfd\x43\x8b\xf0\x7f\x43\xc9\xdf\x9f\xb6\x2b\xf8\xee\xb3\x23\x85\x5f\x42\xc1\xff\xe3\xfb\x4b\x45\x7e\x77\xfd\xb3\xf4\xf9\x06\x43\xdb\x48\xa1\xc7\x75\x6d\x4b\x42\x78\xa4\x63\x48\x0e\xa3\xd5\x3d\xbd\x95\x11\xa6\x4d\x63\xd5\xe6\xfc\x38\x61\x8f\xd5\x65\x67\x1c\x35\xd8\xa8\x17\xea\xcb\x76\x56\x21\xdd\x30\x56\xbf\xe6\x64\x74\x96\xee\x71\x76\x42\x23\x12\x99\xab\xe3\x1f\x9c\xac\x86\x0e\x12\x3b\x57\x53\xd5\x69\x0b\x0c\xd5\x3b\x44\x04\x0b\x49\x9b\x16\xd6\xda\x89\xf6\xde\x00\x23\xde\x04\x92\xcd\x98\x03\xa7\xfa\xce\x11\x26\x55\x27\x4a\x08\x8e\x8e\xec\xab\xde\x71\x06\x48\x67\x2f\xd4\xf9\xb5\xf6\xdc\x89\xee\x12\x2f\x02\xe1\xf8\xb6\x20\x8e\x67\xea\xfe\x03\xb6\xca\xc8\x31\x9a\x3b\x49\x1f\xd8\xc7\x17\x92\x06\x0b\x89\x14\xeb\x8c\x80\x49\x70\xa3\xe8\x20\x67\x73\x20\x71\x56\x40\x5c\x7a\x87\x59\x01\x99\x69\x0e\xeb\x08\xd9\x48\x3c\x13\x47\x4d\x38\x0b\x12\x3b\x0c\xa0\x91\x64\xe2\xe0\x81\x5b\x0f\xc2\xbc\x83\xed\x8d\x16\x50\xd9\x88\x06\x46\xbf\x91\x6e\x0f\x4b\x90\x93\x70\xd4\x9c\x12\x2d\xc4\x33\xc9\x7c\xc3\x2f\xb0\xef\x1d\xc4\x17\x16\x54\x60\x37\x8d\x70\xc4\x93\x73\x04\x1b\x2d\x9f\x89\x90\xab\x58\xb2\x11\x14\x6b\x01\x85\x6c\xac\x9e\x30\x4f\x1a\xf3\x7d\x77\xe2\x5c\x66\x50\xda\x71\x3a\x09\xb8\x8c\x15\x2f\x90\x4c\x1b\xea\x5c\x64\xa7\x1a\x88\x2b\x6c\xbf\x77\x92\xa8\x90\x0f\xf5\x30\xc4\x59\xa7\x12\x48\xdc\xa1\x9c\x64\x33\x86\xd8\xa7\x3d\x38\x6f\x27\xa3\xb3\x05\x42\x1d\x36\x9e\x00\xa9\x77\xf4\xe7\x04\x33\x25\x41\xdf\x00\x42\x3a\x12\x2c\x58\xbb\x3b\x68\xc0\x85\x04\x68\x22\xa9\x64\xf8\x03\x98\x50\x47\xb0\x2b\xe3\x72\x26\x62\xcd\x56\x41\xe2\x13\x28\x66\x8d\xed\x89\x4a\xd6\xfe\x7b\x5b\xed\x08\x4a\x7e\x24\x39\xb8\x53\x2c\x94\x4f\x96\x49\xc4\xce\x30\xef\x19\x0b\x5e\xc6\x2e\x43\x4c\x64\x49\xfb\xe9\x0e\x21\x05\xe7\x69\x84\x1d\x70\x22\xe8\x95\xaf\xa4\x33\xdd\x42\x5a\x61\x64\x35\x2d\x24\x28\xb9\x9e\xc9\xc9\x8b\x2c\x7d\xdd\x2f\x43\x8f\x42\x8a\xb2\x41\x82\x62\xfe\x91\x07\xae\xe1\x64\xf0\x6b\x61\x5a\x34\x9d\x42\xb2\xdc\x48\x4d\xc0\x01\xc9\x8f\x69\x90\xb1\x04\x5b\x60\x07\xfb\xfe\x08\x39\x8f\xb3\x41\x5a\x80\xdb\x81\x07\x19\xea\xd8\x23\x32\x52\x60\x64\x4c\x7e\x63\x40\x80\x20\xcc\x59\x4f\x21\x72\xb3\x40\x16\xc2\x20\x23\xdd\x81\x6d\x7b\x01\x1b\xb2\x6f\x67\x72\xde\xba\xc3\xdc\x6f\x46\x0f\x8e\x14\x54\x66\x88\xd1\x0c\xa1\x09\xeb\x6d\x43\xa1\xda\x48\x59\x68\x55\xb7\x44\xef\x04\xcb\xf1\x5c\x3f\x67\x74\x09\x13\x38\xab\x06\x5d\x34\x23\x13\xb0\xe8\x26\x58\xe6\x67\xd0\xd4\x7a\x8e\x64\xc3\x3a\xca\x36\x8a\xa1\xd0\x17\x58\x0b\x3e\x88\xee\x91\x42\x6e\x47\x02\x3b\x52\xbc\x28\x9c\x9b\x42\xf2\x21\xc0\x62\x6b\x7e\x1d\x38\xa4\x48\x17\x5e\x47\xc7\xc0\x4e\x42\x3c\x52\xb4\x98\xb1\x3f\x06\x36\x18\x69\xdf\x46\xff\xf4\x33\xac\xb0\x9e\x40\x5d\x40\x3f\xd3\x51\x38\x33\x66\x4b\xee\x43\x56\xd3\xc3\x88\x3b\xc0\xfe\x6f\xb6\x8a\x2e\x85\x05\xd2\x16\x63\x96\xc4\xcf\x1b\xd8\xeb\x0c\xf5\xc4\x8e\xce\xb7\x44\x12\x24\x4e\x3b\x94\x14\xd2\xa3\x0b\x28\xe2\x91\x2e\xce\x8c\xfe\x1d\x20\x79\xdb\x00\x0c\x6c\x50\x4c\x6c\x10\x2b\x05\x12\x54\x3d\x18\x21\x43\xdf\x92\x80\x69\x21\xa8\xb3\x5b\x02\x58\x1b\xbb\x0d\x03\x84\xf6\x02\x02\x38\xc2\x62\x6f\x45\x12\xf4\x52\x82\x21\x55\x67\x27\x82\x02\x37\xdb\x05\x61\xd7\x0e\xba\xda\x88\xdf\xa0\xa8\xe8\x49\xba\x1b\x16\x8e\xa2\x77\x4b\x41\xfa\x3d\xb1\x10\x1d\x47\x3d\x9d\x7d\x09\x64\xfd\x4e\xc7\x9d\xf6\x6b\x22\xde\x32\x7f\x9a\x62\xf1\xc4\x39\x9c\x1d\xe5\x0f\x6a\xb8\xc0\xfa\x9d\xe9\x8a\xd5\xf9\x5e\xf0\xc1\x87\x70\x76\xf1\xc8\x2f\xb7\xf7\xa3\x93\x36\x08\xee\xac\xa3\x34\xc1\x36\x9b\x6a\x32\xc5\xc9\xfc\x2c\xa9\xc7\xf9\x33\xc6\x58\x6c\x86\xce\x78\x86\x8d\x5e\xb6\x2b\x41\x4a\xa8\x33\x63\xc9\x49\x8a\x8f\xf2\x51\x74\xb6\x1a\x8f\xb1\x48\x46\x2e\x74\x33\x48\xcf\x06\x92\x9e\x23\x7a\xcb\x0b\xb0\x8d\x27\xc4\xda\x13\x34\x20\xb9\x98\x89\xb3\x7a\x74\x6e\x86\x21\x36\xd1\x25\x69\xba\x1c\x76\x70\xe9\xcc\x89\x33\x66\x6c\xce\x20\xf5\x3d\x19\x35\xd2\xfd\x1a\x60\xfe\x97\x0c\x06\x88\xc0\x0a\xf6\x7d\x42\x97\x8d\x30\x5d\x9b\xce\x9b\xce\x62\x63\x0f\xe8\xc3\x28\x2c\x20\xe6\x6a\x20\x20\xec\x01\x8f\x6c\xec\xa7\xb1\xcd\x43\x6a\x94\xb9\xd1\x60\xa3\x53\xa9\x20\x03\x33\xb1\xdc\x02\xc5\x46\x73\xa7\xa8\x99\xbc\x18\xe9\xb2\xe6\x44\x44\xed\x79\x73\x46\x4b\x0c\x6e\x7a\x12\x62\xc9\x84\xbe\x69\xf1\x25\xb2\xdf\x28\xe2\x1d\xeb\x24\x69\xad\x58\xba\xd7\xf9\xda\x6d\x36\xd8\x97\x80\x4d\x9d\xe8\x62\x58\xba\x13\x53\xda\x30\x67\x7b\x0f\x0c\xb1\x1b\xf4\x34\x19\x10\x43\x81\x04\xb0\xa7\x3b\x4c\x73\x9b\xe9\x06\xb6\x42\x29\x8c\xba\xc5\xe3\xc3\x5c\x65\x28\x21\xe7\xc6\x7a\x0d\xbd\x49\x0b\x7e\x74\x01\xdd\xee\xc0\x9d\x0e\x56\xfe\x88\xee\x6f\xb0\xed\x46\xcc\x99\x59\x6b\xf2\x24\x01\x39\x95\xed\x1a\xa0\xe8\x98\x49\x68\x4e\x74\x62\x97\x74\x76\x9a\x18\xf8\x60\x20\x7e\x2e\xdc\xf2\x32\x9f\x18\xdc\xb9\x3b\xed\xa5\x11\x7f\xd2\x09\x92\x21\x8c\x2c\x14\x50\x07\x92\x95\xd2\xd3\x89\xa2\x76\x81\xfd\xdf\x92\xb9\x23\x37\xdd\xd0\x15\xa6\x75\xe8\x61\x21\x4e\xac\x69\x01\x37\x1a\xf7\xd3\x57\xb3\x44\xbd\xdf\x5a\xd4\x9f\x45\x44\x67\x70\xd6\x3a\x06\xba\x23\x06\xa7\x5a\xa1\xf8\x18\xb8\x11\x60\xe1\x9c\x6f\xf8\x2d\xfa\x59\x82\xfc\x6f\xa0\xfb\xdd\x58\x7e\x01\x86\x18\xb9\x18\x7b\x69\x60\x0c\xd6\xaa\x90\x74\x5e\xfc\x56\x00\xba\xca\xdf\x03\x63\x20\xc1\x1b\x9d\xd8\x93\x8e\x83\xe1\x11\xd2\xad\x11\xba\xa1\x09\xea\xa3\x9e\xce\x83\xc7\x62\xfc\xbb\x81\xdb\x17\x84\xf4\x77\x1f\x73\x2f\x82\xff\xe0\x2a\xca\x47\xc2\xf5\xbb\x5f\xff\xac\xe8\xfc\x81\xe1\x7f\xfd\x60\xfc\xde\x0c\x88\xbc\xbb\x7e\xe8\x3e\xbf\x48\xb7\x84\x71\x5c\x7e\xa1\xd0\xdb\xae\xd6\xfc\x99\xf1\xb7\xf4\xd1\x00\xe0\x67\xcc\x1f\x02\x2d\x7b\x08\x16\x03\x76\xbc\x21\x1f\x3a\x3b\xe0\x71\xc3\x97\x6a\xa1\x99\xea\xe8\x7e\xe3\x36\x25\x63\x4a\x18\xd1\x7f\xdd\x49\xcf\xb4\xe0\x4f\x06\x28\x76\x76\x48\xf6\x3a\x70\xd0\x23\x1d\x56\x7e\x66\x16\x6e\x8e\xd0\xf9\xb6\x38\x0d\x1a\xa7\x42\x1e\xd0\x80\x98\xe4\x59\x47\x68\xa7\x02\x39\xdd\x91\xf8\x75\x86\x4e\xcb\xf1\xf7\x66\x4f\x37\xba\x8d\xb1\x11\x3b\x1d\xb8\x23\x80\x47\x23\xf0\x03\x98\xe3\x9d\xc7\x16\x2b\x77\xd5\xdf\x1d\xb8\x9d\xc2\xbb\xbb\x16\x7c\xcb\x89\x5c\xa2\xc5\x7a\xc4\xc4\x0b\x79\xd8\x01\x20\xa5\x11\xe0\x72\x63\x93\xe5\x9a\x01\x21\x16\xd8\x09\x46\xfa\x05\x46\x18\x0b\x1c\x4c\x23\x9b\x3b\xc2\x94\x60\x04\xa3\x50\x12\xcd\xce\xec\xb0\xc3\x7a\x41\xde\xbb\x83\xf0\xd7\x81\x4e\x0b\x60\x15\xbb\x69\x01\xb6\x7b\xef\x84\x75\x00\x4d\xcf\x0d\x0a\x85\x6e\xe0\x11\xa0\xa3\x81\xf0\x60\x97\xd7\x5a\x58\xe1\x8b\x38\xd1\xa9\xbf\x66\xe6\xb5\xc3\x1a\x9f\xa1\x5e\x6b\xf9\x8e\xdd\x76\x34\x57\x9f\x65\xa0\x7b\xdc\x7d\x1f\x8d\xc3\x6e\x74\x40\xc7\x05\x48\x3f\xcd\xb7\x03\xf8\xa6\x7d\x69\xf0\xc5\xcd\xcf\xef\x01\x07\xe1\x77\x2f\xc4\x22\x3b\x8c\x2e\xd6\x1b\x00\xd0\x2e\x42\x1c\x3a\x40\x87\x56\x88\xa5\x3a\xc0\x8f\x06\x36\x4a\xd5\x7e\xf5\xc3\x99\x0f\x6a\x00\x9e\x59\xbc\x42\x01\x6f\xe3\x36\xa1\x48\x8e\xc5\x6e\x65\x81\xe4\x77\xa2\x37\x64\xc1\x36\x18\x1d\x1b\xdd\xb5\x13\x37\xad\x65\x6a\x10\x76\x7b\x0e\x76\x6d\x62\x6f\x8c\xc2\x8c\xf9\x75\x1e\xe3\x36\xa7\xbd\x9d\xd8\x23\xb7\x67\x3b\xbe\x99\x7c\x9f\x86\x3c\x8d\xe5\x9d\xf7\x33\x27\x11\xf1\x1d\xac\x60\x88\x9d\x31\x06\x12\xd6\x7e\xc1\xf7\x6a\xda\xd3\x5e\x35\xb0\xc3\x18\x48\x6d\x3b\x99\x4a\x32\xb1\xa4\x7c\x07\x63\xb4\x01\xdc\x13\x39\xf7\x89\x33\xaa\xf3\x38\x70\xbb\xda\x40\x7f\xcf\x8e\x2c\x58\xf7\x20\xf3\xb0\xbd\x87\x7c\x32\x93\x3b\xb7\xdb\x7d\xfc\x76\x97\x99\x9b\x16\x3a\x72\x5d\xdc\x06\xd3\x39\x50\x16\x1d\x64\x40\x52\x0a\xc0\x65\x3a\xf3\x6c\x1d\x37\x7d\x38\x70\x31\x72\x9b\xc1\xec\x37\x7a\x40\x2e\xde\xe3\x8f\x0e\x7e\xcb\x0b\xac\x24\x33\x04\xdf\x1d\x37\xdd\x49\x3e\x06\xea\x3e\x3b\x4c\x0a\xfd\x76\xfa\x9d\x53\x7f\x82\x13\xb5\xf6\x0d\x79\x84\x01\x62\x5f\xcf\x6d\xcc\x80\x85\x17\x0a\xee\x01\xbf\xc6\xa8\xd0\xf0\x55\x47\x67\x68\x71\xb0\x27\xdd\xa8\x7e\x4b\xa4\xe5\x8e\x38\x0f\x8b\x03\xd4\xc6\xb3\x58\xfc\x9e\x00\x16\x3a\xbc\x1e\xd0\x52\x46\x47\x19\xfb\x10\x7a\x7f\xc4\x87\xce\xdc\x16\x39\x11\x0b\x14\x7c\x31\xf3\xa7\x3c\xf7\x07\x20\xca\xbb\xff\x97\xed\x04\x14\xee\x00\x9c\x66\x6e\x74\x31\x90\x16\x20\x2b\xeb\x2a\x06\x48\x55\xfc\x26\x3a\xf4\x70\x06\x60\xdb\xc0\xec\x30\x70\x6e\x37\x72\x84\x0b\xe0\x91\x91\x9a\xdc\x86\x9f\x9c\xf1\x59\x5b\xfa\x84\x12\xe4\xb3\x11\x40\x77\xc2\x27\x75\x06\x87\x0d\xd0\x5a\x03\x93\x4c\x72\x7a\x3f\x64\x6b\x27\x3f\x36\x00\xd8\x28\xdc\x50\x58\xbc\x5b\x9b\x33\xb6\x71\xa3\x4b\x47\x0e\xc0\x62\x1e\x58\x76\xec\xc6\x9a\x96\xdb\x61\x76\xd6\xb5\x3f\x6b\x55\x13\xe7\x31\x90\x0f\xed\xd1\x73\xd2\x59\x96\xd3\x01\x58\x20\xf9\x33\xff\x12\xf2\xe1\x01\xc6\xa3\x91\xb5\x1d\xb9\xd1\xa2\x70\x93\x60\x83\xaf\xde\xa4\xf3\x96\xb5\x08\xa0\x6c\xe7\xd6\x50\xbf\x8d\xa4\xc1\xee\x36\xd4\x1d\x9b\x70\xde\x2a\x18\x91\xbb\xc4\x6d\x32\x1d\x32\x6b\x64\xf8\xe4\xde\x46\x6e\x20\x9b\xb0\xb5\x76\x83\x12\x6c\x19\x0b\x20\xc5\x40\x97\x76\x4f\x9d\x6f\x44\xce\x1b\xd6\x6c\xa0\x86\x67\xe0\x09\xa8\xf9\x46\x6c\xd5\x00\xa0\x65\xc0\xff\x6e\xb9\xcd\xac\x27\x9e\x1f\x1d\x44\x4d\xce\xa7\x07\xdc\x69\x75\x00\xba\xaa\x37\xf2\xa9\x3b\x6c\x49\x26\x67\x80\xf3\x46\xec\x78\x42\xd6\xa4\x7b\xf5\xee\x06\x79\x2e\x30\x13\x6c\xd0\x3c\x3a\x58\xcf\x00\xbc\x9c\x23\xbf\xb0\xc0\xe2\xd6\x89\xdc\x14\x79\x6a\x8b\x49\xbb\x2a\xd7\x01\x70\x71\x44\xdf\x35\x7e\xe3\x4d\xa1\x81\x84\x18\xc7\xbb\xf5\x2d\x2f\x3b\x31\x0f\x7c\x21\xcb\x75\x01\xd2\xdf\xb6\x93\x2d\xcb\xd7\x5d\x72\xb2\x93\xc3\xf7\x5b\x2f\x13\x60\xea\x86\x4b\x15\x5a\x00\xd5\x16\x63\x70\xd3\xa9\x37\xb5\x18\xe8\x7e\xaa\xb6\x31\x41\x0e\x3d\xd3\x40\x62\x60\xee\x74\xde\xf4\xd8\xe1\xe7\x64\xaf\xc7\x4e\x10\xbb\x3b\xc0\x86\xfc\x70\x44\xaf\xb4\xdc\xdc\x65\xf6\xca\x6b\xad\xe4\x76\x32\xe0\xfd\x8e\xee\xf7\x06\x26\x8e\xc4\x99\xf1\xdb\x87\x7a\x6c\xf8\x88\xbf\x6a\x2c\x22\xe4\x62\x16\x80\x95\xbb\xdf\x28\x97\xaa\xbc\x9a\xdf\x45\x3d\x59\x6b\xd8\xa1\xe3\xac\x6e\x4b\x9c\x39\x01\x54\x5d\x7c\xdd\xdd\xcf\x85\xd4\xde\x6f\x5e\xb3\x18\x11\x30\x75\x26\x47\xd0\x71\x7b\x6d\x4f\x3e\x2d\x40\x7a\x3e\xc7\x13\x2c\x96\xa8\x39\x49\x3e\x76\x9a\x5a\x36\xce\xc2\x16\x4f\x66\x3a\xbf\x61\xb2\x75\x6a\xc9\xed\xbc\x85\xb0\xe3\xac\x1b\x33\x16\x39\xb2\x40\xad\x63\x1b\xce\xfa\xf2\x0e\xcb\x85\xdf\xd0\xb5\x00\x24\xb7\x3e\x56\x7a\x09\x0b\xf9\x3d\xc9\x72\x4f\xad\xc7\xfc\x57\x62\xf6\x1d\x90\x7e\x0f\xa0\x3d\x76\x67\x3e\x6b\xc3\xbf\x9f\xbc\x5e\xe7\x38\x81\x52\xf7\xbb\x00\x66\x36\xd6\x21\xf2\x11\xee\xab\xb5\xdc\xc8\x15\xb9\xfd\xd5\xa8\x67\x99\xf3\x84\x6d\x0f\x30\x34\x48\x1e\x34\xb7\x48\x2d\xa4\x23\xc6\x9f\x69\xec\x59\x9c\x15\xcf\x1b\xb1\x06\x6e\xe9\x23\x1f\xd1\x50\xdb\xf1\xdb\x35\x3b\x30\x04\xce\x38\x60\xfe\x28\x35\xf1\x05\x76\x3e\x23\x7b\x1f\xaa\x4c\x58\x7e\x6d\xa6\x16\x83\x3e\x74\xac\x47\x86\x1d\xa6\xc0\x92\x32\x20\x23\x33\xf9\x96\x01\xc2\xf6\x7c\xe7\x96\x47\x67\x58\xdb\xd0\xd7\x03\x80\xee\x42\x73\xc9\xcc\xb3\x26\x9a\x71\x32\x8c\x4c\x05\xa6\xc6\x42\x7d\xe8\x21\x5a\x51\x93\x57\xc0\xcb\x01\xb6\xbf\xf6\x13\xf5\xfd\x8f\x22\xc7\xaf\x92\x00\xe0\x59\x8f\x66\x01\xec\xf7\x3f\x25\x15\xc0\x83\x7e\x66\x3e\xe0\xc3\x29\xfd\x92\x49\x81\x73\x42\x7e\x1b\x79\x3f\xff\x0c\x4e\x51\xfd\xef\xeb\xde\x23\xf4\xaf\x7f\x7c\xf9\xaf\xdb\x1f\xf2\xcd\x9f\xae\xf6\xfc\xaf\x37\xd7\xb7\x5f\x4a\xc3\x3d\x0c\x27\x9b\xd8\xdd\xfc\xc0\x46\x0c\x3d\x50\xab\x98\xfc\xd6\xb5\xe6\xbc\xa5\x3b\x52\x17\x6a\xa8\x47\xb6\xf8\xaa\x1b\xd8\x20\xb3\x13\x81\x06\x9f\x40\x03\x18\x76\x66\x84\x29\xa5\xe3\x86\xd7\x8e\x0b\x3b\x3a\xfa\x99\xdf\xd3\xfb\xd2\xa8\x90\x9c\xfe\x9b\xdb\x38\x3b\xea\x3e\xce\xc4\x99\x69\x34\xc8\xdc\x3e\xe7\x4c\x62\x66\x9f\x32\x31\x07\xf9\xf1\x39\x9e\xbe\x50\x03\x55\x71\x0b\xfb\x61\x81\xf7\xc0\x9a\x22\xa8\xa7\xbe\xcf\xc3\xf3\x9d\xce\xb9\x12\xd0\x07\x89\xf8\xc5\x3f\xdf\xba\x2d\x06\x3c\x1b\xf7\x13\x1b\x66\x60\x5d\x18\x17\x37\x72\xf5\x91\xbc\x73\x47\x6c\xe7\x6c\x4f\x99\xda\x5d\x82\x85\xc4\x6c\x3a\xec\x85\x16\xf7\x92\xd7\xdd\x60\x62\xb5\x1b\xe3\xc7\xaa\x7f\x1d\x33\x91\xb0\x0b\x89\xc6\xa4\x0e\x06\x9b\x9d\x06\xb6\xc9\x19\x3d\x61\x29\x9d\xb8\x21\x73\xe3\x82\xa1\x08\x73\x9b\xb3\x86\xf5\xb0\xb6\x34\xd0\xb4\x0f\xd0\xae\x47\xf6\x6c\x9e\x4e\x3e\x09\xc9\x89\xd5\x2b\xc9\x57\xda\x2d\x6a\xdd\x79\xa9\x82\x7c\x25\xeb\xbd\xef\xcf\x5c\x73\x86\xd9\x4a\x73\x9b\xa9\xd9\x9a\x7f\x41\x3e\x20\x83\x27\x08\x50\x2c\x17\x07\x23\xfb\x4d\xf2\xfb\xe9\xef\x6b\x9d\x35\xef\x1d\x5f\x69\x61\xed\x12\x32\xd2\x50\xef\x98\x60\x72\x4b\xd0\x44\x6f\x34\x32\x35\xc4\x12\x3d\x17\x61\x4c\xcb\x29\x2f\x1d\xcd\x3a\x0d\x20\xee\xbd\x3b\x63\x82\x42\x5e\xa7\xa5\x41\x74\x74\xb6\xa8\x0d\x46\x5d\x1a\x90\x47\xcf\x15\xd0\xf0\x13\xa0\xa9\xcf\xe1\xbc\xbd\xb6\xe1\x02\xa8\x44\x73\xcf\x0c\xae\xaf\x83\x6d\x36\x51\x93\x75\x20\x77\x86\x2d\xa9\x60\xc3\x27\x1a\xde\x34\x6e\xad\xe9\xee\x0d\x58\xe4\xa1\x7b\xf2\xfd\x1d\xe0\x6c\x67\xf5\xed\x60\x5c\x7a\x9f\x9f\x27\xbe\x9e\x69\x7a\x9e\x01\xbf\xef\xdc\x76\xd8\x80\xe7\x58\xc8\xe9\xd9\x6d\xa1\x19\xbb\xc5\xad\xa4\x56\xef\xa4\x3e\x39\x22\x13\x03\xf1\x45\x4b\xfe\x3d\xc3\x7b\x91\xf1\x75\x12\xb7\x1e\x37\x60\x2e\x1a\xea\xe5\x1d\xfe\x69\x03\xb6\xc7\xb0\x2b\xf3\xc9\x60\xda\x90\xbb\x28\x5c\x52\xd2\xc0\xa4\xd5\xc3\x6c\x1a\x69\xa0\x0a\x60\x2b\x0d\x90\xef\x37\x92\xe3\xfb\x58\xce\xc2\xd9\xd8\xe0\x4d\x68\x01\xf0\x3b\x93\xf0\xe2\x75\x14\xe8\xd1\x23\xf2\xb9\xd3\x1c\x66\x4d\x83\x50\xc1\x27\x58\xdd\x1a\x6e\x3c\x9f\x89\x9d\x5a\x30\x09\x4e\xf1\x1f\x88\xa9\x5b\x62\x70\xcb\x21\xc2\xa8\x6c\x37\x4c\x53\x5b\x70\xc6\xc1\x0d\x16\x5e\xab\xd1\x79\x0e\x27\xd1\x10\x00\x20\x7f\xa3\xa1\x3a\x73\xf6\x0d\x47\x05\x9e\x73\x00\x93\x91\xb9\x05\xd8\xfc\x0b\x62\xe1\x19\x0c\x40\x20\x27\x18\xc0\x7b\x6e\x50\xf4\x07\x98\x9e\x06\x72\xab\x09\xbc\x56\x1c\xce\x86\xfd\xc5\x29\xfc\xbd\x56\xb4\x57\xd9\x0f\x34\x3e\xf9\xc5\x5a\x1d\xcc\x4f\x86\x81\x01\x2b\xd0\x73\x33\xbd\x37\xcb\x1a\x8e\x63\xae\xef\x0b\x5c\xc8\x22\xbf\x78\x07\x43\x2a\xff\x79\x26\x17\xdb\xc1\xd4\xe7\xb9\x99\x9d\x58\x4d\x32\x55\xc0\x27\x8d\x7e\xdb\x30\x97\x1d\x8d\xd4\xc9\x3a\x1a\xe7\xbb\x3b\xec\x6b\xb1\x3d\x6f\x6c\x4f\xf9\x6c\x66\x0e\x30\x62\x2f\xdc\xc0\xd9\x13\x0f\x4e\x30\x5e\x27\xf2\x3d\x1b\x18\x84\x0e\x7c\x9a\xbe\x2b\xdd\x66\xf1\xb8\xdf\x36\xef\x78\x2d\x64\x7a\xa3\x39\xc6\xf2\x43\xd8\x89\x08\xd3\x9f\x33\x9d\x45\xea\xbb\x76\x1e\x32\x71\x10\x78\x92\x1e\x9c\xd7\xb8\x9d\xb8\xd3\x89\x06\x48\xcb\xb7\x82\x69\xb2\x78\xec\xce\xa5\x7d\x99\x5b\x37\xed\x52\xbd\x11\x32\x81\x9e\x86\x1e\xf2\x21\x63\x38\xf3\x06\x8e\x61\x32\x86\x5c\x9a\x56\xac\xd9\x9d\x06\x88\x96\xc6\x8b\x2e\x9d\xec\x57\x7e\xb9\x92\xc5\xce\xc8\xec\x4e\x43\x4e\x87\x5d\xb7\xe6\x86\x05\x5d\xc5\x45\x75\x3d\x71\xe2\x06\xae\x78\xe0\x96\x71\xf3\xff\x69\x7c\xb6\x6b\x31\x06\x9a\x67\xc9\xf7\x8c\xce\x28\xe9\xfe\x3e\x78\x26\xb3\x1f\xf0\xe9\xb8\xae\x2d\xd8\x10\x6f\x3a\x89\x5c\xe9\x10\xb9\xfc\xaa\x83\xf1\xd9\x72\x81\x7e\x65\x09\x24\x06\x76\x5b\x2b\x75\xed\x19\x66\xc4\x11\x26\x39\xe9\x8b\x91\x06\xc6\x4c\xee\xaa\xf8\x05\x77\x34\x6d\xc8\x86\x8d\xd4\xfa\x24\x73\xef\xeb\xf8\x60\x00\xcc\x5e\x53\xb7\xd7\xde\x7a\x6c\xb5\x63\xcb\x9c\x2d\xcd\x6d\xcb\x42\x73\x69\x47\x63\xa3\xdd\x86\x4e\xb3\xa0\xb3\xb1\x2f\x5c\xdf\xd1\x43\x96\x61\xec\xd4\xe4\xca\x7a\x2e\x80\x34\x3f\xcf\x31\x83\xe4\x97\x67\x6e\x47\x9d\xc9\xf9\xcd\xed\x79\xd9\x57\x4b\x13\xd4\xe2\x0d\xe5\x0d\x58\x1f\x58\xfd\xfc\x26\xe1\x0c\x91\x80\x5d\x19\xb2\xe3\x2f\xd1\xbc\x3c\xdc\xa9\xe1\x5a\x0e\x13\x4c\xcc\xc6\xed\xe5\x09\xd6\xc7\x48\xc3\xb9\xdd\xd0\x0c\x56\x23\xd0\x84\x2b\x59\xe8\xb8\x46\x63\xe3\x02\x39\x67\x89\xf4\x73\xd6\xb1\xb7\x2d\x97\xeb\x6d\xdc\xf4\x3c\xf3\x0e\x63\x83\x2b\x60\xda\xc9\x67\x74\xec\x8d\xdd\xc6\x0d\x8e\x47\x6b\x66\x38\x8f\xf1\x4e\xac\x48\x23\xaf\x5f\x84\x58\xc0\xf9\x39\xd7\x53\xc2\xc6\x46\xb0\x19\xd9\xb1\xec\xd8\x0c\x7f\x76\x26\x96\x6e\x1c\x1b\x41\x9e\xdf\x2e\x6b\xe3\x82\xcb\x76\x3b\xc7\xd9\x53\xdf\xf0\xfa\x9d\xe1\xc9\xc1\xda\x6c\xcb\xc9\xb1\x64\x58\x12\xea\x12\x3d\xcd\xb2\xc9\x2f\x0a\x74\x1d\x47\x43\xdf\x94\x4f\x59\xd1\xb3\x2c\xef\x1e\xe0\x91\xa2\x51\xaa\xb4\xa7\xbe\x19\xc2\xd9\x1c\x9d\xc8\xf5\x44\xf4\x5f\x21\x3f\x64\x97\x1a\x22\x47\x7e\x1b\xf4\x00\xbb\x68\xc3\x95\x33\x76\xee\x61\x81\x6f\x68\xe4\x32\x56\xf8\x5c\xed\x80\xc5\x2b\x5c\xb9\x61\xcd\x83\x09\xbc\x0f\x37\x3f\xf7\x5c\x2e\x6a\x4d\x6c\x60\xaf\x2c\x16\xe2\x06\xfa\x48\xee\xe4\x21\x16\xf0\xc6\xf1\x54\xde\xdc\xbd\x7d\xba\xc1\xf6\x91\x18\xed\x0b\x22\xf1\x47\x9e\x78\x2f\x1e\x7f\xfb\xc7\x97\x2f\xde\x6e\xd6\x87\x7a\xb5\xe7\xe7\x6f\xf5\xc1\x4f\x43\xea\x1f\x79\xee\x67\x85\xe7\x9f\x9e\xed\xd7\x0f\xd2\x3f\x39\xcb\xf7\xcd\xb6\xcb\x67\x53\x7f\x0f\x61\x5c\xc6\x69\xfa\xda\xd1\xfa\x1f\xfe\xb4\xff\x8f\xda\x19\xfc\x45\xa4\x49\x91\x58\x7d\xa0\x8f\x44\xb2\x18\xc0\xaa\x4e\xd4\xad\x36\x70\x6d\x3b\x98\x29\xe9\xfd\x06\x7f\xda\xf4\x16\x58\xc2\x05\x59\x6f\x9a\x3b\x18\xa0\x00\x23\xb3\x5f\x17\xc5\xcd\xde\xad\xdf\x1e\xc0\xcd\xff\xc9\x71\xb6\xb0\x0e\x27\x72\xb4\x2d\x84\x4a\xd2\xef\xc5\xb1\x5d\x43\x1d\xf7\xc8\xd5\x5a\x81\x9a\x4b\x84\x00\x21\xc3\xca\x3a\xc3\x5b\xe6\x76\x7d\x84\xd4\xc0\x2f\xfb\x4b\x90\x3e\xe4\xfd\xcc\xff\xb7\xd8\xe7\x09\x3c\xb8\xf5\xbf\xd0\xb8\x69\xef\x24\x6e\x88\x60\xed\x8d\x80\x02\x3d\x23\x3d\x37\x53\xf7\xcf\x10\x2a\x75\x60\x07\xec\x02\x45\x30\x9e\x8e\x97\x6f\xb9\xa0\xb1\xc7\xe6\xca\x7f\x30\x3d\x56\xc8\xc1\x72\x49\xe2\x48\x2d\xcf\x30\x0a\x30\x42\x7b\xfd\x6d\xc1\x96\x6e\xb0\xa8\x2e\xdc\x44\x9f\xe0\xa8\x1b\x60\x7e\x2d\xcb\x49\xba\x64\x78\x07\xb0\xe0\x99\xf8\x63\x03\xef\x66\xec\xcb\xe0\xcd\x8c\x45\xdc\xfd\x00\x08\x8a\x5a\x6e\x56\x28\x5c\x7f\xb6\x50\x87\x68\x9c\x73\x0e\xfb\x3a\xe3\xa3\xed\x90\x60\x38\x2e\xae\x2b\x77\x6a\x10\xb0\x53\x87\x72\x72\xe0\x19\x27\xdf\xce\x0d\x09\xf0\x39\xb6\xd3\x89\xdd\x6a\xc1\x5c\xd8\x4d\x15\xdd\xd9\xa7\xb6\x40\x8e\x64\xcd\xc8\x70\x06\x8e\xf8\x7b\x0b\x78\x28\xf9\x97\x23\x6c\xe6\x6e\xc7\x13\x17\x4b\x26\x88\x41\xac\xa9\x98\x9b\xfc\x8d\xb0\x21\x50\xb7\xa4\xaf\x63\x84\xed\xd8\xeb\xb4\xde\x07\x30\x42\x88\xd1\xe3\x3b\x59\xed\x90\xfc\x83\xe3\x33\xad\xe9\x16\x1c\x7c\xc7\x65\xbf\xb1\x3f\xfd\xbc\x99\xfa\x52\x86\xe7\xaf\xf8\xb5\x52\x77\x7a\x08\x0d\x77\xef\x57\xd1\x71\x31\xed\xe8\x6c\xcc\x7c\xde\x49\x79\x3c\x46\x77\x5c\x43\xc7\x1a\xb4\x90\x9f\x39\xde\x7c\xa3\xa6\x29\xd9\xee\x9d\x9d\x16\x6e\x42\xf9\x14\x9e\x2b\x49\xd4\xcc\x2d\x2f\x44\xaf\x9c\xe9\x0b\xc8\x3b\x06\xea\x33\x3d\xcd\xcb\x26\xd7\x77\x2e\x6b\xf5\x4b\x3c\x7b\xe2\xf6\xe4\xb2\x48\xcf\x47\xe0\x52\x61\xf9\xe7\x86\xf1\xf0\x7a\x27\xbd\x35\xd6\x6c\x0f\xe3\xf5\x80\x4f\x3c\xe2\x83\x06\xb0\xe2\x2d\xf8\x96\x44\x3c\x61\xbc\x9a\x91\x7a\xea\x72\x12\x49\x35\xfd\x79\xf9\x75\xc7\xf5\x78\xd9\x6f\xcb\x21\xaf\x55\xe8\x55\xcc\xf4\xf1\x14\x6e\x1c\xd2\x77\x9d\x2c\xa5\x75\xa2\x93\x50\x7d\x80\x8d\x86\xf4\x86\xeb\xff\xbc\x1e\xd8\x82\x2f\x69\x88\x9b\x7b\x62\xba\x98\xcf\x1b\x52\x46\x1a\xe4\x0b\xbe\x69\x0f\x7e\x67\x27\xf7\x1f\xbc\xc7\x90\xb8\xa2\xa3\x2f\x65\xe4\x06\x20\xbb\xa6\x0f\x6c\x47\xcb\x0d\x06\xd6\x5b\xc0\x65\xbc\x61\x3a\x6b\x07\x91\x1b\x4f\xa4\x9f\x23\x35\x26\xf3\xbb\xcb\x19\x23\x4c\x90\xd5\xb5\x9c\x75\xc3\x78\xd0\xcb\x32\x90\x63\xb2\x58\x79\xa8\x67\xcc\x89\x80\x0c\x23\x05\x01\xcf\x0c\x03\xb1\xf3\x57\x46\x2e\x7c\x5f\xe2\x89\x85\x99\xc0\xd8\xf7\x7e\x09\x6e\x3c\x49\xe7\x22\x79\x5f\x23\xd8\x22\x3e\x35\x82\x13\x27\xb6\x82\x73\xb3\x83\xed\xb9\xa1\x21\x7e\x24\x8e\xd5\xd9\xb1\x9e\xa0\x85\x38\x80\x7a\x4c\x82\x9c\x2d\xd2\xa3\x69\xcc\xf7\xc8\x8b\x63\x52\xbd\x67\x24\x43\x9a\xd4\xd0\x1f\x64\xb5\x66\x2e\x57\xd5\x3a\xb4\xdc\x46\xd5\x20\xe7\x1b\xbd\x55\xde\x87\xe9\x17\x0c\x5b\xec\x47\xad\x75\x81\xa8\xa6\x87\xff\x34\xc0\xc0\x6e\xf5\x40\x38\x5c\x53\x73\xc6\xad\x9b\x63\xe3\xc1\xc0\x45\xce\xa6\xc5\xfa\x60\x46\x17\x67\x38\x47\x8e\x13\x8c\xdf\x09\xfb\xe1\x97\x91\xef\xe8\xff\x88\x0d\x9f\xc1\x9d\x7a\xbd\xd4\x72\x03\x1d\xba\x90\xbe\xa1\x26\x9c\x98\x71\xcb\x97\x40\x26\x65\xb9\x42\x64\x26\x90\x93\x34\x2c\x45\xcb\x95\x8e\x70\xff\x1a\x9f\x28\x75\xfd\x44\x9e\x36\x8e\x67\x9d\x59\xeb\x64\xb9\x24\xfa\x22\x12\xcf\x37\xac\x08\x3d\x2b\x2e\x13\x2d\x8c\xe2\x03\x37\x7b\xcd\xe4\x7a\x2c\x2f\x8b\xde\x73\x46\xf4\x0d\xdc\xc0\x42\xed\xb4\xa0\x7f\xdb\xfe\xec\x61\x36\x4e\x5d\x48\x7c\x02\x04\x66\x9e\x5f\x37\x5c\x03\x39\x8b\x44\xae\x2f\x92\x9b\x31\x7b\xbb\x9c\x3d\xb5\x23\xe4\x41\x9d\xe7\xef\x88\xe1\x5c\x3f\x7a\xdf\x53\xcf\xad\x15\x96\x9f\x72\xf2\x3b\xef\x83\x82\x2c\xad\x90\x1b\x2e\x5e\x97\xa0\xde\x38\x40\x42\xd7\x52\x1b\x19\xf8\xfb\x30\x9f\x3c\xc0\x9b\xf7\xd6\x90\x1f\xd3\x59\x8c\x6e\x0f\xf7\x33\xf7\x34\x90\x13\xb6\xcb\xec\x21\x7e\xdc\xca\x89\xb5\x32\x5c\xe3\xc8\x8d\x01\xf4\x5d\xb7\xe5\xbc\x3a\xb1\xf5\xeb\x49\xa7\xf5\xf8\x3f\x01\x00\x00\xff\xff\xec\xfe\x73\x64\x00\xa0\x00\x00") - -func templatesTemplateBindataGoBytes() ([]byte, error) { - return bindataRead( - _templatesTemplateBindataGo, - "templates/template-bindata.go", - ) -} - -func templatesTemplateBindataGo() (*asset, error) { - bytes, err := templatesTemplateBindataGoBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "templates/template-bindata.go", size: 98304, mode: os.FileMode(420), modTime: time.Unix(1525810535, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "templates/.gitignore.gotmpl": templatesGitignoreGotmpl, - "templates/Makefile.gotmpl": templatesMakefileGotmpl, - "templates/README.md.gotmpl": templatesReadmeMdGotmpl, - "templates/cmd/config.go.gotmpl": templatesCmdConfigGoGotmpl, - "templates/cmd/gateway/handler.go.gotmpl": templatesCmdGatewayHandlerGoGotmpl, - "templates/cmd/gateway/main.go.gotmpl": templatesCmdGatewayMainGoGotmpl, - "templates/cmd/gateway/swagger.go.gotmpl": templatesCmdGatewaySwaggerGoGotmpl, - "templates/cmd/server/main.go.gotmpl": templatesCmdServerMainGoGotmpl, - "templates/docker/Dockerfile.application.gotmpl": templatesDockerDockerfileApplicationGotmpl, - "templates/docker/Dockerfile.gateway.gotmpl": templatesDockerDockerfileGatewayGotmpl, - "templates/formatting.go": templatesFormattingGo, - "templates/formatting_test.go": templatesFormatting_testGo, - "templates/pkg/pb/service.proto.gotmpl": templatesPkgPbServiceProtoGotmpl, - "templates/pkg/svc/zserver.go.gotmpl": templatesPkgSvcZserverGoGotmpl, - "templates/pkg/svc/zserver_test.go.gotmpl": templatesPkgSvcZserver_testGoGotmpl, - "templates/template-bindata.go": templatesTemplateBindataGo, -} - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"} -// AssetDir("data/img") would return []string{"a.png", "b.png"} -// AssetDir("foo.txt") and AssetDir("notexist") would return an error -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - cannonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(cannonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "templates": &bintree{nil, map[string]*bintree{ - ".gitignore.gotmpl": &bintree{templatesGitignoreGotmpl, map[string]*bintree{}}, - "Makefile.gotmpl": &bintree{templatesMakefileGotmpl, map[string]*bintree{}}, - "README.md.gotmpl": &bintree{templatesReadmeMdGotmpl, map[string]*bintree{}}, - "cmd": &bintree{nil, map[string]*bintree{ - "config.go.gotmpl": &bintree{templatesCmdConfigGoGotmpl, map[string]*bintree{}}, - "gateway": &bintree{nil, map[string]*bintree{ - "handler.go.gotmpl": &bintree{templatesCmdGatewayHandlerGoGotmpl, map[string]*bintree{}}, - "main.go.gotmpl": &bintree{templatesCmdGatewayMainGoGotmpl, map[string]*bintree{}}, - "swagger.go.gotmpl": &bintree{templatesCmdGatewaySwaggerGoGotmpl, map[string]*bintree{}}, - }}, - "server": &bintree{nil, map[string]*bintree{ - "main.go.gotmpl": &bintree{templatesCmdServerMainGoGotmpl, map[string]*bintree{}}, - }}, - }}, - "docker": &bintree{nil, map[string]*bintree{ - "Dockerfile.application.gotmpl": &bintree{templatesDockerDockerfileApplicationGotmpl, map[string]*bintree{}}, - "Dockerfile.gateway.gotmpl": &bintree{templatesDockerDockerfileGatewayGotmpl, map[string]*bintree{}}, - }}, - "formatting.go": &bintree{templatesFormattingGo, map[string]*bintree{}}, - "formatting_test.go": &bintree{templatesFormatting_testGo, map[string]*bintree{}}, - "pkg": &bintree{nil, map[string]*bintree{ - "pb": &bintree{nil, map[string]*bintree{ - "service.proto.gotmpl": &bintree{templatesPkgPbServiceProtoGotmpl, map[string]*bintree{}}, - }}, - "svc": &bintree{nil, map[string]*bintree{ - "zserver.go.gotmpl": &bintree{templatesPkgSvcZserverGoGotmpl, map[string]*bintree{}}, - "zserver_test.go.gotmpl": &bintree{templatesPkgSvcZserver_testGoGotmpl, map[string]*bintree{}}, - }}, - }}, - "template-bindata.go": &bintree{templatesTemplateBindataGo, 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 -} - -// 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 -} - -func _filePath(dir, name string) string { - cannonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) -}