diff --git a/assets/swagger.json b/assets/swagger.json index b75839af5f28d..c0e5d882e83e4 100644 --- a/assets/swagger.json +++ b/assets/swagger.json @@ -3727,6 +3727,10 @@ "values": { "type": "string", "title": "Values is Helm values, typically defined as a block" + }, + "version": { + "type": "string", + "title": "Version is the Helm version to use for templating with" } } }, diff --git a/cmd/argocd/commands/app.go b/cmd/argocd/commands/app.go index af253d560e191..25093d894fb3c 100644 --- a/cmd/argocd/commands/app.go +++ b/cmd/argocd/commands/app.go @@ -523,6 +523,8 @@ func setAppSpecOptions(flags *pflag.FlagSet, spec *argoappv1.ApplicationSpec, ap setHelmOpt(&spec.Source, helmOpts{values: string(data)}) case "release-name": setHelmOpt(&spec.Source, helmOpts{releaseName: appOpts.releaseName}) + case "helm-version": + setHelmOpt(&spec.Source, helmOpts{version: appOpts.helmVersion}) case "helm-set": setHelmOpt(&spec.Source, helmOpts{helmSets: appOpts.helmSets}) case "helm-set-string": @@ -648,6 +650,7 @@ type helmOpts struct { valueFiles []string values string releaseName string + version string helmSets []string helmSetStrings []string helmSetFiles []string @@ -666,6 +669,9 @@ func setHelmOpt(src *argoappv1.ApplicationSource, opts helmOpts) { if opts.releaseName != "" { src.Helm.ReleaseName = opts.releaseName } + if opts.version != "" { + src.Helm.Version = opts.version + } for _, text := range opts.helmSets { p, err := argoappv1.NewHelmParameter(text, false) if err != nil { @@ -733,6 +739,7 @@ type appOptions struct { helmSets []string helmSetStrings []string helmSetFiles []string + helmVersion string project string syncPolicy string syncOptions []string @@ -766,6 +773,7 @@ func addAppFlags(command *cobra.Command, opts *appOptions) { command.Flags().StringArrayVar(&opts.valuesFiles, "values", []string{}, "Helm values file(s) to use") command.Flags().StringVar(&opts.values, "values-literal-file", "", "Filename or URL to import as a literal Helm values block") command.Flags().StringVar(&opts.releaseName, "release-name", "", "Helm release-name") + command.Flags().StringVar(&opts.helmVersion, "helm-version", "", "Helm version") command.Flags().StringArrayVar(&opts.helmSets, "helm-set", []string{}, "Helm set values on the command line (can be repeated to set several values: --helm-set key1=val1 --helm-set key2=val2)") command.Flags().StringArrayVar(&opts.helmSetStrings, "helm-set-string", []string{}, "Helm set STRING values on the command line (can be repeated to set several values: --helm-set-string key1=val1 --helm-set-string key2=val2)") command.Flags().StringArrayVar(&opts.helmSetFiles, "helm-set-file", []string{}, "Helm set values from respective files specified via the command line (can be repeated to set several values: --helm-set-file key1=path1 --helm-set-file key2=path2)") diff --git a/cmd/argocd/commands/app_test.go b/cmd/argocd/commands/app_test.go index 4240e78bfd690..632b5d0cf7ec8 100644 --- a/cmd/argocd/commands/app_test.go +++ b/cmd/argocd/commands/app_test.go @@ -40,6 +40,11 @@ func Test_setHelmOpt(t *testing.T) { setHelmOpt(&src, helmOpts{helmSetFiles: []string{"foo=bar"}}) assert.Equal(t, []v1alpha1.HelmFileParameter{{Name: "foo", Path: "bar"}}, src.Helm.FileParameters) }) + t.Run("Version", func(t *testing.T) { + src := v1alpha1.ApplicationSource{} + setHelmOpt(&src, helmOpts{version: "v3"}) + assert.Equal(t, "v3", src.Helm.Version) + }) } func Test_setJsonnetOpt(t *testing.T) { diff --git a/go.sum b/go.sum index 1710465b6b5a7..9f668898bb42f 100644 --- a/go.sum +++ b/go.sum @@ -325,6 +325,7 @@ github.com/google/gofuzz v1.0.0 h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.1.0 h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g= github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= diff --git a/manifests/crds/application-crd.yaml b/manifests/crds/application-crd.yaml index b61ba71fc0e47..a2dd55eb88e04 100644 --- a/manifests/crds/application-crd.yaml +++ b/manifests/crds/application-crd.yaml @@ -206,6 +206,9 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -464,6 +467,9 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -735,6 +741,9 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1012,6 +1021,9 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1267,6 +1279,9 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1519,6 +1534,9 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index 08646344bd6f8..ed01478d5c639 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -230,6 +230,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -526,6 +530,10 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -827,6 +835,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1148,6 +1160,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use + for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1447,6 +1463,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1733,6 +1753,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options diff --git a/manifests/ha/namespace-install.yaml b/manifests/ha/namespace-install.yaml index 8972abb2894cb..456a502ca50f0 100644 --- a/manifests/ha/namespace-install.yaml +++ b/manifests/ha/namespace-install.yaml @@ -230,6 +230,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -526,6 +530,10 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -827,6 +835,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1148,6 +1160,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use + for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1447,6 +1463,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1733,6 +1753,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options diff --git a/manifests/install.yaml b/manifests/install.yaml index 18e06010cfc07..5cf9e8aa43621 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -230,6 +230,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -526,6 +530,10 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -827,6 +835,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1148,6 +1160,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use + for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1447,6 +1463,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1733,6 +1753,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options diff --git a/manifests/namespace-install.yaml b/manifests/namespace-install.yaml index e36a1849070b8..ab7925154cd73 100644 --- a/manifests/namespace-install.yaml +++ b/manifests/namespace-install.yaml @@ -230,6 +230,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -526,6 +530,10 @@ spec: values: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -827,6 +835,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for templating + with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1148,6 +1160,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use + for templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1447,6 +1463,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options @@ -1733,6 +1753,10 @@ spec: description: Values is Helm values, typically defined as a block type: string + version: + description: Version is the Helm version to use for + templating with + type: string type: object ksonnet: description: Ksonnet holds ksonnet specific options diff --git a/pkg/apis/application/v1alpha1/generated.pb.go b/pkg/apis/application/v1alpha1/generated.pb.go index 20d977879b54a..288e4ec664399 100644 --- a/pkg/apis/application/v1alpha1/generated.pb.go +++ b/pkg/apis/application/v1alpha1/generated.pb.go @@ -2541,376 +2541,376 @@ func init() { } var fileDescriptor_e7dc23c2911a1a00 = []byte{ - // 5891 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x6d, 0x6c, 0x24, 0xd9, - 0x51, 0xd7, 0x33, 0xfe, 0x98, 0x29, 0x7f, 0xec, 0xfa, 0xed, 0xed, 0xc5, 0x59, 0x2e, 0xeb, 0x55, - 0x9f, 0x92, 0x1c, 0x24, 0xb1, 0xb9, 0xe5, 0x80, 0x4b, 0x0e, 0x12, 0x3c, 0xf6, 0x7e, 0x78, 0xd7, - 0xf6, 0xfa, 0xca, 0xbe, 0x5b, 0xe9, 0xf2, 0xc1, 0xb5, 0x7b, 0xde, 0xcc, 0xf4, 0x7a, 0xa6, 0x7b, - 0xae, 0xbb, 0xc7, 0xbb, 0x3e, 0x92, 0x90, 0x40, 0x82, 0x4e, 0xe1, 0x2e, 0x42, 0x44, 0xe4, 0x0f, - 0x04, 0x25, 0xf0, 0x03, 0x11, 0x89, 0x1f, 0x51, 0x24, 0x04, 0x7f, 0x83, 0x04, 0x27, 0x7e, 0xa0, - 0x28, 0x42, 0x70, 0x42, 0xc8, 0x70, 0x1b, 0x21, 0x21, 0xf8, 0x11, 0x10, 0xfc, 0xda, 0x5f, 0xe8, - 0x7d, 0xbf, 0xee, 0x99, 0x59, 0xdb, 0x3b, 0xbd, 0x9b, 0x53, 0xf8, 0x37, 0x53, 0x55, 0x5d, 0x55, - 0xfd, 0x5e, 0xd5, 0x7b, 0x55, 0xf5, 0xea, 0x35, 0xac, 0x35, 0x83, 0xb4, 0xd5, 0xdb, 0x5d, 0xf4, - 0xa3, 0xce, 0x92, 0x17, 0x37, 0xa3, 0x6e, 0x1c, 0xdd, 0xe2, 0x3f, 0x3e, 0xe2, 0xd7, 0x97, 0xba, - 0x7b, 0xcd, 0x25, 0xaf, 0x1b, 0x24, 0x4b, 0x5e, 0xb7, 0xdb, 0x0e, 0x7c, 0x2f, 0x0d, 0xa2, 0x70, - 0x69, 0xff, 0x19, 0xaf, 0xdd, 0x6d, 0x79, 0xcf, 0x2c, 0x35, 0x69, 0x48, 0x63, 0x2f, 0xa5, 0xf5, - 0xc5, 0x6e, 0x1c, 0xa5, 0x11, 0xf9, 0xa8, 0x61, 0xb5, 0xa8, 0x58, 0xf1, 0x1f, 0xbf, 0xea, 0xd7, - 0x17, 0xbb, 0x7b, 0xcd, 0x45, 0xc6, 0x6a, 0xd1, 0x62, 0xb5, 0xa8, 0x58, 0x9d, 0xfb, 0x88, 0xa5, - 0x45, 0x33, 0x6a, 0x46, 0x4b, 0x9c, 0xe3, 0x6e, 0xaf, 0xc1, 0xff, 0xf1, 0x3f, 0xfc, 0x97, 0x90, - 0x74, 0xce, 0xdd, 0x7b, 0x2e, 0x59, 0x0c, 0x22, 0xa6, 0xdb, 0x92, 0x1f, 0xc5, 0x74, 0x69, 0xbf, - 0x4f, 0x9b, 0x73, 0xcf, 0x1a, 0x9a, 0x8e, 0xe7, 0xb7, 0x82, 0x90, 0xc6, 0x07, 0xe6, 0x85, 0x3a, - 0x34, 0xf5, 0x06, 0x3d, 0xb5, 0x34, 0xec, 0xa9, 0xb8, 0x17, 0xa6, 0x41, 0x87, 0xf6, 0x3d, 0xf0, - 0x0b, 0x47, 0x3d, 0x90, 0xf8, 0x2d, 0xda, 0xf1, 0xf2, 0xcf, 0xb9, 0xaf, 0xc2, 0xcc, 0xf2, 0xcd, - 0xed, 0xe5, 0x5e, 0xda, 0x5a, 0x89, 0xc2, 0x46, 0xd0, 0x24, 0x3f, 0x0f, 0x53, 0x7e, 0xbb, 0x97, - 0xa4, 0x34, 0xde, 0xf4, 0x3a, 0x74, 0xde, 0xb9, 0xe0, 0x3c, 0x5d, 0xad, 0x9d, 0x79, 0xeb, 0x70, - 0xe1, 0xb1, 0xbb, 0x87, 0x0b, 0x53, 0x2b, 0x06, 0x85, 0x36, 0x1d, 0xf9, 0x69, 0x98, 0x8c, 0xa3, - 0x36, 0x5d, 0xc6, 0xcd, 0xf9, 0x12, 0x7f, 0xe4, 0x94, 0x7c, 0x64, 0x12, 0x05, 0x18, 0x15, 0xde, - 0xfd, 0x7e, 0x09, 0x60, 0xb9, 0xdb, 0xdd, 0x8a, 0xa3, 0x5b, 0xd4, 0x4f, 0xc9, 0x2b, 0x50, 0x61, - 0xa3, 0x50, 0xf7, 0x52, 0x8f, 0x4b, 0x9b, 0xba, 0xf8, 0xb3, 0x8b, 0xe2, 0x65, 0x16, 0xed, 0x97, - 0x31, 0x33, 0xc7, 0xa8, 0x17, 0xf7, 0x9f, 0x59, 0xbc, 0xb1, 0xcb, 0x9e, 0xdf, 0xa0, 0xa9, 0x57, - 0x23, 0x52, 0x18, 0x18, 0x18, 0x6a, 0xae, 0x64, 0x0f, 0xc6, 0x92, 0x2e, 0xf5, 0xb9, 0x62, 0x53, - 0x17, 0xd7, 0x16, 0x1f, 0xd8, 0x3e, 0x16, 0x8d, 0xda, 0xdb, 0x5d, 0xea, 0xd7, 0xa6, 0xa5, 0xd8, - 0x31, 0xf6, 0x0f, 0xb9, 0x10, 0x92, 0xc0, 0x44, 0x92, 0x7a, 0x69, 0x2f, 0x99, 0x2f, 0x73, 0x71, - 0xd7, 0x8b, 0x11, 0xc7, 0x59, 0xd6, 0x66, 0xa5, 0xc0, 0x09, 0xf1, 0x1f, 0xa5, 0x28, 0xf7, 0x9f, - 0x1c, 0x98, 0x35, 0xc4, 0xeb, 0x41, 0x92, 0x92, 0x4f, 0xf5, 0x0d, 0xeb, 0xe2, 0xf1, 0x86, 0x95, - 0x3d, 0xcd, 0x07, 0xf5, 0xb4, 0x14, 0x56, 0x51, 0x10, 0x6b, 0x48, 0x6f, 0xc1, 0x78, 0x90, 0xd2, - 0x4e, 0x32, 0x5f, 0xba, 0x50, 0x7e, 0x7a, 0xea, 0xe2, 0xa5, 0x42, 0x5e, 0xb2, 0x36, 0x23, 0x25, - 0x8e, 0xaf, 0x31, 0xde, 0x28, 0x44, 0xb8, 0xff, 0x06, 0xf6, 0xcb, 0xb1, 0xa1, 0x26, 0xcf, 0xc0, - 0x54, 0x12, 0xf5, 0x62, 0x9f, 0x22, 0xed, 0x46, 0xc9, 0xbc, 0x73, 0xa1, 0xcc, 0x2c, 0x8e, 0x19, - 0xe8, 0xb6, 0x01, 0xa3, 0x4d, 0x43, 0x7e, 0xdb, 0x81, 0xe9, 0x3a, 0x4d, 0xd2, 0x20, 0xe4, 0xf2, - 0x95, 0xe6, 0x2f, 0x8c, 0xa6, 0xb9, 0x02, 0xae, 0x1a, 0xce, 0xb5, 0xc7, 0xe5, 0x5b, 0x4c, 0x5b, - 0xc0, 0x04, 0x33, 0xc2, 0x99, 0x97, 0xd5, 0x69, 0xe2, 0xc7, 0x41, 0x97, 0xfd, 0xe7, 0xa6, 0x62, - 0x79, 0xd9, 0xaa, 0x41, 0xa1, 0x4d, 0x47, 0xf6, 0x60, 0x9c, 0x79, 0x51, 0x32, 0x3f, 0xc6, 0x95, - 0xbf, 0x3c, 0x82, 0xf2, 0x72, 0x38, 0x99, 0x77, 0x9a, 0x71, 0x67, 0xff, 0x12, 0x14, 0x32, 0xc8, - 0x9b, 0x0e, 0xcc, 0x4b, 0x17, 0x47, 0x2a, 0x86, 0xf2, 0x66, 0x2b, 0x48, 0x69, 0x3b, 0x48, 0xd2, - 0xf9, 0x71, 0xae, 0xc0, 0xd2, 0xf1, 0x4c, 0xea, 0x4a, 0x1c, 0xf5, 0xba, 0xd7, 0x83, 0xb0, 0x5e, - 0xbb, 0x20, 0x25, 0xcd, 0xaf, 0x0c, 0x61, 0x8c, 0x43, 0x45, 0x92, 0xaf, 0x39, 0x70, 0x2e, 0xf4, - 0x3a, 0x34, 0xe9, 0x7a, 0x6c, 0x52, 0x05, 0xba, 0xd6, 0xf6, 0xfc, 0x3d, 0xae, 0xd1, 0xc4, 0x83, - 0x69, 0xe4, 0x4a, 0x8d, 0xce, 0x6d, 0x0e, 0x65, 0x8d, 0xf7, 0x11, 0x4b, 0xbe, 0xe9, 0xc0, 0x5c, - 0x14, 0x77, 0x5b, 0x5e, 0x48, 0xeb, 0x0a, 0x9b, 0xcc, 0x4f, 0x72, 0x8f, 0xfb, 0xe4, 0x08, 0xf3, - 0x73, 0x23, 0xcf, 0x73, 0x23, 0x0a, 0x83, 0x34, 0x8a, 0xb7, 0x69, 0x9a, 0x06, 0x61, 0x33, 0xa9, - 0x9d, 0xbd, 0x7b, 0xb8, 0x30, 0xd7, 0x47, 0x85, 0xfd, 0xca, 0x90, 0x3b, 0x30, 0x95, 0x1c, 0x84, - 0xfe, 0xcd, 0x20, 0xac, 0x47, 0xb7, 0x93, 0xf9, 0xca, 0xc8, 0x2e, 0xbb, 0xad, 0xb9, 0x49, 0xa7, - 0x33, 0xdc, 0xd1, 0x16, 0x35, 0x78, 0xca, 0x8c, 0x11, 0x55, 0x8b, 0x9e, 0x32, 0x63, 0x46, 0xf7, - 0x11, 0x4b, 0xbe, 0xe4, 0xc0, 0x4c, 0x12, 0x34, 0x43, 0x2f, 0xed, 0xc5, 0xf4, 0x3a, 0x3d, 0x48, - 0xe6, 0x81, 0x2b, 0x72, 0x65, 0x94, 0x21, 0xb1, 0xf8, 0xd5, 0xce, 0x4a, 0x05, 0x67, 0x6c, 0x68, - 0x82, 0x59, 0xa1, 0x83, 0xfc, 0xcb, 0x58, 0xf3, 0x54, 0xb1, 0xfe, 0x65, 0x6c, 0x79, 0xa8, 0x48, - 0xf7, 0xaf, 0x4a, 0x70, 0x3a, 0xbf, 0xe3, 0x90, 0x3f, 0x76, 0xe0, 0xd4, 0xad, 0xdb, 0xe9, 0x4e, - 0xb4, 0x47, 0xc3, 0xa4, 0x76, 0xc0, 0x16, 0x08, 0xbe, 0xdc, 0x4e, 0x5d, 0x7c, 0xa5, 0xc0, 0x8d, - 0x6d, 0xf1, 0x5a, 0x56, 0xc4, 0xa5, 0x30, 0x8d, 0x0f, 0x6a, 0xef, 0x91, 0x2f, 0x73, 0xea, 0xda, - 0xcd, 0x1d, 0x1b, 0x8b, 0x79, 0x8d, 0xce, 0xbd, 0xee, 0xc0, 0xe3, 0x83, 0x58, 0x90, 0xd3, 0x50, - 0xde, 0xa3, 0x07, 0x22, 0x8a, 0x41, 0xf6, 0x93, 0xbc, 0x0c, 0xe3, 0xfb, 0x5e, 0xbb, 0x47, 0x65, - 0x34, 0xb0, 0x3a, 0xc2, 0x5b, 0x68, 0xb5, 0x50, 0xb0, 0xfc, 0x58, 0xe9, 0x39, 0xc7, 0xfd, 0xeb, - 0x32, 0x4c, 0x59, 0x1b, 0xc3, 0x23, 0x08, 0x6f, 0xda, 0x99, 0xf0, 0xe6, 0x5a, 0x31, 0x1b, 0xda, - 0xd0, 0xf8, 0x26, 0xcd, 0xc5, 0x37, 0xeb, 0x05, 0xc9, 0xbb, 0x6f, 0x80, 0x43, 0x5e, 0x85, 0x6a, - 0xd4, 0x65, 0x81, 0x2b, 0xdb, 0x2d, 0xc7, 0x46, 0x9e, 0xb9, 0x1b, 0x8a, 0x57, 0x6d, 0xe6, 0xee, - 0xe1, 0x42, 0x55, 0xff, 0x45, 0x23, 0xc5, 0xfd, 0x47, 0x07, 0x1e, 0xb7, 0x14, 0x5c, 0x89, 0xc2, - 0x7a, 0xc0, 0x67, 0xf4, 0x02, 0x8c, 0xa5, 0x07, 0x5d, 0x15, 0x1a, 0xeb, 0x31, 0xda, 0x39, 0xe8, - 0x52, 0xe4, 0x18, 0x16, 0x0c, 0x77, 0x68, 0x92, 0x78, 0x4d, 0x9a, 0x0f, 0x86, 0x37, 0x04, 0x18, - 0x15, 0x9e, 0xc4, 0x40, 0xda, 0x5e, 0x92, 0xee, 0xc4, 0x5e, 0x98, 0x70, 0xf6, 0x3b, 0x41, 0x87, - 0xca, 0xa1, 0xfd, 0x99, 0xe3, 0x19, 0x0a, 0x7b, 0xa2, 0xf6, 0xc4, 0xdd, 0xc3, 0x05, 0xb2, 0xde, - 0xc7, 0x09, 0x07, 0x70, 0x77, 0xbf, 0xe6, 0xc0, 0x13, 0x83, 0x63, 0x17, 0xf2, 0x01, 0x98, 0x48, - 0x68, 0xbc, 0x4f, 0x63, 0xf9, 0x76, 0x66, 0x3e, 0x38, 0x14, 0x25, 0x96, 0x2c, 0x41, 0x55, 0x2f, - 0xb0, 0xf2, 0x1d, 0xe7, 0x24, 0x69, 0xd5, 0xac, 0xca, 0x86, 0x86, 0x0d, 0x1a, 0xfb, 0x23, 0x23, - 0x1d, 0x3d, 0x68, 0x3c, 0x91, 0xe0, 0x18, 0xf7, 0x9f, 0x1d, 0x38, 0x65, 0x69, 0xf5, 0x08, 0x82, - 0xd8, 0xbd, 0x6c, 0x10, 0x7b, 0xb9, 0x18, 0x4b, 0x1e, 0x12, 0xc5, 0x7e, 0x77, 0x02, 0xe6, 0x6c, - 0x7b, 0xe7, 0x8b, 0x2f, 0x4f, 0x9b, 0x68, 0x37, 0x7a, 0x11, 0xd7, 0xe5, 0x80, 0x9b, 0xb4, 0x49, - 0x80, 0x51, 0xe1, 0xd9, 0x08, 0x76, 0xbd, 0xb4, 0x25, 0x47, 0x5b, 0x8f, 0xe0, 0x96, 0x97, 0xb6, - 0x90, 0x63, 0xc8, 0xc7, 0x61, 0x36, 0xf5, 0xe2, 0x26, 0x4d, 0x91, 0xee, 0x07, 0x89, 0xf2, 0x94, - 0x6a, 0xed, 0x09, 0x49, 0x3b, 0xbb, 0x93, 0xc1, 0x62, 0x8e, 0x9a, 0x84, 0x30, 0xd6, 0xa2, 0xed, - 0x8e, 0x0c, 0x5e, 0xb6, 0x0a, 0x72, 0x6c, 0xfe, 0xa2, 0x57, 0x69, 0xbb, 0x53, 0xab, 0x30, 0x7d, - 0xd9, 0x2f, 0xe4, 0x72, 0xc8, 0x6f, 0x38, 0x50, 0xdd, 0xeb, 0x25, 0x69, 0xd4, 0x09, 0x5e, 0xa3, - 0xf3, 0x15, 0x2e, 0xf5, 0xc5, 0x22, 0xa5, 0x5e, 0x57, 0xcc, 0x85, 0x9b, 0xeb, 0xbf, 0x68, 0xc4, - 0x92, 0xd7, 0x60, 0x72, 0x2f, 0x89, 0xc2, 0x90, 0xb2, 0x70, 0x84, 0x69, 0xb0, 0x5d, 0xa8, 0x06, - 0x82, 0x75, 0x6d, 0x8a, 0x4d, 0xa9, 0xfc, 0x83, 0x4a, 0x20, 0x1f, 0x80, 0x7a, 0x10, 0x53, 0x3f, - 0x8d, 0xe2, 0x83, 0x79, 0x28, 0x7e, 0x00, 0x56, 0x15, 0x73, 0x31, 0x00, 0xfa, 0x2f, 0x1a, 0xb1, - 0x64, 0x1f, 0x26, 0xba, 0xed, 0x5e, 0x33, 0x08, 0xe7, 0xa7, 0xb8, 0x02, 0x58, 0xa4, 0x02, 0x5b, - 0x9c, 0x73, 0x0d, 0xd8, 0x12, 0x22, 0x7e, 0xa3, 0x94, 0x46, 0x9e, 0x82, 0x71, 0xbf, 0xe5, 0xc5, - 0xe9, 0xfc, 0x34, 0x37, 0x52, 0xed, 0x35, 0x2b, 0x0c, 0x88, 0x02, 0xe7, 0xfe, 0x8d, 0x03, 0xe7, - 0x86, 0xbf, 0x95, 0x70, 0x1f, 0xbf, 0x17, 0x27, 0x62, 0x35, 0xae, 0xd8, 0xee, 0xc3, 0xc1, 0xa8, - 0xf0, 0xe4, 0xf3, 0x30, 0x79, 0x4b, 0xce, 0x73, 0xa9, 0xf8, 0x79, 0xbe, 0x26, 0xe7, 0x59, 0xcb, - 0xbf, 0xa6, 0xe6, 0x5a, 0x0a, 0x75, 0xbf, 0x5b, 0x86, 0xb3, 0x03, 0xdd, 0x82, 0x2c, 0x02, 0xf0, - 0xf0, 0xe1, 0x72, 0xc0, 0x32, 0x3b, 0x91, 0xcb, 0xce, 0xb2, 0xdd, 0xfe, 0x25, 0x0d, 0x45, 0x8b, - 0x82, 0x7c, 0x16, 0xa0, 0xeb, 0xc5, 0x5e, 0x87, 0xa6, 0x34, 0x56, 0x6b, 0xd7, 0xd5, 0x11, 0x5e, - 0x86, 0x29, 0xb1, 0xa5, 0x18, 0x9a, 0x58, 0x43, 0x83, 0x12, 0xb4, 0xe4, 0xb1, 0xcc, 0x35, 0xa6, - 0x6d, 0xea, 0x25, 0x74, 0xd3, 0xac, 0xe7, 0x3a, 0x73, 0x45, 0x83, 0x42, 0x9b, 0x8e, 0x6d, 0x2c, - 0xfc, 0x15, 0x12, 0xb9, 0x26, 0xe9, 0x8d, 0x85, 0xbf, 0x64, 0x82, 0x12, 0x4b, 0xde, 0x70, 0x60, - 0xb6, 0x11, 0xb4, 0xa9, 0x91, 0x2e, 0x53, 0xcd, 0xf5, 0x11, 0xdf, 0xf0, 0xb2, 0xcd, 0xd4, 0x2c, - 0x89, 0x19, 0x70, 0x82, 0x39, 0xd9, 0xee, 0xd7, 0x4a, 0x30, 0x3f, 0x6c, 0xb2, 0x49, 0x17, 0x26, - 0xe9, 0x9d, 0xf4, 0x25, 0x2f, 0x4e, 0x64, 0x48, 0x3c, 0x4a, 0x4e, 0x25, 0x99, 0xbe, 0xe4, 0xc5, - 0xc6, 0x88, 0x2e, 0x09, 0xee, 0xa8, 0xc4, 0x90, 0x26, 0x8c, 0xa5, 0x6d, 0xaf, 0x88, 0xaa, 0x8b, - 0x25, 0xce, 0x44, 0x30, 0xeb, 0xcb, 0x09, 0x72, 0x01, 0xe4, 0x49, 0x18, 0x6b, 0x07, 0xbb, 0x2c, - 0xc6, 0x63, 0xd6, 0xc8, 0x17, 0xee, 0xf5, 0x60, 0x37, 0x41, 0x0e, 0x75, 0x7f, 0xe0, 0x0c, 0x18, - 0x15, 0xb9, 0xba, 0x31, 0x03, 0xa1, 0xe1, 0x7e, 0x10, 0x47, 0x61, 0x87, 0x86, 0x69, 0xbe, 0x80, - 0x78, 0xc9, 0xa0, 0xd0, 0xa6, 0x23, 0xbf, 0x3e, 0xc0, 0xaa, 0x47, 0xa9, 0x9d, 0x49, 0x75, 0x8e, - 0x6d, 0xd8, 0xee, 0xdf, 0x96, 0x07, 0x2c, 0x35, 0x7a, 0xcb, 0x20, 0x17, 0x01, 0x58, 0x98, 0xb2, - 0x15, 0xd3, 0x46, 0x70, 0x47, 0xbe, 0x95, 0x66, 0xb9, 0xa9, 0x31, 0x68, 0x51, 0xa9, 0x67, 0xb6, - 0x7b, 0x0d, 0xf6, 0x4c, 0xa9, 0xff, 0x19, 0x81, 0x41, 0x8b, 0x8a, 0x3c, 0x0b, 0x13, 0x41, 0xc7, - 0x6b, 0x52, 0x35, 0xf6, 0x4f, 0x32, 0x27, 0x59, 0xe3, 0x90, 0x7b, 0x87, 0x0b, 0xb3, 0x5a, 0x21, - 0x0e, 0x42, 0x49, 0x4b, 0xbe, 0xe5, 0xc0, 0xb4, 0x1f, 0x75, 0x3a, 0x51, 0xb8, 0xee, 0xed, 0xd2, - 0xb6, 0x2a, 0x10, 0x35, 0x1f, 0xca, 0x6e, 0xba, 0xb8, 0x62, 0x49, 0x12, 0xa9, 0x9a, 0xae, 0x79, - 0xd9, 0x28, 0xcc, 0xa8, 0xc4, 0x16, 0xeb, 0x7d, 0x1a, 0xf3, 0xb8, 0x64, 0x3c, 0x1b, 0xeb, 0xbc, - 0x24, 0xc0, 0xa8, 0xf0, 0xe7, 0x3e, 0x01, 0x73, 0x7d, 0x32, 0x06, 0xe4, 0x72, 0x8f, 0xdb, 0xb9, - 0x5c, 0xd5, 0xce, 0xc2, 0x7e, 0xdf, 0x81, 0xf7, 0x0c, 0xd9, 0x8c, 0x74, 0x28, 0xea, 0x0c, 0x0b, - 0x45, 0xc9, 0x67, 0xa0, 0x4c, 0xc3, 0x7d, 0x69, 0x84, 0x2b, 0x23, 0x8c, 0xe1, 0xa5, 0x70, 0x5f, - 0x8c, 0xcf, 0xe4, 0xdd, 0xc3, 0x85, 0xf2, 0xa5, 0x70, 0x1f, 0x19, 0x63, 0xf7, 0xcb, 0x13, 0x99, - 0x50, 0x77, 0x5b, 0xe5, 0x55, 0x5c, 0x4b, 0x19, 0xe8, 0xae, 0x17, 0x39, 0x75, 0x56, 0x1c, 0x2f, - 0x4a, 0xa2, 0x52, 0x16, 0x79, 0xdd, 0xe1, 0x85, 0x48, 0x15, 0xff, 0xcb, 0xad, 0xf1, 0x21, 0x14, - 0x45, 0xed, 0xda, 0xa6, 0x02, 0xa2, 0x2d, 0x9a, 0x99, 0x47, 0x57, 0xd4, 0x04, 0xe4, 0xa6, 0xa2, - 0xcd, 0x43, 0x95, 0x2a, 0x15, 0x9e, 0xf4, 0x00, 0x92, 0x83, 0xd0, 0xdf, 0x8a, 0xda, 0x81, 0x7f, - 0x20, 0xd3, 0xc1, 0x51, 0xeb, 0x59, 0x82, 0x99, 0xd8, 0x78, 0xcd, 0x7f, 0xb4, 0x04, 0x91, 0x6f, - 0x38, 0x30, 0x17, 0x34, 0xc3, 0x28, 0xa6, 0xab, 0x41, 0xa3, 0x41, 0x63, 0x1a, 0xfa, 0x54, 0x6d, - 0x4f, 0x3b, 0x23, 0x88, 0x57, 0xa5, 0x98, 0xb5, 0x3c, 0xef, 0xda, 0x7b, 0xe5, 0x10, 0xcc, 0xf5, - 0xa1, 0xb0, 0x5f, 0x13, 0xe2, 0xc1, 0x58, 0x10, 0x36, 0x22, 0x59, 0x09, 0xfd, 0xc4, 0x08, 0x1a, - 0xad, 0x85, 0x8d, 0xc8, 0x78, 0x06, 0xfb, 0x87, 0x9c, 0x35, 0x59, 0x87, 0xc7, 0x63, 0x99, 0x2e, - 0x5c, 0x0d, 0x12, 0x16, 0x83, 0xad, 0x07, 0x9d, 0x20, 0xe5, 0x29, 0x43, 0xb9, 0x36, 0x7f, 0xf7, - 0x70, 0xe1, 0x71, 0x1c, 0x80, 0xc7, 0x81, 0x4f, 0xb9, 0xff, 0x53, 0xc9, 0xe6, 0x44, 0x22, 0xd7, - 0x7f, 0x0d, 0xaa, 0xb1, 0x2e, 0xa4, 0x8a, 0x8d, 0x75, 0xad, 0x80, 0xd1, 0x95, 0x15, 0x06, 0x9d, - 0xa6, 0x9a, 0x92, 0xa9, 0x11, 0xc7, 0x36, 0x58, 0x36, 0xe1, 0xd2, 0x0f, 0x46, 0xb5, 0x29, 0x29, - 0xd2, 0x94, 0x51, 0x0e, 0x42, 0x1f, 0xb9, 0x00, 0x12, 0xc1, 0x44, 0x8b, 0x7a, 0xed, 0xb4, 0x25, - 0x73, 0xfd, 0x2b, 0x23, 0x85, 0x37, 0x8c, 0x51, 0xbe, 0x82, 0x22, 0xa0, 0x28, 0xc5, 0x90, 0x1e, - 0x4c, 0xb6, 0xc4, 0xd8, 0xcb, 0xbd, 0xe1, 0xda, 0x48, 0x63, 0x9a, 0x99, 0x4d, 0xe3, 0xaa, 0x12, - 0x80, 0x4a, 0x16, 0xf9, 0x4d, 0x07, 0xc0, 0x57, 0xa5, 0x13, 0xe5, 0x2c, 0x37, 0x8a, 0x59, 0x5f, - 0x74, 0x49, 0xc6, 0x6c, 0xaa, 0x1a, 0x94, 0xa0, 0x25, 0x96, 0xbc, 0x02, 0xd3, 0x31, 0xf5, 0xa3, - 0xd0, 0x0f, 0xda, 0xb4, 0xbe, 0x9c, 0xce, 0x4f, 0x9c, 0xb8, 0xbe, 0x72, 0x9a, 0x6d, 0x6e, 0x68, - 0xf1, 0xc0, 0x0c, 0x47, 0xf2, 0x65, 0x07, 0x66, 0x75, 0xed, 0x88, 0x4d, 0x05, 0x95, 0x69, 0xf4, - 0x5a, 0x11, 0x65, 0x2a, 0xce, 0xb0, 0x46, 0x58, 0xc0, 0x9a, 0x85, 0x61, 0x4e, 0x28, 0x79, 0x19, - 0x20, 0xda, 0xe5, 0x45, 0x1a, 0xf6, 0x9e, 0x95, 0x13, 0xbf, 0xe7, 0xac, 0x28, 0x33, 0x2a, 0x0e, - 0x68, 0x71, 0x23, 0xd7, 0x01, 0x84, 0x9f, 0xec, 0x1c, 0x74, 0x29, 0xcf, 0x96, 0xab, 0xb5, 0x0f, - 0xa9, 0x91, 0xdf, 0xd6, 0x98, 0x7b, 0x87, 0x0b, 0xfd, 0x99, 0x0e, 0xaf, 0x8e, 0x59, 0x8f, 0x93, - 0x3b, 0x30, 0x99, 0xf4, 0x3a, 0x1d, 0x4f, 0x27, 0xbe, 0x1b, 0x05, 0x6d, 0x78, 0x82, 0xa9, 0x31, - 0x49, 0x09, 0x40, 0x25, 0xce, 0x0d, 0x81, 0xf4, 0xd3, 0x93, 0x67, 0x61, 0x9a, 0xde, 0x49, 0x69, - 0x1c, 0x7a, 0xed, 0x17, 0x71, 0x5d, 0xe5, 0x61, 0x7c, 0xda, 0x2f, 0x59, 0x70, 0xcc, 0x50, 0x11, - 0x57, 0x47, 0x6b, 0x25, 0x4e, 0x0f, 0x26, 0x5a, 0x53, 0xb1, 0x99, 0xfb, 0x5b, 0xa5, 0xcc, 0x6e, - 0xbf, 0x13, 0x53, 0x4a, 0xda, 0x30, 0x1e, 0x46, 0x75, 0xbd, 0xbe, 0x5d, 0x29, 0x60, 0x7d, 0xdb, - 0x8c, 0xea, 0xd6, 0x49, 0x1e, 0xfb, 0x97, 0xa0, 0x10, 0xc2, 0x0f, 0x3c, 0xd4, 0xb1, 0x10, 0x47, - 0xc8, 0xd0, 0xa6, 0x30, 0xb1, 0xfa, 0xc0, 0xe3, 0x86, 0x2d, 0x05, 0xb3, 0x42, 0xdd, 0x1f, 0x3a, - 0x99, 0x14, 0xf8, 0xa6, 0x97, 0xfa, 0xad, 0x4b, 0xfb, 0x2c, 0xf8, 0xbf, 0x9e, 0x29, 0xa9, 0xfe, - 0xa2, 0x5d, 0x52, 0xbd, 0x77, 0xb8, 0xf0, 0xc1, 0x61, 0xbd, 0x0d, 0xb7, 0x19, 0x87, 0x45, 0xce, - 0xc2, 0xaa, 0xbe, 0x7e, 0x0e, 0xa6, 0x2c, 0x8d, 0xe5, 0x52, 0x5e, 0x54, 0x71, 0x4f, 0xc7, 0x31, - 0x16, 0x10, 0x6d, 0x79, 0xee, 0xef, 0x3a, 0x30, 0x59, 0xf3, 0xfc, 0xbd, 0xa8, 0xd1, 0x20, 0x1f, - 0x86, 0x4a, 0xbd, 0x27, 0xab, 0xd6, 0xe2, 0xdd, 0x74, 0x3d, 0x72, 0x55, 0xc2, 0x51, 0x53, 0x30, - 0x63, 0x6a, 0x78, 0x7e, 0x1a, 0xc5, 0x5c, 0xe7, 0xb2, 0x30, 0xa6, 0xcb, 0x1c, 0x82, 0x12, 0xc3, - 0xb2, 0xab, 0x8e, 0x77, 0x47, 0x3d, 0x9c, 0x4f, 0xbf, 0x37, 0x0c, 0x0a, 0x6d, 0x3a, 0xf7, 0x9b, - 0xe3, 0x30, 0x29, 0x8f, 0x84, 0x8e, 0x5d, 0xe3, 0x55, 0x71, 0x72, 0x69, 0x68, 0x9c, 0xdc, 0x85, - 0x09, 0x9f, 0x77, 0x8d, 0xc8, 0x4d, 0x6c, 0x94, 0x2a, 0x84, 0xd4, 0x4e, 0x74, 0xa1, 0x18, 0x9d, - 0xc4, 0x7f, 0x94, 0x72, 0xc8, 0x9b, 0x0e, 0x9c, 0xf2, 0x59, 0x62, 0xe7, 0x9b, 0x75, 0x76, 0x6c, - 0xe4, 0x73, 0x8f, 0x95, 0x2c, 0x47, 0x73, 0xf0, 0x94, 0x43, 0x60, 0x5e, 0x36, 0x79, 0x1e, 0x66, - 0xc4, 0x68, 0xbd, 0x94, 0xc9, 0x6c, 0xcc, 0x01, 0xa0, 0x8d, 0xc4, 0x2c, 0x2d, 0x59, 0x14, 0xe9, - 0x21, 0x2f, 0x90, 0x27, 0x3c, 0x6a, 0x93, 0x85, 0x1f, 0x5d, 0x41, 0x4f, 0xd0, 0xa2, 0x20, 0x31, - 0x90, 0x98, 0x36, 0x62, 0x9a, 0xb4, 0x90, 0xbe, 0xda, 0xa3, 0x49, 0xca, 0xd7, 0xf8, 0xc9, 0x07, - 0x3b, 0x2b, 0xc0, 0x3e, 0x4e, 0x38, 0x80, 0x3b, 0x69, 0xc9, 0x98, 0xb2, 0x32, 0xb2, 0x17, 0xc9, - 0x09, 0x1e, 0x16, 0x5a, 0xba, 0xff, 0xeb, 0xc0, 0x69, 0x65, 0x04, 0x9e, 0xdf, 0xa2, 0x0c, 0x45, - 0x3e, 0x0e, 0xb3, 0x3a, 0x38, 0x5b, 0x89, 0x7a, 0xb2, 0x9e, 0x50, 0x36, 0xf5, 0x1b, 0xcc, 0x60, - 0x31, 0x47, 0x4d, 0x96, 0xa0, 0xca, 0x34, 0x12, 0x8f, 0x0a, 0xaf, 0xd2, 0x01, 0xe0, 0xf2, 0xd6, - 0x9a, 0x7c, 0xca, 0xd0, 0x90, 0x08, 0xe6, 0xda, 0x5e, 0x92, 0x72, 0x0d, 0x58, 0xb8, 0xf6, 0x80, - 0xc7, 0x31, 0xfc, 0x70, 0x7e, 0x3d, 0xcf, 0x08, 0xfb, 0x79, 0xbb, 0x7f, 0x5e, 0x86, 0x99, 0x8c, - 0xed, 0xb3, 0x45, 0xa3, 0x97, 0xb0, 0x2d, 0x46, 0xe7, 0xa8, 0x7a, 0xd1, 0x78, 0x51, 0xc2, 0x51, - 0x53, 0x30, 0xea, 0xae, 0x97, 0x24, 0xb7, 0xa3, 0xb8, 0x2e, 0x3d, 0x55, 0x53, 0x6f, 0x49, 0x38, - 0x6a, 0x0a, 0xb6, 0x7c, 0xec, 0x52, 0x2f, 0xa6, 0x31, 0x3f, 0xb8, 0xcc, 0x2f, 0x1f, 0x35, 0x83, - 0x42, 0x9b, 0x8e, 0xbb, 0x5d, 0xda, 0x4e, 0x56, 0xda, 0x01, 0x0d, 0x53, 0xa1, 0x66, 0x01, 0x6e, - 0xb7, 0xb3, 0xbe, 0x6d, 0x73, 0x34, 0x6e, 0x97, 0x43, 0x60, 0x5e, 0x36, 0xf9, 0xa2, 0x03, 0x33, - 0xde, 0xed, 0xc4, 0xb4, 0xad, 0x71, 0xbf, 0x1b, 0x6d, 0x01, 0xca, 0xb4, 0xc1, 0xd5, 0xe6, 0x98, - 0xf7, 0x66, 0x40, 0x98, 0x95, 0xe8, 0x7e, 0xab, 0x0c, 0x53, 0x96, 0x4d, 0x0f, 0x5c, 0x9a, 0x9c, - 0x77, 0xd3, 0xd2, 0x54, 0x3a, 0xc1, 0xd2, 0xf4, 0x59, 0xa8, 0xfa, 0xca, 0x09, 0x0b, 0x68, 0x64, - 0xcb, 0xfb, 0xb5, 0x71, 0x42, 0x0d, 0x42, 0x23, 0x90, 0x5c, 0x81, 0x39, 0x8b, 0x8d, 0xf4, 0xde, - 0x31, 0xee, 0xbd, 0x3a, 0x23, 0x5e, 0xce, 0x13, 0x60, 0xff, 0x33, 0xee, 0xdf, 0x3b, 0x7a, 0x8e, - 0x1e, 0xc1, 0x79, 0x62, 0x33, 0x7b, 0x9e, 0x58, 0x1b, 0x7d, 0xc0, 0x86, 0x9c, 0x25, 0x6e, 0xc2, - 0xe4, 0x4a, 0xd4, 0xe9, 0x78, 0x61, 0x9d, 0xbc, 0x1f, 0x26, 0x7d, 0xf1, 0x53, 0x46, 0xac, 0xfc, - 0xa4, 0x49, 0x62, 0x51, 0xe1, 0xc8, 0x93, 0x30, 0xe6, 0xc5, 0x4d, 0x15, 0xa5, 0xf2, 0x7a, 0xee, - 0x72, 0xdc, 0x4c, 0x90, 0x43, 0xdd, 0x37, 0x4b, 0x00, 0x2b, 0x51, 0xa7, 0xeb, 0xc5, 0xb4, 0xbe, - 0x13, 0xfd, 0xbf, 0x2f, 0x45, 0xb9, 0x6f, 0x38, 0x40, 0xd8, 0x78, 0x44, 0x21, 0x0d, 0x4d, 0x05, - 0x99, 0x6d, 0x26, 0xbe, 0x82, 0xca, 0x95, 0xd9, 0xd8, 0xb1, 0x42, 0xa0, 0xa1, 0x39, 0x46, 0x04, - 0xf5, 0x94, 0xaa, 0x60, 0x96, 0xb3, 0x87, 0x60, 0xfc, 0x54, 0x44, 0x16, 0x34, 0xdd, 0xaf, 0x96, - 0xe0, 0x09, 0xb1, 0xe8, 0x6c, 0x78, 0xa1, 0xd7, 0xa4, 0x1d, 0xa6, 0xd5, 0x71, 0x6b, 0x99, 0xaf, - 0xb0, 0x0d, 0x3c, 0x50, 0x87, 0x5e, 0x23, 0xd9, 0xa4, 0xb0, 0x25, 0x61, 0x3d, 0x6b, 0x61, 0x90, - 0x22, 0xe7, 0x4c, 0xba, 0x50, 0x51, 0x5d, 0xc5, 0x72, 0xa9, 0x28, 0x42, 0x8a, 0x76, 0xb4, 0x2b, - 0x92, 0x37, 0x6a, 0x29, 0xee, 0xf7, 0x1c, 0xc8, 0xaf, 0x7f, 0x3c, 0xaa, 0x15, 0x7d, 0x29, 0xf9, - 0xa8, 0x36, 0xdb, 0x49, 0x72, 0x82, 0xde, 0x8c, 0x4f, 0xc1, 0x94, 0x97, 0xa6, 0xb4, 0xd3, 0x15, - 0x81, 0x56, 0xf9, 0xc1, 0x92, 0xe9, 0x8d, 0xa8, 0x1e, 0x34, 0x02, 0x1e, 0x60, 0xd9, 0xec, 0xdc, - 0x17, 0xa0, 0xa2, 0xca, 0xc3, 0xc7, 0x98, 0xc6, 0xa7, 0x32, 0xa5, 0xee, 0x21, 0x86, 0xf2, 0x46, - 0x09, 0x66, 0xaf, 0x84, 0xbd, 0xad, 0x2b, 0x5b, 0xbd, 0xdd, 0x76, 0xe0, 0x5f, 0xa7, 0x07, 0xec, - 0xb9, 0x3d, 0x7a, 0xb0, 0xb6, 0x2a, 0x59, 0xeb, 0xe7, 0xae, 0x33, 0x20, 0x0a, 0x1c, 0x8b, 0x0a, - 0x1a, 0x41, 0xd8, 0xa4, 0x71, 0x37, 0x0e, 0x64, 0x9c, 0x64, 0x45, 0x05, 0x97, 0x0d, 0x0a, 0x6d, - 0x3a, 0xc6, 0x3b, 0xba, 0x1d, 0xd2, 0x38, 0x6f, 0xbc, 0x37, 0x18, 0x10, 0x05, 0x8e, 0x11, 0xa5, - 0x71, 0x2f, 0x49, 0xe5, 0xb9, 0x9f, 0x26, 0xda, 0x61, 0x40, 0x14, 0x38, 0x36, 0x29, 0x49, 0x6f, - 0x97, 0x97, 0x15, 0x72, 0x47, 0x03, 0xdb, 0x02, 0x8c, 0x0a, 0xcf, 0x48, 0xf7, 0xe8, 0xc1, 0x2a, - 0x5b, 0xc1, 0x27, 0xb2, 0xa4, 0xd7, 0x05, 0x18, 0x15, 0xde, 0xbd, 0xeb, 0x00, 0xc9, 0x0e, 0xc7, - 0x23, 0xd8, 0x04, 0xc2, 0xec, 0x26, 0x30, 0x4a, 0xf9, 0x27, 0xab, 0xfb, 0x90, 0xbd, 0xe0, 0x8f, - 0x1c, 0x98, 0xb6, 0x0b, 0x80, 0xa4, 0x99, 0x73, 0x84, 0x1b, 0x59, 0x47, 0xb8, 0x77, 0xb8, 0xf0, - 0xcb, 0x83, 0xee, 0x5a, 0x34, 0x83, 0x34, 0xea, 0x26, 0x1f, 0xa1, 0x61, 0x33, 0x08, 0x29, 0xcf, - 0xae, 0x45, 0xe1, 0x30, 0x53, 0x5d, 0x5c, 0x89, 0xea, 0xf4, 0x01, 0x3c, 0xc9, 0xbd, 0x09, 0x73, - 0x7d, 0x67, 0xb0, 0xc7, 0x30, 0xfa, 0x23, 0x5b, 0x5e, 0xdc, 0x37, 0x1d, 0x98, 0xc9, 0x9c, 0x5f, - 0x17, 0xe4, 0x4a, 0xdc, 0x25, 0x22, 0x5e, 0x35, 0x8e, 0x83, 0x50, 0xe4, 0xb7, 0x15, 0xcb, 0x25, - 0x0c, 0x0a, 0x6d, 0x3a, 0x77, 0x03, 0x78, 0x4a, 0x53, 0x94, 0x43, 0xbf, 0x00, 0x15, 0xc6, 0x8e, - 0x4d, 0x78, 0x51, 0x2c, 0x23, 0xa8, 0xa8, 0xbe, 0x45, 0xe2, 0x42, 0x39, 0xf0, 0x54, 0x4a, 0xa5, - 0x8d, 0x7a, 0x2d, 0x49, 0x7a, 0x7c, 0xb9, 0x62, 0x48, 0xf2, 0x14, 0x94, 0xe9, 0x9d, 0x6e, 0x3e, - 0x77, 0xba, 0x74, 0xa7, 0x1b, 0xc4, 0x34, 0x61, 0x44, 0xf4, 0x4e, 0x97, 0x9c, 0x83, 0x52, 0x50, - 0x97, 0xcb, 0x00, 0x48, 0x9a, 0xd2, 0xda, 0x2a, 0x96, 0x82, 0xba, 0xdb, 0x83, 0xaa, 0x6e, 0x94, - 0x24, 0x2d, 0xe5, 0x1d, 0xce, 0xc8, 0x67, 0x6b, 0x8a, 0xe9, 0x10, 0xbf, 0xe8, 0x01, 0x98, 0x33, - 0xee, 0xa2, 0xac, 0xe2, 0x02, 0x8c, 0xf9, 0x51, 0x9d, 0x4a, 0x73, 0xd0, 0x6c, 0xb8, 0x5b, 0x70, - 0x8c, 0x7b, 0x13, 0x66, 0xaf, 0x87, 0xd1, 0xed, 0x90, 0xad, 0x55, 0x97, 0x03, 0xda, 0xae, 0x33, - 0xc6, 0x0d, 0xf6, 0x23, 0xbf, 0x02, 0x73, 0x2c, 0x0a, 0x9c, 0xee, 0x29, 0x2c, 0x0d, 0xeb, 0x29, - 0x74, 0xbf, 0xe2, 0xc0, 0xe9, 0xfc, 0x99, 0xf6, 0x8f, 0x2d, 0x22, 0xf9, 0x02, 0x53, 0x46, 0x1d, - 0x07, 0xdf, 0xe8, 0x8a, 0x22, 0xfb, 0x73, 0x30, 0xbd, 0xdb, 0x0b, 0xda, 0x75, 0xf9, 0x5f, 0xea, - 0xa3, 0x4f, 0x86, 0x6b, 0x16, 0x0e, 0x33, 0x94, 0xe4, 0x22, 0xc0, 0x6e, 0x10, 0x7a, 0xf1, 0xc1, - 0x96, 0xf1, 0x76, 0x5d, 0xd2, 0xaf, 0x69, 0x0c, 0x5a, 0x54, 0xee, 0x5b, 0x65, 0x30, 0x7d, 0x9b, - 0xa4, 0x21, 0xcf, 0x6d, 0x9c, 0x91, 0xd3, 0x40, 0x96, 0x98, 0x9b, 0xf6, 0xd0, 0x4a, 0xee, 0xd8, - 0xe6, 0x4b, 0x0e, 0x4c, 0xb1, 0xa0, 0x27, 0xf0, 0x52, 0x5a, 0xaf, 0x1d, 0xc8, 0xa8, 0x6a, 0xa3, - 0x88, 0x1a, 0xff, 0x9a, 0x60, 0x1b, 0xc5, 0x66, 0x99, 0x59, 0x33, 0x92, 0xd0, 0x16, 0x4b, 0x3e, - 0x2d, 0xab, 0x32, 0xe5, 0x62, 0x4e, 0xfa, 0x2a, 0xb9, 0x53, 0xbe, 0x0e, 0x8c, 0xc7, 0x34, 0x8d, - 0xd5, 0xd1, 0xea, 0xd5, 0x91, 0xca, 0xc4, 0x69, 0x7c, 0xb0, 0x9d, 0xb2, 0xb0, 0xad, 0x69, 0x6d, - 0x61, 0x1c, 0x8c, 0x42, 0x8a, 0x9b, 0x00, 0xe9, 0x1f, 0x85, 0x13, 0x96, 0x41, 0x96, 0xa0, 0xea, - 0xf5, 0xd2, 0xa8, 0xc3, 0x06, 0x88, 0xcf, 0x4a, 0xc5, 0x2a, 0xf4, 0x28, 0x04, 0x1a, 0x1a, 0xf7, - 0xf5, 0x71, 0xc8, 0x9d, 0xa5, 0x90, 0x9e, 0xdd, 0x64, 0xec, 0x14, 0xd8, 0x64, 0xac, 0x35, 0x19, - 0xd4, 0x68, 0xcc, 0xd2, 0xc6, 0x6e, 0xcb, 0x4b, 0x94, 0x53, 0xbe, 0xa0, 0xc6, 0x68, 0x8b, 0x01, - 0xef, 0x1d, 0x2e, 0xfc, 0xca, 0xf1, 0xb6, 0x6b, 0x66, 0x9f, 0x4b, 0xa2, 0xe1, 0xc2, 0x88, 0xe6, - 0x3c, 0x50, 0xf0, 0xb7, 0x37, 0xec, 0xf2, 0x11, 0xa1, 0xef, 0xe7, 0xc5, 0x09, 0x3b, 0xd2, 0xa4, - 0xd7, 0x4e, 0xa5, 0x19, 0x6c, 0x16, 0xe5, 0x55, 0x82, 0xab, 0x39, 0x6a, 0x17, 0xff, 0xd1, 0x92, - 0x48, 0x3e, 0x09, 0xd5, 0x24, 0xf5, 0xe2, 0xf4, 0x01, 0x4f, 0xeb, 0xf4, 0x80, 0x6f, 0x2b, 0x26, - 0x68, 0xf8, 0x91, 0x97, 0x01, 0x1a, 0x41, 0x18, 0x24, 0xad, 0x07, 0xac, 0x9f, 0x72, 0xc5, 0x2f, - 0x6b, 0x0e, 0x68, 0x71, 0x63, 0x4b, 0x19, 0x37, 0x6a, 0x51, 0xb3, 0xa8, 0xf0, 0x5d, 0x53, 0x2f, - 0x65, 0xa8, 0x31, 0x68, 0x51, 0xb9, 0x9f, 0x87, 0x33, 0xf9, 0x7b, 0x3c, 0x32, 0x74, 0x6f, 0xc6, - 0x51, 0xaf, 0x9b, 0xdf, 0x38, 0xf8, 0x6d, 0x0f, 0x14, 0x38, 0xb6, 0xa0, 0xef, 0x05, 0x61, 0x3d, - 0xbf, 0xa0, 0x5f, 0x0f, 0xc2, 0x3a, 0x72, 0xcc, 0x31, 0x3a, 0xaf, 0xff, 0xc2, 0x81, 0x0b, 0x47, - 0x5d, 0x37, 0x22, 0x4f, 0xc2, 0xd8, 0x6d, 0x2f, 0x0e, 0x65, 0x9f, 0x25, 0x5f, 0x31, 0x6e, 0x7a, - 0x71, 0x88, 0x1c, 0x4a, 0xf6, 0x61, 0x42, 0xf4, 0x23, 0xc8, 0xb0, 0x77, 0xb3, 0xc0, 0x9b, 0x4f, - 0x2c, 0xf6, 0xd5, 0xd9, 0x9c, 0x68, 0x84, 0x40, 0x29, 0xcd, 0xbd, 0x06, 0xe4, 0xc6, 0x3e, 0x8d, - 0xe3, 0xa0, 0x6e, 0x75, 0x4f, 0x90, 0x67, 0x61, 0xfa, 0xd6, 0xf6, 0x8d, 0xcd, 0xad, 0x28, 0x08, - 0x79, 0x37, 0x99, 0x75, 0x96, 0x77, 0xcd, 0x82, 0x63, 0x86, 0xca, 0xfd, 0x76, 0x09, 0xa6, 0xac, - 0x5b, 0x71, 0xc7, 0x88, 0x19, 0x72, 0xb7, 0xf8, 0x4a, 0xc7, 0xbc, 0xc5, 0xf7, 0x34, 0x54, 0xba, - 0x51, 0x3b, 0xf0, 0x03, 0xdd, 0xe4, 0x35, 0xcd, 0xcb, 0xb5, 0x12, 0x86, 0x1a, 0x4b, 0x52, 0xa8, - 0xea, 0xab, 0x2e, 0xf2, 0xd8, 0xbe, 0x90, 0x90, 0x49, 0xfb, 0x87, 0xb9, 0xc2, 0x62, 0x04, 0x11, - 0x17, 0x26, 0xb8, 0x71, 0x89, 0xe3, 0x7a, 0x79, 0xa8, 0xc9, 0xad, 0x2e, 0x41, 0x89, 0x71, 0x7f, - 0x50, 0x82, 0x2a, 0xd2, 0x6e, 0xb4, 0x12, 0xd3, 0x7a, 0x42, 0xde, 0x07, 0xe5, 0x5e, 0xdc, 0x96, - 0x23, 0x35, 0x25, 0x99, 0x97, 0x5f, 0xc4, 0x75, 0x64, 0xf0, 0xcc, 0x52, 0x5e, 0x3a, 0x51, 0x45, - 0xbb, 0x7c, 0x64, 0x45, 0xfb, 0x79, 0x98, 0x49, 0x92, 0xd6, 0x56, 0x1c, 0xec, 0x7b, 0x29, 0x33, - 0x15, 0x99, 0x67, 0x9a, 0x32, 0xe7, 0xf6, 0x55, 0x83, 0xc4, 0x2c, 0x2d, 0xb9, 0x02, 0x73, 0xa6, - 0xb4, 0x4c, 0xe3, 0x94, 0xa7, 0x95, 0x22, 0x03, 0xd5, 0x85, 0x46, 0x53, 0x8c, 0x96, 0x04, 0xd8, - 0xff, 0x0c, 0x59, 0x85, 0xd3, 0x19, 0x20, 0x53, 0x44, 0xa4, 0xa7, 0xf3, 0x92, 0xcf, 0xe9, 0x0c, - 0x1f, 0xa6, 0x4b, 0xdf, 0x13, 0xee, 0xdb, 0x0e, 0xcc, 0xe8, 0x41, 0x7d, 0x04, 0xb9, 0x6a, 0x90, - 0xcd, 0x55, 0x57, 0x47, 0xda, 0xe7, 0xa5, 0xda, 0x43, 0xc2, 0xf1, 0x3f, 0x9c, 0x00, 0xe0, 0x17, - 0x71, 0x03, 0xde, 0x16, 0x72, 0x01, 0xc6, 0x62, 0xda, 0x8d, 0xf2, 0xbe, 0xc5, 0x28, 0x90, 0x63, - 0xde, 0xbd, 0x36, 0x33, 0xa8, 0xce, 0x3f, 0xfe, 0x63, 0xac, 0xf3, 0x6f, 0xc3, 0xd9, 0x20, 0x4c, - 0xa8, 0xdf, 0x8b, 0xe5, 0x12, 0x78, 0x35, 0x4a, 0xb4, 0xfd, 0x55, 0x6a, 0xef, 0x93, 0x8c, 0xce, - 0xae, 0x0d, 0x22, 0xc2, 0xc1, 0xcf, 0xb2, 0xf1, 0x54, 0x08, 0xbe, 0x41, 0x56, 0xac, 0xf4, 0x50, - 0xc2, 0x51, 0x53, 0xb0, 0xe0, 0x8b, 0x86, 0xde, 0x6e, 0x9b, 0xae, 0x37, 0x12, 0xbe, 0xe7, 0x59, - 0xc1, 0xd7, 0x25, 0x81, 0xb8, 0xbc, 0x8d, 0x86, 0x66, 0xb0, 0xdf, 0x55, 0x0b, 0xf2, 0x3b, 0x38, - 0xa9, 0xdf, 0xe9, 0xec, 0x6b, 0x6a, 0xe8, 0x8d, 0x2e, 0xb5, 0x17, 0x4c, 0x0f, 0xdd, 0x0b, 0x3e, - 0x0e, 0xb3, 0x41, 0xd8, 0xa2, 0x71, 0x90, 0xd2, 0x3a, 0x77, 0x84, 0xf9, 0x19, 0x3e, 0x10, 0xfa, - 0xa4, 0x72, 0x2d, 0x83, 0xc5, 0x1c, 0xb5, 0xfb, 0x7a, 0x09, 0xce, 0x1a, 0x07, 0x61, 0x9a, 0x05, - 0x0d, 0x66, 0x25, 0xbc, 0xf3, 0x58, 0x1c, 0xce, 0x58, 0x1f, 0x64, 0xd0, 0x21, 0xc5, 0xb6, 0xc6, - 0xa0, 0x45, 0xc5, 0xe6, 0xcf, 0xa7, 0x31, 0xef, 0x8a, 0xc8, 0x7b, 0xcf, 0x8a, 0x84, 0xa3, 0xa6, - 0xe0, 0xdf, 0x7c, 0xa0, 0x71, 0x2a, 0x6b, 0x6d, 0xf9, 0x53, 0xc1, 0x15, 0x83, 0x42, 0x9b, 0x8e, - 0xed, 0x63, 0xbe, 0x9a, 0x3c, 0xe6, 0x41, 0xd3, 0x62, 0x1f, 0xd3, 0xf3, 0xa5, 0xb1, 0x4a, 0x1d, - 0x7e, 0x9a, 0x34, 0xde, 0xaf, 0x0e, 0x4f, 0x3d, 0x34, 0x85, 0xfb, 0x5f, 0x0e, 0xbc, 0x77, 0xe0, - 0x50, 0x3c, 0x82, 0x25, 0xb1, 0x97, 0x5d, 0x12, 0xb7, 0x46, 0x5c, 0x12, 0xfb, 0x5e, 0x61, 0xc8, - 0xf2, 0xf8, 0x0f, 0x0e, 0xcc, 0x1a, 0xfa, 0x47, 0xf0, 0x9e, 0x8d, 0xe2, 0x3e, 0xe0, 0x60, 0xf4, - 0xae, 0x55, 0xfb, 0x5e, 0xec, 0x6d, 0xfe, 0x62, 0x22, 0x90, 0x5b, 0xf6, 0xd5, 0xfd, 0xc9, 0x23, - 0xe2, 0xaa, 0x7d, 0x98, 0xe0, 0x8d, 0xf9, 0x49, 0x01, 0xd1, 0x64, 0x56, 0x38, 0x2f, 0x9d, 0x98, - 0x68, 0x92, 0xff, 0x4d, 0x50, 0x4a, 0xe3, 0xed, 0x3a, 0x41, 0xc2, 0x16, 0xa9, 0xba, 0x2c, 0xf1, - 0x98, 0x76, 0x1d, 0x09, 0x47, 0x4d, 0xe1, 0x76, 0x60, 0x3e, 0xcb, 0x7c, 0x95, 0x36, 0x78, 0x92, - 0x7e, 0xac, 0x77, 0x64, 0x09, 0x2b, 0x7f, 0x6a, 0xbd, 0xe7, 0xe5, 0x6f, 0x50, 0x2e, 0x2b, 0x04, - 0x1a, 0x1a, 0xf7, 0x4f, 0x1d, 0x38, 0x33, 0xe0, 0x65, 0x0a, 0x2c, 0x6d, 0xa5, 0xc6, 0xf9, 0x87, - 0xdc, 0x6a, 0xad, 0xd3, 0x86, 0xa7, 0x12, 0x42, 0x2b, 0x7d, 0x5c, 0x15, 0x60, 0x54, 0x78, 0xf7, - 0x3f, 0x1c, 0x38, 0x95, 0xd5, 0x35, 0x21, 0xd7, 0x80, 0x88, 0x97, 0x59, 0x0d, 0x12, 0x3f, 0xda, - 0xa7, 0xf1, 0x01, 0x7b, 0x73, 0xa1, 0xf5, 0x39, 0xc9, 0x89, 0x2c, 0xf7, 0x51, 0xe0, 0x80, 0xa7, - 0xc8, 0x57, 0xf8, 0x59, 0xa1, 0x1a, 0x6d, 0x65, 0x26, 0xdb, 0x85, 0x99, 0x89, 0x99, 0x49, 0x3b, - 0x9c, 0xd7, 0xf2, 0xd0, 0x16, 0xee, 0xfe, 0xa8, 0x0c, 0xd3, 0xea, 0x71, 0x9e, 0x7e, 0x14, 0x94, - 0xb8, 0x65, 0xee, 0xd8, 0x96, 0x4f, 0x70, 0xc7, 0x76, 0xec, 0x7e, 0x09, 0x8b, 0xb8, 0xf3, 0x69, - 0xc2, 0x16, 0x6b, 0xa1, 0xdf, 0x31, 0x28, 0xb4, 0xe9, 0x98, 0x26, 0xed, 0x60, 0x9f, 0x8a, 0x87, - 0x26, 0xb2, 0x9a, 0xac, 0x2b, 0x04, 0x1a, 0x1a, 0xa6, 0x49, 0x3d, 0x68, 0x34, 0x78, 0xe8, 0x60, - 0x69, 0xc2, 0x46, 0x07, 0x39, 0x86, 0x51, 0xb4, 0xa2, 0x68, 0x4f, 0x46, 0x0b, 0x9a, 0xe2, 0x6a, - 0x14, 0xed, 0x21, 0xc7, 0x90, 0x0d, 0x38, 0x13, 0x46, 0x71, 0xc7, 0x6b, 0x07, 0xaf, 0xd1, 0xba, - 0x96, 0x22, 0xa3, 0x84, 0x9f, 0x92, 0x0f, 0x9c, 0xd9, 0xec, 0x27, 0xc1, 0x41, 0xcf, 0x31, 0xf3, - 0xeb, 0xc6, 0xb4, 0x1e, 0xf8, 0xa9, 0xcd, 0x0d, 0xb2, 0xe6, 0xb7, 0xd5, 0x47, 0x81, 0x03, 0x9e, - 0x72, 0xff, 0x93, 0x6f, 0x50, 0x43, 0x9a, 0xf6, 0x1f, 0x59, 0xde, 0x9e, 0x35, 0x90, 0xb1, 0x63, - 0x18, 0x08, 0xcb, 0x8b, 0x93, 0x28, 0xd4, 0x79, 0xf1, 0xf8, 0xd0, 0xbc, 0xd8, 0xa2, 0x72, 0xbf, - 0x37, 0x0e, 0x4f, 0xe8, 0x6e, 0x4f, 0x9a, 0xde, 0x8e, 0xe2, 0xbd, 0x20, 0x6c, 0xf2, 0x63, 0x8e, - 0x6f, 0x38, 0x30, 0x2d, 0x0c, 0x45, 0x5e, 0x3b, 0x12, 0x65, 0x7d, 0xbf, 0x88, 0xbe, 0xd2, 0x8c, - 0xa4, 0xc5, 0x1d, 0x4b, 0x4a, 0xee, 0xca, 0x91, 0x8d, 0xc2, 0x8c, 0x3a, 0xe4, 0x35, 0x00, 0x75, - 0xc7, 0xb9, 0x51, 0xc4, 0x35, 0x6f, 0xa5, 0x1c, 0xd2, 0x86, 0x09, 0xc1, 0x76, 0xb4, 0x04, 0xb4, - 0xa4, 0x91, 0x2f, 0x3b, 0x30, 0xd1, 0x16, 0xa3, 0x22, 0xca, 0xb4, 0x9f, 0x2e, 0x7e, 0x54, 0xec, - 0xf1, 0xd0, 0x9b, 0x9a, 0x1c, 0x09, 0x29, 0x9c, 0x20, 0x4c, 0x06, 0x61, 0x33, 0xa6, 0x89, 0xaa, - 0x20, 0x7c, 0xd0, 0x0a, 0x23, 0x16, 0xfd, 0x28, 0xa6, 0x3c, 0x68, 0x88, 0xbc, 0x7a, 0xcd, 0x6b, - 0x7b, 0xa1, 0x4f, 0xe3, 0x35, 0x41, 0x6e, 0xd6, 0x77, 0x09, 0x40, 0xc5, 0xa8, 0xaf, 0x59, 0x7a, - 0xfc, 0x38, 0xcd, 0xd2, 0xe7, 0x3e, 0x01, 0x73, 0x7d, 0xd3, 0x78, 0x92, 0x5b, 0x5d, 0xe7, 0x3e, - 0x0a, 0x53, 0x0f, 0x7a, 0x21, 0xec, 0xcf, 0x26, 0xcc, 0x22, 0xbd, 0x19, 0xd5, 0x79, 0x97, 0x70, - 0x6c, 0x66, 0x53, 0x46, 0x58, 0x45, 0xd9, 0x86, 0x75, 0x1f, 0x56, 0x03, 0xd1, 0x96, 0xc7, 0x2c, - 0xb3, 0xeb, 0xc5, 0x34, 0x7c, 0xa8, 0x96, 0xb9, 0xa5, 0x25, 0xa0, 0x25, 0x8d, 0xd0, 0xcc, 0xe9, - 0xc1, 0xca, 0x88, 0xa7, 0x07, 0x2c, 0xdc, 0x1b, 0x78, 0x57, 0xe8, 0x4d, 0x07, 0x66, 0xc3, 0x8c, - 0xbd, 0xca, 0x42, 0xf2, 0x0b, 0x85, 0x3b, 0x82, 0xb8, 0x1a, 0x91, 0x85, 0x61, 0x4e, 0x38, 0x59, - 0x86, 0x53, 0x6a, 0x06, 0xb2, 0xdd, 0xba, 0x3a, 0xd7, 0xc6, 0x2c, 0x1a, 0xf3, 0xf4, 0x56, 0xbb, - 0xff, 0xc4, 0xb0, 0x76, 0x7f, 0xb2, 0xa7, 0x6f, 0xf6, 0x4c, 0x16, 0x7b, 0xb3, 0x07, 0x06, 0xdc, - 0xea, 0xb9, 0x09, 0x55, 0x3f, 0xa6, 0x5e, 0xfa, 0x80, 0xb7, 0x3d, 0xf8, 0x57, 0x01, 0x56, 0x14, - 0x03, 0x34, 0xbc, 0xdc, 0xaf, 0x97, 0xe1, 0xb4, 0x1a, 0x0e, 0x55, 0x61, 0x65, 0x1b, 0x8e, 0x90, - 0x6b, 0x22, 0x37, 0xbd, 0xe1, 0x5c, 0x55, 0x08, 0x34, 0x34, 0x2c, 0x64, 0x14, 0xd1, 0x5b, 0x92, - 0x3f, 0x71, 0x90, 0x51, 0x21, 0x2a, 0x3c, 0xf9, 0xfa, 0xc0, 0xcb, 0x75, 0x05, 0x9c, 0xaf, 0xf5, - 0x95, 0x87, 0x4f, 0x78, 0xab, 0xee, 0x0d, 0x07, 0x4e, 0xed, 0x65, 0x8e, 0x74, 0xd5, 0x42, 0x3a, - 0x4a, 0x6f, 0x47, 0xf6, 0x90, 0xd8, 0x98, 0x60, 0x16, 0x9e, 0x60, 0x5e, 0xb4, 0xfb, 0xdf, 0x0e, - 0xd8, 0xab, 0xca, 0xf1, 0xa2, 0x0d, 0xeb, 0xea, 0x6d, 0xe9, 0xfe, 0x57, 0x6f, 0x75, 0x60, 0x52, - 0x3e, 0x5e, 0x5c, 0x3a, 0x76, 0x82, 0xb8, 0x74, 0x7c, 0x68, 0x24, 0xf3, 0x3e, 0x28, 0xf7, 0x82, - 0xba, 0x0c, 0x2d, 0x4d, 0xfd, 0x78, 0x6d, 0x15, 0x19, 0xdc, 0xfd, 0xcb, 0x71, 0x93, 0x44, 0xca, - 0x03, 0xa2, 0x9f, 0x88, 0xd7, 0x6e, 0xe8, 0x56, 0x1d, 0xf1, 0xe6, 0x9b, 0x7d, 0xad, 0x3a, 0xbf, - 0x74, 0xf2, 0xb3, 0x3f, 0x31, 0x40, 0xc3, 0x3a, 0x75, 0x26, 0x8f, 0x38, 0xf8, 0xbb, 0x05, 0x15, - 0x16, 0x7d, 0xf3, 0x3a, 0x50, 0x25, 0xa3, 0x54, 0xe5, 0xaa, 0x84, 0xdf, 0x3b, 0x5c, 0xf8, 0xd8, - 0xc9, 0xd5, 0x52, 0x4f, 0xa3, 0xe6, 0x4f, 0x12, 0xa8, 0xb2, 0xdf, 0xfc, 0x8c, 0x52, 0xc6, 0xf5, - 0x2f, 0xea, 0xe5, 0x44, 0x21, 0x0a, 0x39, 0x00, 0x35, 0x72, 0x48, 0x08, 0x55, 0x7e, 0xa5, 0x97, - 0x0b, 0x15, 0xe1, 0xff, 0x96, 0x3e, 0x2d, 0x54, 0x88, 0x7b, 0x87, 0x0b, 0xcf, 0x9f, 0x5c, 0xa8, - 0x7e, 0x1c, 0x8d, 0x08, 0xf7, 0x9d, 0xb2, 0xb1, 0x5d, 0xd9, 0xa1, 0xf5, 0x13, 0x61, 0xbb, 0xcf, - 0xe5, 0x6c, 0xf7, 0x42, 0x9f, 0xed, 0xce, 0x9a, 0x2b, 0xb0, 0x19, 0x6b, 0x7c, 0xa4, 0x1b, 0xe4, - 0xd1, 0x79, 0x26, 0x0f, 0x0b, 0x5e, 0xed, 0x05, 0x31, 0x4d, 0xb6, 0xe2, 0x5e, 0x18, 0x84, 0x4d, - 0x6e, 0x8b, 0x15, 0x3b, 0x2c, 0xc8, 0xa0, 0x31, 0x4f, 0xef, 0x7e, 0x9b, 0x9f, 0xdb, 0x58, 0x8d, - 0x0e, 0x6c, 0x8a, 0xdb, 0xfc, 0x62, 0xb4, 0xe8, 0xad, 0xd2, 0x53, 0x2c, 0x6e, 0x43, 0x0b, 0x1c, - 0x49, 0x61, 0x72, 0x57, 0x5c, 0x14, 0x2b, 0xa0, 0x3b, 0x57, 0x5e, 0x39, 0xe3, 0x97, 0x7b, 0xd4, - 0xfd, 0xb3, 0x7b, 0xe6, 0x27, 0x2a, 0x51, 0xee, 0x1f, 0x94, 0xe1, 0x54, 0xee, 0xfe, 0x2e, 0xf9, - 0x30, 0x54, 0xd4, 0x05, 0xed, 0x7c, 0xb9, 0x58, 0x7f, 0x2d, 0x4a, 0x53, 0x90, 0xcf, 0x00, 0xd4, - 0x69, 0xb7, 0x1d, 0x1d, 0xf0, 0xa8, 0x63, 0xec, 0xc4, 0x51, 0x87, 0x8e, 0x4f, 0x57, 0x35, 0x17, - 0xb4, 0x38, 0xca, 0x6e, 0xb2, 0x71, 0x71, 0x07, 0x2e, 0xdb, 0x4d, 0x66, 0xf5, 0xa6, 0x4f, 0x3c, - 0xc2, 0xde, 0xf4, 0x00, 0x4e, 0x09, 0xfd, 0x74, 0x3f, 0xc1, 0x03, 0xb4, 0x0d, 0x9c, 0x61, 0xb6, - 0xb4, 0x9a, 0x65, 0x83, 0x79, 0xbe, 0xee, 0x57, 0x4b, 0x2c, 0xf0, 0x12, 0x23, 0xbd, 0xa1, 0xaa, - 0xb5, 0x1f, 0x80, 0x09, 0xaf, 0x97, 0xb6, 0xa2, 0xbe, 0x2b, 0x7b, 0xcb, 0x1c, 0x8a, 0x12, 0x4b, - 0xd6, 0x61, 0xac, 0xee, 0xa5, 0xea, 0xdb, 0x86, 0x27, 0x51, 0xce, 0xd4, 0x68, 0xbc, 0x94, 0x22, - 0xe7, 0x42, 0x9e, 0x84, 0xb1, 0xd4, 0x6b, 0x66, 0x3e, 0x02, 0xb3, 0xe3, 0x35, 0x13, 0xe4, 0x50, - 0x7b, 0x53, 0x19, 0x3b, 0x62, 0x53, 0x79, 0xde, 0xfa, 0xde, 0xa6, 0x75, 0x06, 0xd0, 0xff, 0x99, - 0x4c, 0x1e, 0xb7, 0x67, 0x69, 0xdd, 0x9f, 0x83, 0x69, 0xfb, 0x33, 0x9a, 0xc7, 0xea, 0x68, 0x76, - 0xff, 0x65, 0x0c, 0x66, 0x32, 0x3d, 0x27, 0x19, 0x13, 0x77, 0x8e, 0x34, 0xf1, 0xa7, 0x60, 0xbc, - 0x1b, 0xf7, 0x42, 0x2a, 0x5b, 0x89, 0xb4, 0x10, 0xe6, 0xf1, 0x14, 0x05, 0x8e, 0xcd, 0x4a, 0x3d, - 0x3e, 0xc0, 0x5e, 0x28, 0x8b, 0xc5, 0x7a, 0x56, 0x56, 0x39, 0x14, 0x25, 0x96, 0x7c, 0x0e, 0xa6, - 0x13, 0xbe, 0x14, 0x8a, 0xc5, 0x41, 0x7a, 0xcc, 0x95, 0x91, 0x3f, 0x2e, 0x20, 0x9b, 0xaa, 0x78, - 0xda, 0x6d, 0x43, 0x30, 0x23, 0x8e, 0x7c, 0xd1, 0xb1, 0x3f, 0xa8, 0x30, 0x31, 0xf2, 0xb9, 0x46, - 0xbe, 0x97, 0x47, 0xb8, 0xce, 0xfd, 0xbf, 0xab, 0xd0, 0xd5, 0x6e, 0x3b, 0xf9, 0x10, 0xdc, 0x16, - 0x06, 0xb8, 0xec, 0x87, 0xa0, 0xda, 0xf1, 0xc2, 0xa0, 0x41, 0x93, 0x54, 0x7c, 0xf2, 0xb6, 0x2a, - 0xb2, 0x9d, 0x0d, 0x05, 0x44, 0x83, 0xe7, 0xdf, 0x93, 0xe6, 0x6f, 0x25, 0x72, 0x95, 0xaa, 0xf5, - 0x3d, 0x69, 0x03, 0x46, 0x9b, 0xc6, 0xfd, 0x8e, 0x03, 0x67, 0x07, 0x8e, 0xc4, 0xbb, 0xb7, 0xfe, - 0xe7, 0x7e, 0xa7, 0x04, 0x67, 0x06, 0x74, 0x62, 0x91, 0xfd, 0x87, 0xf3, 0xc5, 0x0d, 0xd9, 0xe7, - 0x35, 0x33, 0xd4, 0x2a, 0x4e, 0xb6, 0xed, 0x98, 0xa5, 0xbf, 0xfc, 0xe8, 0x96, 0x7e, 0xf7, 0x4f, - 0x4a, 0x60, 0x7d, 0x0f, 0x86, 0xfc, 0x9a, 0xdd, 0x67, 0xe8, 0x14, 0xd2, 0x17, 0x27, 0x38, 0xeb, - 0x26, 0x45, 0x31, 0x5e, 0x83, 0x7a, 0x16, 0xf3, 0x66, 0x5a, 0x3a, 0xda, 0x4c, 0x49, 0xa0, 0x5a, - 0x39, 0xcb, 0x05, 0xb7, 0x72, 0x56, 0xfb, 0xda, 0x38, 0x5b, 0xc2, 0xb8, 0x72, 0xaf, 0x63, 0x96, - 0x52, 0xe7, 0x3e, 0x4b, 0xe9, 0x87, 0xa1, 0x92, 0xd0, 0x76, 0x83, 0x05, 0x6f, 0x72, 0xc9, 0xd5, - 0x96, 0xb0, 0x2d, 0xe1, 0xa8, 0x29, 0xdc, 0x1f, 0x39, 0x62, 0x4e, 0x64, 0x3c, 0xfd, 0x5c, 0xee, - 0xc6, 0xc3, 0xf1, 0x43, 0xd1, 0x03, 0x00, 0x5f, 0xdf, 0x7b, 0x2b, 0xe0, 0xa3, 0x2f, 0xe6, 0x12, - 0x9d, 0xfd, 0x49, 0x12, 0x05, 0x43, 0x4b, 0x58, 0xc6, 0xf6, 0xcb, 0x47, 0xd9, 0xbe, 0xfb, 0xef, - 0x0e, 0x64, 0x96, 0x78, 0xd2, 0x81, 0x71, 0xa6, 0xc1, 0x41, 0x01, 0x57, 0xf4, 0x6c, 0xbe, 0xcc, - 0x2f, 0xe4, 0xdc, 0xf2, 0x9f, 0x28, 0xa4, 0x90, 0x40, 0x86, 0xd1, 0xa5, 0x91, 0xaf, 0x82, 0xda, - 0xd2, 0x58, 0x14, 0x2e, 0xbf, 0x0a, 0xaa, 0xe3, 0x71, 0xf7, 0x39, 0x98, 0xeb, 0xd3, 0x88, 0x37, - 0xd1, 0x47, 0xea, 0x46, 0xa2, 0x65, 0x44, 0xfc, 0x22, 0x06, 0x0a, 0x1c, 0x0b, 0xc3, 0x4f, 0xe7, - 0xd9, 0x93, 0xdf, 0x73, 0x60, 0x2e, 0xc9, 0xf3, 0x7b, 0x28, 0xa3, 0xa6, 0xcb, 0x4a, 0x7d, 0x28, - 0xec, 0xd7, 0xc0, 0xfd, 0x3b, 0xb9, 0xae, 0x88, 0x4f, 0xa5, 0xeb, 0xfd, 0xc0, 0x19, 0xba, 0x1f, - 0x30, 0x17, 0xf1, 0x5b, 0xb4, 0xde, 0x6b, 0xf7, 0xb5, 0x74, 0x6c, 0x4b, 0x38, 0x6a, 0x8a, 0xcc, - 0x97, 0x27, 0xca, 0x47, 0x7e, 0x79, 0xe2, 0x59, 0x98, 0xb6, 0x2f, 0xcf, 0xf2, 0xfa, 0x96, 0xac, - 0xe7, 0xdb, 0xf7, 0x6c, 0x31, 0x43, 0x95, 0xfb, 0x7e, 0xc1, 0xf8, 0x91, 0xdf, 0x2f, 0x78, 0x1a, - 0x2a, 0xf2, 0xe3, 0xe3, 0xaa, 0x7e, 0x2a, 0xfa, 0x45, 0x24, 0x0c, 0x35, 0x96, 0x5c, 0x04, 0xe8, - 0x78, 0x61, 0xcf, 0x6b, 0xb3, 0x11, 0x92, 0x0d, 0x48, 0xda, 0xa1, 0x36, 0x34, 0x06, 0x2d, 0x2a, - 0xe6, 0x22, 0xf9, 0x8b, 0xe3, 0x99, 0x36, 0x26, 0xe7, 0xc8, 0x36, 0xa6, 0x6c, 0xa3, 0x4d, 0xe9, - 0x58, 0x8d, 0x36, 0x76, 0x0f, 0x4c, 0xf9, 0xbe, 0x3d, 0x30, 0xef, 0x37, 0x17, 0xd7, 0x44, 0xb3, - 0xcc, 0xd4, 0xa0, 0x4b, 0x6b, 0xc4, 0x85, 0x09, 0xdf, 0xd3, 0x7d, 0x88, 0xd3, 0x22, 0xb6, 0x59, - 0x59, 0xe6, 0x44, 0x12, 0x53, 0x5b, 0x7c, 0xeb, 0x9d, 0xf3, 0x8f, 0x7d, 0xff, 0x9d, 0xf3, 0x8f, - 0xbd, 0xfd, 0xce, 0xf9, 0xc7, 0xbe, 0x70, 0xf7, 0xbc, 0xf3, 0xd6, 0xdd, 0xf3, 0xce, 0xf7, 0xef, - 0x9e, 0x77, 0xde, 0xbe, 0x7b, 0xde, 0xf9, 0xd7, 0xbb, 0xe7, 0x9d, 0xdf, 0xf9, 0xe1, 0xf9, 0xc7, - 0x5e, 0xae, 0x28, 0x5b, 0xfd, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x85, 0x96, 0x53, 0x5d, - 0x67, 0x00, 0x00, + // 5899 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0x5d, 0x6c, 0x24, 0xd9, + 0x55, 0xf0, 0x56, 0xb7, 0x7f, 0xba, 0x8f, 0x7f, 0x66, 0x7c, 0x67, 0x67, 0xe3, 0xcc, 0xb7, 0x19, + 0x8f, 0x6a, 0x95, 0x64, 0x3f, 0x92, 0xd8, 0xec, 0xb0, 0xc0, 0x26, 0x0b, 0x09, 0x6e, 0x7b, 0x7e, + 0x3c, 0x63, 0x7b, 0xbc, 0xc7, 0xde, 0x1d, 0x69, 0xf3, 0xc3, 0x96, 0xab, 0x6f, 0x77, 0xd7, 0xb8, + 0xbb, 0xaa, 0xb7, 0xaa, 0xda, 0x33, 0x5e, 0x92, 0x90, 0x40, 0x82, 0x56, 0x61, 0x37, 0x42, 0x44, + 0xe4, 0x05, 0x82, 0x12, 0x78, 0x40, 0x44, 0xe2, 0x21, 0x42, 0x42, 0xf0, 0x1a, 0x24, 0x58, 0xf1, + 0x80, 0xa2, 0x08, 0xc1, 0x0a, 0x21, 0xc3, 0x3a, 0x42, 0x42, 0xf0, 0x10, 0x10, 0x3c, 0xcd, 0x13, + 0xba, 0xff, 0xb7, 0xaa, 0xbb, 0xc7, 0xf6, 0x74, 0xed, 0x24, 0x0a, 0x6f, 0xdd, 0xf7, 0x9c, 0x3a, + 0xe7, 0xd4, 0xbd, 0xe7, 0x9c, 0x7b, 0xce, 0xb9, 0xe7, 0x16, 0xac, 0x35, 0x83, 0xb4, 0xd5, 0xdb, + 0x5d, 0xf4, 0xa3, 0xce, 0x92, 0x17, 0x37, 0xa3, 0x6e, 0x1c, 0xdd, 0xe1, 0x3f, 0x3e, 0xe2, 0xd7, + 0x97, 0xba, 0x7b, 0xcd, 0x25, 0xaf, 0x1b, 0x24, 0x4b, 0x5e, 0xb7, 0xdb, 0x0e, 0x7c, 0x2f, 0x0d, + 0xa2, 0x70, 0x69, 0xff, 0x19, 0xaf, 0xdd, 0x6d, 0x79, 0xcf, 0x2c, 0x35, 0x69, 0x48, 0x63, 0x2f, + 0xa5, 0xf5, 0xc5, 0x6e, 0x1c, 0xa5, 0x11, 0xf9, 0xa8, 0x21, 0xb5, 0xa8, 0x48, 0xf1, 0x1f, 0xbf, + 0xec, 0xd7, 0x17, 0xbb, 0x7b, 0xcd, 0x45, 0x46, 0x6a, 0xd1, 0x22, 0xb5, 0xa8, 0x48, 0x5d, 0xf8, + 0x88, 0x25, 0x45, 0x33, 0x6a, 0x46, 0x4b, 0x9c, 0xe2, 0x6e, 0xaf, 0xc1, 0xff, 0xf1, 0x3f, 0xfc, + 0x97, 0xe0, 0x74, 0xc1, 0xdd, 0x7b, 0x2e, 0x59, 0x0c, 0x22, 0x26, 0xdb, 0x92, 0x1f, 0xc5, 0x74, + 0x69, 0xbf, 0x4f, 0x9a, 0x0b, 0xcf, 0x1a, 0x9c, 0x8e, 0xe7, 0xb7, 0x82, 0x90, 0xc6, 0x07, 0xe6, + 0x85, 0x3a, 0x34, 0xf5, 0x06, 0x3d, 0xb5, 0x34, 0xec, 0xa9, 0xb8, 0x17, 0xa6, 0x41, 0x87, 0xf6, + 0x3d, 0xf0, 0x73, 0xc7, 0x3d, 0x90, 0xf8, 0x2d, 0xda, 0xf1, 0xf2, 0xcf, 0xb9, 0xaf, 0xc2, 0xcc, + 0xf2, 0xed, 0xed, 0xe5, 0x5e, 0xda, 0x5a, 0x89, 0xc2, 0x46, 0xd0, 0x24, 0x3f, 0x0b, 0x53, 0x7e, + 0xbb, 0x97, 0xa4, 0x34, 0xde, 0xf4, 0x3a, 0x74, 0xde, 0xb9, 0xe4, 0x3c, 0x5d, 0xad, 0x9d, 0x7b, + 0xeb, 0x70, 0xe1, 0xb1, 0xa3, 0xc3, 0x85, 0xa9, 0x15, 0x03, 0x42, 0x1b, 0x8f, 0xfc, 0x7f, 0x98, + 0x8c, 0xa3, 0x36, 0x5d, 0xc6, 0xcd, 0xf9, 0x12, 0x7f, 0xe4, 0x8c, 0x7c, 0x64, 0x12, 0xc5, 0x30, + 0x2a, 0xb8, 0xfb, 0xbd, 0x12, 0xc0, 0x72, 0xb7, 0xbb, 0x15, 0x47, 0x77, 0xa8, 0x9f, 0x92, 0x57, + 0xa0, 0xc2, 0x66, 0xa1, 0xee, 0xa5, 0x1e, 0xe7, 0x36, 0x75, 0xf9, 0xa7, 0x17, 0xc5, 0xcb, 0x2c, + 0xda, 0x2f, 0x63, 0x56, 0x8e, 0x61, 0x2f, 0xee, 0x3f, 0xb3, 0x78, 0x6b, 0x97, 0x3d, 0xbf, 0x41, + 0x53, 0xaf, 0x46, 0x24, 0x33, 0x30, 0x63, 0xa8, 0xa9, 0x92, 0x3d, 0x18, 0x4b, 0xba, 0xd4, 0xe7, + 0x82, 0x4d, 0x5d, 0x5e, 0x5b, 0x7c, 0x68, 0xfd, 0x58, 0x34, 0x62, 0x6f, 0x77, 0xa9, 0x5f, 0x9b, + 0x96, 0x6c, 0xc7, 0xd8, 0x3f, 0xe4, 0x4c, 0x48, 0x02, 0x13, 0x49, 0xea, 0xa5, 0xbd, 0x64, 0xbe, + 0xcc, 0xd9, 0xdd, 0x2c, 0x86, 0x1d, 0x27, 0x59, 0x9b, 0x95, 0x0c, 0x27, 0xc4, 0x7f, 0x94, 0xac, + 0xdc, 0x7f, 0x74, 0x60, 0xd6, 0x20, 0xaf, 0x07, 0x49, 0x4a, 0x3e, 0xd5, 0x37, 0xad, 0x8b, 0x27, + 0x9b, 0x56, 0xf6, 0x34, 0x9f, 0xd4, 0xb3, 0x92, 0x59, 0x45, 0x8d, 0x58, 0x53, 0x7a, 0x07, 0xc6, + 0x83, 0x94, 0x76, 0x92, 0xf9, 0xd2, 0xa5, 0xf2, 0xd3, 0x53, 0x97, 0xaf, 0x14, 0xf2, 0x92, 0xb5, + 0x19, 0xc9, 0x71, 0x7c, 0x8d, 0xd1, 0x46, 0xc1, 0xc2, 0xfd, 0x57, 0xb0, 0x5f, 0x8e, 0x4d, 0x35, + 0x79, 0x06, 0xa6, 0x92, 0xa8, 0x17, 0xfb, 0x14, 0x69, 0x37, 0x4a, 0xe6, 0x9d, 0x4b, 0x65, 0xa6, + 0x71, 0x4c, 0x41, 0xb7, 0xcd, 0x30, 0xda, 0x38, 0xe4, 0x37, 0x1d, 0x98, 0xae, 0xd3, 0x24, 0x0d, + 0x42, 0xce, 0x5f, 0x49, 0xfe, 0xc2, 0x68, 0x92, 0xab, 0xc1, 0x55, 0x43, 0xb9, 0xf6, 0xb8, 0x7c, + 0x8b, 0x69, 0x6b, 0x30, 0xc1, 0x0c, 0x73, 0x66, 0x65, 0x75, 0x9a, 0xf8, 0x71, 0xd0, 0x65, 0xff, + 0xb9, 0xaa, 0x58, 0x56, 0xb6, 0x6a, 0x40, 0x68, 0xe3, 0x91, 0x3d, 0x18, 0x67, 0x56, 0x94, 0xcc, + 0x8f, 0x71, 0xe1, 0xaf, 0x8e, 0x20, 0xbc, 0x9c, 0x4e, 0x66, 0x9d, 0x66, 0xde, 0xd9, 0xbf, 0x04, + 0x05, 0x0f, 0xf2, 0xa6, 0x03, 0xf3, 0xd2, 0xc4, 0x91, 0x8a, 0xa9, 0xbc, 0xdd, 0x0a, 0x52, 0xda, + 0x0e, 0x92, 0x74, 0x7e, 0x9c, 0x0b, 0xb0, 0x74, 0x32, 0x95, 0xba, 0x16, 0x47, 0xbd, 0xee, 0xcd, + 0x20, 0xac, 0xd7, 0x2e, 0x49, 0x4e, 0xf3, 0x2b, 0x43, 0x08, 0xe3, 0x50, 0x96, 0xe4, 0x6b, 0x0e, + 0x5c, 0x08, 0xbd, 0x0e, 0x4d, 0xba, 0x1e, 0x5b, 0x54, 0x01, 0xae, 0xb5, 0x3d, 0x7f, 0x8f, 0x4b, + 0x34, 0xf1, 0x70, 0x12, 0xb9, 0x52, 0xa2, 0x0b, 0x9b, 0x43, 0x49, 0xe3, 0x03, 0xd8, 0x92, 0x6f, + 0x3a, 0x30, 0x17, 0xc5, 0xdd, 0x96, 0x17, 0xd2, 0xba, 0x82, 0x26, 0xf3, 0x93, 0xdc, 0xe2, 0x3e, + 0x39, 0xc2, 0xfa, 0xdc, 0xca, 0xd3, 0xdc, 0x88, 0xc2, 0x20, 0x8d, 0xe2, 0x6d, 0x9a, 0xa6, 0x41, + 0xd8, 0x4c, 0x6a, 0xe7, 0x8f, 0x0e, 0x17, 0xe6, 0xfa, 0xb0, 0xb0, 0x5f, 0x18, 0x72, 0x0f, 0xa6, + 0x92, 0x83, 0xd0, 0xbf, 0x1d, 0x84, 0xf5, 0xe8, 0x6e, 0x32, 0x5f, 0x19, 0xd9, 0x64, 0xb7, 0x35, + 0x35, 0x69, 0x74, 0x86, 0x3a, 0xda, 0xac, 0x06, 0x2f, 0x99, 0x51, 0xa2, 0x6a, 0xd1, 0x4b, 0x66, + 0xd4, 0xe8, 0x01, 0x6c, 0xc9, 0x97, 0x1c, 0x98, 0x49, 0x82, 0x66, 0xe8, 0xa5, 0xbd, 0x98, 0xde, + 0xa4, 0x07, 0xc9, 0x3c, 0x70, 0x41, 0xae, 0x8d, 0x32, 0x25, 0x16, 0xbd, 0xda, 0x79, 0x29, 0xe0, + 0x8c, 0x3d, 0x9a, 0x60, 0x96, 0xe9, 0x20, 0xfb, 0x32, 0xda, 0x3c, 0x55, 0xac, 0x7d, 0x19, 0x5d, + 0x1e, 0xca, 0xd2, 0xfd, 0xcb, 0x12, 0x9c, 0xcd, 0xef, 0x38, 0xe4, 0x0f, 0x1d, 0x38, 0x73, 0xe7, + 0x6e, 0xba, 0x13, 0xed, 0xd1, 0x30, 0xa9, 0x1d, 0x30, 0x07, 0xc1, 0xdd, 0xed, 0xd4, 0xe5, 0x57, + 0x0a, 0xdc, 0xd8, 0x16, 0x6f, 0x64, 0x59, 0x5c, 0x09, 0xd3, 0xf8, 0xa0, 0xf6, 0x1e, 0xf9, 0x32, + 0x67, 0x6e, 0xdc, 0xde, 0xb1, 0xa1, 0x98, 0x97, 0xe8, 0xc2, 0xeb, 0x0e, 0x3c, 0x3e, 0x88, 0x04, + 0x39, 0x0b, 0xe5, 0x3d, 0x7a, 0x20, 0xa2, 0x18, 0x64, 0x3f, 0xc9, 0xcb, 0x30, 0xbe, 0xef, 0xb5, + 0x7b, 0x54, 0x46, 0x03, 0xab, 0x23, 0xbc, 0x85, 0x16, 0x0b, 0x05, 0xc9, 0x8f, 0x95, 0x9e, 0x73, + 0xdc, 0xbf, 0x2a, 0xc3, 0x94, 0xb5, 0x31, 0x3c, 0x82, 0xf0, 0xa6, 0x9d, 0x09, 0x6f, 0x6e, 0x14, + 0xb3, 0xa1, 0x0d, 0x8d, 0x6f, 0xd2, 0x5c, 0x7c, 0xb3, 0x5e, 0x10, 0xbf, 0x07, 0x06, 0x38, 0xe4, + 0x55, 0xa8, 0x46, 0x5d, 0x16, 0xb8, 0xb2, 0xdd, 0x72, 0x6c, 0xe4, 0x95, 0xbb, 0xa5, 0x68, 0xd5, + 0x66, 0x8e, 0x0e, 0x17, 0xaa, 0xfa, 0x2f, 0x1a, 0x2e, 0xee, 0x3f, 0x38, 0xf0, 0xb8, 0x25, 0xe0, + 0x4a, 0x14, 0xd6, 0x03, 0xbe, 0xa2, 0x97, 0x60, 0x2c, 0x3d, 0xe8, 0xaa, 0xd0, 0x58, 0xcf, 0xd1, + 0xce, 0x41, 0x97, 0x22, 0x87, 0xb0, 0x60, 0xb8, 0x43, 0x93, 0xc4, 0x6b, 0xd2, 0x7c, 0x30, 0xbc, + 0x21, 0x86, 0x51, 0xc1, 0x49, 0x0c, 0xa4, 0xed, 0x25, 0xe9, 0x4e, 0xec, 0x85, 0x09, 0x27, 0xbf, + 0x13, 0x74, 0xa8, 0x9c, 0xda, 0x9f, 0x3a, 0x99, 0xa2, 0xb0, 0x27, 0x6a, 0x4f, 0x1c, 0x1d, 0x2e, + 0x90, 0xf5, 0x3e, 0x4a, 0x38, 0x80, 0xba, 0xfb, 0x35, 0x07, 0x9e, 0x18, 0x1c, 0xbb, 0x90, 0x0f, + 0xc0, 0x44, 0x42, 0xe3, 0x7d, 0x1a, 0xcb, 0xb7, 0x33, 0xeb, 0xc1, 0x47, 0x51, 0x42, 0xc9, 0x12, + 0x54, 0xb5, 0x83, 0x95, 0xef, 0x38, 0x27, 0x51, 0xab, 0xc6, 0x2b, 0x1b, 0x1c, 0x36, 0x69, 0xec, + 0x8f, 0x8c, 0x74, 0xf4, 0xa4, 0xf1, 0x44, 0x82, 0x43, 0xdc, 0x7f, 0x72, 0xe0, 0x8c, 0x25, 0xd5, + 0x23, 0x08, 0x62, 0xf7, 0xb2, 0x41, 0xec, 0xd5, 0x62, 0x34, 0x79, 0x48, 0x14, 0xfb, 0xa7, 0x13, + 0x30, 0x67, 0xeb, 0x3b, 0x77, 0xbe, 0x3c, 0x6d, 0xa2, 0xdd, 0xe8, 0x45, 0x5c, 0x97, 0x13, 0x6e, + 0xd2, 0x26, 0x31, 0x8c, 0x0a, 0xce, 0x66, 0xb0, 0xeb, 0xa5, 0x2d, 0x39, 0xdb, 0x7a, 0x06, 0xb7, + 0xbc, 0xb4, 0x85, 0x1c, 0x42, 0x3e, 0x0e, 0xb3, 0xa9, 0x17, 0x37, 0x69, 0x8a, 0x74, 0x3f, 0x48, + 0x94, 0xa5, 0x54, 0x6b, 0x4f, 0x48, 0xdc, 0xd9, 0x9d, 0x0c, 0x14, 0x73, 0xd8, 0x24, 0x84, 0xb1, + 0x16, 0x6d, 0x77, 0x64, 0xf0, 0xb2, 0x55, 0x90, 0x61, 0xf3, 0x17, 0xbd, 0x4e, 0xdb, 0x9d, 0x5a, + 0x85, 0xc9, 0xcb, 0x7e, 0x21, 0xe7, 0x43, 0x7e, 0xcd, 0x81, 0xea, 0x5e, 0x2f, 0x49, 0xa3, 0x4e, + 0xf0, 0x1a, 0x9d, 0xaf, 0x70, 0xae, 0x2f, 0x16, 0xc9, 0xf5, 0xa6, 0x22, 0x2e, 0xcc, 0x5c, 0xff, + 0x45, 0xc3, 0x96, 0xbc, 0x06, 0x93, 0x7b, 0x49, 0x14, 0x86, 0x94, 0x85, 0x23, 0x4c, 0x82, 0xed, + 0x42, 0x25, 0x10, 0xa4, 0x6b, 0x53, 0x6c, 0x49, 0xe5, 0x1f, 0x54, 0x0c, 0xf9, 0x04, 0xd4, 0x83, + 0x98, 0xfa, 0x69, 0x14, 0x1f, 0xcc, 0x43, 0xf1, 0x13, 0xb0, 0xaa, 0x88, 0x8b, 0x09, 0xd0, 0x7f, + 0xd1, 0xb0, 0x25, 0xfb, 0x30, 0xd1, 0x6d, 0xf7, 0x9a, 0x41, 0x38, 0x3f, 0xc5, 0x05, 0xc0, 0x22, + 0x05, 0xd8, 0xe2, 0x94, 0x6b, 0xc0, 0x5c, 0x88, 0xf8, 0x8d, 0x92, 0x1b, 0x79, 0x0a, 0xc6, 0xfd, + 0x96, 0x17, 0xa7, 0xf3, 0xd3, 0x5c, 0x49, 0xb5, 0xd5, 0xac, 0xb0, 0x41, 0x14, 0x30, 0xf7, 0xaf, + 0x1d, 0xb8, 0x30, 0xfc, 0xad, 0x84, 0xf9, 0xf8, 0xbd, 0x38, 0x11, 0xde, 0xb8, 0x62, 0x9b, 0x0f, + 0x1f, 0x46, 0x05, 0x27, 0x9f, 0x87, 0xc9, 0x3b, 0x72, 0x9d, 0x4b, 0xc5, 0xaf, 0xf3, 0x0d, 0xb9, + 0xce, 0x9a, 0xff, 0x0d, 0xb5, 0xd6, 0x92, 0xa9, 0x7b, 0x58, 0x86, 0xf3, 0x03, 0xcd, 0x82, 0x2c, + 0x02, 0xf0, 0xf0, 0xe1, 0x6a, 0xc0, 0x32, 0x3b, 0x91, 0xcb, 0xce, 0xb2, 0xdd, 0xfe, 0x25, 0x3d, + 0x8a, 0x16, 0x06, 0xf9, 0x2c, 0x40, 0xd7, 0x8b, 0xbd, 0x0e, 0x4d, 0x69, 0xac, 0x7c, 0xd7, 0xf5, + 0x11, 0x5e, 0x86, 0x09, 0xb1, 0xa5, 0x08, 0x9a, 0x58, 0x43, 0x0f, 0x25, 0x68, 0xf1, 0x63, 0x99, + 0x6b, 0x4c, 0xdb, 0xd4, 0x4b, 0xe8, 0xa6, 0xf1, 0xe7, 0x3a, 0x73, 0x45, 0x03, 0x42, 0x1b, 0x8f, + 0x6d, 0x2c, 0xfc, 0x15, 0x12, 0xe9, 0x93, 0xf4, 0xc6, 0xc2, 0x5f, 0x32, 0x41, 0x09, 0x25, 0x6f, + 0x38, 0x30, 0xdb, 0x08, 0xda, 0xd4, 0x70, 0x97, 0xa9, 0xe6, 0xfa, 0x88, 0x6f, 0x78, 0xd5, 0x26, + 0x6a, 0x5c, 0x62, 0x66, 0x38, 0xc1, 0x1c, 0x6f, 0xa6, 0x60, 0xfb, 0x34, 0xe6, 0xbe, 0x74, 0x22, + 0xeb, 0x9f, 0x5f, 0x12, 0xc3, 0xa8, 0xe0, 0xee, 0xd7, 0x4a, 0x30, 0x3f, 0x4c, 0x2f, 0x48, 0x17, + 0x26, 0xe9, 0xbd, 0xf4, 0x25, 0x2f, 0x4e, 0x64, 0xf4, 0x3c, 0x4a, 0xfa, 0x25, 0x89, 0xbe, 0xe4, + 0xc5, 0x46, 0x9c, 0x2b, 0x82, 0x3a, 0x2a, 0x36, 0xa4, 0x09, 0x63, 0x69, 0xdb, 0x2b, 0xa2, 0x40, + 0x63, 0xb1, 0x33, 0xc1, 0xce, 0xfa, 0x72, 0x82, 0x9c, 0x01, 0x79, 0x12, 0xc6, 0xda, 0xc1, 0x2e, + 0x0b, 0x07, 0x99, 0xe2, 0x72, 0x1f, 0xbf, 0x1e, 0xec, 0x26, 0xc8, 0x47, 0xdd, 0xef, 0x3b, 0x03, + 0x66, 0x45, 0x3a, 0x42, 0xa6, 0x4b, 0x34, 0xdc, 0x0f, 0xe2, 0x28, 0xec, 0xd0, 0x30, 0xcd, 0xd7, + 0x1a, 0xaf, 0x18, 0x10, 0xda, 0x78, 0xe4, 0x57, 0x07, 0x18, 0xc0, 0x28, 0x65, 0x36, 0x29, 0xce, + 0x89, 0x6d, 0xc0, 0xfd, 0x9b, 0xf2, 0x00, 0xaf, 0xa4, 0x77, 0x17, 0x72, 0x19, 0x80, 0x45, 0x34, + 0x5b, 0x31, 0x6d, 0x04, 0xf7, 0xe4, 0x5b, 0x69, 0x92, 0x9b, 0x1a, 0x82, 0x16, 0x96, 0x7a, 0x66, + 0xbb, 0xd7, 0x60, 0xcf, 0x94, 0xfa, 0x9f, 0x11, 0x10, 0xb4, 0xb0, 0xc8, 0xb3, 0x30, 0x11, 0x74, + 0xbc, 0x26, 0x55, 0x73, 0xff, 0x24, 0xb3, 0xa7, 0x35, 0x3e, 0x72, 0xff, 0x70, 0x61, 0x56, 0x0b, + 0xc4, 0x87, 0x50, 0xe2, 0x92, 0x6f, 0x39, 0x30, 0xed, 0x47, 0x9d, 0x4e, 0x14, 0xae, 0x7b, 0xbb, + 0xb4, 0xad, 0x6a, 0x49, 0xcd, 0x77, 0x65, 0xe3, 0x5d, 0x5c, 0xb1, 0x38, 0x89, 0xac, 0x4e, 0x97, + 0xc7, 0x6c, 0x10, 0x66, 0x44, 0xb2, 0xcd, 0x6e, 0xfc, 0xc1, 0x66, 0x77, 0xe1, 0x13, 0x30, 0xd7, + 0xc7, 0x63, 0x40, 0xda, 0xf7, 0xb8, 0x9d, 0xf6, 0x55, 0xed, 0x84, 0xed, 0x77, 0x1d, 0x78, 0xcf, + 0x90, 0x7d, 0x4b, 0x47, 0xad, 0xce, 0xb0, 0xa8, 0x95, 0x7c, 0x06, 0xca, 0x34, 0xdc, 0x97, 0x4a, + 0xb8, 0x32, 0xc2, 0x1c, 0x5e, 0x09, 0xf7, 0xc5, 0xfc, 0x4c, 0x1e, 0x1d, 0x2e, 0x94, 0xaf, 0x84, + 0xfb, 0xc8, 0x08, 0xbb, 0x5f, 0x9e, 0xc8, 0x44, 0xc5, 0xdb, 0x2a, 0x05, 0xe3, 0x52, 0xca, 0x98, + 0x78, 0xbd, 0xc8, 0xa5, 0xb3, 0x42, 0x7e, 0x51, 0x3d, 0x95, 0xbc, 0xc8, 0xeb, 0x0e, 0xaf, 0x59, + 0xaa, 0x54, 0x41, 0xee, 0xa2, 0xef, 0x42, 0xfd, 0xd4, 0x2e, 0x83, 0xaa, 0x41, 0xb4, 0x59, 0x33, + 0xf5, 0xe8, 0x8a, 0xf2, 0x81, 0xdc, 0x7f, 0xb4, 0x7a, 0xa8, 0xaa, 0xa6, 0x82, 0x93, 0x1e, 0x40, + 0x72, 0x10, 0xfa, 0x5b, 0x51, 0x3b, 0xf0, 0x0f, 0x64, 0xe6, 0x38, 0x6a, 0xe9, 0x4b, 0x10, 0x13, + 0x7b, 0xb4, 0xf9, 0x8f, 0x16, 0x23, 0xf2, 0x0d, 0x07, 0xe6, 0x82, 0x66, 0x18, 0xc5, 0x74, 0x35, + 0x68, 0x34, 0x68, 0x4c, 0x43, 0x9f, 0xaa, 0x9d, 0x6c, 0x67, 0x04, 0xf6, 0xaa, 0x6a, 0xb3, 0x96, + 0xa7, 0x5d, 0x7b, 0xaf, 0x9c, 0x82, 0xb9, 0x3e, 0x10, 0xf6, 0x4b, 0x42, 0x3c, 0x18, 0x0b, 0xc2, + 0x46, 0x24, 0x8b, 0xa6, 0x9f, 0x18, 0x41, 0xa2, 0xb5, 0xb0, 0x11, 0x19, 0xcb, 0x60, 0xff, 0x90, + 0x93, 0x26, 0xeb, 0xf0, 0x78, 0x2c, 0x33, 0x8b, 0xeb, 0x41, 0xc2, 0xc2, 0xb5, 0xf5, 0xa0, 0x13, + 0xa4, 0x3c, 0xbb, 0x28, 0xd7, 0xe6, 0x8f, 0x0e, 0x17, 0x1e, 0xc7, 0x01, 0x70, 0x1c, 0xf8, 0x94, + 0xfb, 0xdf, 0x95, 0x6c, 0xfa, 0x24, 0xca, 0x02, 0xaf, 0x41, 0x35, 0xd6, 0x35, 0x57, 0xb1, 0xb1, + 0xae, 0x15, 0x30, 0xbb, 0xb2, 0x18, 0xa1, 0x33, 0x5a, 0x53, 0x5d, 0x35, 0xec, 0xd8, 0x06, 0xcb, + 0x16, 0x5c, 0xda, 0xc1, 0xa8, 0x3a, 0x25, 0x59, 0x9a, 0x8a, 0xcb, 0x41, 0xe8, 0x23, 0x67, 0x40, + 0x22, 0x98, 0x68, 0x51, 0xaf, 0x9d, 0xb6, 0x64, 0x59, 0xe0, 0xda, 0x48, 0x91, 0x10, 0x23, 0x94, + 0x2f, 0xb6, 0x88, 0x51, 0x94, 0x6c, 0x48, 0x0f, 0x26, 0x5b, 0x62, 0xee, 0xe5, 0xde, 0x70, 0x63, + 0xa4, 0x39, 0xcd, 0xac, 0xa6, 0x31, 0x55, 0x39, 0x80, 0x8a, 0x17, 0xf9, 0x75, 0x07, 0xc0, 0x57, + 0x55, 0x16, 0x65, 0x2c, 0xb7, 0x8a, 0xf1, 0x2f, 0xba, 0x7a, 0x63, 0x36, 0x55, 0x3d, 0x94, 0xa0, + 0xc5, 0x96, 0xbc, 0x02, 0xd3, 0x31, 0xf5, 0xa3, 0xd0, 0x0f, 0xda, 0xb4, 0xbe, 0x9c, 0xf2, 0xb0, + 0xef, 0x74, 0xa5, 0x98, 0xb3, 0x6c, 0x73, 0x43, 0x8b, 0x06, 0x66, 0x28, 0x92, 0x2f, 0x3b, 0x30, + 0xab, 0xcb, 0x4c, 0x6c, 0x29, 0xa8, 0xcc, 0xb8, 0xd7, 0x8a, 0xa8, 0x68, 0x71, 0x82, 0x35, 0xc2, + 0x62, 0xdb, 0xec, 0x18, 0xe6, 0x98, 0x92, 0x97, 0x01, 0xa2, 0x5d, 0x5e, 0xcf, 0x61, 0xef, 0x59, + 0x39, 0xf5, 0x7b, 0xce, 0x8a, 0x8a, 0xa4, 0xa2, 0x80, 0x16, 0x35, 0x72, 0x13, 0x40, 0xd8, 0xc9, + 0xce, 0x41, 0x97, 0xf2, 0xc4, 0xba, 0x5a, 0xfb, 0x90, 0x9a, 0xf9, 0x6d, 0x0d, 0xb9, 0x7f, 0xb8, + 0xd0, 0x9f, 0x14, 0xf1, 0x42, 0x9a, 0xf5, 0x38, 0xb9, 0x07, 0x93, 0x49, 0xaf, 0xd3, 0xf1, 0x74, + 0x8e, 0xbc, 0x51, 0xd0, 0x86, 0x27, 0x88, 0x1a, 0x95, 0x94, 0x03, 0xa8, 0xd8, 0xb9, 0x21, 0x90, + 0x7e, 0x7c, 0xf2, 0x2c, 0x4c, 0xd3, 0x7b, 0x29, 0x8d, 0x43, 0xaf, 0xfd, 0x22, 0xae, 0xab, 0x94, + 0x8d, 0x2f, 0xfb, 0x15, 0x6b, 0x1c, 0x33, 0x58, 0xc4, 0xd5, 0xd1, 0x5a, 0x89, 0xe3, 0x83, 0x89, + 0xd6, 0x54, 0x6c, 0xe6, 0xfe, 0x46, 0x29, 0xb3, 0xdb, 0xef, 0xc4, 0x94, 0x92, 0x36, 0x8c, 0x87, + 0x51, 0x5d, 0xfb, 0xb7, 0x6b, 0x05, 0xf8, 0xb7, 0xcd, 0xa8, 0x6e, 0x1d, 0xfa, 0xb1, 0x7f, 0x09, + 0x0a, 0x26, 0xfc, 0x6c, 0x44, 0x9d, 0x20, 0x71, 0x80, 0x0c, 0x6d, 0x0a, 0x63, 0xab, 0xcf, 0x46, + 0x6e, 0xd9, 0x5c, 0x30, 0xcb, 0xd4, 0xfd, 0x81, 0x93, 0xc9, 0x96, 0x6f, 0x7b, 0xa9, 0xdf, 0xba, + 0xb2, 0xcf, 0x82, 0xff, 0x9b, 0x99, 0xea, 0xeb, 0xcf, 0xdb, 0xd5, 0xd7, 0xfb, 0x87, 0x0b, 0x1f, + 0x1c, 0xd6, 0x06, 0x71, 0x97, 0x51, 0x58, 0xe4, 0x24, 0xac, 0x42, 0xed, 0xe7, 0x60, 0xca, 0x92, + 0x58, 0xba, 0xf2, 0xa2, 0xea, 0x80, 0x3a, 0x8e, 0xb1, 0x06, 0xd1, 0xe6, 0xe7, 0xfe, 0xb6, 0x03, + 0x93, 0x35, 0xcf, 0xdf, 0x8b, 0x1a, 0x0d, 0xf2, 0x61, 0xa8, 0xd4, 0x7b, 0xb2, 0xc0, 0x2d, 0xde, + 0x4d, 0x97, 0x2e, 0x57, 0xe5, 0x38, 0x6a, 0x0c, 0xa6, 0x4c, 0x0d, 0xcf, 0x4f, 0xa3, 0x98, 0xcb, + 0x5c, 0x16, 0xca, 0x74, 0x95, 0x8f, 0xa0, 0x84, 0xb0, 0xec, 0xaa, 0xe3, 0xdd, 0x53, 0x0f, 0xe7, + 0x33, 0xf5, 0x0d, 0x03, 0x42, 0x1b, 0xcf, 0xfd, 0xe6, 0x38, 0x4c, 0xca, 0xd3, 0xa3, 0x13, 0x97, + 0x83, 0x55, 0x9c, 0x5c, 0x1a, 0x1a, 0x27, 0x77, 0x61, 0xc2, 0xe7, 0x0d, 0x26, 0x72, 0x13, 0x1b, + 0xa5, 0x60, 0x21, 0xa5, 0x13, 0x0d, 0x2b, 0x46, 0x26, 0xf1, 0x1f, 0x25, 0x1f, 0xf2, 0xa6, 0x03, + 0x67, 0x7c, 0x96, 0xd8, 0xf9, 0xc6, 0xcf, 0x8e, 0x8d, 0x7c, 0x44, 0xb2, 0x92, 0xa5, 0x68, 0xce, + 0xa8, 0x72, 0x00, 0xcc, 0xf3, 0x26, 0xcf, 0xc3, 0x8c, 0x98, 0xad, 0x97, 0x32, 0x99, 0x8d, 0x39, + 0x2b, 0xb4, 0x81, 0x98, 0xc5, 0x25, 0x8b, 0x22, 0x3d, 0xe4, 0xb5, 0xf4, 0x84, 0x47, 0x6d, 0xb2, + 0x46, 0xa4, 0x8b, 0xed, 0x09, 0x5a, 0x18, 0x24, 0x06, 0x12, 0xd3, 0x46, 0x4c, 0x93, 0x16, 0xd2, + 0x57, 0x7b, 0x34, 0x49, 0xb9, 0x8f, 0x9f, 0x7c, 0xb8, 0x63, 0x05, 0xec, 0xa3, 0x84, 0x03, 0xa8, + 0x93, 0x96, 0x8c, 0x29, 0x2b, 0x23, 0x5b, 0x91, 0x5c, 0xe0, 0x61, 0xa1, 0xa5, 0xfb, 0x3f, 0x0e, + 0x9c, 0x55, 0x4a, 0xe0, 0xf9, 0x2d, 0xca, 0x40, 0xe4, 0xe3, 0x30, 0xab, 0x83, 0xb3, 0x95, 0xa8, + 0x27, 0xeb, 0x09, 0x65, 0x53, 0xea, 0xc1, 0x0c, 0x14, 0x73, 0xd8, 0x64, 0x09, 0xaa, 0x4c, 0x22, + 0xf1, 0xa8, 0xb0, 0x2a, 0x1d, 0x00, 0x2e, 0x6f, 0xad, 0xc9, 0xa7, 0x0c, 0x0e, 0x89, 0x60, 0xae, + 0xed, 0x25, 0x29, 0x97, 0x80, 0x85, 0x6b, 0x0f, 0x79, 0x72, 0xc3, 0xcf, 0xf1, 0xd7, 0xf3, 0x84, + 0xb0, 0x9f, 0xb6, 0xfb, 0x67, 0x65, 0x98, 0xc9, 0xe8, 0x3e, 0x73, 0x1a, 0xbd, 0x84, 0x6d, 0x31, + 0x3a, 0x47, 0xd5, 0x4e, 0xe3, 0x45, 0x39, 0x8e, 0x1a, 0x83, 0x61, 0x77, 0xbd, 0x24, 0xb9, 0x1b, + 0xc5, 0x75, 0x69, 0xa9, 0x1a, 0x7b, 0x4b, 0x8e, 0xa3, 0xc6, 0x60, 0xee, 0x63, 0x97, 0x7a, 0x31, + 0x8d, 0xf9, 0x19, 0x67, 0xde, 0x7d, 0xd4, 0x0c, 0x08, 0x6d, 0x3c, 0x6e, 0x76, 0x69, 0x3b, 0x59, + 0x69, 0x07, 0x34, 0x4c, 0x85, 0x98, 0x05, 0x98, 0xdd, 0xce, 0xfa, 0xb6, 0x4d, 0xd1, 0x98, 0x5d, + 0x0e, 0x80, 0x79, 0xde, 0xe4, 0x8b, 0x0e, 0xcc, 0x78, 0x77, 0x13, 0xd3, 0xe1, 0xc6, 0xed, 0x6e, + 0x34, 0x07, 0x94, 0xe9, 0x98, 0xab, 0xcd, 0x31, 0xeb, 0xcd, 0x0c, 0x61, 0x96, 0xa3, 0xfb, 0xad, + 0x32, 0x4c, 0x59, 0x3a, 0x3d, 0xd0, 0x35, 0x39, 0x3f, 0x4e, 0xae, 0xa9, 0x74, 0x0a, 0xd7, 0xf4, + 0x59, 0xa8, 0xfa, 0xca, 0x08, 0x0b, 0xe8, 0x79, 0xcb, 0xdb, 0xb5, 0x31, 0x42, 0x3d, 0x84, 0x86, + 0x21, 0xb9, 0x06, 0x73, 0x16, 0x19, 0x69, 0xbd, 0x63, 0xdc, 0x7a, 0x75, 0x46, 0xbc, 0x9c, 0x47, + 0xc0, 0xfe, 0x67, 0xdc, 0xbf, 0x73, 0xf4, 0x1a, 0x3d, 0x82, 0xa3, 0xc7, 0x66, 0xf6, 0xe8, 0xb1, + 0x36, 0xfa, 0x84, 0x0d, 0x39, 0x76, 0xdc, 0x84, 0xc9, 0x95, 0xa8, 0xd3, 0xf1, 0xc2, 0x3a, 0x79, + 0x3f, 0x4c, 0xfa, 0xe2, 0xa7, 0x8c, 0x58, 0xf9, 0xa1, 0x94, 0x84, 0xa2, 0x82, 0x91, 0x27, 0x61, + 0xcc, 0x8b, 0x9b, 0x2a, 0x4a, 0xe5, 0xf5, 0xdc, 0xe5, 0xb8, 0x99, 0x20, 0x1f, 0x75, 0xdf, 0x2c, + 0x01, 0xac, 0x44, 0x9d, 0xae, 0x17, 0xd3, 0xfa, 0x4e, 0xf4, 0x7f, 0xbe, 0x14, 0xe5, 0xbe, 0xe1, + 0x00, 0x61, 0xf3, 0x11, 0x85, 0x34, 0x34, 0x15, 0x64, 0xb6, 0x99, 0xf8, 0x6a, 0x54, 0x7a, 0x66, + 0xa3, 0xc7, 0x0a, 0x80, 0x06, 0xe7, 0x04, 0x11, 0xd4, 0x53, 0xaa, 0x82, 0x59, 0xce, 0x9e, 0x97, + 0xf1, 0x03, 0x14, 0x59, 0xd0, 0x74, 0xbf, 0x5a, 0x82, 0x27, 0x84, 0xd3, 0xd9, 0xf0, 0x42, 0xaf, + 0x49, 0x3b, 0x4c, 0xaa, 0x93, 0xd6, 0x32, 0x5f, 0x61, 0x1b, 0x78, 0xa0, 0xce, 0xc7, 0x46, 0xd2, + 0x49, 0xa1, 0x4b, 0x42, 0x7b, 0xd6, 0xc2, 0x20, 0x45, 0x4e, 0x99, 0x74, 0xa1, 0xa2, 0x1a, 0x90, + 0xa5, 0xab, 0x28, 0x82, 0x8b, 0x36, 0xb4, 0x6b, 0x92, 0x36, 0x6a, 0x2e, 0xee, 0x77, 0x1d, 0xc8, + 0xfb, 0x3f, 0x1e, 0xd5, 0x8a, 0x16, 0x96, 0x7c, 0x54, 0x9b, 0x6d, 0x3a, 0x39, 0x45, 0x1b, 0xc7, + 0xa7, 0x60, 0xca, 0x4b, 0x53, 0xda, 0xe9, 0x8a, 0x40, 0xab, 0xfc, 0x70, 0xc9, 0xf4, 0x46, 0x54, + 0x0f, 0x1a, 0x01, 0x0f, 0xb0, 0x6c, 0x72, 0xee, 0x0b, 0x50, 0x51, 0xe5, 0xe1, 0x13, 0x2c, 0xe3, + 0x53, 0x99, 0x52, 0xf7, 0x10, 0x45, 0x79, 0xa3, 0x04, 0xb3, 0xd7, 0xc2, 0xde, 0xd6, 0xb5, 0xad, + 0xde, 0x6e, 0x3b, 0xf0, 0x6f, 0xd2, 0x03, 0xf6, 0xdc, 0x1e, 0x3d, 0x58, 0x5b, 0x95, 0xa4, 0xf5, + 0x73, 0x37, 0xd9, 0x20, 0x0a, 0x18, 0x8b, 0x0a, 0x1a, 0x41, 0xd8, 0xa4, 0x71, 0x37, 0x0e, 0x64, + 0x9c, 0x64, 0x45, 0x05, 0x57, 0x0d, 0x08, 0x6d, 0x3c, 0x46, 0x3b, 0xba, 0x1b, 0xd2, 0x38, 0xaf, + 0xbc, 0xb7, 0xd8, 0x20, 0x0a, 0x18, 0x43, 0x4a, 0xe3, 0x5e, 0x92, 0xca, 0x23, 0x42, 0x8d, 0xb4, + 0xc3, 0x06, 0x51, 0xc0, 0xd8, 0xa2, 0x24, 0xbd, 0x5d, 0x5e, 0x56, 0xc8, 0x1d, 0x0d, 0x6c, 0x8b, + 0x61, 0x54, 0x70, 0x86, 0xba, 0x47, 0x0f, 0x56, 0x99, 0x07, 0xcf, 0x1d, 0xde, 0xdd, 0x14, 0xc3, + 0xa8, 0xe0, 0xee, 0x91, 0x03, 0x24, 0x3b, 0x1d, 0x8f, 0x60, 0x13, 0x08, 0xb3, 0x9b, 0xc0, 0x28, + 0xe5, 0x9f, 0xac, 0xec, 0x43, 0xf6, 0x82, 0x3f, 0x70, 0x60, 0xda, 0x2e, 0x00, 0x92, 0x66, 0xce, + 0x10, 0x6e, 0x65, 0x0d, 0xe1, 0xfe, 0xe1, 0xc2, 0x2f, 0x0e, 0xba, 0x96, 0xd1, 0x0c, 0xd2, 0xa8, + 0x9b, 0x7c, 0x84, 0x86, 0xcd, 0x20, 0xa4, 0x3c, 0xbb, 0x16, 0x85, 0xc3, 0x4c, 0x75, 0x71, 0x25, + 0xaa, 0xd3, 0x87, 0xb0, 0x24, 0xf7, 0x36, 0xcc, 0xf5, 0x1d, 0xd7, 0x9e, 0x40, 0xe9, 0x8f, 0xed, + 0x8e, 0x71, 0xdf, 0x74, 0x60, 0x26, 0x73, 0xd4, 0x5d, 0x90, 0x29, 0x71, 0x93, 0x88, 0x78, 0xd5, + 0x38, 0x0e, 0x42, 0x91, 0xdf, 0x56, 0x2c, 0x93, 0x30, 0x20, 0xb4, 0xf1, 0xdc, 0x0d, 0xe0, 0x29, + 0x4d, 0x51, 0x06, 0xfd, 0x02, 0x54, 0x18, 0x39, 0xb6, 0xe0, 0x45, 0x91, 0x8c, 0xa0, 0xa2, 0x5a, + 0x1c, 0x89, 0x0b, 0xe5, 0xc0, 0x53, 0x29, 0x95, 0x56, 0xea, 0xb5, 0x24, 0xe9, 0x71, 0x77, 0xc5, + 0x80, 0xe4, 0x29, 0x28, 0xd3, 0x7b, 0xdd, 0x7c, 0xee, 0x74, 0xe5, 0x5e, 0x37, 0x88, 0x69, 0xc2, + 0x90, 0xe8, 0xbd, 0x2e, 0xb9, 0x00, 0xa5, 0xa0, 0x2e, 0xdd, 0x00, 0x48, 0x9c, 0xd2, 0xda, 0x2a, + 0x96, 0x82, 0xba, 0xdb, 0x83, 0xaa, 0xee, 0xa9, 0x24, 0x2d, 0x65, 0x1d, 0xce, 0xc8, 0x67, 0x6b, + 0x8a, 0xe8, 0x10, 0xbb, 0xe8, 0x01, 0x98, 0x33, 0xee, 0xa2, 0xb4, 0xe2, 0x12, 0x8c, 0xf9, 0x51, + 0x9d, 0x4a, 0x75, 0xd0, 0x64, 0xb8, 0x59, 0x70, 0x88, 0x7b, 0x1b, 0x66, 0x6f, 0x86, 0xd1, 0xdd, + 0x90, 0xf9, 0xaa, 0xab, 0x01, 0x6d, 0xd7, 0x19, 0xe1, 0x06, 0xfb, 0x91, 0xf7, 0xc0, 0x1c, 0x8a, + 0x02, 0xa6, 0xdb, 0x0f, 0x4b, 0xc3, 0xda, 0x0f, 0xdd, 0xaf, 0x38, 0x70, 0x36, 0x7f, 0xa6, 0xfd, + 0x23, 0x8b, 0x48, 0xbe, 0xc0, 0x84, 0x51, 0xc7, 0xc1, 0xb7, 0xba, 0xa2, 0xc8, 0xfe, 0x1c, 0x4c, + 0xef, 0xf6, 0x82, 0x76, 0x5d, 0xfe, 0x97, 0xf2, 0xe8, 0x93, 0xe1, 0x9a, 0x05, 0xc3, 0x0c, 0x26, + 0xb9, 0x0c, 0xb0, 0x1b, 0x84, 0x5e, 0x7c, 0xb0, 0x65, 0xac, 0x5d, 0x97, 0xf4, 0x6b, 0x1a, 0x82, + 0x16, 0x96, 0xfb, 0x56, 0x19, 0x4c, 0x8b, 0x27, 0x69, 0xc8, 0x73, 0x1b, 0x67, 0xe4, 0x34, 0x90, + 0x25, 0xe6, 0xa6, 0x93, 0xb4, 0x92, 0x3b, 0xb6, 0xf9, 0x92, 0x03, 0x53, 0x2c, 0xe8, 0x09, 0xbc, + 0x94, 0xd6, 0x6b, 0x07, 0x32, 0xaa, 0xda, 0x28, 0xa2, 0xc6, 0xbf, 0x26, 0xc8, 0x46, 0xb1, 0x71, + 0x33, 0x6b, 0x86, 0x13, 0xda, 0x6c, 0xc9, 0xa7, 0x65, 0x55, 0xa6, 0x5c, 0xcc, 0x49, 0x5f, 0x25, + 0x77, 0xca, 0xd7, 0x81, 0xf1, 0x98, 0xa6, 0xb1, 0x3a, 0x5a, 0xbd, 0x3e, 0x52, 0x99, 0x38, 0x8d, + 0x0f, 0xb6, 0x53, 0x16, 0xb6, 0x35, 0xad, 0x2d, 0x8c, 0x0f, 0xa3, 0xe0, 0xe2, 0x26, 0x40, 0xfa, + 0x67, 0xe1, 0x94, 0x65, 0x90, 0x25, 0xa8, 0x7a, 0xbd, 0x34, 0xea, 0xb0, 0x09, 0xe2, 0xab, 0x52, + 0xb1, 0x0a, 0x3d, 0x0a, 0x80, 0x06, 0xc7, 0x7d, 0x7d, 0x1c, 0x72, 0x67, 0x29, 0xa4, 0x67, 0xf7, + 0x23, 0x3b, 0x05, 0xf6, 0x23, 0x6b, 0x49, 0x06, 0xf5, 0x24, 0xb3, 0xb4, 0xb1, 0xdb, 0xf2, 0x12, + 0x65, 0x94, 0x2f, 0xa8, 0x39, 0xda, 0x62, 0x83, 0xf7, 0x0f, 0x17, 0x7e, 0xe9, 0x64, 0xdb, 0x35, + 0xd3, 0xcf, 0x25, 0xd1, 0x70, 0x61, 0x58, 0x73, 0x1a, 0x28, 0xe8, 0xdb, 0x1b, 0x76, 0xf9, 0x98, + 0xd0, 0xf7, 0xf3, 0xe2, 0x84, 0x1d, 0x69, 0xd2, 0x6b, 0xa7, 0x52, 0x0d, 0x36, 0x8b, 0xb2, 0x2a, + 0x41, 0xd5, 0x1c, 0xb5, 0x8b, 0xff, 0x68, 0x71, 0x24, 0x9f, 0x84, 0x6a, 0x92, 0x7a, 0x71, 0xfa, + 0x90, 0xa7, 0x75, 0x7a, 0xc2, 0xb7, 0x15, 0x11, 0x34, 0xf4, 0xc8, 0xcb, 0x00, 0x8d, 0x20, 0x0c, + 0x92, 0xd6, 0x43, 0xd6, 0x4f, 0xb9, 0xe0, 0x57, 0x35, 0x05, 0xb4, 0xa8, 0x31, 0x57, 0xc6, 0x95, + 0x5a, 0xd4, 0x2c, 0x2a, 0x7c, 0xd7, 0xd4, 0xae, 0x0c, 0x35, 0x04, 0x2d, 0x2c, 0xf7, 0xf3, 0x70, + 0x2e, 0x7f, 0xe5, 0x47, 0x86, 0xee, 0xcd, 0x38, 0xea, 0x75, 0xf3, 0x1b, 0x07, 0xbf, 0x18, 0x82, + 0x02, 0xc6, 0x1c, 0xfa, 0x5e, 0x10, 0xd6, 0xf3, 0x0e, 0xfd, 0x66, 0x10, 0xd6, 0x91, 0x43, 0x4e, + 0xd0, 0xa4, 0xfd, 0xe7, 0x0e, 0x5c, 0x3a, 0xee, 0x66, 0x12, 0x79, 0x12, 0xc6, 0xee, 0x7a, 0x71, + 0x28, 0x5b, 0x32, 0xb9, 0xc7, 0xb8, 0xed, 0xc5, 0x21, 0xf2, 0x51, 0xb2, 0x0f, 0x13, 0xa2, 0x1f, + 0x41, 0x86, 0xbd, 0x9b, 0x05, 0x5e, 0x92, 0x62, 0xb1, 0xaf, 0xce, 0xe6, 0x44, 0x23, 0x04, 0x4a, + 0x6e, 0xee, 0x0d, 0x20, 0xb7, 0xf6, 0x69, 0x1c, 0x07, 0x75, 0xab, 0x7b, 0x82, 0x3c, 0x0b, 0xd3, + 0x77, 0xb6, 0x6f, 0x6d, 0x6e, 0x45, 0x41, 0xc8, 0xbb, 0xc9, 0xac, 0xb3, 0xbc, 0x1b, 0xd6, 0x38, + 0x66, 0xb0, 0xdc, 0x6f, 0x97, 0x60, 0xca, 0xba, 0x40, 0x77, 0x82, 0x98, 0x21, 0x77, 0xe1, 0xaf, + 0x74, 0xc2, 0x0b, 0x7f, 0x4f, 0x43, 0xa5, 0x1b, 0xb5, 0x03, 0x3f, 0xd0, 0x4d, 0x5e, 0xd3, 0xbc, + 0x5c, 0x2b, 0xc7, 0x50, 0x43, 0x49, 0x0a, 0x55, 0x7d, 0x2b, 0x46, 0x1e, 0xdb, 0x17, 0x12, 0x32, + 0x69, 0xfb, 0x30, 0xb7, 0x5d, 0x0c, 0x23, 0xe2, 0xc2, 0x04, 0x57, 0x2e, 0x71, 0x5c, 0x2f, 0x0f, + 0x35, 0xb9, 0xd6, 0x25, 0x28, 0x21, 0xee, 0xf7, 0x4b, 0x50, 0x45, 0xda, 0x8d, 0x56, 0x62, 0x5a, + 0x4f, 0xc8, 0xfb, 0xa0, 0xdc, 0x8b, 0xdb, 0x72, 0xa6, 0xa6, 0x24, 0xf1, 0xf2, 0x8b, 0xb8, 0x8e, + 0x6c, 0x3c, 0xe3, 0xca, 0x4b, 0xa7, 0xaa, 0x68, 0x97, 0x8f, 0xad, 0x68, 0x3f, 0x0f, 0x33, 0x49, + 0xd2, 0xda, 0x8a, 0x83, 0x7d, 0x2f, 0x65, 0xaa, 0x22, 0xf3, 0x4c, 0x53, 0xe6, 0xdc, 0xbe, 0x6e, + 0x80, 0x98, 0xc5, 0x25, 0xd7, 0x60, 0xce, 0x94, 0x96, 0x69, 0x9c, 0xf2, 0xb4, 0x52, 0x64, 0xa0, + 0xba, 0xd0, 0x68, 0x8a, 0xd1, 0x12, 0x01, 0xfb, 0x9f, 0x21, 0xab, 0x70, 0x36, 0x33, 0xc8, 0x04, + 0x11, 0xe9, 0xe9, 0xbc, 0xa4, 0x73, 0x36, 0x43, 0x87, 0xc9, 0xd2, 0xf7, 0x84, 0xfb, 0xb6, 0x03, + 0x33, 0x7a, 0x52, 0x1f, 0x41, 0xae, 0x1a, 0x64, 0x73, 0xd5, 0xd5, 0x91, 0xf6, 0x79, 0x29, 0xf6, + 0x90, 0x70, 0xfc, 0xf7, 0x27, 0x00, 0xf8, 0x9d, 0xdd, 0x80, 0xb7, 0x85, 0x5c, 0x82, 0xb1, 0x98, + 0x76, 0xa3, 0xbc, 0x6d, 0x31, 0x0c, 0xe4, 0x90, 0x1f, 0x5f, 0x9d, 0x19, 0x54, 0xe7, 0x1f, 0xff, + 0x11, 0xd6, 0xf9, 0xb7, 0xe1, 0x7c, 0x10, 0x26, 0xd4, 0xef, 0xc5, 0xd2, 0x05, 0x5e, 0x8f, 0x12, + 0xad, 0x7f, 0x95, 0xda, 0xfb, 0x24, 0xa1, 0xf3, 0x6b, 0x83, 0x90, 0x70, 0xf0, 0xb3, 0x6c, 0x3e, + 0x15, 0x80, 0x6f, 0x90, 0x15, 0x2b, 0x3d, 0x94, 0xe3, 0xa8, 0x31, 0x58, 0xf0, 0x45, 0x43, 0x6f, + 0xb7, 0x4d, 0xd7, 0x1b, 0x09, 0xdf, 0xf3, 0xac, 0xe0, 0xeb, 0x8a, 0x00, 0x5c, 0xdd, 0x46, 0x83, + 0x33, 0xd8, 0xee, 0xaa, 0x05, 0xd9, 0x1d, 0x9c, 0xd6, 0xee, 0x74, 0xf6, 0x35, 0x35, 0xf4, 0xf2, + 0x97, 0xda, 0x0b, 0xa6, 0x87, 0xee, 0x05, 0x1f, 0x87, 0xd9, 0x20, 0x6c, 0xd1, 0x38, 0x48, 0x69, + 0x9d, 0x1b, 0xc2, 0xfc, 0x0c, 0x9f, 0x08, 0x7d, 0x52, 0xb9, 0x96, 0x81, 0x62, 0x0e, 0xdb, 0x7d, + 0xbd, 0x04, 0xe7, 0x8d, 0x81, 0x30, 0xc9, 0x82, 0x06, 0xd3, 0x12, 0xde, 0x79, 0x2c, 0x0e, 0x67, + 0xac, 0x6f, 0x37, 0xe8, 0x90, 0x62, 0x5b, 0x43, 0xd0, 0xc2, 0x62, 0xeb, 0xe7, 0xd3, 0x98, 0x77, + 0x45, 0xe4, 0xad, 0x67, 0x45, 0x8e, 0xa3, 0xc6, 0xe0, 0x9f, 0x87, 0xa0, 0x71, 0x2a, 0x6b, 0x6d, + 0xf9, 0x53, 0xc1, 0x15, 0x03, 0x42, 0x1b, 0x8f, 0xed, 0x63, 0xbe, 0x5a, 0x3c, 0x66, 0x41, 0xd3, + 0x62, 0x1f, 0xd3, 0xeb, 0xa5, 0xa1, 0x4a, 0x1c, 0x7e, 0x9a, 0x34, 0xde, 0x2f, 0x0e, 0x4f, 0x3d, + 0x34, 0x86, 0xfb, 0x9f, 0x0e, 0xbc, 0x77, 0xe0, 0x54, 0x3c, 0x02, 0x97, 0xd8, 0xcb, 0xba, 0xc4, + 0xad, 0x11, 0x5d, 0x62, 0xdf, 0x2b, 0x0c, 0x71, 0x8f, 0x7f, 0xef, 0xc0, 0xac, 0xc1, 0x7f, 0x04, + 0xef, 0xd9, 0x28, 0xee, 0x5b, 0x0f, 0x46, 0xee, 0x5a, 0xb5, 0xef, 0xc5, 0xde, 0xe6, 0x2f, 0x26, + 0x02, 0xb9, 0x65, 0x5f, 0x5d, 0xb5, 0x3c, 0x26, 0xae, 0xda, 0x87, 0x09, 0xde, 0x98, 0x9f, 0x14, + 0x10, 0x4d, 0x66, 0x99, 0xf3, 0xd2, 0x89, 0x89, 0x26, 0xf9, 0xdf, 0x04, 0x25, 0x37, 0xde, 0xae, + 0x13, 0x24, 0xcc, 0x49, 0xd5, 0x65, 0x89, 0xc7, 0xb4, 0xeb, 0xc8, 0x71, 0xd4, 0x18, 0x6e, 0x07, + 0xe6, 0xb3, 0xc4, 0x57, 0x69, 0x83, 0x27, 0xe9, 0x27, 0x7a, 0x47, 0x96, 0xb0, 0xf2, 0xa7, 0xd6, + 0x7b, 0x5e, 0xfe, 0xb2, 0xe5, 0xb2, 0x02, 0xa0, 0xc1, 0x71, 0xff, 0xd8, 0x81, 0x73, 0x03, 0x5e, + 0xa6, 0xc0, 0xd2, 0x56, 0x6a, 0x8c, 0x7f, 0xc8, 0x05, 0xd8, 0x3a, 0x6d, 0x78, 0x2a, 0x21, 0xb4, + 0xd2, 0xc7, 0x55, 0x31, 0x8c, 0x0a, 0xee, 0xfe, 0xbb, 0x03, 0x67, 0xb2, 0xb2, 0x26, 0xe4, 0x06, + 0x10, 0xf1, 0x32, 0xab, 0x41, 0xe2, 0x47, 0xfb, 0x34, 0x3e, 0x60, 0x6f, 0x2e, 0xa4, 0xbe, 0x20, + 0x29, 0x91, 0xe5, 0x3e, 0x0c, 0x1c, 0xf0, 0x14, 0xf9, 0x0a, 0x3f, 0x2b, 0x54, 0xb3, 0xad, 0xd4, + 0x64, 0xbb, 0x30, 0x35, 0x31, 0x2b, 0x69, 0x87, 0xf3, 0x9a, 0x1f, 0xda, 0xcc, 0xdd, 0x1f, 0x96, + 0x61, 0x5a, 0x3d, 0xce, 0xd3, 0x8f, 0x82, 0x12, 0xb7, 0xcc, 0x75, 0xdc, 0xf2, 0x29, 0xae, 0xe3, + 0x8e, 0x3d, 0x28, 0x61, 0x11, 0xd7, 0x43, 0x4d, 0xd8, 0x62, 0x39, 0xfa, 0x1d, 0x03, 0x42, 0x1b, + 0x8f, 0x49, 0xd2, 0x0e, 0xf6, 0xa9, 0x78, 0x68, 0x22, 0x2b, 0xc9, 0xba, 0x02, 0xa0, 0xc1, 0x61, + 0x92, 0xd4, 0x83, 0x46, 0x83, 0x87, 0x0e, 0x96, 0x24, 0x6c, 0x76, 0x90, 0x43, 0x18, 0x46, 0x2b, + 0x8a, 0xf6, 0x64, 0xb4, 0xa0, 0x31, 0xae, 0x47, 0xd1, 0x1e, 0x72, 0x08, 0xd9, 0x80, 0x73, 0x61, + 0x14, 0x77, 0xbc, 0x76, 0xf0, 0x1a, 0xad, 0x6b, 0x2e, 0x32, 0x4a, 0xf8, 0x7f, 0xf2, 0x81, 0x73, + 0x9b, 0xfd, 0x28, 0x38, 0xe8, 0x39, 0xa6, 0x7e, 0xdd, 0x98, 0xd6, 0x03, 0x3f, 0xb5, 0xa9, 0x41, + 0x56, 0xfd, 0xb6, 0xfa, 0x30, 0x70, 0xc0, 0x53, 0xee, 0x7f, 0xf0, 0x0d, 0x6a, 0x48, 0xd3, 0xfe, + 0x23, 0xcb, 0xdb, 0xb3, 0x0a, 0x32, 0x76, 0x02, 0x05, 0x61, 0x79, 0x71, 0x12, 0x85, 0x3a, 0x2f, + 0x1e, 0x1f, 0x9a, 0x17, 0x5b, 0x58, 0xee, 0x77, 0xc7, 0xe1, 0x09, 0xdd, 0xed, 0x49, 0xd3, 0xbb, + 0x51, 0xbc, 0x17, 0x84, 0x4d, 0x7e, 0xcc, 0xf1, 0x0d, 0x07, 0xa6, 0x85, 0xa2, 0xc8, 0x6b, 0x47, + 0xa2, 0xac, 0xef, 0x17, 0xd1, 0x57, 0x9a, 0xe1, 0xb4, 0xb8, 0x63, 0x71, 0xc9, 0x5d, 0x39, 0xb2, + 0x41, 0x98, 0x11, 0x87, 0xbc, 0x06, 0xa0, 0xae, 0x43, 0x37, 0x8a, 0xb8, 0x11, 0xae, 0x84, 0x43, + 0xda, 0x30, 0x21, 0xd8, 0x8e, 0xe6, 0x80, 0x16, 0x37, 0xf2, 0x65, 0x07, 0x26, 0xda, 0x62, 0x56, + 0x44, 0x99, 0xf6, 0xd3, 0xc5, 0xcf, 0x8a, 0x3d, 0x1f, 0x7a, 0x53, 0x93, 0x33, 0x21, 0x99, 0x13, + 0x84, 0xc9, 0x20, 0x6c, 0xc6, 0x34, 0x51, 0x15, 0x84, 0x0f, 0x5a, 0x61, 0xc4, 0xa2, 0x1f, 0xc5, + 0x94, 0x07, 0x0d, 0x91, 0x57, 0xaf, 0x79, 0x6d, 0x2f, 0xf4, 0x69, 0xbc, 0x26, 0xd0, 0x8d, 0x7f, + 0x97, 0x03, 0xa8, 0x08, 0xf5, 0x35, 0x4b, 0x8f, 0x9f, 0xa4, 0x59, 0xfa, 0xc2, 0x27, 0x60, 0xae, + 0x6f, 0x19, 0x4f, 0x73, 0xab, 0xeb, 0xc2, 0x47, 0x61, 0xea, 0x61, 0x2f, 0x84, 0xfd, 0xc9, 0x84, + 0x71, 0xd2, 0x9b, 0x51, 0x9d, 0x77, 0x09, 0xc7, 0x66, 0x35, 0x65, 0x84, 0x55, 0x94, 0x6e, 0x58, + 0x57, 0x67, 0xf5, 0x20, 0xda, 0xfc, 0x98, 0x66, 0x76, 0xbd, 0x98, 0x86, 0xef, 0xaa, 0x66, 0x6e, + 0x69, 0x0e, 0x68, 0x71, 0x23, 0x34, 0x73, 0x7a, 0xb0, 0x32, 0xe2, 0xe9, 0x01, 0x0b, 0xf7, 0x06, + 0xde, 0x15, 0x7a, 0xd3, 0x81, 0xd9, 0x30, 0xa3, 0xaf, 0xb2, 0x90, 0xfc, 0x42, 0xe1, 0x86, 0x20, + 0xae, 0x46, 0x64, 0xc7, 0x30, 0xc7, 0x9c, 0x2c, 0xc3, 0x19, 0xb5, 0x02, 0xd9, 0x6e, 0x5d, 0x9d, + 0x6b, 0x63, 0x16, 0x8c, 0x79, 0x7c, 0xab, 0xdd, 0x7f, 0x62, 0x58, 0xbb, 0x3f, 0xd9, 0xd3, 0x37, + 0x7b, 0x26, 0x8b, 0xbd, 0xd9, 0x03, 0x03, 0x6e, 0xf5, 0xdc, 0x86, 0xaa, 0x1f, 0x53, 0x2f, 0x7d, + 0xc8, 0xdb, 0x1e, 0xfc, 0x03, 0x02, 0x2b, 0x8a, 0x00, 0x1a, 0x5a, 0xee, 0xd7, 0xcb, 0x70, 0x56, + 0x4d, 0x87, 0xaa, 0xb0, 0xb2, 0x0d, 0x47, 0xf0, 0x35, 0x91, 0x9b, 0xde, 0x70, 0xae, 0x2b, 0x00, + 0x1a, 0x1c, 0x16, 0x32, 0x8a, 0xe8, 0x2d, 0xc9, 0x9f, 0x38, 0xc8, 0xa8, 0x10, 0x15, 0x9c, 0x7c, + 0x7d, 0xe0, 0xe5, 0xba, 0x02, 0xce, 0xd7, 0xfa, 0xca, 0xc3, 0xa7, 0xbc, 0x55, 0xf7, 0x86, 0x03, + 0x67, 0xf6, 0x32, 0x47, 0xba, 0xca, 0x91, 0x8e, 0xd2, 0xdb, 0x91, 0x3d, 0x24, 0x36, 0x2a, 0x98, + 0x1d, 0x4f, 0x30, 0xcf, 0xda, 0xfd, 0x2f, 0x07, 0x6c, 0xaf, 0x72, 0xb2, 0x68, 0xc3, 0xba, 0x7a, + 0x5b, 0x7a, 0xf0, 0xd5, 0x5b, 0x1d, 0x98, 0x94, 0x4f, 0x16, 0x97, 0x8e, 0x9d, 0x22, 0x2e, 0x1d, + 0x1f, 0x1a, 0xc9, 0xbc, 0x0f, 0xca, 0xbd, 0xa0, 0x2e, 0x43, 0x4b, 0x53, 0x3f, 0x5e, 0x5b, 0x45, + 0x36, 0xee, 0xfe, 0xc5, 0xb8, 0x49, 0x22, 0xe5, 0x01, 0xd1, 0x4f, 0xc4, 0x6b, 0x37, 0x74, 0xab, + 0x8e, 0x78, 0xf3, 0xcd, 0xbe, 0x56, 0x9d, 0x5f, 0x38, 0xfd, 0xd9, 0x9f, 0x98, 0xa0, 0x61, 0x9d, + 0x3a, 0x93, 0xc7, 0x1c, 0xfc, 0xdd, 0x81, 0x0a, 0x8b, 0xbe, 0x79, 0x1d, 0xa8, 0x92, 0x11, 0xaa, + 0x72, 0x5d, 0x8e, 0xdf, 0x3f, 0x5c, 0xf8, 0xd8, 0xe9, 0xc5, 0x52, 0x4f, 0xa3, 0xa6, 0x4f, 0x12, + 0xa8, 0xb2, 0xdf, 0xfc, 0x8c, 0x52, 0xc6, 0xf5, 0x2f, 0x6a, 0x77, 0xa2, 0x00, 0x85, 0x1c, 0x80, + 0x1a, 0x3e, 0x24, 0x84, 0x2a, 0xbf, 0xd2, 0xcb, 0x99, 0x8a, 0xf0, 0x7f, 0x4b, 0x9f, 0x16, 0x2a, + 0xc0, 0xfd, 0xc3, 0x85, 0xe7, 0x4f, 0xcf, 0x54, 0x3f, 0x8e, 0x86, 0x85, 0xfb, 0x4e, 0xd9, 0xe8, + 0xae, 0xec, 0xd0, 0xfa, 0x89, 0xd0, 0xdd, 0xe7, 0x72, 0xba, 0x7b, 0xa9, 0x4f, 0x77, 0x67, 0xcd, + 0x15, 0xd8, 0x8c, 0x36, 0x3e, 0xd2, 0x0d, 0xf2, 0xf8, 0x3c, 0x93, 0x87, 0x05, 0xaf, 0xf6, 0x82, + 0x98, 0x26, 0x5b, 0x71, 0x2f, 0x0c, 0xc2, 0x26, 0xd7, 0xc5, 0x8a, 0x1d, 0x16, 0x64, 0xc0, 0x98, + 0xc7, 0x77, 0xbf, 0xcd, 0xcf, 0x6d, 0xac, 0x46, 0x07, 0xb6, 0xc4, 0x6d, 0x7e, 0x31, 0x5a, 0xf4, + 0x56, 0xe9, 0x25, 0x16, 0xb7, 0xa1, 0x05, 0x8c, 0xa4, 0x30, 0xb9, 0x2b, 0x2e, 0x8a, 0x15, 0xd0, + 0x9d, 0x2b, 0xaf, 0x9c, 0xf1, 0xcb, 0x3d, 0xea, 0xfe, 0xd9, 0x7d, 0xf3, 0x13, 0x15, 0x2b, 0xf7, + 0xf7, 0xca, 0x70, 0x26, 0x77, 0x7f, 0x97, 0x7c, 0x18, 0x2a, 0xea, 0x82, 0x76, 0xbe, 0x5c, 0xac, + 0x3f, 0x2c, 0xa5, 0x31, 0xc8, 0x67, 0x00, 0xea, 0xb4, 0xdb, 0x8e, 0x0e, 0x78, 0xd4, 0x31, 0x76, + 0xea, 0xa8, 0x43, 0xc7, 0xa7, 0xab, 0x9a, 0x0a, 0x5a, 0x14, 0x65, 0x37, 0xd9, 0xb8, 0xb8, 0x03, + 0x97, 0xed, 0x26, 0xb3, 0x7a, 0xd3, 0x27, 0x1e, 0x61, 0x6f, 0x7a, 0x00, 0x67, 0x84, 0x7c, 0xba, + 0x9f, 0xe0, 0x21, 0xda, 0x06, 0xce, 0x31, 0x5d, 0x5a, 0xcd, 0x92, 0xc1, 0x3c, 0x5d, 0xf7, 0xab, + 0x25, 0x16, 0x78, 0x89, 0x99, 0xde, 0x50, 0xd5, 0xda, 0x0f, 0xc0, 0x84, 0xd7, 0x4b, 0x5b, 0x51, + 0xdf, 0x95, 0xbd, 0x65, 0x3e, 0x8a, 0x12, 0x4a, 0xd6, 0x61, 0xac, 0xee, 0xa5, 0xea, 0x33, 0x88, + 0xa7, 0x11, 0xce, 0xd4, 0x68, 0xbc, 0x94, 0x22, 0xa7, 0x42, 0x9e, 0x84, 0xb1, 0xd4, 0x6b, 0x66, + 0x3e, 0x02, 0xb3, 0xe3, 0x35, 0x13, 0xe4, 0xa3, 0xf6, 0xa6, 0x32, 0x76, 0xcc, 0xa6, 0xf2, 0xbc, + 0xf5, 0x69, 0x4e, 0xeb, 0x0c, 0xa0, 0xff, 0x8b, 0x9a, 0x3c, 0x6e, 0xcf, 0xe2, 0xba, 0x3f, 0x03, + 0xd3, 0xf6, 0x17, 0x37, 0x4f, 0xd4, 0xd1, 0xec, 0xfe, 0xf3, 0x18, 0xcc, 0x64, 0x7a, 0x4e, 0x32, + 0x2a, 0xee, 0x1c, 0xab, 0xe2, 0x4f, 0xc1, 0x78, 0x37, 0xee, 0x85, 0x54, 0xb6, 0x12, 0x69, 0x26, + 0xcc, 0xe2, 0x29, 0x0a, 0x18, 0x5b, 0x95, 0x7a, 0x7c, 0x80, 0xbd, 0x50, 0x16, 0x8b, 0xf5, 0xaa, + 0xac, 0xf2, 0x51, 0x94, 0x50, 0xf2, 0x39, 0x98, 0x4e, 0xb8, 0x2b, 0x14, 0xce, 0x41, 0x5a, 0xcc, + 0xb5, 0x91, 0x3f, 0x2e, 0x20, 0x9b, 0xaa, 0x78, 0xda, 0x6d, 0x8f, 0x60, 0x86, 0x1d, 0xf9, 0xa2, + 0x63, 0x7f, 0x50, 0x61, 0x62, 0xe4, 0x73, 0x8d, 0x7c, 0x2f, 0x8f, 0x30, 0x9d, 0x07, 0x7f, 0x57, + 0xa1, 0xab, 0xcd, 0x76, 0xf2, 0x5d, 0x30, 0x5b, 0x18, 0x60, 0xb2, 0x1f, 0x82, 0x6a, 0xc7, 0x0b, + 0x83, 0x06, 0x4d, 0x52, 0xf1, 0x75, 0xdc, 0xaa, 0xc8, 0x76, 0x36, 0xd4, 0x20, 0x1a, 0x38, 0xff, + 0xf4, 0x34, 0x7f, 0x2b, 0x91, 0xab, 0x54, 0xad, 0x4f, 0x4f, 0x9b, 0x61, 0xb4, 0x71, 0xdc, 0xef, + 0x38, 0x70, 0x7e, 0xe0, 0x4c, 0xfc, 0xf8, 0xd6, 0xff, 0xdc, 0xef, 0x94, 0xe0, 0xdc, 0x80, 0x4e, + 0x2c, 0xb2, 0xff, 0xee, 0x7c, 0x71, 0x43, 0xf6, 0x79, 0xcd, 0x0c, 0xd5, 0x8a, 0xd3, 0x6d, 0x3b, + 0xc6, 0xf5, 0x97, 0x1f, 0x9d, 0xeb, 0x77, 0xff, 0xa8, 0x04, 0xd6, 0xf7, 0x60, 0xc8, 0xaf, 0xd8, + 0x7d, 0x86, 0x4e, 0x21, 0x7d, 0x71, 0x82, 0xb2, 0x6e, 0x52, 0x14, 0xf3, 0x35, 0xa8, 0x67, 0x31, + 0xaf, 0xa6, 0xa5, 0xe3, 0xd5, 0x94, 0x04, 0xaa, 0x95, 0xb3, 0x5c, 0x70, 0x2b, 0x67, 0xb5, 0xaf, + 0x8d, 0xb3, 0x25, 0x94, 0x2b, 0xf7, 0x3a, 0xc6, 0x95, 0x3a, 0x0f, 0x70, 0xa5, 0x1f, 0x86, 0x4a, + 0x42, 0xdb, 0x0d, 0x16, 0xbc, 0x49, 0x97, 0xab, 0x35, 0x61, 0x5b, 0x8e, 0xa3, 0xc6, 0x70, 0x7f, + 0xe8, 0x88, 0x35, 0x91, 0xf1, 0xf4, 0x73, 0xb9, 0x1b, 0x0f, 0x27, 0x0f, 0x45, 0x0f, 0x00, 0x7c, + 0x7d, 0xef, 0xad, 0x80, 0x8f, 0xbe, 0x98, 0x4b, 0x74, 0xf6, 0x27, 0x49, 0xd4, 0x18, 0x5a, 0xcc, + 0x32, 0xba, 0x5f, 0x3e, 0x4e, 0xf7, 0xdd, 0x7f, 0x73, 0x20, 0xe3, 0xe2, 0x49, 0x07, 0xc6, 0x99, + 0x04, 0x07, 0x05, 0x5c, 0xd1, 0xb3, 0xe9, 0x32, 0xbb, 0x90, 0x6b, 0xcb, 0x7f, 0xa2, 0xe0, 0x42, + 0x02, 0x19, 0x46, 0x97, 0x46, 0xbe, 0x0a, 0x6a, 0x73, 0x63, 0x51, 0xb8, 0xfc, 0x80, 0xa8, 0x8e, + 0xc7, 0xdd, 0xe7, 0x60, 0xae, 0x4f, 0x22, 0xde, 0x44, 0x1f, 0xa9, 0x1b, 0x89, 0x96, 0x12, 0xf1, + 0x8b, 0x18, 0x28, 0x60, 0x2c, 0x0c, 0x3f, 0x9b, 0x27, 0x4f, 0x7e, 0xc7, 0x81, 0xb9, 0x24, 0x4f, + 0xef, 0x5d, 0x99, 0x35, 0x5d, 0x56, 0xea, 0x03, 0x61, 0xbf, 0x04, 0xee, 0xdf, 0x4a, 0xbf, 0x22, + 0xbe, 0xaa, 0xae, 0xf7, 0x03, 0x67, 0xe8, 0x7e, 0xc0, 0x4c, 0xc4, 0x6f, 0xd1, 0x7a, 0xaf, 0xdd, + 0xd7, 0xd2, 0xb1, 0x2d, 0xc7, 0x51, 0x63, 0x64, 0xbe, 0x3c, 0x51, 0x3e, 0xf6, 0xcb, 0x13, 0xcf, + 0xc2, 0xb4, 0x7d, 0x79, 0x96, 0xd7, 0xb7, 0x64, 0x3d, 0xdf, 0xbe, 0x67, 0x8b, 0x19, 0xac, 0xdc, + 0xf7, 0x0b, 0xc6, 0x8f, 0xfd, 0x7e, 0xc1, 0xd3, 0x50, 0x91, 0xdf, 0x29, 0x57, 0xf5, 0x53, 0xd1, + 0x2f, 0x22, 0xc7, 0x50, 0x43, 0xc9, 0x65, 0x80, 0x8e, 0x17, 0xf6, 0xbc, 0x36, 0x9b, 0x21, 0xd9, + 0x80, 0xa4, 0x0d, 0x6a, 0x43, 0x43, 0xd0, 0xc2, 0x62, 0x26, 0x92, 0xbf, 0x38, 0x9e, 0x69, 0x63, + 0x72, 0x8e, 0x6d, 0x63, 0xca, 0x36, 0xda, 0x94, 0x4e, 0xd4, 0x68, 0x63, 0xf7, 0xc0, 0x94, 0x1f, + 0xd8, 0x03, 0xf3, 0x7e, 0x73, 0x71, 0x4d, 0x34, 0xcb, 0x4c, 0x0d, 0xba, 0xb4, 0x46, 0x5c, 0x98, + 0xf0, 0x3d, 0xdd, 0x87, 0x38, 0x2d, 0x62, 0x9b, 0x95, 0x65, 0x8e, 0x24, 0x21, 0xb5, 0xc5, 0xb7, + 0xde, 0xb9, 0xf8, 0xd8, 0xf7, 0xde, 0xb9, 0xf8, 0xd8, 0xdb, 0xef, 0x5c, 0x7c, 0xec, 0x0b, 0x47, + 0x17, 0x9d, 0xb7, 0x8e, 0x2e, 0x3a, 0xdf, 0x3b, 0xba, 0xe8, 0xbc, 0x7d, 0x74, 0xd1, 0xf9, 0x97, + 0xa3, 0x8b, 0xce, 0x6f, 0xfd, 0xe0, 0xe2, 0x63, 0x2f, 0x57, 0x94, 0xae, 0xfe, 0x6f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x69, 0x17, 0xe3, 0x0b, 0x88, 0x67, 0x00, 0x00, } func (m *AWSAuthConfig) Marshal() (dAtA []byte, err error) { @@ -3618,6 +3618,11 @@ func (m *ApplicationSourceHelm) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i -= len(m.Version) + copy(dAtA[i:], m.Version) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Version))) + i-- + dAtA[i] = 0x32 if len(m.FileParameters) > 0 { for iNdEx := len(m.FileParameters) - 1; iNdEx >= 0; iNdEx-- { { @@ -7850,6 +7855,8 @@ func (m *ApplicationSourceHelm) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) } } + l = len(m.Version) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -9557,6 +9564,7 @@ func (this *ApplicationSourceHelm) String() string { `ReleaseName:` + fmt.Sprintf("%v", this.ReleaseName) + `,`, `Values:` + fmt.Sprintf("%v", this.Values) + `,`, `FileParameters:` + repeatedStringForFileParameters + `,`, + `Version:` + fmt.Sprintf("%v", this.Version) + `,`, `}`, }, "") return s @@ -12958,6 +12966,38 @@ func (m *ApplicationSourceHelm) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Version = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/application/v1alpha1/generated.proto b/pkg/apis/application/v1alpha1/generated.proto index 60ad0b70b5e7a..2e714cf87c23c 100644 --- a/pkg/apis/application/v1alpha1/generated.proto +++ b/pkg/apis/application/v1alpha1/generated.proto @@ -189,6 +189,9 @@ message ApplicationSourceHelm { // FileParameters are file parameters to the helm template repeated HelmFileParameter fileParameters = 5; + + // Version is the Helm version to use for templating with + optional string version = 6; } // ApplicationSourceJsonnet holds jsonnet specific options diff --git a/pkg/apis/application/v1alpha1/openapi_generated.go b/pkg/apis/application/v1alpha1/openapi_generated.go index f392861135f56..1b5b4593893ef 100644 --- a/pkg/apis/application/v1alpha1/openapi_generated.go +++ b/pkg/apis/application/v1alpha1/openapi_generated.go @@ -724,6 +724,13 @@ func schema_pkg_apis_application_v1alpha1_ApplicationSourceHelm(ref common.Refer }, }, }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "Version is the Helm version to use for templating with", + Type: []string{"string"}, + Format: "", + }, + }, }, }, }, diff --git a/pkg/apis/application/v1alpha1/types.go b/pkg/apis/application/v1alpha1/types.go index 77de6b24d7608..2ecc48c3af0a6 100644 --- a/pkg/apis/application/v1alpha1/types.go +++ b/pkg/apis/application/v1alpha1/types.go @@ -191,6 +191,8 @@ type ApplicationSourceHelm struct { Values string `json:"values,omitempty" protobuf:"bytes,4,opt,name=values"` // FileParameters are file parameters to the helm template FileParameters []HelmFileParameter `json:"fileParameters,omitempty" protobuf:"bytes,5,opt,name=fileParameters"` + // Version is the Helm version to use for templating with + Version string `json:"version,omitempty" protobuf:"bytes,6,opt,name=version"` } // HelmParameter is a parameter to a helm template @@ -265,7 +267,7 @@ func (in *ApplicationSourceHelm) AddFileParameter(p HelmFileParameter) { } func (h *ApplicationSourceHelm) IsZero() bool { - return h == nil || (h.ReleaseName == "") && len(h.ValueFiles) == 0 && len(h.Parameters) == 0 && len(h.FileParameters) == 0 && h.Values == "" + return h == nil || (h.Version == "") && (h.ReleaseName == "") && len(h.ValueFiles) == 0 && len(h.Parameters) == 0 && len(h.FileParameters) == 0 && h.Values == "" } type KustomizeImage string diff --git a/reposerver/repository/repository.go b/reposerver/repository/repository.go index 57e09b995a8f6..d2078f5c2537f 100644 --- a/reposerver/repository/repository.go +++ b/reposerver/repository/repository.go @@ -252,7 +252,11 @@ func helmTemplate(appPath string, repoRoot string, env *v1alpha1.Env, q *apiclie } appHelm := q.ApplicationSource.Helm + var version string if appHelm != nil { + if appHelm.Version != "" { + version = appHelm.Version + } if appHelm.ReleaseName != "" { templateOpts.Name = appHelm.ReleaseName } @@ -322,7 +326,7 @@ func helmTemplate(appPath string, repoRoot string, env *v1alpha1.Env, q *apiclie for i, j := range templateOpts.SetFile { templateOpts.SetFile[i] = env.Envsubst(j) } - h, err := helm.NewHelmApp(appPath, getHelmRepos(q.Repos), isLocal) + h, err := helm.NewHelmApp(appPath, getHelmRepos(q.Repos), isLocal, version) if err != nil { return nil, err @@ -746,7 +750,13 @@ func (s *Service) GetAppDetails(ctx context.Context, q *apiclient.RepoServerAppD res.Helm.ValueFiles = append(res.Helm.ValueFiles, fName) } } - h, err := helm.NewHelmApp(appPath, getHelmRepos(q.Repos), false) + var version string + if q.Source.Helm != nil { + if q.Source.Helm.Version != "" { + version = q.Source.Helm.Version + } + } + h, err := helm.NewHelmApp(appPath, getHelmRepos(q.Repos), false, version) if err != nil { return err } diff --git a/util/helm/cmd.go b/util/helm/cmd.go index 0e61e8815b640..3c3a842226034 100644 --- a/util/helm/cmd.go +++ b/util/helm/cmd.go @@ -22,7 +22,15 @@ type Cmd struct { IsLocal bool } -func NewCmd(workDir string) (*Cmd, error) { +func NewCmd(workDir string, version string) (*Cmd, error) { + if version != "" { + switch version { + case "v2": + return NewCmdWithVersion(workDir, HelmV2) + case "v3": + return NewCmdWithVersion(workDir, HelmV3) + } + } helmVersion, err := getHelmVersion(workDir) if err != nil { return nil, err diff --git a/util/helm/cmd_test.go b/util/helm/cmd_test.go index f5cd0eee5792a..8ed6af23bb28f 100644 --- a/util/helm/cmd_test.go +++ b/util/helm/cmd_test.go @@ -21,3 +21,15 @@ func TestCmd_template_kubeVersion(t *testing.T) { assert.NoError(t, err) assert.NotEmpty(t, s) } + +func TestNewCmd_helmV2(t *testing.T) { + cmd, err := NewCmd(".", "v2") + assert.NoError(t, err) + assert.Equal(t, "helm2", cmd.HelmVer.binaryName) +} + +func TestNewCmd_helmV3(t *testing.T) { + cmd, err := NewCmd(".", "v3") + assert.NoError(t, err) + assert.Equal(t, "helm", cmd.HelmVer.binaryName) +} diff --git a/util/helm/helm.go b/util/helm/helm.go index 9243f53047e7e..67b662d3c1b98 100644 --- a/util/helm/helm.go +++ b/util/helm/helm.go @@ -35,8 +35,8 @@ type Helm interface { } // NewHelmApp create a new wrapper to run commands on the `helm` command-line tool. -func NewHelmApp(workDir string, repos []HelmRepository, isLocal bool) (Helm, error) { - cmd, err := NewCmd(workDir) +func NewHelmApp(workDir string, repos []HelmRepository, isLocal bool, version string) (Helm, error) { + cmd, err := NewCmd(workDir, version) if err != nil { return nil, err } diff --git a/util/helm/helm_test.go b/util/helm/helm_test.go index 32b8105653f56..c31e67ca4db3b 100644 --- a/util/helm/helm_test.go +++ b/util/helm/helm_test.go @@ -23,7 +23,7 @@ func template(h Helm, opts *TemplateOpts) ([]*unstructured.Unstructured, error) } func TestHelmTemplateParams(t *testing.T) { - h, err := NewHelmApp("./testdata/minio", []HelmRepository{}, false) + h, err := NewHelmApp("./testdata/minio", []HelmRepository{}, false, "") assert.NoError(t, err) opts := TemplateOpts{ Name: "test", @@ -52,7 +52,7 @@ func TestHelmTemplateParams(t *testing.T) { } func TestHelmTemplateValues(t *testing.T) { - h, err := NewHelmApp("./testdata/redis", []HelmRepository{}, false) + h, err := NewHelmApp("./testdata/redis", []HelmRepository{}, false, "") assert.NoError(t, err) opts := TemplateOpts{ Name: "test", @@ -73,7 +73,7 @@ func TestHelmTemplateValues(t *testing.T) { } func TestHelmGetParams(t *testing.T) { - h, err := NewHelmApp("./testdata/redis", nil, false) + h, err := NewHelmApp("./testdata/redis", nil, false, "") assert.NoError(t, err) params, err := h.GetParameters([]string{}) assert.Nil(t, err) @@ -83,7 +83,7 @@ func TestHelmGetParams(t *testing.T) { } func TestHelmGetParamsValueFiles(t *testing.T) { - h, err := NewHelmApp("./testdata/redis", nil, false) + h, err := NewHelmApp("./testdata/redis", nil, false, "") assert.NoError(t, err) params, err := h.GetParameters([]string{"values-production.yaml"}) assert.Nil(t, err) @@ -103,7 +103,7 @@ func TestHelmDependencyBuild(t *testing.T) { } clean() defer clean() - h, err := NewHelmApp(fmt.Sprintf("./testdata/%s", chart), nil, false) + h, err := NewHelmApp(fmt.Sprintf("./testdata/%s", chart), nil, false, "") assert.NoError(t, err) err = h.Init() assert.NoError(t, err) @@ -118,7 +118,7 @@ func TestHelmDependencyBuild(t *testing.T) { } func TestHelmTemplateReleaseNameOverwrite(t *testing.T) { - h, err := NewHelmApp("./testdata/redis", nil, false) + h, err := NewHelmApp("./testdata/redis", nil, false, "") assert.NoError(t, err) objs, err := template(h, &TemplateOpts{Name: "my-release"}) @@ -136,7 +136,7 @@ func TestHelmTemplateReleaseNameOverwrite(t *testing.T) { } func TestHelmTemplateReleaseName(t *testing.T) { - h, err := NewHelmApp("./testdata/redis", nil, false) + h, err := NewHelmApp("./testdata/redis", nil, false, "") assert.NoError(t, err) objs, err := template(h, &TemplateOpts{Name: "test"}) assert.Nil(t, err) @@ -195,7 +195,7 @@ func Test_flatVals(t *testing.T) { } func TestAPIVersions(t *testing.T) { - h, err := NewHelmApp("./testdata/api-versions", nil, false) + h, err := NewHelmApp("./testdata/api-versions", nil, false, "") if !assert.NoError(t, err) { return }