From 1ea3360f6f7280c4dbda6d50a10a288b6cf45cad Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Wed, 31 May 2023 10:37:23 +0200 Subject: [PATCH 1/2] feat(#1656) : jib poc basic integration use case * Add publish jib strategy * Use google jib plugin --- .github/workflows/builder.yml | 2 +- config/crd/bases/camel.apache.org_builds.yaml | 37 ++ .../samples/patch-integration-platform.yaml | 4 +- .../ROOT/partials/apis/camel-k-crds.adoc | 349 ++++++++++++++++++ helm/camel-k/crds/crd-build.yaml | 37 ++ pkg/apis/camel/v1/build_types.go | 8 + .../camel/v1/integrationplatform_types.go | 3 + pkg/apis/camel/v1/maven_types.go | 51 +++ pkg/apis/camel/v1/zz_generated.deepcopy.go | 197 ++++++++++ pkg/builder/jib.go | 175 +++++++++ pkg/builder/quarkus.go | 42 +++ pkg/builder/tasks.go | 12 + .../applyconfiguration/camel/v1/jibtask.go | 73 ++++ .../camel/applyconfiguration/camel/v1/task.go | 9 + pkg/client/camel/applyconfiguration/utils.go | 2 + pkg/controller/build/build_pod.go | 2 + pkg/controller/build/monitor_routine.go | 7 + pkg/resources/resources.go | 8 +- pkg/trait/builder.go | 12 + pkg/trait/quarkus.go | 4 +- pkg/util/maven/maven_command.go | 10 + pkg/util/maven/maven_types.go | 11 +- 22 files changed, 1041 insertions(+), 14 deletions(-) create mode 100644 pkg/builder/jib.go create mode 100644 pkg/client/camel/applyconfiguration/camel/v1/jibtask.go diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 1caa8e51f9..822bf99d15 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -74,7 +74,7 @@ jobs: strategy: fail-fast: false matrix: - publisher: ["Buildah", "Spectrum", "Kaniko"] + publisher: ["Buildah", "Spectrum", "Kaniko", "Jib"] steps: - name: Checkout code diff --git a/config/crd/bases/camel.apache.org_builds.yaml b/config/crd/bases/camel.apache.org_builds.yaml index 9e525152b3..a51ce26e1a 100644 --- a/config/crd/bases/camel.apache.org_builds.yaml +++ b/config/crd/bases/camel.apache.org_builds.yaml @@ -634,6 +634,43 @@ spec: description: name of the task type: string type: object + jib: + description: a JibTask, for Jib strategy + properties: + baseImage: + description: base image layer + type: string + contextDir: + description: can be useful to share info with other tasks + type: string + image: + description: final image name + type: string + name: + description: name of the task + type: string + registry: + description: where to publish the final image + properties: + address: + description: the URI to access + type: string + ca: + description: the configmap which stores the Certificate + Authority + type: string + insecure: + description: if the container registry is insecure (ie, + http only) + type: boolean + organization: + description: the registry organization + type: string + secret: + description: the secret where credentials are stored + type: string + type: object + type: object kaniko: description: a KanikoTask, for Kaniko strategy properties: diff --git a/config/samples/patch-integration-platform.yaml b/config/samples/patch-integration-platform.yaml index f53bd4783d..e7ea4f540b 100644 --- a/config/samples/patch-integration-platform.yaml +++ b/config/samples/patch-integration-platform.yaml @@ -44,9 +44,9 @@ spec: # # # Build publish strategy for integrations - # ie. Buildah, Kaniko, S2I, Spectrum + # ie. Buildah, Kaniko, S2I, Spectrum, Jib # - # publishStrategy: Buildah | Kaniko | S2I | Spectrum + # publishStrategy: Buildah | Kaniko | S2I | Spectrum | Jib # # Set the camel-k runtime version # diff --git a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc index 169451c07b..4c7bf56d69 100644 --- a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc +++ b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc @@ -330,6 +330,30 @@ AddonTrait represents the configuration of an addon trait Generic raw message, typically a map containing the keys (trait parameters) and the values (either single text or array) +|=== + +[#_camel_apache_org_v1_Args] +=== Args + +*Appears on:* + +* <<#_camel_apache_org_v1_Container, Container>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`arg` + +string +| + + + + + |=== [#_camel_apache_org_v1_Artifact] @@ -385,6 +409,7 @@ a checksum (SHA1) of the content * <<#_camel_apache_org_v1_BuildahTask, BuildahTask>> * <<#_camel_apache_org_v1_BuilderTask, BuilderTask>> +* <<#_camel_apache_org_v1_JibTask, JibTask>> * <<#_camel_apache_org_v1_KanikoTask, KanikoTask>> * <<#_camel_apache_org_v1_S2iTask, S2iTask>> * <<#_camel_apache_org_v1_SpectrumTask, SpectrumTask>> @@ -1348,6 +1373,37 @@ string the value to assign to the configuration (syntax may vary depending on the `Type`) +|=== + +[#_camel_apache_org_v1_Container] +=== Container + +*Appears on:* + +* <<#_camel_apache_org_v1_PluginConfiguration, PluginConfiguration>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`entrypoint` + +string +| + + + + +|`args` + +*xref:#_camel_apache_org_v1_Args[Args]* +| + + + + + |=== [#_camel_apache_org_v1_DataSpec] @@ -1830,6 +1886,30 @@ string +|=== + +[#_camel_apache_org_v1_ExtraDirectories] +=== ExtraDirectories + +*Appears on:* + +* <<#_camel_apache_org_v1_PluginConfiguration, PluginConfiguration>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`paths` + +*xref:#_camel_apache_org_v1_Paths[Paths]* +| + + + + + |=== [#_camel_apache_org_v1_Failure] @@ -1907,6 +1987,54 @@ maximum number of attempts time of the attempt execution +|=== + +[#_camel_apache_org_v1_Filter] +=== Filter + +*Appears on:* + +* <<#_camel_apache_org_v1_Filters, Filters>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`glob` + +string +| + + + + + +|=== + +[#_camel_apache_org_v1_Filters] +=== Filters + +*Appears on:* + +* <<#_camel_apache_org_v1_PluginExtensionConfiguration, PluginExtensionConfiguration>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`filter` + +*xref:#_camel_apache_org_v1_Filter[Filter]* +| + + + + + |=== [#_camel_apache_org_v1_Flow] @@ -3402,6 +3530,37 @@ string JSONSchemaURL represents a schema url. +[#_camel_apache_org_v1_JibTask] +=== JibTask + +*Appears on:* + +* <<#_camel_apache_org_v1_Task, Task>> + +JibTask is used to configure Jib + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`BaseTask` + +*xref:#_camel_apache_org_v1_BaseTask[BaseTask]* +|(Members of `BaseTask` are embedded into this type.) + + + + +|`PublishTask` + +*xref:#_camel_apache_org_v1_PublishTask[PublishTask]* +|(Members of `PublishTask` are embedded into this type.) + + + + + +|=== + [#_camel_apache_org_v1_KameletCondition] === KameletCondition @@ -3865,6 +4024,61 @@ e.g., `-V,--no-transfer-progress,-Dstyle.color=never`. See https://maven.apache.org/ref/3.8.4/maven-embedder/cli.html. +|=== + +[#_camel_apache_org_v1_Path] +=== Path + +*Appears on:* + +* <<#_camel_apache_org_v1_Paths, Paths>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`from` + +string +| + + + + +|`into` + +string +| + + + + + +|=== + +[#_camel_apache_org_v1_Paths] +=== Paths + +*Appears on:* + +* <<#_camel_apache_org_v1_ExtraDirectories, ExtraDirectories>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`path` + +*xref:#_camel_apache_org_v1_Path[Path]* +| + + + + + |=== [#_camel_apache_org_v1_PipeCondition] @@ -4069,6 +4283,133 @@ string Selector allows to identify pods belonging to the pipe +|=== + +[#_camel_apache_org_v1_PluginConfiguration] +=== PluginConfiguration + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`container` + +*xref:#_camel_apache_org_v1_Container[Container]* +| + + + + +|`allowInsecureRegistries` + +string +| + + + + +|`extraDirectories` + +*xref:#_camel_apache_org_v1_ExtraDirectories[ExtraDirectories]* +| + + + + +|`pluginExtensions` + +*xref:#_camel_apache_org_v1_PluginExtensions[PluginExtensions]* +| + + + + + +|=== + +[#_camel_apache_org_v1_PluginExtension] +=== PluginExtension + +*Appears on:* + +* <<#_camel_apache_org_v1_PluginExtensions, PluginExtensions>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`implementation` + +string +| + + + + +|`configuration` + +*xref:#_camel_apache_org_v1_PluginExtensionConfiguration[PluginExtensionConfiguration]* +| + + + + + +|=== + +[#_camel_apache_org_v1_PluginExtensionConfiguration] +=== PluginExtensionConfiguration + +*Appears on:* + +* <<#_camel_apache_org_v1_PluginExtension, PluginExtension>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`filters` + +*xref:#_camel_apache_org_v1_Filters[Filters]* +| + + + + +|`_implementation` + +string +| + + + + + +|=== + +[#_camel_apache_org_v1_PluginExtensions] +=== PluginExtensions + +*Appears on:* + +* <<#_camel_apache_org_v1_PluginConfiguration, PluginConfiguration>> + + + +[cols="2,2a",options="header"] +|=== +|Field +|Description + +|`pluginExtension` + +*xref:#_camel_apache_org_v1_PluginExtension[PluginExtension]* +| + + + + + |=== [#_camel_apache_org_v1_PluginProperties] @@ -4251,6 +4592,7 @@ the specification *Appears on:* * <<#_camel_apache_org_v1_BuildahTask, BuildahTask>> +* <<#_camel_apache_org_v1_JibTask, JibTask>> * <<#_camel_apache_org_v1_KanikoTask, KanikoTask>> * <<#_camel_apache_org_v1_SpectrumTask, SpectrumTask>> @@ -4810,6 +5152,13 @@ a SpectrumTask, for Spectrum strategy a S2iTask, for S2I strategy +|`jib` + +*xref:#_camel_apache_org_v1_JibTask[JibTask]* +| + + +a JibTask, for Jib strategy + |`custom` + *xref:#_camel_apache_org_v1_UserTask[UserTask]* | diff --git a/helm/camel-k/crds/crd-build.yaml b/helm/camel-k/crds/crd-build.yaml index 9e525152b3..a51ce26e1a 100644 --- a/helm/camel-k/crds/crd-build.yaml +++ b/helm/camel-k/crds/crd-build.yaml @@ -634,6 +634,43 @@ spec: description: name of the task type: string type: object + jib: + description: a JibTask, for Jib strategy + properties: + baseImage: + description: base image layer + type: string + contextDir: + description: can be useful to share info with other tasks + type: string + image: + description: final image name + type: string + name: + description: name of the task + type: string + registry: + description: where to publish the final image + properties: + address: + description: the URI to access + type: string + ca: + description: the configmap which stores the Certificate + Authority + type: string + insecure: + description: if the container registry is insecure (ie, + http only) + type: boolean + organization: + description: the registry organization + type: string + secret: + description: the secret where credentials are stored + type: string + type: object + type: object kaniko: description: a KanikoTask, for Kaniko strategy properties: diff --git a/pkg/apis/camel/v1/build_types.go b/pkg/apis/camel/v1/build_types.go index e928c66c9a..5c8dcb2d5c 100644 --- a/pkg/apis/camel/v1/build_types.go +++ b/pkg/apis/camel/v1/build_types.go @@ -67,6 +67,8 @@ type Task struct { Spectrum *SpectrumTask `json:"spectrum,omitempty"` // a S2iTask, for S2I strategy S2i *S2iTask `json:"s2i,omitempty"` + // a JibTask, for Jib strategy + Jib *JibTask `json:"jib,omitempty"` // User customizable task execution @@ -154,6 +156,12 @@ type KanikoTaskCache struct { PersistentVolumeClaim string `json:"persistentVolumeClaim,omitempty"` } +// JibTask is used to configure Jib +type JibTask struct { + BaseTask `json:",inline"` + PublishTask `json:",inline"` +} + // SpectrumTask is used to configure Spectrum type SpectrumTask struct { BaseTask `json:",inline"` diff --git a/pkg/apis/camel/v1/integrationplatform_types.go b/pkg/apis/camel/v1/integrationplatform_types.go index a22b3802cc..dc0b5c0e52 100644 --- a/pkg/apis/camel/v1/integrationplatform_types.go +++ b/pkg/apis/camel/v1/integrationplatform_types.go @@ -165,6 +165,8 @@ const ( // IntegrationPlatformBuildPublishStrategySpectrum uses Spectrum project (https://github.com/container-tools/spectrum) // in order to push the incremental images to the image repository. It is the default choice on vanilla Kubernetes cluster IntegrationPlatformBuildPublishStrategySpectrum IntegrationPlatformBuildPublishStrategy = "Spectrum" + // IntegrationPlatformBuildPublishStrategyJib TODO + IntegrationPlatformBuildPublishStrategyJib IntegrationPlatformBuildPublishStrategy = "Jib" ) // IntegrationPlatformBuildPublishStrategies the list of all available publish strategies @@ -173,6 +175,7 @@ var IntegrationPlatformBuildPublishStrategies = []IntegrationPlatformBuildPublis IntegrationPlatformBuildPublishStrategyKaniko, IntegrationPlatformBuildPublishStrategyS2I, IntegrationPlatformBuildPublishStrategySpectrum, + IntegrationPlatformBuildPublishStrategyJib, } // IntegrationPlatformPhase is the phase of an IntegrationPlatform diff --git a/pkg/apis/camel/v1/maven_types.go b/pkg/apis/camel/v1/maven_types.go index 378d7cfc49..fe2298fb7f 100644 --- a/pkg/apis/camel/v1/maven_types.go +++ b/pkg/apis/camel/v1/maven_types.go @@ -103,3 +103,54 @@ type StringOrProperties struct { type Properties map[string]string type PluginProperties map[string]StringOrProperties + +type PluginConfiguration struct { + Container Container `xml:"container" json:"container"` + AllowInsecureRegistries string `xml:"allowInsecureRegistries" json:"allowInsecureRegistries"` + ExtraDirectories ExtraDirectories `xml:"extraDirectories" json:"extraDirectories"` + PluginExtensions PluginExtensions `xml:"pluginExtensions" json:"pluginExtensions"` +} + +type Container struct { + Entrypoint string `xml:"entrypoint" json:"entrypoint"` + Args Args `xml:"args" json:"args"` +} + +type Args struct { + Arg string `xml:"arg" json:"arg"` +} + +type ExtraDirectories struct { + Paths Paths `xml:"paths" json:"paths"` +} + +type Paths struct { + Path Path `xml:"path" json:"path"` +} + +type Path struct { + From string `xml:"from" json:"from"` + Into string `xml:"into" json:"into"` +} + +type PluginExtensions struct { + PluginExtension PluginExtension `xml:"pluginExtension" json:"pluginExtension"` +} + +type PluginExtension struct { + Implementation string `xml:"implementation" json:"implementation"` + Configuration PluginExtensionConfiguration `xml:"configuration" json:"configuration"` +} + +type PluginExtensionConfiguration struct { + Filters Filters `xml:"filters" json:"filters"` + Implementation string `xml:"implementation,attr" json:"_implementation"` +} + +type Filters struct { + Filter Filter `xml:"filter" json:"filter"` +} + +type Filter struct { + Glob string `xml:"glob" json:"glob"` +} diff --git a/pkg/apis/camel/v1/zz_generated.deepcopy.go b/pkg/apis/camel/v1/zz_generated.deepcopy.go index e7d79c4dd7..12024176bf 100644 --- a/pkg/apis/camel/v1/zz_generated.deepcopy.go +++ b/pkg/apis/camel/v1/zz_generated.deepcopy.go @@ -33,6 +33,21 @@ func (in *AddonTrait) DeepCopy() *AddonTrait { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Args) DeepCopyInto(out *Args) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Args. +func (in *Args) DeepCopy() *Args { + if in == nil { + return nil + } + out := new(Args) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Artifact) DeepCopyInto(out *Artifact) { *out = *in @@ -608,6 +623,22 @@ func (in *ConfigurationSpec) DeepCopy() *ConfigurationSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Container) DeepCopyInto(out *Container) { + *out = *in + out.Args = in.Args +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Container. +func (in *Container) DeepCopy() *Container { + if in == nil { + return nil + } + out := new(Container) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DataSpec) DeepCopyInto(out *DataSpec) { *out = *in @@ -894,6 +925,22 @@ func (in *ExternalDocumentation) DeepCopy() *ExternalDocumentation { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ExtraDirectories) DeepCopyInto(out *ExtraDirectories) { + *out = *in + out.Paths = in.Paths +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtraDirectories. +func (in *ExtraDirectories) DeepCopy() *ExtraDirectories { + if in == nil { + return nil + } + out := new(ExtraDirectories) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Failure) DeepCopyInto(out *Failure) { *out = *in @@ -927,6 +974,37 @@ func (in *FailureRecovery) DeepCopy() *FailureRecovery { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Filter) DeepCopyInto(out *Filter) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Filter. +func (in *Filter) DeepCopy() *Filter { + if in == nil { + return nil + } + out := new(Filter) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Filters) DeepCopyInto(out *Filters) { + *out = *in + out.Filter = in.Filter +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Filters. +func (in *Filters) DeepCopy() *Filters { + if in == nil { + return nil + } + out := new(Filters) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Flow) DeepCopyInto(out *Flow) { *out = *in @@ -1735,6 +1813,23 @@ func (in *JSONSchemaProps) DeepCopy() *JSONSchemaProps { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *JibTask) DeepCopyInto(out *JibTask) { + *out = *in + out.BaseTask = in.BaseTask + out.PublishTask = in.PublishTask +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JibTask. +func (in *JibTask) DeepCopy() *JibTask { + if in == nil { + return nil + } + out := new(JibTask) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Kamelet) DeepCopyInto(out *Kamelet) { *out = *in @@ -2031,6 +2126,37 @@ func (in *MavenSpec) DeepCopy() *MavenSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Path) DeepCopyInto(out *Path) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Path. +func (in *Path) DeepCopy() *Path { + if in == nil { + return nil + } + out := new(Path) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Paths) DeepCopyInto(out *Paths) { + *out = *in + out.Path = in.Path +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Paths. +func (in *Paths) DeepCopy() *Paths { + if in == nil { + return nil + } + out := new(Paths) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Pipe) DeepCopyInto(out *Pipe) { *out = *in @@ -2180,6 +2306,72 @@ func (in *PipeStatus) DeepCopy() *PipeStatus { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *PluginConfiguration) DeepCopyInto(out *PluginConfiguration) { + *out = *in + out.Container = in.Container + out.ExtraDirectories = in.ExtraDirectories + out.PluginExtensions = in.PluginExtensions +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginConfiguration. +func (in *PluginConfiguration) DeepCopy() *PluginConfiguration { + if in == nil { + return nil + } + out := new(PluginConfiguration) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *PluginExtension) DeepCopyInto(out *PluginExtension) { + *out = *in + out.Configuration = in.Configuration +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginExtension. +func (in *PluginExtension) DeepCopy() *PluginExtension { + if in == nil { + return nil + } + out := new(PluginExtension) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *PluginExtensionConfiguration) DeepCopyInto(out *PluginExtensionConfiguration) { + *out = *in + out.Filters = in.Filters +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginExtensionConfiguration. +func (in *PluginExtensionConfiguration) DeepCopy() *PluginExtensionConfiguration { + if in == nil { + return nil + } + out := new(PluginExtensionConfiguration) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *PluginExtensions) DeepCopyInto(out *PluginExtensions) { + *out = *in + out.PluginExtension = in.PluginExtension +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginExtensions. +func (in *PluginExtensions) DeepCopy() *PluginExtensions { + if in == nil { + return nil + } + out := new(PluginExtensions) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in PluginProperties) DeepCopyInto(out *PluginProperties) { { @@ -2577,6 +2769,11 @@ func (in *Task) DeepCopyInto(out *Task) { *out = new(S2iTask) **out = **in } + if in.Jib != nil { + in, out := &in.Jib, &out.Jib + *out = new(JibTask) + **out = **in + } if in.Custom != nil { in, out := &in.Custom, &out.Custom *out = new(UserTask) diff --git a/pkg/builder/jib.go b/pkg/builder/jib.go new file mode 100644 index 0000000000..4be6c0cb14 --- /dev/null +++ b/pkg/builder/jib.go @@ -0,0 +1,175 @@ +/* +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package builder + +import ( + "context" + "io/ioutil" + "os" + "os/exec" + "path/filepath" + "strings" + + v1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1" + "github.com/apache/camel-k/v2/pkg/client" + "github.com/apache/camel-k/v2/pkg/util" + "github.com/apache/camel-k/v2/pkg/util/log" +) + +type jibTask struct { + c client.Client + build *v1.Build + task *v1.JibTask +} + +var _ Task = &jibTask{} + +var ( + logger = log.WithName("jib") + + loggerInfo = func(s string) string { logger.Info(s); return "" } + loggerError = func(s string) string { logger.Error(nil, s); return "" } +) + +func (t *jibTask) Do(ctx context.Context) v1.BuildStatus { + status := v1.BuildStatus{} + + baseImage := t.build.Status.BaseImage + if baseImage == "" { + baseImage = t.task.BaseImage + status.BaseImage = baseImage + } + + contextDir := t.task.ContextDir + if contextDir == "" { + // Use the working directory. + // This is useful when the task is executed in-container, + // so that its WorkingDir can be used to share state and + // coordinate with other tasks. + pwd, err := os.Getwd() + if err != nil { + return status.Failed(err) + } + contextDir = filepath.Join(pwd, ContextDir) + } + + exists, err := util.DirectoryExists(contextDir) + if err != nil { + return status.Failed(err) + } + empty, err := util.DirectoryEmpty(contextDir) + if err != nil { + return status.Failed(err) + } + if !exists || empty { + // this can only indicate that there are no more resources to add to the base image, + // because transitive resolution is the same even if spec differs. + log.Infof("No new image to build, reusing existing image %s", baseImage) + status.Image = baseImage + return status + } + mavenDir := strings.ReplaceAll(contextDir, "context", "maven") + + pullInsecure := t.task.Registry.Insecure // incremental build case + + if !strings.HasPrefix(baseImage, t.task.Registry.Address) { + if pullInsecure { + log.Info("Assuming secure pull because the registry for the base image and the main registry are different") + pullInsecure = false + } + } + + registryConfigDir := "" + if t.task.Registry.Secret != "" { + registryConfigDir, err = MountSecret(ctx, t.c, t.build.Namespace, t.task.Registry.Secret) + if err != nil { + return status.Failed(err) + } + } + + if registryConfigDir != "" { + if err := os.RemoveAll(registryConfigDir); err != nil { + return status.Failed(err) + } + } + + // Then do poc actions for jib + log.Infof("Registry address: %s", t.task.Registry.Address) + log.Infof("Base image: %s", baseImage) + + /*mavenPom, errPom := readFile(mavenDir + "/pom.xml") + if errPom != nil { + return status.Failed(errPom) + } + log.Info(string(mavenPom))*/ + + mavenCommand, err := readFile(mavenDir + "/MAVEN_CONTEXT") + if err != nil { + return status.Failed(err) + } + log.Info(string(mavenCommand)) + + // ugly replaces + mavenCommandStr := string(mavenCommand) + mavenCommandStr = strings.ReplaceAll(mavenCommandStr, "./mvnw", "") + mavenCommandStr = strings.ReplaceAll(mavenCommandStr, "package", "jib:build") + mavenCommandStr += " -Djib.to.image=" + t.task.Image + mavenCommandStr += " -Djib.from.image=" + baseImage + mavenCommandStr = strings.Trim(mavenCommandStr, " ") + mavenArgs := strings.Split(mavenCommandStr, " ") + log.Info("|" + mavenCommandStr + "|") + + mvnCmd := "./mvnw" + if c, ok := os.LookupEnv("MAVEN_CMD"); ok { + mvnCmd = c + } + cmd := exec.CommandContext(ctx, mvnCmd, mavenArgs...) + cmd.Dir = mavenDir + + myerror := util.RunAndLog(ctx, cmd, loggerInfo, loggerError) + if myerror != nil { + log.Errorf(myerror, "jib integration image containerization did not run successfully") + return status.Failed(myerror) + } else { + log.Info("jib integration image containerization did run successfully") + status.Image = t.task.Image + + // retrieve image digest + mavenDigest, errDigest := readFile(mavenDir + "/target/jib-image.digest") + if errDigest != nil { + return status.Failed(errDigest) + } + log.Info(string(mavenDigest)) + status.Digest = string(mavenDigest) + } + + return status +} + +func readFile(filePath string) ([]byte, error) { + file, err := os.Open(filePath) + if err != nil { + log.Errorf(err, "Shit happened") + } + defer func() { + if err = file.Close(); err != nil { + log.Errorf(err, "Shit happened when closing file") + } + }() + + return ioutil.ReadAll(file) + +} diff --git a/pkg/builder/quarkus.go b/pkg/builder/quarkus.go index 85fcd92b5f..8280461684 100644 --- a/pkg/builder/quarkus.go +++ b/pkg/builder/quarkus.go @@ -206,6 +206,48 @@ func GenerateQuarkusProjectCommon(runtimeVersion string, quarkusVersion string, }, }, }, + maven.Plugin{ + GroupID: "com.google.cloud.tools", + ArtifactID: "jib-maven-plugin", + Version: "3.3.1", + Dependencies: []maven.Dependency{ + { + GroupID: "com.google.cloud.tools", + ArtifactID: "jib-layer-filter-extension-maven", + Version: "0.3.0", + }, + }, + Configuration: v1.PluginConfiguration{ + Container: v1.Container{ + Entrypoint: "INHERIT", + Args: v1.Args{ + Arg: "jshell", + }, + }, + AllowInsecureRegistries: "true", + ExtraDirectories: v1.ExtraDirectories{ + Paths: v1.Paths{ + Path: v1.Path{ + From: "../context", + Into: "/deployments", + }, + }, + }, + PluginExtensions: v1.PluginExtensions{ + PluginExtension: v1.PluginExtension{ + Implementation: "com.google.cloud.tools.jib.maven.extension.layerfilter.JibLayerFilterExtension", + Configuration: v1.PluginExtensionConfiguration{ + Implementation: "com.google.cloud.tools.jib.maven.extension.layerfilter.Configuration", + Filters: v1.Filters{ + Filter: v1.Filter{ + Glob: "/app/**", + }, + }, + }, + }, + }, + }, + }, ) return p diff --git a/pkg/builder/tasks.go b/pkg/builder/tasks.go index 00e575e0ea..054fe35521 100644 --- a/pkg/builder/tasks.go +++ b/pkg/builder/tasks.go @@ -62,6 +62,12 @@ func (b *Build) Task(task v1.Task) Task { build: b.build, task: task.S2i, } + case task.Jib != nil: + return &jibTask{ + c: b.builder.client, + build: b.build, + task: task.Jib, + } } return &emptyTask{ @@ -138,6 +144,12 @@ func (b *Build) TaskByName(name string) Task { build: b.build, task: task.S2i, } + case task.Jib != nil && task.Jib.Name == name: + return &jibTask{ + c: b.builder.client, + build: b.build, + task: task.Jib, + } } } return &missingTask{ diff --git a/pkg/client/camel/applyconfiguration/camel/v1/jibtask.go b/pkg/client/camel/applyconfiguration/camel/v1/jibtask.go new file mode 100644 index 0000000000..1e87d42814 --- /dev/null +++ b/pkg/client/camel/applyconfiguration/camel/v1/jibtask.go @@ -0,0 +1,73 @@ +/* +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +// Code generated by applyconfiguration-gen. DO NOT EDIT. + +package v1 + +// JibTaskApplyConfiguration represents an declarative configuration of the JibTask type for use +// with apply. +type JibTaskApplyConfiguration struct { + BaseTaskApplyConfiguration `json:",inline"` + PublishTaskApplyConfiguration `json:",inline"` +} + +// JibTaskApplyConfiguration constructs an declarative configuration of the JibTask type for use with +// apply. +func JibTask() *JibTaskApplyConfiguration { + return &JibTaskApplyConfiguration{} +} + +// WithName sets the Name field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Name field is set to the value of the last call. +func (b *JibTaskApplyConfiguration) WithName(value string) *JibTaskApplyConfiguration { + b.Name = &value + return b +} + +// WithContextDir sets the ContextDir field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the ContextDir field is set to the value of the last call. +func (b *JibTaskApplyConfiguration) WithContextDir(value string) *JibTaskApplyConfiguration { + b.ContextDir = &value + return b +} + +// WithBaseImage sets the BaseImage field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the BaseImage field is set to the value of the last call. +func (b *JibTaskApplyConfiguration) WithBaseImage(value string) *JibTaskApplyConfiguration { + b.BaseImage = &value + return b +} + +// WithImage sets the Image field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Image field is set to the value of the last call. +func (b *JibTaskApplyConfiguration) WithImage(value string) *JibTaskApplyConfiguration { + b.Image = &value + return b +} + +// WithRegistry sets the Registry field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Registry field is set to the value of the last call. +func (b *JibTaskApplyConfiguration) WithRegistry(value *RegistrySpecApplyConfiguration) *JibTaskApplyConfiguration { + b.Registry = value + return b +} diff --git a/pkg/client/camel/applyconfiguration/camel/v1/task.go b/pkg/client/camel/applyconfiguration/camel/v1/task.go index 01fd1aa5a2..a4b7912c2e 100644 --- a/pkg/client/camel/applyconfiguration/camel/v1/task.go +++ b/pkg/client/camel/applyconfiguration/camel/v1/task.go @@ -27,6 +27,7 @@ type TaskApplyConfiguration struct { Kaniko *KanikoTaskApplyConfiguration `json:"kaniko,omitempty"` Spectrum *SpectrumTaskApplyConfiguration `json:"spectrum,omitempty"` S2i *S2iTaskApplyConfiguration `json:"s2i,omitempty"` + Jib *JibTaskApplyConfiguration `json:"jib,omitempty"` Custom *UserTaskApplyConfiguration `json:"custom,omitempty"` } @@ -76,6 +77,14 @@ func (b *TaskApplyConfiguration) WithS2i(value *S2iTaskApplyConfiguration) *Task return b } +// WithJib sets the Jib field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Jib field is set to the value of the last call. +func (b *TaskApplyConfiguration) WithJib(value *JibTaskApplyConfiguration) *TaskApplyConfiguration { + b.Jib = value + return b +} + // WithCustom sets the Custom field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. // If called multiple times, the Custom field is set to the value of the last call. diff --git a/pkg/client/camel/applyconfiguration/utils.go b/pkg/client/camel/applyconfiguration/utils.go index 1e0497534b..3ce316c0eb 100644 --- a/pkg/client/camel/applyconfiguration/utils.go +++ b/pkg/client/camel/applyconfiguration/utils.go @@ -136,6 +136,8 @@ func ForKind(kind schema.GroupVersionKind) interface{} { return &camelv1.IntegrationSpecApplyConfiguration{} case v1.SchemeGroupVersion.WithKind("IntegrationStatus"): return &camelv1.IntegrationStatusApplyConfiguration{} + case v1.SchemeGroupVersion.WithKind("JibTask"): + return &camelv1.JibTaskApplyConfiguration{} case v1.SchemeGroupVersion.WithKind("JSON"): return &camelv1.JSONApplyConfiguration{} case v1.SchemeGroupVersion.WithKind("JSONSchemaProp"): diff --git a/pkg/controller/build/build_pod.go b/pkg/controller/build/build_pod.go index 7c6e2cfede..54e4249970 100644 --- a/pkg/controller/build/build_pod.go +++ b/pkg/controller/build/build_pod.go @@ -158,6 +158,8 @@ func newBuildPod(ctx context.Context, c ctrl.Reader, build *v1.Build) (*corev1.P addBuildTaskToPod(build, task.S2i.Name, pod) case task.Spectrum != nil: addBuildTaskToPod(build, task.Spectrum.Name, pod) + case task.Jib != nil: + addBuildTaskToPod(build, task.Jib.Name, pod) case task.Custom != nil: addCustomTaskToPod(build, task.Custom, pod) } diff --git a/pkg/controller/build/monitor_routine.go b/pkg/controller/build/monitor_routine.go index 6aa9ed696f..4712341bd9 100644 --- a/pkg/controller/build/monitor_routine.go +++ b/pkg/controller/build/monitor_routine.go @@ -148,6 +148,13 @@ tasks: break tasks } t.ContextDir = filepath.Join(buildDir, builder.ContextDir) + + } else if t := task.Jib; t != nil && t.ContextDir == "" { + if buildDir == "" { + status.Failed(fmt.Errorf("cannot determine context directory for task %s", t.Name)) + break tasks + } + t.ContextDir = filepath.Join(buildDir, builder.ContextDir) } // Execute the task diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 2f527639b9..4662a74ec9 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -117,9 +117,9 @@ var assets = func() http.FileSystem { "/crd/bases/camel.apache.org_builds.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_builds.yaml", modTime: time.Time{}, - uncompressedSize: 44155, + uncompressedSize: 45906, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\x5d\x73\x1b\x39\x72\xef\xfa\x15\x5d\xab\x07\xcb\x55\x22\xb9\xeb\xbd\xbb\x6c\x94\x4a\xa5\x74\xf2\x7a\x4f\xf1\x87\x14\x53\xf6\xdd\xbd\x09\x9c\x69\x92\x38\xce\x00\x13\x00\x23\x9a\x97\xca\x7f\x4f\xa1\x01\x0c\x87\xe4\x7c\x60\x64\x69\xbd\xb9\x23\x5e\x6c\x0d\xf1\xd1\xdd\xe8\x2f\x34\x1a\xc0\x29\x8c\x9e\xae\x9c\x9c\xc2\x3b\x9e\xa0\xd0\x98\x82\x91\x60\x96\x08\x97\x05\x4b\x96\x08\x53\x39\x37\x6b\xa6\x10\xde\xc8\x52\xa4\xcc\x70\x29\xe0\xec\x72\xfa\xe6\x25\x94\x22\x45\x05\x52\x20\x48\x05\xb9\x54\x78\x72\x0a\x89\x14\x46\xf1\x59\x69\xa4\x82\xcc\x75\x08\x6c\xa1\x10\x73\x14\x46\x8f\x01\xa6\x88\xd4\xfb\x87\x9b\xbb\xeb\xab\x9f\x61\xce\x33\x84\x94\x6b\xd7\x08\x53\x58\x73\xb3\x3c\x39\x05\xb3\xe4\x1a\xd6\x52\xad\x60\x2e\x15\xb0\x34\xe5\x76\x60\x96\x01\x17\x73\xa9\x72\x07\x86\xc2\x05\x53\x29\x17\x0b\x48\x64\xb1\x51\x7c\xb1\x34\x20\xd7\x02\x95\x5e\xf2\x62\x7c\x72\x0a\x77\x16\x8d\xe9\x9b\x00\x89\x76\xdd\xd2\x98\x46\xc2\x5f\x65\xe9\x71\xa8\xa1\xeb\xa9\x70\x0e\x9f\x51\x69\x3b\xc8\xab\xf1\xf7\x27\xa7\x70\x66\xab\x7c\xe7\x7f\xfc\xee\xe5\xbf\xc1\x46\x96\x90\xb3\x0d\x08\x69\xa0\xd4\x58\xeb\x19\xbf\x24\x58\x18\xe0\x02\x12\x99\x17\x19\x67\x22\xc1\x2d\x5a\xd5\x08\x63\x20\x00\x6c\x1f\x72\x66\x18\x17\xc0\x08\x0d\x90\xf3\x7a\x35\x60\xe6\xe4\xf4\xe4\x14\xa8\x2c\x8d\x29\x2e\x26\x93\xf5\x7a\x3d\x66\x04\xee\x58\xaa\xc5\x24\x60\x37\x79\x77\x7d\xf5\xf3\x87\xe9\xcf\x23\x02\xf9\xe4\x14\x3e\x89\x0c\xb5\x06\x85\xff\x5d\x72\x85\x29\xcc\x36\xc0\x8a\x22\xe3\x09\x9b\x65\x08\x19\x5b\xdb\x89\xa3\xd9\xa1\x49\xe7\x02\xd6\x8a\x1b\x2e\x16\xe7\xa0\xfd\xac\x9f\x9c\xee\xcc\xce\x96\x5c\x01\x3c\xae\x77\x2a\x48\x01\x4c\xc0\x77\x97\x53\xb8\x9e\x7e\x07\x7f\xbc\x9c\x5e\x4f\xcf\x4f\x4e\xe1\xcf\xd7\x77\x7f\xba\xf9\x74\x07\x7f\xbe\xfc\xf8\xf1\xf2\xc3\xdd\xf5\xcf\x53\xb8\xf9\x08\x57\x37\x1f\x5e\x5f\xdf\x5d\xdf\x7c\x98\xc2\xcd\x1b\xb8\xfc\xf0\x57\x78\x7b\xfd\xe1\xf5\x39\x20\x37\x4b\x54\x80\x5f\x0a\x65\xe1\x97\x0a\xb8\x25\x24\xa6\x76\x4e\x03\x03\x05\x00\x2c\x7f\xd8\xbf\x75\x81\x09\x9f\xf3\x04\x32\x26\x16\x25\x5b\x20\x2c\xe4\x03\x2a\x61\xd9\xa3\x40\x95\x73\x6d\xa7\x53\x03\x13\xe9\xc9\x29\x64\x3c\xe7\x86\xb8\x48\x1f\x22\x65\x87\x79\x4a\xd9\x3a\x61\x05\xf7\xec\x74\x01\xac\xe0\xf8\xc5\xa0\x20\x68\xc6\xab\x9f\xf4\x98\xcb\xc9\xc3\x0f\x27\x2b\x2e\xd2\x0b\xb8\x2a\xb5\x91\xf9\x47\xd4\xb2\x54\x09\xbe\xc6\x39\x17\xc4\xf9\x27\x39\x1a\x96\x32\xc3\x2e\x4e\x00\x98\x10\xd2\x03\x6f\xff\x04\x27\x75\x32\xcb\x50\x8d\x16\x28\xc6\xab\x72\x86\xb3\x92\x67\x29\x2a\xea\x3c\x0c\xfd\xf0\xfd\xf8\x0f\xe3\x1f\x4e\x00\x12\x85\xd4\xfc\x8e\xe7\xa8\x0d\xcb\x8b\x0b\x10\x65\x96\x9d\x00\x64\x6c\x86\x99\xef\x95\x15\xc5\x05\x24\x2c\xc7\x6c\xb4\x3a\x01\x10\x2c\xc7\x0b\xa0\x7e\xf5\x98\x3e\xd7\x98\xf0\xc4\x92\xdf\x36\x5b\x28\x59\x86\x66\xf5\xdf\x5d\xfb\x00\x2f\x33\xb8\x90\x8a\x87\xbf\x47\xb0\xb2\xf5\xfd\xff\x93\xea\xff\x8e\x26\x7f\xb4\x43\xd2\xdf\x19\xd7\xe6\xed\xf6\xdb\x3b\xae\x0d\x7d\x2f\xb2\x52\xb1\x2c\x00\x47\x9f\xf4\x52\x2a\xf3\x61\x3b\xe4\x08\xf8\x6a\xe6\x7e\xe1\x62\x51\x66\x4c\xf9\xea\x27\x00\x3a\x91\x05\x5e\x00\xd5\x2e\x58\x82\xf6\x9b\x27\x1a\xb5\x1e\xd5\x14\xd0\xad\xe2\xc2\xa0\xba\x92\x59\x99\x8b\xaa\xef\x14\x75\xa2\x78\x61\x88\xcc\x56\xeb\x50\xd7\x50\x2c\x99\xc6\x13\x27\xbb\x7f\xd3\x52\xdc\x32\xb3\xbc\x80\xb1\x36\xcc\x94\x7a\x5c\xff\xd5\x11\xf7\xb6\xf6\xc5\x6c\x2c\x4c\x56\xb2\xc4\xa2\x6d\x14\xc3\x73\xab\x20\x60\xbd\xe4\xc9\x92\x38\xd8\x8d\xbb\x66\xda\xcd\x31\xa6\x87\xa3\x07\x4e\x1a\x1f\x70\xc1\x0e\x2c\x97\x8b\x5d\x48\x52\x66\xf0\x31\x70\x64\x4c\x1b\x38\x53\x38\x7a\xa9\x0d\x53\x8d\x10\x79\x7a\xf8\xdf\x2f\xcd\x0e\x1c\xd3\x9d\x56\xfd\xb0\xb8\x91\x69\x54\xfc\x82\x49\x49\x96\x22\x2d\x15\xa1\xda\x3a\xf6\x5e\x05\x37\xf4\xeb\xdd\x8f\x31\x33\x22\xca\x7c\x66\x8d\xe2\xbc\x36\x38\x33\x06\xf3\xc2\xe8\xd6\xc1\xe7\x8c\x67\xa5\xc2\xb1\xc2\xc4\xaa\xac\xcd\xd8\xb7\xd8\x9d\x8f\xdd\x5e\x1c\x30\x96\x17\x17\xa8\x4e\xb6\xd5\x1e\x7e\x70\x4c\x9e\x2c\x31\x67\x17\xbe\xb2\x2c\x50\x5c\xde\x5e\x7f\xfe\x71\xba\xf3\x19\x76\xe1\x27\x99\xb2\x0a\xdd\x4e\xa0\xab\x59\x69\x57\x27\x59\x70\x79\x7b\x5d\xb5\x2d\x94\x2c\x50\x99\x4a\x88\x5d\xa9\xa9\xba\xda\xd7\xbd\x91\x5e\x58\x60\xbc\x7d\x4d\xad\x8e\x43\x37\xa8\x17\x3a\x4c\x3d\xfc\xce\x16\x72\x6b\xc2\xac\x29\x40\x61\xea\xf3\x11\x8a\x9c\x5b\x9b\x23\x67\x7f\xc3\xc4\x8c\x61\x8a\xca\x76\x63\x15\x40\x99\xa5\x56\x35\x3e\xa0\x32\x60\x69\xbb\x10\xfc\xef\x55\xdf\x3a\xf8\x39\x19\x33\xa8\xcd\x5e\x9f\x24\xe4\xd6\xdf\x78\x60\x59\x89\xe7\xd6\x6a\x90\xa9\x56\x68\x47\x81\x52\xd4\xfa\xa3\x2a\x7a\x0c\xef\xa5\x42\xf2\x4f\x2e\xc8\x50\xeb\x8b\xc9\x64\xc1\x4d\x50\xf1\x89\xcc\xf3\x52\x70\xb3\x99\xd4\x7c\x24\x3d\x49\xf1\x01\xb3\x89\xe6\x8b\x11\x53\xc9\x92\x1b\x4c\x4c\xa9\x70\xc2\x0a\x3e\x22\xd0\x05\xa9\xf9\x71\x9e\x9e\x2a\x6f\x14\xf4\x8b\x1d\x58\x0f\xb8\xd2\x15\x52\x9d\x1d\x33\x60\xd5\xa8\x9d\x6b\xe6\x9b\x3a\x2c\xb6\x84\xb6\x9f\x2c\x75\x3e\xfe\x3c\xbd\x83\x30\x34\x4d\xc6\x3e\xf5\x89\xee\xdb\x86\x7a\x3b\x05\x96\x60\x5c\xcc\xc9\xb8\x5a\xef\x48\xc9\x9c\xfa\x44\x91\x16\x92\x0b\x43\x7f\x24\x19\x47\xb1\x4f\x7e\x5d\xce\x72\x6e\x9c\xeb\x82\xda\xd8\xb9\x1a\xc3\x15\xd9\x3d\x98\x21\x94\x85\xd5\x00\xe9\x18\xae\x05\x5c\x59\x6b\x71\xc5\xac\x43\xf5\xcc\x13\x60\x29\xad\x47\x96\xb0\x71\x53\x50\x37\xd9\xfb\x95\x1d\xd5\x6a\x3f\x04\xfb\xd9\x32\x5f\x24\x9b\xd3\x02\x93\x1d\x79\xb1\xf6\x90\x64\x84\xe9\x15\xf1\xf3\x0c\xbd\xde\x71\x7e\x11\x73\xed\xc6\x7b\xd4\x7d\x63\x27\x82\xe8\x06\x6f\x83\xcc\xc1\xab\x73\xe0\x06\xd6\x24\x34\x33\x24\x7f\xde\x7a\x00\x4a\x16\x9c\x19\x74\xc2\xc2\xc5\xca\x56\x62\x1a\x0a\x5e\x60\xc6\x05\xee\x76\xdd\xac\x12\xc0\x79\x28\x73\xbe\xf0\xfa\x74\xff\xc7\x7d\xde\xb4\x8a\x74\xa7\x01\x98\x25\x33\x41\xa2\xed\xfc\xfb\x65\x4a\x81\xca\xae\x06\x2c\x2d\x0e\xba\x04\x8f\x3b\xbc\xb6\x9c\x69\x3d\x8e\xf4\x02\x84\x84\x4c\x8a\x05\x2a\xeb\xec\x5a\xb7\x9d\x8b\x8a\x10\xaf\x60\x04\x39\xe3\xc2\xfa\xe2\x98\x5a\xfa\x35\xf4\x39\x63\xc9\x6a\xcd\x54\x4a\xbe\x3d\x33\x7c\xc6\x33\x6e\x36\x2f\x0e\x6a\xb6\x53\x02\xc8\x8f\xc9\xb9\xb9\xba\xfd\xd4\xf4\x1b\x1c\x1a\x95\x9c\x7d\xe1\x79\x99\x03\xcb\x65\x29\x68\xc2\xaf\x6e\x3f\x55\x6e\xfd\x18\x6e\x44\xb6\x71\x34\x69\x06\xda\x96\xfb\x42\xa6\xf7\x96\x47\xad\xeb\xb5\x69\xac\xd4\xc2\xc6\x3b\x40\xbf\xc7\x5c\xaa\xcd\xa3\xe1\xce\xa9\x79\x13\xe8\x2d\x60\x5b\x2e\xfe\x7a\xd0\xed\x5c\x30\x23\x55\xe5\xe1\x45\x22\x20\x42\x7d\x58\x2f\x51\x91\x10\xa8\x52\x6c\x0d\x22\x2a\xb8\x95\x29\x9c\xe5\xe5\x81\x01\x09\x65\xe6\x56\x2b\x9a\xe5\x18\x56\x76\x01\x1a\x5a\x22\x2e\x99\x5a\x60\x65\xe7\x9c\x09\xb6\xb6\x45\x24\x3c\xe3\xc4\xfc\x2f\xf7\xc5\x37\x0a\x65\xaf\x39\x07\x30\x19\x17\xbf\x01\x26\xf3\x60\x0f\x63\xb3\x03\xc8\xbf\x11\x9b\x85\xb6\x11\x70\x13\x4f\xf8\xea\x96\xad\x58\x2a\x8b\x66\x16\x42\x51\xe6\xcd\x1d\x8e\x40\xc9\xd2\x70\xd1\xa4\xfb\xec\xaf\x85\x6c\x46\xb7\x07\x0b\x23\x65\x76\x9d\xb3\x45\xac\x90\x58\x6b\x6a\x55\xa6\x5d\xa5\xdb\x65\xb7\x33\x43\x41\x45\xef\xc8\xcb\x23\x38\xb9\xc5\x5c\xda\x92\xb3\x2f\x1f\x4b\x61\x17\xf8\x24\x36\x0d\x9a\x76\xd7\xac\x98\x46\x95\x54\x30\xc5\xb2\x0c\x33\x0b\x29\x05\x0b\xbc\xab\xbb\xbb\x5a\xa9\x97\xd9\xc6\x09\x6b\x4d\x8e\xb5\xa1\x28\x4f\x94\xa9\x69\xe8\xb1\xc9\xf8\x44\x9b\x1a\x17\x0f\xa3\xb5\xc0\x8f\xaf\x5a\xe8\x57\x5f\x27\x6c\x4b\x84\x5a\x3c\x34\xcc\x43\x74\x22\xcc\x9a\x78\xf3\x39\xf4\xe1\xe3\x8d\x7c\x45\xe7\x86\x5e\x7b\x28\xdf\xc1\xb8\xe4\x91\xf5\x90\xd3\x52\x53\x5b\x7d\x67\x59\xa7\xf2\xe2\xce\x82\x6b\xf5\xd2\x4b\x92\x77\x72\xb0\x41\x7a\xb8\xc1\xbc\xd1\xc1\xd8\x1d\x87\xe9\x55\xcd\x3f\x27\x9a\xb3\x99\xd5\x3e\x89\xa1\x41\xbd\x7e\xa4\x48\xee\xbc\xc5\x99\x72\x28\xd5\x7c\xb0\xe0\xa0\x79\x31\x0f\xdd\xef\xc6\xe2\xa8\x4d\xb2\x94\x1a\x45\xd3\xac\x75\x7b\x49\xe0\x18\x8a\x2d\x9b\x7f\xdc\xc3\xd2\xfb\xba\x6c\x69\xd1\x3d\xa7\x99\xf5\x1f\xba\x75\x7a\x3f\x14\x04\x09\xd3\xd8\xa1\x14\x1b\xe0\xb1\x2d\xbc\x46\xcc\xd8\xe6\x40\xf6\xea\xa5\x47\x21\xbb\x62\xd5\x2c\x7e\x31\xaf\xb9\x8a\x06\x21\x61\xc2\xab\xe2\x79\x99\xd9\x59\xd2\x4b\xe6\x57\x48\x14\x90\x06\x49\x71\x56\xe2\xbb\xaf\x05\xcf\x2d\x3b\xa4\x1a\x46\xa4\x54\x26\xab\xba\xe1\x28\x75\x33\xef\x0d\x00\x84\x0f\x02\x60\xce\x69\x53\x81\xc6\xb7\x9a\xed\x6b\x47\xa7\x20\x4c\xec\xe0\xa2\xa6\x04\xed\x24\x7c\xed\xe0\x45\xc6\x8c\x55\x15\xd1\x00\x58\x0d\x14\x1a\x59\x40\x5c\xec\x8c\xa8\xf1\xb5\xb0\x28\x5c\x70\x6d\xda\x7c\xb8\x06\x58\x2a\x6b\x52\x94\xb3\x8c\x6b\x17\x46\xac\x4d\x4f\x47\x3f\x31\x02\x6c\x0b\x4b\x53\x85\xba\xa7\x52\x83\xa3\xf6\xe9\xe3\x35\xf9\x68\x49\x82\xba\x4b\x50\x20\x96\x38\x40\x31\xf0\xc1\x70\x38\x95\x9b\xb3\xc2\x07\x5a\xb5\x91\xca\x47\x02\xae\x2c\xfe\x73\x9e\x84\xc0\x68\x57\xb9\x2c\xcd\x52\x2a\x6e\xda\xf4\xe1\x60\x54\xb8\xd0\x98\x94\xaa\x93\xf1\x0f\x10\xe2\xf3\x80\x93\xf7\x1e\x03\xc7\x00\xd7\x55\x8f\x70\xc6\xf1\xbc\x17\xa1\xa5\x31\x05\x48\x91\x6d\x5e\x46\x61\x34\x93\x32\x43\xb6\x1f\x45\xdc\x2d\x52\x2d\x98\xe0\x7f\x6f\x09\x57\x74\xa0\x65\x71\xaa\x30\xa9\xf7\xf2\x54\xc4\xd6\x98\x28\x34\x83\x61\x72\xcd\xbc\x94\x25\x0a\x53\x14\x86\xb3\x4c\x83\xb5\x08\xc4\x48\x6d\x6b\xa3\x81\x10\x76\x38\xec\xdb\xf2\x80\x6a\x26\x75\xbc\xa6\xcc\xe4\xc2\x45\xa4\x6a\xdb\xbf\xbd\x30\x74\xcf\x73\x2f\x9c\xde\x9b\x1d\xe2\x7c\xa0\x72\xce\x47\x58\xfc\x2c\x50\x58\xd7\x16\x29\x7c\x5c\xb0\x64\x45\x66\xae\xc5\xbf\x02\xa7\xc9\x3a\xe8\xf6\x3c\x8e\x0a\x79\xee\x4f\xec\xac\x10\xed\x86\xb8\x2a\x6b\xa9\x56\x6e\x55\x91\x72\x85\x89\xb1\xcb\xf7\xa7\xf1\x07\x7a\x22\x8f\x2d\xf0\x0c\x0d\x41\x76\xca\x8e\xa5\x70\x63\x20\xb6\x5e\x62\x8d\x58\x77\xec\xb0\x03\x9d\x98\x28\x62\xaf\xaa\x0d\x01\xa0\x98\x68\xc9\xb6\x44\x2b\xb7\xde\x18\xe3\x20\xfc\xf6\xc3\x40\xbd\xd8\xed\xc4\xb8\x9e\x09\xc5\xc8\x58\x64\x07\xa2\xfd\x2b\xf0\x5e\x44\xeb\x2b\xf4\xb8\xf5\x78\x6f\x97\x43\xe3\x97\xb5\x96\xb1\xa4\xeb\x8b\x69\x6e\xcb\xa3\xa2\x9b\xdf\x9a\xf9\x23\x62\x9f\x83\x30\xfc\x4d\xb2\x7f\x77\x8c\xb4\x05\xbf\xf8\x68\xe9\xb6\xb4\xc7\x4d\xb7\xa5\x3b\x82\x5a\xaf\xd7\x16\x4b\xdd\x96\x68\x0a\xf4\xc4\x57\xb7\xe5\x71\x91\xd6\xde\x59\xee\x88\xc4\x0e\xc6\x26\xca\xd9\x4b\xb1\x40\x91\xa2\x48\x7a\x6c\xdb\xc1\x94\x87\xed\xcd\x7a\x07\xde\x2b\xf0\x89\x09\x5c\x57\x49\x3c\x6d\xa5\x35\x46\xf6\x48\x64\x99\x52\xac\x5d\x1a\x72\xf6\x80\xf1\x5e\x86\x39\xf0\x32\xea\xb9\x7a\xef\x6d\x5f\x21\x03\xa3\x7b\x61\xeb\xb2\xfa\xa8\x87\xc3\xcc\xa3\xa6\x12\xeb\x6d\x24\x6c\x4a\x0b\x87\x61\x8b\x66\xcb\xac\xbe\x9d\x0b\x72\x58\xff\x77\x85\x9b\xf3\xc0\xc2\x3e\xbb\xa0\x97\x57\xaf\x2e\x21\xd9\xae\x6c\xcf\xf4\xcb\x8a\xdb\x13\x29\x04\x26\xc6\xc5\x1e\x73\x69\xd0\x91\xab\xb7\x47\x85\x85\xd4\xdc\x50\xf2\xd9\x18\xae\x0d\x05\xc9\x3c\x54\xf0\x97\xf1\xef\xbf\xff\xd7\xfa\x88\x9a\x32\x3f\xfa\xcd\xe9\xdb\xab\xe9\xe9\xbf\xf8\x48\xbc\xc1\xb4\xde\x85\x35\xa1\x5c\xe8\x31\x5c\xc2\x7f\xbe\x9d\x6e\xeb\xf4\x76\xba\xc2\x0d\xad\xcb\x28\x4b\xa3\x34\xd2\xae\x7a\x12\x96\x65\x9b\x90\xda\x45\x11\x3d\xaa\x41\x11\x80\xcb\xde\x1e\x77\x49\xe9\x92\x5a\x76\xc3\xb8\x41\x9d\x30\x0d\x0c\x8c\x2a\x75\x0c\xa0\x7b\x33\x44\xdb\x23\x7e\x3a\x20\x91\x79\xce\x44\xaa\xc7\xf0\xc1\xce\x11\x39\xd1\x31\x13\xaf\xa4\x34\x7b\xb3\xef\x96\xaa\x2c\xd3\x12\x78\x5e\x48\x65\x29\xc0\x85\x4f\xe2\xd9\xcd\x76\xeb\x27\x6a\x9f\xfe\x8b\xd0\x1a\xb0\xcf\xf5\x8e\xe3\xdf\xe2\x66\x8a\x19\x2d\x61\x40\xd3\x7f\x2c\x2d\x57\x48\x89\xbd\xac\xb7\x47\xf0\xdd\xf4\x5b\xeb\x58\x11\x76\x65\x85\xbd\x26\xb7\x01\x25\x2b\xc8\x1e\xf4\x5a\x10\xc1\xf2\x1d\x61\x46\x29\x3d\x63\x80\xf7\xed\xfb\xdf\xfb\x65\x86\xc0\xe0\x81\x65\x3c\x0d\xbd\xad\x70\xd3\x8f\x2c\x0c\xb1\xb0\xae\xf4\x85\x62\xb7\x65\x77\x93\xeb\x43\xcd\x15\x56\x38\x47\x85\xc2\xd4\x73\x8b\x22\x11\x0d\x19\x48\xab\x72\x86\x4a\xa0\x41\x4a\x42\x4a\x65\xa2\x27\xd6\x3b\xc6\xc2\xe8\x89\x7c\x40\xf5\xc0\x71\x3d\xb1\xcb\x5f\x2e\x16\xa3\x35\x37\xcb\x91\x33\xa7\x7a\x42\x7e\xfe\xe4\x94\xfe\x89\x1c\xf4\xee\xe6\xf5\xcd\x05\x5c\xa6\xa9\x0f\xed\xfb\xd0\xff\x9c\x63\x66\x65\x70\x9b\x9c\x77\x4e\x09\x62\xfd\xa1\x35\x57\x4a\x9e\xfe\xc7\xe1\xf6\x57\x53\x19\x38\x47\xb2\x70\x59\xb5\x8f\x98\xa7\x29\xed\x31\x6d\xec\x1a\xc8\xed\x62\x54\x36\x87\x12\xc6\x4d\x2c\xc9\x2c\x7b\x87\x95\x90\xcb\xad\xea\xd7\x22\x30\x28\x96\x08\xde\xb7\xb7\x76\xbd\x1f\xd1\x91\x85\xa8\x7f\xb5\x15\xe3\x78\xd5\xab\x76\xbb\x2d\xb6\x24\x19\xbf\x29\x6a\x49\xe5\xed\xe5\x40\x45\x5c\xbd\xbb\xf6\x53\xa9\x9d\x8a\x67\x2e\x79\xcc\x7a\x6d\xe1\x3c\x49\x2f\x4a\xc1\xdb\x63\x6a\x51\xd2\x69\x11\x72\x7d\x76\xcd\xc8\x39\xe0\x78\x31\x3e\x87\xfb\xd1\xe7\xf3\xd1\x48\xc8\x91\x51\x4c\xe8\x39\xaa\x51\xa1\xe4\x42\xa1\xd6\xe7\xa3\xd7\xda\x6c\x32\x1c\x27\x32\x93\xea\xdf\x05\x3e\xa0\xba\xef\xd7\x2f\x53\xc4\x4a\x62\xc9\x87\xab\x1f\xb0\x50\x38\x9f\xfc\x38\xfe\x69\xfc\x3b\xf7\xd3\x08\xf3\x19\xa6\x29\xaa\x49\x92\xf1\xf1\xd2\xe4\xd9\x13\x59\x93\x01\xc2\x13\x3b\xa9\xd5\x51\x83\xc1\x73\xea\x08\xef\xbc\xc9\xda\x81\x85\x6e\x4a\x2d\x4a\x9e\xa2\x9e\xd8\xb5\xa8\xfb\xff\xa8\xd4\x56\xaf\xd5\x3a\x78\x42\x7a\xed\xc0\x4c\xf0\x5e\x5a\x6f\x81\x25\xa6\xca\x92\x64\xf0\xcb\xe5\x67\x38\xfb\x85\x4e\x25\x84\x5f\x2f\xbc\x12\xec\xdb\x2e\xb0\xc5\x91\x81\xf9\x96\x4f\x6c\x94\x43\xb7\xd7\x11\x7a\xa1\x19\x61\xb8\x8c\x85\x0c\x86\x6b\x67\x3a\xcb\xf1\x15\xb0\x11\xd5\x9f\x03\xb0\x87\xa6\x0c\xf3\x01\x80\xf9\xf9\x7f\x7a\xd0\x86\xa8\xf9\xed\xe4\x47\x54\xf6\x53\xf1\x2d\xec\x42\x26\x13\x96\x7d\x0c\xcb\xa6\xe1\x81\xa9\x82\x99\x65\xf0\xa7\xa8\x2f\x3f\x09\xd5\x4a\xac\xd7\xfd\x8b\x9e\x82\x78\xe9\xab\x1f\xe8\x89\x97\xd8\x01\xbc\xd0\xa2\x4f\xb7\x10\xc6\x21\x1d\x31\x93\xf5\x15\xed\xa0\xc9\xa9\x9d\xaa\xac\xf7\xf1\x0c\xba\x79\xcb\x3d\x35\xc5\xbc\xcf\x05\x4f\xac\x5b\xf9\x63\xf4\x16\xa7\x6d\xd1\x39\xf7\xbb\xea\x03\x80\x83\x5f\x6d\x81\x22\x76\xd6\x27\xcf\x09\xa0\xc2\x0c\x99\x8e\x23\x77\x43\xea\x51\xa9\x11\xb4\xa1\xb3\xa6\xa1\xa7\xa8\x8e\x86\xcd\xb3\x2d\xc9\x12\x93\x95\x2e\xf3\x5b\x99\xf1\x24\x72\x9d\x7b\x00\xf2\x9f\x97\x28\x3c\x53\xa6\x58\x64\x72\xe3\xce\xf3\xea\x58\xff\x75\x5b\xb6\xb3\x42\x67\x2a\x28\x64\x11\xba\x4c\xa4\x52\xa8\x0b\x29\xd2\xb8\x39\xd8\x47\xd1\xc1\x34\x86\xbf\xca\x52\x55\x3e\x37\x73\xbb\x40\xf7\x7c\x21\xa4\xc2\xfb\xd8\x65\x9d\x2d\xf7\x73\xc6\xb3\xfb\x73\xbb\x66\xba\x5f\x33\x25\xee\x41\x0a\xa0\xc3\xb2\x62\x41\x0b\x29\x41\x10\x47\x3a\x18\xbb\xb0\xf6\xea\xb8\x6d\x19\xc8\x99\x40\x01\x7e\xcb\x5a\x91\x52\x0e\x07\x92\xee\x24\xbc\x20\x8e\x01\x96\x18\xfe\x40\x31\x35\xa9\x40\xc8\x78\x64\x87\xad\x02\x5d\x71\xa7\x97\xbe\x8a\x57\x5f\xdc\x2d\xb9\x06\xcc\xe8\x58\x7d\x48\xb7\x44\x0d\x4b\xb9\x06\x39\x37\x11\x71\xd0\x7d\x70\xaa\x03\x73\xfe\xec\xa1\xe5\x27\x99\x24\xa5\x1a\x7b\x99\x58\xf3\xac\x29\x75\xb9\xad\x50\xea\xac\x0f\x4d\x3a\xab\x7f\x7b\xf3\xfe\xc5\x0b\x4d\x67\x45\xe9\xb4\x29\x9c\x45\xa5\x9d\xd4\x0b\x1d\x92\xdf\x4a\x97\xed\xce\xad\xc8\xc2\x51\x2b\x92\x8e\x18\xb7\x3e\x14\x1f\x3e\x74\x21\xe4\xb1\xdb\x65\x59\x4a\x9e\xb8\x68\xe3\x05\xdc\xb3\x6c\xcd\x36\x7a\x98\x48\xa5\x8c\x67\x9b\x7b\x38\x4b\x71\xce\xca\xcc\xbc\x3c\x87\x7b\x3a\x4f\xf8\xc0\xb2\x8b\xbf\xdc\xc3\x99\xdb\xb6\xfd\xcb\x10\xc4\x35\x30\x11\xb2\xb8\x2d\x19\x72\x2e\x4a\x83\xfa\x25\xc9\xad\x5b\xe4\xc6\x05\x68\xe0\x31\xc2\x16\xef\xd6\x02\x79\xab\x5e\x34\x07\xd8\xa4\x28\x8f\xd5\x16\x2d\x58\xa1\x97\xb2\x7f\x43\xc2\x95\x66\xa3\xe4\xfb\x38\x5a\xa3\xa3\x35\x6a\x2c\x47\x6b\x34\x08\xfa\xa3\x35\x3a\x5a\xa3\x7f\x4e\x6b\x54\xaa\xc7\x6c\x5d\x58\x0e\xa4\xbd\xfa\x5f\x61\x15\x37\x24\x22\xc5\x63\x22\x51\xa5\xea\x17\xbc\x67\x88\x42\x69\x77\xa7\xc0\xa0\x00\x47\xb8\x87\xe0\x8c\x95\x66\xd9\x27\x87\x91\x71\x8d\x61\xee\x40\x74\xf2\xe9\xb6\x3c\x2e\x32\xe5\xca\x60\x51\x1a\xc8\xee\xb1\x31\x95\x81\x70\x14\x4c\xeb\xb5\x54\xcf\xd3\x79\xa9\x51\xc5\x47\x5a\x06\x75\xfe\x2c\x6c\x6e\x0c\x17\x8b\x61\x7c\x7e\x19\xf6\xa9\x13\x0c\x26\xe4\x8a\x18\xef\x3d\x2b\xac\x4a\x76\xdb\xa2\xbd\xe8\xac\x70\xe3\x76\xef\x7c\x3a\x8c\xae\xe5\x71\x04\xb8\xfa\x7c\xa8\x21\xe2\x91\x04\x18\xdf\xe2\xe6\x23\xce\x63\x26\x68\x4f\xbc\xf7\xb3\x2b\xb6\x68\xc7\xf8\x7a\x43\x3d\xfb\xe8\x14\x8a\x96\x24\x8a\x2a\x6d\x22\xd6\x11\x1d\x2c\xce\xf1\x7c\xfe\x4c\x49\x0f\xdf\x28\xed\x61\x48\xe2\x43\x74\x97\x94\x20\x31\x20\xf5\xe1\x11\xf3\x35\x2c\xfd\x21\x22\x01\xa2\x2e\xf6\xd1\x88\x72\xa3\x1f\x9d\x05\x31\x7c\xcd\x31\xc4\x7b\x8b\xcb\x85\x18\x68\xc6\x74\x48\xd3\x7a\x22\x9d\xa3\x23\xf3\xb5\x7e\x7d\x85\xd3\x92\xb5\x15\xcd\x18\xb5\xec\xae\xaf\xc9\xdb\x3a\x2a\xb2\xa3\x22\xdb\x2b\xcf\x92\xc9\xf5\xf8\x5c\xae\xff\x77\x5a\x2c\xba\x6a\xf0\xdb\xa6\x98\x94\x8a\x9b\x61\xbb\xf7\xcf\xea\x57\x6a\x0f\x51\x10\xd6\xa3\x9f\x19\xca\xd1\xcf\x8c\x28\x47\xf5\x7c\xf4\x33\x3b\xcb\xd1\xcf\x3c\xfa\x99\xbd\xe5\xa8\xc8\xfe\xc9\x15\xd9\xd1\xcf\x7c\x8a\xaa\x51\xd5\xbe\xe9\xd5\x48\xaa\x14\x86\x0f\x18\xbf\xe3\x64\x66\xb8\x12\xdb\x77\xd9\x49\xc1\xda\xc1\xcc\x8e\x7a\xd1\xf7\x17\x6d\x7b\xbb\xca\xd8\xc0\x8b\x8c\xea\x67\x44\x51\x18\xb5\x01\x77\x07\xf3\x59\xce\xb8\x78\xb9\x7b\x79\xf0\x93\x9d\x75\x4e\x58\xc1\xe8\xf6\xbc\x67\x4b\xc9\xdd\xc1\xf1\x2a\x0c\xb7\x71\x57\x5b\x17\x4c\x19\x9e\x94\x19\x53\x30\x47\x66\x4a\x85\xee\xe6\xa4\x78\xc1\xb3\xbd\xac\x31\xcb\x60\x25\xe4\x9a\x96\x27\xfb\x07\x92\x9f\x78\xc7\x28\xf6\xb0\xf4\xb6\x44\x6e\x5c\x85\xee\x9f\xff\xc8\x84\x2b\x03\x0f\x4e\xb8\x32\x3c\xd9\x66\xf8\x21\x0a\x57\xbe\xf6\x28\x85\x2b\x8f\x48\x14\x19\x78\xac\xa2\x15\xda\xf8\xc3\x15\x5f\x01\xea\xa0\x83\x16\xad\xa0\x0e\x39\x6e\xf1\x68\x60\x87\x65\x05\x0c\x3c\x80\x11\x9a\xc4\x1e\xc3\x70\x65\xe0\xee\x6a\xfc\x2e\x21\x0c\xdc\xd8\x1f\xa4\xaf\x06\x40\xbd\x7b\x95\xa2\xd3\xb0\x1a\xe4\xdc\xba\xc3\x69\x75\x4f\x6e\x8c\xa1\x1c\x30\xec\x10\x0d\xb9\x9b\x76\xd1\x74\x9d\x84\x40\x4c\x87\xdd\x9f\x11\x67\xd3\xe1\x78\x8c\x6d\x00\xc2\xc7\x63\x6c\x8f\x01\xec\x78\x8c\x6d\x80\xce\x6c\x7e\x8d\xe3\xb0\xfc\xba\x27\xc3\xbc\x43\x19\x80\x7b\x2a\x1d\x59\x28\xf9\xc0\x3b\x2e\x2f\x6c\x84\xc5\xdd\x91\x9d\xd3\x53\x74\xb5\xc5\x42\xe8\xeb\x1c\x38\x9e\xb7\x5e\x61\xbe\x5b\xfe\xab\x64\x6a\x55\x3e\xd9\x5d\xa9\x91\x82\xd2\x80\xcd\x5b\xf8\xe8\xac\x4f\xe8\xe3\x69\x40\x8a\x11\x90\xd1\xc1\x7a\xad\xb3\x72\xa4\x8d\x1e\x55\xf3\xd1\x59\xa9\x1f\xdb\x28\x5e\xf2\x2f\x0e\x0d\x5a\x36\xfb\x36\xee\x9e\xae\x14\x98\xf1\x87\xc8\x7b\x7c\x80\x08\x63\xb9\x1b\xcd\xa1\x61\x0e\x9e\xc4\xd9\x5d\xb4\xb7\x3f\x55\x11\x4a\xed\xf9\x4a\xba\x0c\x0c\xf7\xde\xd1\x49\x5d\x9a\x6f\x82\x8a\x6e\x08\x8a\x61\xff\xd7\xd3\x77\xd5\x23\x84\x7d\x52\x1a\xa9\x60\x12\x99\xd3\x5b\x88\x51\xd6\xa2\xed\x9a\x5d\x14\xc6\x2e\x8b\x43\x5f\x98\xc2\xd9\x8c\x69\xfc\xc3\xef\x22\x0c\x08\x8a\x44\x6d\x0a\x83\x69\xbf\xb3\x31\x24\xc4\xe5\xc1\x1a\x88\xd3\x96\xcb\x20\x91\x29\xc2\x59\x91\xd9\xb9\x31\xf8\xc5\xc4\x82\x17\xa5\xa9\x3d\x74\x6f\x63\xc2\xe3\xcd\xd1\xa3\x9c\x15\x14\x2c\x5c\xca\x2c\x0d\x2f\x6a\x55\x90\x53\xe7\xcf\x00\x6f\xd4\x7e\x43\x3b\xbc\xdb\x3d\xdf\x43\xa8\x23\x38\xe5\xf9\xf0\xba\xb3\x2d\x1e\x85\x18\xb1\xbe\x1d\x10\xce\x0c\x2f\xfc\x2d\x5a\x96\x5d\xac\xe8\xcf\xb8\x60\xaa\xf7\xea\xe8\x41\x00\x53\x7e\x7d\x82\x85\x91\xfd\x19\xcb\x7b\x10\x5f\xd7\x9a\xd2\x49\x9a\x10\xf2\xde\x9e\x4d\x56\x31\x81\x6a\xba\xc8\x53\x2d\xc2\xe5\x1c\xee\x3d\xce\xd5\xf8\x23\xa9\xb8\x77\x92\xa5\x2e\xe6\x4f\xda\xae\x50\x38\x29\x64\xd4\x15\x4e\x85\x92\x09\x6a\x1d\x94\x7c\x6f\x8b\xe8\xe0\xd4\x23\x12\x6f\x63\xd6\xc9\x41\x0f\x0f\x9c\x05\x5d\x6d\x15\xf0\x64\x19\x4e\xe7\x54\x0f\xcb\x9e\xc5\x39\x41\x64\x09\xb6\x37\xd6\x11\x53\x14\xb4\x43\x66\x57\xc5\x35\x05\xf6\x94\xac\x97\xd1\xd4\x0e\x44\xd7\xf3\x83\x3b\xd7\x51\x63\xb8\xea\x46\xd8\x6e\x46\x8a\x62\x47\x66\xe8\xd0\x4e\x0b\x19\x98\x89\x0c\x13\x0c\x22\x46\xdc\xf6\xde\x81\xc6\xa8\x6f\x3e\x84\xa7\x4c\x62\xd6\xfb\x83\x60\x2b\x98\x69\x7d\xd8\xa4\x03\x36\xba\x4d\xc3\xdf\xfb\x4b\x0f\x24\x64\x74\x41\x60\xe4\xe1\xa5\x21\xf0\x39\xe7\x64\x33\xaa\xbd\xdb\x1b\x0d\xe9\x3b\x1f\x6a\x09\x9d\xb8\x3b\x8b\xc3\x5e\x99\x75\xa9\xe2\xce\x30\x7a\xee\x38\xc3\xf1\x62\x4c\xae\x8c\xd5\xe1\x5c\xc3\x77\x06\xf3\x22\x63\x06\xbf\xeb\xd7\xdb\xdf\x5a\x05\x29\xb6\xbe\x7a\x1a\x37\x27\xd6\x52\x85\x17\xa1\x66\x9b\x88\xd7\x20\x86\x5e\x3a\x35\x0c\x07\x6b\xb3\x77\xfc\xf3\x15\x17\xa4\x56\x3c\x62\xae\xf2\x2c\x6a\xff\xb4\x7a\x77\x2b\x2e\xa0\x1a\x7f\x21\xef\x90\x4d\xce\xee\x19\xd7\x06\x8b\xc7\xdd\x71\x4b\x2d\xad\x99\x08\xef\x77\x9e\x69\x44\x28\x56\x8b\x89\xbf\xd3\x7b\xd2\x35\xef\xbf\xe6\x25\xb7\xbd\xe4\x4a\xe8\x0d\xf3\x36\x68\x76\x28\xf0\x49\xbb\x27\x13\xac\x4c\x07\x3b\x19\x08\xc0\xc4\xc6\x3d\xa0\xc0\x13\xdf\x65\x2b\xd8\xee\xc6\xf2\x76\x05\x1d\xb3\xd0\xf2\x57\xcc\x0d\xdc\x21\xa6\x36\x35\xa8\x7b\x29\xfb\xa4\xaf\x17\x99\xe6\x4b\xa1\x9f\xe0\xd5\x84\x6f\xb8\x59\xdf\xcb\x5f\x2b\x26\xf8\xaa\x35\xc3\x66\xef\x5d\x8e\xb7\x54\x79\xfb\x26\x98\xfb\xfb\x1f\xe4\x49\x30\xeb\x91\x45\x8f\x5e\x6a\x04\xe6\xda\x74\x34\x89\x8d\x49\x44\x9e\x77\xdf\x65\x57\x55\xa2\xb5\xe2\x1e\x0a\x2b\xf4\x71\x67\x73\xe3\x43\x0a\x05\x2a\xcd\xb5\x35\xb6\x9f\x65\x56\xe6\x78\x95\x31\xde\x7b\x0d\xfc\x81\x4c\xdd\x7e\xbe\xaa\xd4\xd1\xf6\x86\xe5\x3e\xd2\xc1\x13\xdf\x9b\x7e\x7c\xf1\xed\x39\x74\xe6\x3f\xd4\x8b\x6f\xc7\x57\xd6\x8e\xaf\xac\x75\x22\x74\x7c\x65\xad\x01\xb4\xe3\x2b\x6b\xcd\x18\x7c\x8b\x57\xd6\xf4\x2b\x1e\xe9\xc9\x4d\x5f\xf1\xad\x1b\x37\x7d\x75\xfd\x14\x3e\xdc\x6f\xdc\xc4\x7e\x53\xdb\x62\xd8\x62\x88\x6f\x99\x86\x87\x1f\xc8\x1f\x98\x1a\x85\xac\xeb\x55\xb4\xa7\x58\x08\xe8\x02\x13\xa3\xda\x9f\xf9\xd9\x67\x20\x5f\xbd\xc6\x45\xfe\xcb\x3f\xc8\x72\xe0\xb7\xcd\xcc\x47\x37\xed\xe8\xa6\xb5\x95\xa3\x9b\x76\x74\xd3\x0e\x40\xfb\xe7\x70\xd3\x7a\xaa\x74\xfe\xdc\x1e\xac\x35\x3c\x47\x59\x36\x50\x66\x37\x3a\xef\x6a\xed\x04\xe8\xdd\x13\x8e\xe1\x31\x4d\xb7\xc8\xe7\x52\x40\xea\x73\x6a\x9a\xce\xe2\xdd\x55\xed\x52\x64\x69\xc6\x85\xdb\x93\x72\x87\x01\xb7\x9d\x6a\xc3\x94\x21\xd0\xa0\xc8\x4a\x37\x9c\x07\xa1\xa1\xd3\x6a\x40\xb8\x9e\xd7\x3a\xa9\x8f\x80\x5f\x12\x4a\xdf\x3d\xaf\xfd\xee\xad\x20\xf0\x26\xe5\x94\x30\x91\x60\x66\x1b\x30\x91\xd2\x81\x54\x7a\x28\x2d\x80\x4a\x3d\xdc\xda\x2f\x6f\x18\xcf\x9a\x9e\x4c\x0c\x5b\x2b\x01\xb8\x96\x29\x69\x64\x8c\x8e\x87\xff\xf6\xaf\x53\x8c\x7c\xeb\xcf\xbf\xe5\x07\xaf\xb1\x50\x68\xd5\x5d\x63\x3c\x4e\x48\xc8\xa4\xf0\x57\xf5\x95\xd6\xe7\x10\x55\x76\xdc\x2b\x18\x51\xc6\x1f\x8d\xe5\xce\x36\xcd\x58\xb2\x5a\x33\x95\xba\x4b\x13\x0d\x77\x07\x6a\x0e\x8f\xf4\xb5\x62\xda\xc2\xb2\xda\x30\x53\xee\xd9\x9b\x1d\xbc\x89\xfa\x53\xaa\xb5\xc3\x91\x72\x46\x97\xbf\x11\xff\x18\xb2\xcb\x7f\x3c\x78\xf3\xaf\xdd\xea\x85\xfc\xd4\x06\x4b\xb7\xe7\x1f\x6e\x1f\xa0\xf1\x2d\xaa\x49\x08\x3b\x96\x2d\x8f\x0d\xb6\xee\xbe\xec\xde\xa6\x10\x92\xba\x95\x9d\x2d\x4d\x2f\xdc\x30\xc8\x99\x41\xc5\x59\xc6\xff\x8e\x69\x35\x32\x9c\x31\xf8\x1b\x6b\x76\x08\xab\x3c\xc1\x8d\xbb\x10\xd5\x3f\x32\x9d\x81\xbb\x6e\x72\xc7\x15\x27\x70\x9b\xec\x40\x9f\x93\x10\xee\x4c\x8d\xf4\xac\xab\xeb\x60\xcf\xa6\x7f\xba\xfc\xe1\x65\x70\x9d\xba\x53\x81\x7a\x55\x68\xfb\x6d\x73\x07\x0a\x3d\xe4\xc6\xf8\x94\xd5\xb3\x5f\x2e\x3f\x13\x2f\xe7\xe1\x02\xdd\xfe\xd4\x4a\xa9\x1c\xfd\xc8\xf7\xb3\x6d\x9d\xeb\x4b\xdf\x2c\xa8\xba\xcd\x9e\xf6\xe2\x11\xae\x7b\x8c\xc2\xc6\xd9\x24\x4e\x99\x7a\xd4\x70\x8f\xf9\x50\xc1\xfd\xad\x4c\xef\x1f\x0b\x8c\x61\x6a\xd1\x6e\x31\x0f\x08\x8b\x5f\xec\x12\x09\xd3\xed\x9d\x95\x1e\x98\xee\x6c\x8d\x1e\x30\xba\xd2\x67\x5b\xae\xa1\x7c\xa4\x1d\xec\x58\x95\x1d\xe0\x5a\x5b\x8f\x55\x8f\xe0\x76\x3c\x31\xda\x81\x63\x22\x85\x4b\x22\x8f\x57\x3a\xdb\x26\xee\xa2\x5b\x85\xa9\x35\x32\x21\xfd\xee\x6b\x14\x0f\x69\xcb\xab\xd0\x7f\xb5\xe5\xee\xaf\x61\x09\x3a\x95\x81\xc2\x2a\x19\xa7\x71\x5a\xb7\x59\xb0\x74\x72\xb4\xc9\x11\xe8\xd3\x2b\x19\xd3\xe6\x4e\x31\xa1\x09\x94\xbb\x8e\x13\xb9\xbb\xe9\x24\x4c\x7b\xbf\xc1\xab\x15\x8f\x8a\xa9\xba\xb2\xd3\xa5\x64\x4e\xe9\xbc\xce\xd0\xb4\xc7\x35\x24\x30\x41\xc2\xdd\x76\xad\x40\x65\xe4\x99\xc1\xd1\xe3\xb9\xdc\xa1\xfb\x89\x2e\x34\x8e\x46\xf5\x8e\x12\xcd\xb6\xe8\x52\xc2\x6e\xc0\x77\xcd\xb4\xbf\x20\xb9\xf5\x01\xdf\x27\x83\x3d\x47\xad\x3b\x16\xec\x7b\x17\x05\x2d\xcb\x9c\x89\x91\x42\x96\xd2\x7b\x1f\xbe\x31\x70\x91\x92\x4e\x16\x0b\x48\xd1\x30\x6e\x5d\xec\x59\xb3\xbb\xe7\xc1\xb2\x2b\xee\x6a\x56\xdb\x90\xec\x05\x5e\x21\xd3\x91\x0a\xf7\x8e\xd6\x28\xb6\x7a\x75\xb2\xbb\x22\xf8\x0b\xed\xe7\xe2\xeb\x21\x6a\xf2\x7e\x5a\x20\xf2\x2e\xd0\xd6\x88\x3a\x60\xce\x5d\xae\xfa\x1c\xee\x54\x89\xe7\xf0\x86\x65\x1a\xcf\xe1\x93\xa0\x93\xc9\x8f\x86\xab\x2b\xa7\xe7\x30\x93\x47\xce\xdd\xb5\xcf\x3e\xbd\xbe\x82\xed\x91\xc3\x77\xdb\x81\x56\x39\x1e\x51\xbf\x4f\x67\x24\x52\xbe\x40\xdd\xb7\x56\xb2\x73\xe1\x2a\x3a\x4d\xd3\x1c\x87\xe9\x40\x38\x6d\xbd\x06\x78\x67\x9c\xa5\x5c\x93\xbb\x6e\x7d\x00\x23\xe5\xaa\xe2\x4a\x77\x8a\xe2\x6a\xc9\x84\x5b\x0e\xbc\x0e\x87\x1c\x26\x70\x3d\xbd\x69\xa0\xc6\x4f\x7f\xf8\xfe\x07\xeb\x4f\x08\xb8\xfa\xf8\xda\x25\xfb\xde\x14\x28\x2e\x6f\xaf\x29\x72\x0a\x0f\x3f\x56\x97\x8f\x2c\xb8\x59\x96\xb3\x71\x22\xf3\xc9\xcd\xe5\xf5\xc4\x57\x1b\x4d\xeb\xc9\x8f\x13\xae\x75\x89\x7a\xf2\xd3\xef\x7e\x3f\x04\x6d\x54\x4a\x36\x04\x24\x0f\x3d\x0d\x5b\xaf\xfe\x19\xce\xf8\x1c\x98\x68\x88\x63\x74\x8c\x36\x67\x3c\x6b\x0c\xbe\x34\xc4\x25\x48\xe6\xbd\x94\xf9\x76\xed\x63\x76\x5b\xb6\x2e\x7d\xb3\x67\xf0\xf5\x52\xda\x45\xb0\x5d\xa2\xfa\x2c\xe3\x60\xe3\x5d\x27\xed\x52\xda\x25\x47\x89\x7c\xc0\xb6\xf8\x62\x03\xea\xae\x7a\xb8\x5d\xbf\xee\xeb\x78\x42\x34\x76\xd4\x1f\x5a\xf4\x1d\xb6\x07\x64\x76\x89\xe1\x2f\xf7\x17\x65\x3e\xeb\x08\x7f\x3b\xe4\xfd\x75\xf3\xdd\x03\xbf\x67\x5f\x22\xc7\x0e\x01\x0e\x37\x36\x39\x40\xae\x8b\x0e\xc7\x21\x1e\x8e\x2e\x73\xbf\x3f\x21\x7c\x1b\x6b\x0e\x04\xa9\xa2\x2e\xad\x5d\xc4\x9a\xf9\x28\x5b\xd9\x75\x96\x6d\x14\x80\xea\xfe\xf5\x3d\xfb\xd2\xc1\xb8\xed\xd1\xad\x56\x3a\x1d\x30\x2d\xd1\x89\xb4\x59\x5d\x5e\x97\x4c\xc3\x92\x5e\x9a\x6d\x09\xd9\xc5\x11\xaa\x93\x48\xed\x04\x1a\xb5\xc9\xec\xa8\x92\xb1\x86\x9f\x1a\xa1\xe8\x20\x54\xcb\xc6\xc9\xe1\x22\xb8\xda\x2c\x21\x5b\xd1\x66\x01\x1b\xb1\x0c\x31\x96\x5f\x28\x98\x10\x61\xa6\x6e\x0e\x1a\x84\x63\x12\xb9\xd4\xc6\xa2\x8f\xc2\xf8\xd8\x04\xfd\x1a\x46\x68\xa0\x7f\xa5\x7c\x68\xa5\xd2\x1e\x74\xe3\xc2\x34\x1c\x56\xeb\x12\x4b\x8a\xee\xf5\x60\xb2\xbb\x1e\xa2\x16\x43\x28\x47\x41\x4d\x4c\x2f\x63\xfc\x87\x2d\x0f\x73\x13\x1a\xb6\x87\x18\x5b\x39\x76\x58\xe4\xed\xe0\xa3\x9b\x07\x97\x8e\xe7\x3e\x18\xa9\x2c\x8b\xd5\xbe\x94\xb3\xb0\x1a\xac\x74\xbd\xf7\x60\xe1\x7f\xfe\xf7\xe4\xff\x02\x00\x00\xff\xff\xcc\xa4\x6d\xb2\x7b\xac\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdd\x73\x1b\x37\x92\xf8\xbb\xfe\x8a\xae\xe8\x21\x72\x95\x48\x25\xce\xee\xfe\xf2\xd3\xd5\xd5\x95\x56\x8e\xb3\x5a\x7f\x48\x67\xca\xde\xdd\x37\x81\x33\x4d\x12\xe1\x0c\x30\x07\x60\x44\x73\xaf\xee\x7f\xbf\x42\x03\x18\x0e\xc9\xf9\xc0\xc8\x54\x9c\xdb\x10\x2f\xb6\x86\xf8\xe8\x6e\xf4\x17\x1a\x0d\xe0\x14\x46\x87\x2b\x27\xa7\xf0\x96\x27\x28\x34\xa6\x60\x24\x98\x05\xc2\x55\xc1\x92\x05\xc2\x44\xce\xcc\x8a\x29\x84\xd7\xb2\x14\x29\x33\x5c\x0a\x38\xbb\x9a\xbc\x7e\x01\xa5\x48\x51\x81\x14\x08\x52\x41\x2e\x15\x9e\x9c\x42\x22\x85\x51\x7c\x5a\x1a\xa9\x20\x73\x1d\x02\x9b\x2b\xc4\x1c\x85\xd1\x63\x80\x09\x22\xf5\xfe\xfe\xf6\xfe\xe6\xfa\x27\x98\xf1\x0c\x21\xe5\xda\x35\xc2\x14\x56\xdc\x2c\x4e\x4e\xc1\x2c\xb8\x86\x95\x54\x4b\x98\x49\x05\x2c\x4d\xb9\x1d\x98\x65\xc0\xc5\x4c\xaa\xdc\x81\xa1\x70\xce\x54\xca\xc5\x1c\x12\x59\xac\x15\x9f\x2f\x0c\xc8\x95\x40\xa5\x17\xbc\x18\x9f\x9c\xc2\xbd\x45\x63\xf2\x3a\x40\xa2\x5d\xb7\x34\xa6\x91\xf0\x0f\x59\x7a\x1c\x6a\xe8\x7a\x2a\x9c\xc3\x27\x54\xda\x0e\xf2\x72\xfc\xdd\xc9\x29\x9c\xd9\x2a\xdf\xf8\x1f\xbf\x79\xf1\x6f\xb0\x96\x25\xe4\x6c\x0d\x42\x1a\x28\x35\xd6\x7a\xc6\xcf\x09\x16\x06\xb8\x80\x44\xe6\x45\xc6\x99\x48\x70\x83\x56\x35\xc2\x18\x08\x00\xdb\x87\x9c\x1a\xc6\x05\x30\x42\x03\xe4\xac\x5e\x0d\x98\x39\x39\x3d\x39\x05\x2a\x0b\x63\x8a\xcb\x8b\x8b\xd5\x6a\x35\x66\x04\xee\x58\xaa\xf9\x45\xc0\xee\xe2\xed\xcd\xf5\x4f\xef\x27\x3f\x8d\x08\xe4\x93\x53\xf8\x28\x32\xd4\x1a\x14\xfe\x57\xc9\x15\xa6\x30\x5d\x03\x2b\x8a\x8c\x27\x6c\x9a\x21\x64\x6c\x65\x27\x8e\x66\x87\x26\x9d\x0b\x58\x29\x6e\xb8\x98\x9f\x83\xf6\xb3\x7e\x72\xba\x35\x3b\x1b\x72\x05\xf0\xb8\xde\xaa\x20\x05\x30\x01\xdf\x5c\x4d\xe0\x66\xf2\x0d\xfc\xf9\x6a\x72\x33\x39\x3f\x39\x85\xbf\xdd\xdc\xff\xe5\xf6\xe3\x3d\xfc\xed\xea\xc3\x87\xab\xf7\xf7\x37\x3f\x4d\xe0\xf6\x03\x5c\xdf\xbe\x7f\x75\x73\x7f\x73\xfb\x7e\x02\xb7\xaf\xe1\xea\xfd\x3f\xe0\xcd\xcd\xfb\x57\xe7\x80\xdc\x2c\x50\x01\x7e\x2e\x94\x85\x5f\x2a\xe0\x96\x90\x98\xda\x39\x0d\x0c\x14\x00\xb0\xfc\x61\xff\xd6\x05\x26\x7c\xc6\x13\xc8\x98\x98\x97\x6c\x8e\x30\x97\x8f\xa8\x84\x65\x8f\x02\x55\xce\xb5\x9d\x4e\x0d\x4c\xa4\x27\xa7\x90\xf1\x9c\x1b\xe2\x22\xbd\x8f\x94\x1d\xe6\x90\xb2\x75\xc2\x0a\xee\xd9\xe9\x12\x58\xc1\xf1\xb3\x41\x41\xd0\x8c\x97\x3f\xea\x31\x97\x17\x8f\xdf\x9f\x2c\xb9\x48\x2f\xe1\xba\xd4\x46\xe6\x1f\x50\xcb\x52\x25\xf8\x0a\x67\x5c\x10\xe7\x9f\xe4\x68\x58\xca\x0c\xbb\x3c\x01\x60\x42\x48\x0f\xbc\xfd\x13\x9c\xd4\xc9\x2c\x43\x35\x9a\xa3\x18\x2f\xcb\x29\x4e\x4b\x9e\xa5\xa8\xa8\xf3\x30\xf4\xe3\x77\xe3\x3f\x8d\xbf\x3f\x01\x48\x14\x52\xf3\x7b\x9e\xa3\x36\x2c\x2f\x2e\x41\x94\x59\x76\x02\x90\xb1\x29\x66\xbe\x57\x56\x14\x97\x90\xb0\x1c\xb3\xd1\xf2\x04\x40\xb0\x1c\x2f\x81\xfa\xd5\x63\xfa\x5c\x63\xc2\x13\x4b\x7e\xdb\x6c\xae\x64\x19\x9a\xd5\x7f\x77\xed\x03\xbc\xcc\xe0\x5c\x2a\x1e\xfe\x1e\xc1\xd2\xd6\xf7\xff\x4f\xaa\xff\x3b\x9a\xfc\xd9\x0e\x49\x7f\x67\x5c\x9b\x37\x9b\x6f\x6f\xb9\x36\xf4\xbd\xc8\x4a\xc5\xb2\x00\x1c\x7d\xd2\x0b\xa9\xcc\xfb\xcd\x90\x23\xe0\xcb\xa9\xfb\x85\x8b\x79\x99\x31\xe5\xab\x9f\x00\xe8\x44\x16\x78\x09\x54\xbb\x60\x09\xda\x6f\x9e\x68\xd4\x7a\x54\x53\x40\x77\x8a\x0b\x83\xea\x5a\x66\x65\x2e\xaa\xbe\x53\xd4\x89\xe2\x85\x21\x32\x5b\xad\x43\x5d\x43\xb1\x60\x1a\x4f\x9c\xec\xfe\xa2\xa5\xb8\x63\x66\x71\x09\x63\x6d\x98\x29\xf5\xb8\xfe\xab\x23\xee\x5d\xed\x8b\x59\x5b\x98\xac\x64\x89\x79\xdb\x28\x86\xe7\x56\x41\xc0\x6a\xc1\x93\x05\x71\xb0\x1b\x77\xc5\xb4\x9b\x63\x4c\xf7\x47\x0f\x9c\x34\xde\xe3\x82\x2d\x58\xae\xe6\xdb\x90\xa4\xcc\xe0\x53\xe0\xc8\x98\x36\x70\xa6\x70\xf4\x42\x1b\xa6\x1a\x21\xf2\xf4\xf0\xbf\x5f\x99\x2d\x38\x26\x5b\xad\xfa\x61\x71\x23\xd3\xa8\xf8\x19\x93\x92\x2c\x45\x5a\x2a\x42\xb5\x75\xec\x9d\x0a\x6e\xe8\x57\xdb\x1f\x63\x66\x44\x94\xf9\xd4\x1a\xc5\x59\x6d\x70\x66\x0c\xe6\x85\xd1\xad\x83\xcf\x18\xcf\x4a\x85\x63\x85\x89\x55\x59\xeb\xb1\x6f\xb1\x3d\x1f\xdb\xbd\x38\x60\x2c\x2f\xce\x51\x9d\x6c\xaa\x3d\x7e\xef\x98\x3c\x59\x60\xce\x2e\x7d\x65\x59\xa0\xb8\xba\xbb\xf9\xf4\xc3\x64\xeb\x33\x6c\xc3\x4f\x32\x65\x15\xba\x9d\x40\x57\xb3\xd2\xae\x4e\xb2\xe0\xea\xee\xa6\x6a\x5b\x28\x59\xa0\x32\x95\x10\xbb\x52\x53\x75\xb5\xaf\x3b\x23\x7d\x6b\x81\xf1\xf6\x35\xb5\x3a\x0e\xdd\xa0\x5e\xe8\x30\xf5\xf0\x3b\x5b\xc8\xad\x09\xb3\xa6\x00\x85\xa9\xcf\x47\x28\x72\x66\x6d\x8e\x9c\xfe\x82\x89\x19\xc3\x04\x95\xed\xc6\x2a\x80\x32\x4b\xad\x6a\x7c\x44\x65\xc0\xd2\x76\x2e\xf8\x3f\xab\xbe\x75\xf0\x73\x32\x66\x50\x9b\x9d\x3e\x49\xc8\xad\xbf\xf1\xc8\xb2\x12\xcf\xad\xd5\x20\x53\xad\xd0\x8e\x02\xa5\xa8\xf5\x47\x55\xf4\x18\xde\x49\x85\xe4\x9f\x5c\x92\xa1\xd6\x97\x17\x17\x73\x6e\x82\x8a\x4f\x64\x9e\x97\x82\x9b\xf5\x45\xcd\x47\xd2\x17\x29\x3e\x62\x76\xa1\xf9\x7c\xc4\x54\xb2\xe0\x06\x13\x53\x2a\xbc\x60\x05\x1f\x11\xe8\x82\xd4\xfc\x38\x4f\x4f\x95\x37\x0a\xfa\xdb\x2d\x58\xf7\xb8\xd2\x15\x52\x9d\x1d\x33\x60\xd5\xa8\x9d\x6b\xe6\x9b\x3a\x2c\x36\x84\xb6\x9f\x2c\x75\x3e\xfc\x34\xb9\x87\x30\x34\x4d\xc6\x2e\xf5\x89\xee\x9b\x86\x7a\x33\x05\x96\x60\x5c\xcc\xc8\xb8\x5a\xef\x48\xc9\x9c\xfa\x44\x91\x16\x92\x0b\x43\x7f\x24\x19\x47\xb1\x4b\x7e\x5d\x4e\x73\x6e\x9c\xeb\x82\xda\xd8\xb9\x1a\xc3\x35\xd9\x3d\x98\x22\x94\x85\xd5\x00\xe9\x18\x6e\x04\x5c\x5b\x6b\x71\xcd\xac\x43\xf5\xcc\x13\x60\x29\xad\x47\x96\xb0\x71\x53\x50\x37\xd9\xbb\x95\x1d\xd5\x6a\x3f\x04\xfb\xd9\x32\x5f\x24\x9b\x93\x02\x93\x2d\x79\xb1\xf6\x90\x64\x84\xe9\x25\xf1\xf3\x14\xbd\xde\x71\x7e\x11\x73\xed\xc6\x3b\xd4\x7d\x6d\x27\x82\xe8\x06\x6f\x82\xcc\xc1\xcb\x73\xe0\x06\x56\x24\x34\x53\x24\x7f\xde\x7a\x00\x4a\x16\x9c\x19\x74\xc2\xc2\xc5\xd2\x56\x62\x1a\x0a\x5e\x60\xc6\x05\x6e\x77\xdd\xac\x12\xc0\x79\x28\x33\x3e\xf7\xfa\x74\xf7\xc7\x5d\xde\xb4\x8a\x74\xab\x01\x98\x05\x33\x41\xa2\xed\xfc\xfb\x65\x4a\x81\xca\xae\x06\x2c\x2d\xf6\xba\x04\x8f\x3b\xbc\xb2\x9c\x69\x3d\x8e\xf4\x12\x84\x84\x4c\x8a\x39\x2a\xeb\xec\x5a\xb7\x9d\x8b\x8a\x10\x2f\x61\x04\x39\xe3\xc2\xfa\xe2\x98\x5a\xfa\x35\xf4\x39\x65\xc9\x72\xc5\x54\x4a\xbe\x3d\x33\x7c\xca\x33\x6e\xd6\xdf\xee\xd5\x6c\xa7\x04\x90\x1f\x93\x73\x73\x7d\xf7\xb1\xe9\x37\xd8\x37\x2a\x39\xfb\xcc\xf3\x32\x07\x96\xcb\x52\xd0\x84\x5f\xdf\x7d\xac\xdc\xfa\x31\xdc\x8a\x6c\xed\x68\xd2\x0c\xb4\x2d\x0f\x85\x4c\x1f\x2c\x8f\x5a\xd7\x6b\xdd\x58\xa9\x85\x8d\xb7\x80\x7e\x87\xb9\x54\xeb\x27\xc3\x9d\x53\xf3\x26\xd0\x5b\xc0\xb6\x5c\xfc\xe5\xa0\xdb\xb9\x60\x46\xaa\xca\xc3\x8b\x44\x40\x84\xfa\xb0\x5a\xa0\x22\x21\x50\xa5\xd8\x18\x44\x54\x70\x27\x53\x38\xcb\xcb\x3d\x03\x12\xca\xd4\xad\x56\x34\xcb\x31\xac\xec\x02\x34\xb4\x44\x5c\x30\x35\xc7\xca\xce\x39\x13\x6c\x6d\x8b\x48\x78\xc6\x89\xf9\x5f\xec\x8a\x6f\x14\xca\x5e\x73\x0e\x60\x32\x2e\x7e\x03\x4c\xe6\xc1\x1e\xc6\x66\x7b\x90\x7f\x25\x36\x0b\x6d\x23\xe0\x26\x9e\xf0\xd5\x2d\x5b\xb1\x54\x16\xcd\x2c\x84\xa2\xcc\x9b\x3b\x1c\x81\x92\xa5\xe1\xa2\x49\xf7\xd9\x5f\x0b\xd9\x8c\x6e\x0f\x16\x46\xca\xec\x26\x67\xf3\x58\x21\xb1\xd6\xd4\xaa\x4c\xbb\x4a\xb7\xcb\x6e\x67\x86\x82\x8a\xde\x92\x97\x27\x70\x72\x8b\xb9\xb4\x25\x67\x9f\x3f\x94\xc2\x2e\xf0\x49\x6c\x1a\x34\xed\xb6\x59\x31\x8d\x2a\xa9\x60\x8a\x65\x19\x66\x16\x52\x0a\x16\x78\x57\x77\x7b\xb5\x52\x2f\xd3\xb5\x13\xd6\x9a\x1c\x6b\x43\x51\x9e\x28\x53\xd3\xd0\x63\x93\xf1\x89\x36\x35\x2e\x1e\x46\x6b\x81\x1f\x5e\xb6\xd0\xaf\xbe\x4e\xd8\x94\x08\xb5\xb8\x6f\x98\x87\xe8\x44\x98\x36\xf1\xe6\x73\xe8\xc3\xa7\x1b\xf9\x8a\xce\x0d\xbd\xf6\x50\xbe\x83\x71\xc9\x23\xeb\x21\xa7\xa5\xa6\xb6\xfa\xce\xb2\x4e\xe5\xc5\x9d\x05\xd7\xea\x85\x97\x24\xef\xe4\x60\x83\xf4\x70\x83\x79\xa3\x83\xb1\x3d\x0e\xd3\xcb\x9a\x7f\x4e\x34\x67\x53\xab\x7d\x12\x43\x83\x7a\xfd\x48\x91\xdc\x59\x8b\x33\xe5\x50\xaa\xf9\x60\xc1\x41\xf3\x62\x1e\xba\xdf\x8e\xc5\x51\x9b\x64\x21\x35\x8a\xa6\x59\xeb\xf6\x92\xc0\x31\x14\x5b\x34\xff\xb8\x83\xa5\xf7\x75\xd9\xc2\xa2\x7b\x4e\x33\xeb\x3f\x74\xeb\xf4\x7e\x28\x08\x12\xa6\xb1\x43\x29\x36\xc0\x63\x5b\x78\x8d\x98\xb1\xf5\x9e\xec\xd5\x4b\x8f\x42\x76\xc5\xaa\x59\xfc\x6c\x5e\x71\x15\x0d\x42\xc2\x84\x57\xc5\xb3\x32\xb3\xb3\xa4\x17\xcc\xaf\x90\x28\x20\x0d\x92\xe2\xac\xc4\x77\x5f\x0a\x9e\x5b\x76\x48\x35\x8c\x48\xa9\x4c\x96\x75\xc3\x51\xea\x66\xde\x1b\x00\x08\x1f\x04\xc0\x8c\xd3\xa6\x02\x8d\x6f\x35\xdb\x97\x8e\x4e\x41\x98\xd8\xc1\x45\x4d\x09\xda\x49\xf8\xd2\xc1\x8b\x8c\x19\xab\x2a\xa2\x01\xb0\x1a\x28\x34\xb2\x80\xb8\xd8\x19\x51\xe3\x4b\x61\x51\x38\xe7\xda\xb4\xf9\x70\x0d\xb0\x54\xd6\xa4\x28\xa7\x19\xd7\x2e\x8c\x58\x9b\x9e\x8e\x7e\x62\x04\xd8\x16\x96\xa6\x0a\x75\x4f\xa5\x06\x47\xed\xe3\x87\x1b\xf2\xd1\x92\x04\x75\x97\xa0\x40\x2c\x71\x80\x62\xe0\x83\xe1\x70\x2a\x37\x67\x85\x0f\xb4\x6a\x23\x95\x8f\x04\x5c\x5b\xfc\x67\x3c\x09\x81\xd1\xae\x72\x55\x9a\x85\x54\xdc\xb4\xe9\xc3\xc1\xa8\x70\xa1\x31\x29\x55\x27\xe3\xef\x21\xc4\x67\x01\x27\xef\x3d\x06\x8e\x01\xae\xab\x1e\xe1\x8c\xe3\x79\x2f\x42\x0b\x63\x0a\x90\x22\x5b\xbf\x88\xc2\x68\x2a\x65\x86\x6c\x37\x8a\xb8\x5d\xa4\x9a\x33\xc1\xff\xd9\x12\xae\xe8\x40\xcb\xe2\x54\x61\x52\xef\xe5\x50\xc4\xd6\x98\x28\x34\x83\x61\x72\xcd\xbc\x94\x25\x0a\x53\x14\x86\xb3\x4c\x83\xb5\x08\xc4\x48\x6d\x6b\xa3\x81\x10\x76\x38\xec\x9b\xf2\x88\x6a\x2a\x75\xbc\xa6\xcc\xe4\xdc\x45\xa4\x6a\xdb\xbf\xbd\x30\x74\xcf\x73\x2f\x9c\xde\x9b\x1d\xe2\x7c\xa0\x72\xce\x47\x58\xfc\xcc\x51\x58\xd7\x16\x29\x7c\x5c\xb0\x64\x49\x66\xae\xc5\xbf\x02\xa7\xc9\x3a\xe8\xf6\x3c\x8e\x0a\x79\xee\x07\x76\x56\x88\x76\x43\x5c\x95\x95\x54\x4b\xb7\xaa\x48\xb9\xc2\xc4\xd8\xe5\xfb\x61\xfc\x81\x9e\xc8\x63\x0b\x3c\x43\x43\x90\x9d\xb2\x63\x29\xdc\x18\x88\xad\x97\x58\x23\xd6\x1d\x3b\xec\x40\x27\x26\x8a\xd8\xab\x6a\x43\x00\x28\x26\x5a\xb2\x29\xd1\xca\xad\x37\xc6\x38\x08\xbf\xdd\x30\x50\x2f\x76\x5b\x31\xae\x67\x42\x31\x32\x16\xd9\x81\x68\xff\x0a\xbc\x17\xd1\xfa\x0a\x3d\x6e\x3d\xde\xdb\xe5\xd0\xf8\x65\xad\x65\x2c\xe9\xfa\x62\x9a\x9b\xf2\xa4\xe8\xe6\xd7\x66\xfe\x88\xd8\xe7\x20\x0c\x7f\x93\xec\xdf\x1d\x23\x6d\xc1\x2f\x3e\x5a\xba\x29\xed\x71\xd3\x4d\xe9\x8e\xa0\xd6\xeb\xb5\xc5\x52\x37\x25\x9a\x02\x3d\xf1\xd5\x4d\x79\x5a\xa4\xb5\x77\x96\x3b\x22\xb1\x83\xb1\x89\x72\xf6\x52\x2c\x50\xa4\x28\x92\x1e\xdb\xb6\x37\xe5\x61\x7b\xb3\xde\x81\xf7\x0a\x7c\x62\x02\xd7\x55\x12\x4f\x5b\x69\x8d\x91\x3d\x11\x59\xa6\x14\x6b\x97\x86\x9c\x3d\x62\xbc\x97\x61\xf6\xbc\x8c\x7a\xae\xde\x3b\xdb\x57\xc8\xc0\xe8\x5e\xd8\xba\xac\x3e\xea\x61\x3f\xf3\xa8\xa9\xc4\x7a\x1b\x09\x9b\xd0\xc2\x61\xd8\xa2\xd9\x32\xab\x6f\xe7\x82\x1c\xd6\xff\x5d\xe2\xfa\x3c\xb0\xb0\xcf\x2e\xe8\xe5\xd5\xeb\x2b\x48\x36\x2b\xdb\x33\xfd\xa2\xe2\xf6\x44\x0a\x81\x89\x71\xb1\xc7\x5c\x1a\x74\xe4\xea\xed\x51\x61\x21\x35\x37\x94\x7c\x36\x86\x1b\x43\x41\x32\x0f\x15\xfc\x7d\xfc\xc7\xef\xfe\x7f\x7d\x44\x4d\x99\x1f\xfd\xe6\xf4\xcd\xf5\xe4\xf4\xff\xf9\x48\xbc\xc1\xb4\xde\x85\x35\xa1\x5c\xe8\x31\x5c\xc1\x5f\xdf\x4c\x36\x75\x7a\x3b\x5d\xe2\x9a\xd6\x65\x94\xa5\x51\x1a\x69\x57\x3d\x09\xcb\xb2\x75\x48\xed\xa2\x88\x1e\xd5\xa0\x08\xc0\x55\x6f\x8f\xdb\xa4\x74\x49\x2d\xdb\x61\xdc\xa0\x4e\x98\x06\x06\x46\x95\x3a\x06\xd0\x9d\x19\xa2\xed\x11\x3f\x1d\x90\xc8\x3c\x67\x22\xd5\x63\x78\x6f\xe7\x88\x9c\xe8\x98\x89\x57\x52\x9a\x9d\xd9\x77\x4b\x55\x96\x69\x09\x3c\x2f\xa4\xb2\x14\xe0\xc2\x27\xf1\x6c\x67\xbb\xf5\x13\xb5\x4f\xff\x45\x68\x0d\xd8\xe5\x7a\xc7\xf1\x6f\x70\x3d\xc1\x8c\x96\x30\xa0\xe9\x3f\x96\x96\x4b\xa4\xc4\x5e\xd6\xdb\x23\xf8\x6e\xfa\xad\x75\xac\x08\xbb\xb2\xc4\x5e\x93\xdb\x80\x92\x15\x64\x0f\x7a\x2d\x88\x60\xf9\x8e\x30\xa3\x94\x9e\x31\xc0\xbb\xf6\xfd\xef\xdd\x32\x45\x60\xf0\xc8\x32\x9e\x86\xde\x96\xb8\xee\x47\x16\x86\x58\x58\x57\xfa\x42\xb1\x9b\xb2\xbd\xc9\xf5\xbe\xe6\x0a\x2b\x9c\xa1\x42\x61\xea\xb9\x45\x91\x88\x86\x0c\xa4\x65\x39\x45\x25\xd0\x20\x25\x21\xa5\x32\xd1\x17\xd6\x3b\xc6\xc2\xe8\x0b\xf9\x88\xea\x91\xe3\xea\xc2\x2e\x7f\xb9\x98\x8f\x56\xdc\x2c\x46\xce\x9c\xea\x0b\xf2\xf3\x2f\x4e\xe9\x9f\xc8\x41\xef\x6f\x5f\xdd\x5e\xc2\x55\x9a\xfa\xd0\xbe\x0f\xfd\xcf\x38\x66\x56\x06\x37\xc9\x79\xe7\x94\x20\xd6\x1f\x5a\x73\xa5\xe4\xe9\x7f\xec\x6f\x7f\x35\x95\x81\x73\x24\x0b\x97\x55\xfb\x84\x79\x9a\xd0\x1e\xd3\xda\xae\x81\xdc\x2e\x46\x65\x73\x28\x61\xdc\xc4\x92\xcc\xb2\x77\x58\x09\xb9\xdc\xaa\x7e\x2d\x02\x83\x62\x89\xe0\x7d\x7b\x6b\xd7\xfb\x11\x1d\x59\x88\xfa\x57\x5b\x31\x8e\x57\xbd\x6a\xb7\xdb\x62\x4b\x92\xf1\xdb\xa2\x96\x54\xde\x5e\xf6\x54\xc4\xf5\xdb\x1b\x3f\x95\xda\xa9\x78\xe6\x92\xc7\xac\xd7\x16\xce\x93\xf4\xa2\x14\xbc\x3d\xa6\xe6\x25\x9d\x16\x21\xd7\x67\xdb\x8c\x9c\x03\x8e\xe7\xe3\x73\x78\x18\x7d\x3a\x1f\x8d\x84\x1c\x19\xc5\x84\x9e\xa1\x1a\x15\x4a\xce\x15\x6a\x7d\x3e\x7a\xa5\xcd\x3a\xc3\x71\x22\x33\xa9\xfe\x5d\xe0\x23\xaa\x87\x7e\xfd\x32\x41\xac\x24\x96\x7c\xb8\xfa\x01\x0b\x85\xb3\x8b\x1f\xc6\x3f\x8e\xff\xe0\x7e\x1a\x61\x3e\xc5\x34\x45\x75\x91\x64\x7c\xbc\x30\x79\x76\x20\x6b\x32\x40\x78\x62\x27\xb5\x3a\x6a\x30\x78\x4e\x1d\xe1\x9d\x37\x59\x3b\xb0\xd0\x4d\xa9\x79\xc9\x53\xd4\x17\x76\x2d\xea\xfe\x3f\x2a\xb5\xd5\x6b\xb5\x0e\x0e\x48\xaf\x2d\x98\x09\xde\x2b\xeb\x2d\xb0\xc4\x54\x59\x92\x0c\x7e\xbe\xfa\x04\x67\x3f\xd3\xa9\x84\xf0\xeb\xa5\x57\x82\x7d\xdb\x05\xb6\x38\x32\x30\xdf\xf2\xc0\x46\x39\x74\x7b\x13\xa1\x17\x9a\x11\x86\xab\x58\xc8\x60\xb8\x76\xa6\xb3\x1c\x5f\x00\x1b\x51\xfd\x39\x00\x7b\x6c\xca\x30\x1f\x00\x98\x9f\xff\xc3\x83\x36\x44\xcd\x6f\x26\x3f\xa2\xb2\x9f\x8a\xaf\x61\x17\x32\x99\xb0\xec\x43\x58\x36\x0d\x0f\x4c\x15\xcc\x2c\x82\x3f\x45\x7d\xf9\x49\xa8\x56\x62\xbd\xee\x5f\xf4\x14\xc4\x4b\x5f\xfd\x40\x4f\xbc\xc4\x0e\xe0\x85\x16\x7d\xba\x81\x30\x0e\xe9\x88\x99\xac\xaf\x68\x07\x4d\x4e\xed\x54\x65\xbd\x8f\x67\xd0\xcd\x1b\xee\xa9\x29\xe6\x5d\x2e\x38\xb0\x6e\xe5\x4f\xd1\x5b\x9c\xb6\x45\x67\xdc\xef\xaa\x0f\x00\x0e\x7e\xb5\x05\x8a\xd8\x5a\x9f\x3c\x27\x80\x0a\x33\x64\x3a\x8e\xdc\x0d\xa9\x47\xa5\x46\xd0\x86\xce\x9a\x86\x9e\xa2\x3a\x1a\x36\xcf\xb6\x24\x0b\x4c\x96\xba\xcc\xef\x64\xc6\x93\xc8\x75\xee\x1e\xc8\x7f\x5b\xa0\xf0\x4c\x99\x62\x91\xc9\xb5\x3b\xcf\xab\x63\xfd\xd7\x4d\xd9\xcc\x0a\x9d\xa9\xa0\x90\x45\xe8\x32\x91\x4a\xa1\x2e\xa4\x48\xe3\xe6\x60\x17\x45\x07\xd3\x18\xfe\x21\x4b\x55\xf9\xdc\xcc\xed\x02\x3d\xf0\xb9\x90\x0a\x1f\x62\x97\x75\xb6\x3c\xcc\x18\xcf\x1e\xce\xed\x9a\xe9\x61\xc5\x94\x78\x00\x29\x80\x0e\xcb\x8a\x39\x2d\xa4\x04\x41\x1c\xe9\x60\x6c\xc3\xda\xab\xe3\x36\x65\x20\x67\x02\x05\xf8\x2d\x6b\x45\x4a\x39\xec\x49\xba\x93\xf0\x82\x38\x06\x58\x62\xf8\x23\xc5\xd4\xa4\x02\x21\xe3\x91\x1d\xb6\x0a\x74\xc5\x9d\x5e\xfa\x22\x5e\xfd\xf6\x7e\xc1\x35\x60\x46\xc7\xea\x43\xba\x25\x6a\x58\xc8\x15\xc8\x99\x89\x88\x83\xee\x82\x53\x1d\x98\xf3\x67\x0f\x2d\x3f\xc9\x24\x29\xd5\xd8\xcb\xc4\x8a\x67\x4d\xa9\xcb\x6d\x85\x52\x67\x7d\x68\xd2\x59\xfd\xbb\xdb\x77\xdf\x7e\xab\xe9\xac\x28\x9d\x36\x85\xb3\xa8\xb4\x93\x7a\xa1\x43\xf2\x1b\xe9\xb2\xdd\xb9\x15\x59\x38\x6a\x45\xd2\x11\xe3\xd6\x87\xe2\xc3\x87\x2e\x84\x3c\x76\xbb\x2c\x0b\xc9\x13\x17\x6d\xbc\x84\x07\x96\xad\xd8\x5a\x0f\x13\xa9\x94\xf1\x6c\xfd\x00\x67\x29\xce\x58\x99\x99\x17\xe7\xf0\x40\xe7\x09\x1f\x59\x76\xf9\xf7\x07\x38\x73\xdb\xb6\x7f\x1f\x82\xb8\x06\x26\x42\x16\xb7\x25\x43\xce\x45\x69\x50\xbf\x20\xb9\x75\x8b\xdc\xb8\x00\x0d\x3c\x45\xd8\xe2\xdd\x5a\x20\x6f\xd5\x8b\xe6\x00\x9b\x14\xe5\xb1\xda\xa2\x05\x2b\xf4\x42\xf6\x6f\x48\xb8\xd2\x6c\x94\x7c\x1f\x47\x6b\x74\xb4\x46\x8d\xe5\x68\x8d\x06\x41\x7f\xb4\x46\x47\x6b\xf4\xfb\xb4\x46\xa5\x7a\xca\xd6\x85\xe5\x40\xda\xab\xff\x15\x56\x71\x43\x22\x52\x3c\x26\x12\x55\xaa\x7e\xc1\x7b\x86\x28\x94\x76\x77\x0a\x0c\x0a\x70\x84\x7b\x08\xce\x58\x69\x16\x7d\x72\x18\x19\xd7\x18\xe6\x0e\x44\x27\x9f\x6e\xca\xd3\x22\x53\xae\x0c\x16\xa5\x81\xec\x1e\x1b\x53\x19\x08\x47\xc1\xb4\x5e\x49\xf5\x3c\x9d\x97\x1a\x55\x7c\xa4\x65\x50\xe7\xcf\xc2\xe6\xc6\x70\x31\x1f\xc6\xe7\x57\x61\x9f\x3a\xc1\x60\x42\xae\x89\xf1\xde\xb1\xc2\xaa\x64\xb7\x2d\xda\x8b\xce\x12\xd7\x6e\xf7\xce\xa7\xc3\xe8\x5a\x1e\x47\x80\xab\xcf\x87\x1a\x22\x1e\x49\x80\xf1\x0d\xae\x3f\xe0\x2c\x66\x82\x76\xc4\x7b\x37\xbb\x62\x83\x76\x8c\xaf\x37\xd4\xb3\x8f\x4e\xa1\x68\x49\xa2\xa8\xd2\x26\x62\x1d\xd1\xc1\xe2\x1c\xcf\xe7\xcf\x94\xf4\xf0\x95\xd2\x1e\x86\x24\x3e\x44\x77\x49\x09\x12\x03\x52\x1f\x9e\x30\x5f\xc3\xd2\x1f\x22\x12\x20\xea\x62\x1f\x8d\x28\x37\xfa\xc9\x59\x10\xc3\xd7\x1c\x43\xbc\xb7\xb8\x5c\x88\x81\x66\x4c\x87\x34\xad\x03\xe9\x1c\x1d\x99\xaf\xf5\xeb\x2b\x9c\x96\xac\xad\x68\xc6\xa8\x65\x77\x7d\x49\xde\xd6\x51\x91\x1d\x15\xd9\x4e\x79\x96\x4c\xae\xa7\xe7\x72\xfd\x9f\xd3\x62\xd1\x55\x83\xdf\x36\xc1\xa4\x54\xdc\x0c\xdb\xbd\x7f\x56\xbf\x52\x7b\x88\x82\xb0\x1e\xfd\xcc\x50\x8e\x7e\x66\x44\x39\xaa\xe7\xa3\x9f\xd9\x59\x8e\x7e\xe6\xd1\xcf\xec\x2d\x47\x45\xf6\x3b\x57\x64\x47\x3f\xf3\x10\x55\xa3\xaa\x7d\xd5\xab\x91\x54\x29\x0c\x1f\x30\x7e\xc7\xc9\xcc\x70\x25\xb6\xef\xb2\x93\x82\xb5\x83\x99\x1d\xf5\xa2\xef\x2f\xda\xf4\x76\x9d\xb1\x81\x17\x19\xd5\xcf\x88\xa2\x30\x6a\x0d\xee\x0e\xe6\xb3\x9c\x71\xf1\x62\xfb\xf2\xe0\x83\x9d\x75\x4e\x58\xc1\xe8\xf6\xbc\x67\x4b\xc9\xdd\xc2\xf1\x3a\x0c\xb7\x76\x57\x5b\x17\x4c\x19\x9e\x94\x19\x53\x30\x43\x66\x4a\x85\xee\xe6\xa4\x78\xc1\xb3\xbd\xac\x30\xcb\x60\x29\xe4\x8a\x96\x27\xbb\x07\x92\x0f\xbc\x63\x14\x7b\x58\x7a\x53\x22\x37\xae\x42\xf7\xcf\x7f\x64\xc2\x95\x81\x07\x27\x5c\x19\x9e\x6c\x33\xfc\x10\x85\x2b\x5f\x7a\x94\xc2\x95\x27\x24\x8a\x0c\x3c\x56\xd1\x0a\x6d\xfc\xe1\x8a\x2f\x00\x75\xd0\x41\x8b\x56\x50\x87\x1c\xb7\x78\x32\xb0\xc3\xb2\x02\x06\x1e\xc0\x08\x4d\x62\x8f\x61\xb8\x32\x70\x77\x35\x7e\x97\x10\x06\x6e\xec\x0f\xd2\x57\x03\xa0\xde\xbe\x4a\xd1\x69\x58\x0d\x72\x66\xdd\xe1\xb4\xba\x27\x37\xc6\x50\x0e\x18\x76\x88\x86\xdc\x4e\xbb\x68\xba\x4e\x42\x20\xa6\xc3\xee\xcf\x88\xb3\xe9\x70\x3c\xc6\x36\x00\xe1\xe3\x31\xb6\xa7\x00\x76\x3c\xc6\x36\x40\x67\x36\xbf\xc6\xb1\x5f\x7e\xdd\x93\x61\xde\xa1\x0c\xc0\x1d\x4a\x47\x16\x4a\x3e\xf2\x8e\xcb\x0b\x1b\x61\x71\x77\x64\xe7\xf4\x14\x5d\x6d\xb1\x10\xfa\x3a\x07\x8e\xe7\xad\x57\x98\x6f\x97\xff\x2c\x99\x5a\x96\x07\xbb\x2b\x35\x52\x50\x1a\xb0\x79\x03\x1f\x9c\xf5\x09\x7d\x1c\x06\xa4\x18\x01\x19\xed\xad\xd7\x3a\x2b\x47\xda\xe8\x51\x35\x1f\x9d\x95\xfa\xb1\x8d\xe2\x25\xff\xe2\xd0\xa0\x65\xb3\x6f\xe3\xee\xe9\x4a\x81\x19\x7f\x88\xbc\xc7\x07\x88\x30\x96\xdb\xd1\x1c\x1a\x66\xef\x49\x9c\xed\x45\x7b\xfb\x53\x15\xa1\xd4\x9e\xaf\xa4\xcb\xc0\x70\xe7\x1d\x9d\xd4\xa5\xf9\x26\xa8\xe8\x86\xa0\x18\xf6\x7f\x35\x79\x5b\x3d\x42\xd8\x27\xa5\x91\x0a\x26\x91\x39\xbd\x85\x18\x65\x2d\xda\xae\xd9\x45\x61\xec\xb2\x38\xf4\x85\x29\x9c\x4d\x99\xc6\x3f\xfd\x21\xc2\x80\xa0\x48\xd4\xba\x30\x98\xf6\x3b\x1b\x43\x42\x5c\x1e\xac\x81\x38\x6d\xb8\x0c\x12\x99\x22\x9c\x15\x99\x9d\x1b\x83\x9f\x4d\x2c\x78\x51\x9a\xda\x43\xf7\x26\x26\x3c\xde\x1c\x3d\xca\x59\x41\xc1\xc2\x85\xcc\xd2\xf0\xa2\x56\x05\x39\x75\xfe\x0c\xf0\x46\xed\x37\xb4\xc3\xbb\xd9\xf3\xdd\x87\x3a\x82\x53\x9e\x0f\xaf\x7b\xdb\xe2\x49\x88\x11\xeb\xdb\x01\xe1\xcc\xf0\xc2\xdf\xa2\x65\xd9\xc5\x8a\xfe\x94\x0b\xa6\x7a\xaf\x8e\x1e\x04\x30\xe5\xd7\x27\x58\x18\xd9\x9f\xb1\xbc\x03\xf1\x4d\xad\x29\x9d\xa4\x09\x21\xef\xcd\xd9\x64\x15\x13\xa8\xa6\x8b\x3c\xd5\x3c\x5c\xce\xe1\xde\xe3\x5c\x8e\x3f\x90\x8a\x7b\x2b\x59\xea\x62\xfe\xa4\xed\x0a\x85\x17\x85\x8c\xba\xc2\xa9\x50\x32\x41\xad\x83\x92\xef\x6d\x11\x1d\x9c\x7a\x42\xe2\x6d\xcc\x3a\x39\xe8\xe1\x81\xb3\xa0\xab\xad\x02\x9e\x2c\xc2\xe9\x9c\xea\x61\xd9\xb3\x38\x27\x88\x2c\xc1\xe6\xc6\x3a\x62\x8a\x82\x76\xc8\xec\xaa\xb8\xa6\xc0\x0e\xc9\x7a\x19\x4d\xed\x40\x74\x3d\x3f\xb8\x73\x1d\x35\x86\xab\x6e\x84\xed\x66\xa4\x28\x76\x64\x86\x0e\xed\xb4\x90\x81\x99\xc8\x30\xc1\x20\x62\xc4\x6d\xef\xed\x69\x8c\xfa\xe6\x43\x78\xca\x24\x66\xbd\x3f\x08\xb6\x82\x99\xd6\x87\x4d\x3a\x60\xa3\xdb\x34\xfc\xbd\xbf\xf4\x40\x42\x46\x17\x04\x46\x1e\x5e\x1a\x02\x9f\x73\x4e\xd6\xa3\xda\xbb\xbd\xd1\x90\xbe\xf5\xa1\x96\xd0\x89\xbb\xb3\x38\xec\x95\x59\x97\x2a\xee\x0c\xa3\xe7\x8e\x33\x1c\xcf\xc7\xe4\xca\x58\x1d\xce\x35\x7c\x63\x30\x2f\x32\x66\xf0\x9b\x7e\xbd\xfd\xb5\x55\x90\x62\xab\xeb\xc3\xb8\x39\xb1\x96\x2a\xbc\x08\x35\x5d\x47\xbc\x06\x31\xf4\xd2\xa9\x61\x38\x58\x9b\xbd\xe5\x9f\x2f\xb9\x20\xb5\xe2\x11\x73\x95\xa7\x51\xfb\xa7\xd5\xbb\x5b\x71\x01\xd5\xf8\x0b\x79\x87\x6c\x72\x76\xcf\xb8\x36\x58\x3c\xed\x8e\x5b\x6a\x69\xcd\x44\x78\xbf\xf3\x4c\x23\x42\xb1\x9c\x5f\xf8\x3b\xbd\x2f\xba\xe6\xfd\xd7\xbc\xe4\xb6\x97\x5c\x09\xbd\x61\xde\x06\xcd\x16\x05\x3e\x6a\xf7\x64\x82\x95\xe9\x60\x27\x03\x01\x98\x58\xbb\x07\x14\x78\xe2\xbb\x6c\x05\xdb\xdd\x58\xde\xae\xa0\x63\x16\x5a\xfe\x8a\xb9\x81\x3b\xc4\xd4\xa6\x06\x75\x2f\x65\x0f\xfa\x7a\x91\x69\xbe\x14\xfa\x00\xaf\x26\x7c\xc5\xcd\xfa\x5e\xfe\xfa\x85\x4f\xa3\x98\x8b\xc1\x5f\xf9\x74\xf3\x1a\xd8\x5f\xf9\xf4\xf8\x12\xd8\xaf\xf0\x12\xd8\xef\xf8\x01\xae\xe3\xa3\x57\xc7\x47\xaf\x3a\x11\x3a\x3e\x7a\xd5\x00\xda\xef\xe3\xd1\xab\xde\x2a\x4b\x26\xf8\xb2\x35\x71\x74\xc7\xb2\xbd\xa1\xca\x1b\xe3\xe6\xfe\xfe\x17\xb1\x6f\x2c\x59\xc4\x8f\x5e\x6a\x04\xe6\xda\x1c\x40\x5b\x46\x5e\xe3\xb2\xcd\x69\xaa\x44\x2b\xd9\x1e\x0a\x2b\xca\x71\x57\x4e\xc4\x4b\x66\x81\x4a\x73\x6d\xd7\x90\x9f\x64\x56\xe6\x78\x9d\x31\xde\xfb\xba\xc9\x9e\x38\xdc\x7d\xba\xae\xbc\xec\xcd\xc3\x01\x7d\xa4\x83\x03\x3f\x07\xf2\x1b\x77\x5f\x8e\x0f\x99\x52\x39\xfa\x51\x3b\xe5\xe8\x47\x51\x39\xfa\x51\x47\x3f\xea\xf8\x78\x68\x2f\x9c\xfa\x25\x8f\xf4\xe4\x26\x2f\xf9\xc6\x8d\x9b\xbc\xbc\x39\x84\x0f\xf7\x1b\x37\xb1\x5f\xd5\xb6\x18\x36\x1f\xe2\x5b\xa6\xe1\x3d\x23\xf2\x07\x26\x46\x21\xeb\x7a\xec\xf3\x10\xf1\x2d\x5d\x60\x62\x54\xfb\xeb\x75\xbb\x0c\xe4\xab\xd7\xb8\xc8\x7f\xf9\x17\x59\x0e\xfc\xb6\x99\xf9\xe8\xa6\x1d\xdd\xb4\xb6\x72\x74\xd3\x8e\x6e\xda\x1e\x68\xbf\x0f\x37\xad\xa7\x4a\xe7\xcf\xed\x7b\x90\x86\xe7\x28\xcb\x06\xca\x6c\x6f\x3a\xbb\x5a\x5b\xfb\xce\xee\x65\xe2\xf0\x46\xb4\x5b\xe4\x73\x29\x20\xf5\xa9\xa2\x4d\x47\xcc\xef\xab\x76\x29\xb2\x34\xe3\xc2\xa5\x5a\xb8\x33\xee\x9b\x4e\xb5\x61\xca\x10\x68\x50\x64\xa5\x1b\xce\x83\xd0\xd0\x69\x35\x20\xdc\xcc\x6a\x9d\xd4\x47\xc0\xcf\x09\x9d\x4a\x39\xaf\xfd\xee\xad\x20\xf0\x26\xe5\x94\x30\x91\x60\x66\x1b\x30\x91\xd2\x3d\x0b\xf4\xfe\x67\x00\x95\x7a\xb8\xb3\x5f\x5e\x33\x9e\x35\xbd\x04\x1c\x32\x06\x02\x70\x2d\x53\xd2\xc8\x18\x1d\xef\xd9\xee\xde\x12\x1c\xf9\x84\xad\x7f\xa2\x16\x5e\x61\xa1\xd0\xaa\xbb\xc6\x78\x9c\x90\x90\x49\xe1\x6f\xa0\x2d\xad\xcf\x21\xaa\xa4\xef\x97\x30\xa2\x44\x76\x1a\xcb\x1d\xd9\x9d\xb2\x64\xb9\x62\x2a\x75\x77\x01\x1b\xee\xce\x89\xee\x9f\x54\x6f\xc5\xb4\x85\x65\xb5\x61\xa6\xdc\xb1\x37\x5b\x78\x13\xf5\x27\x54\x6b\x8b\x23\xe5\x94\xee\x34\x25\xfe\x31\x64\x97\xff\xbc\xf7\x94\x6d\xbb\xd5\x0b\xc7\x2e\x1a\x2c\xdd\x8e\x7f\xb8\x79\x57\xcd\xb7\xa8\x26\x21\x24\xe2\xb4\xbc\xa1\xdb\x9a\x54\xb0\x7d\x49\x50\x38\xab\xa4\xec\x6c\x69\x7a\xb8\x8d\x41\xce\x0c\x2a\xce\x32\xfe\x4f\x4c\xab\x91\xe1\x8c\xc1\x2f\xac\xd9\x21\xac\xd2\xdf\xd7\xee\x9e\x6f\xb7\xf5\xcf\x32\x70\xb7\x28\x6f\xb9\xe2\x04\x6e\x93\x1d\xe8\x73\x12\xc2\x55\xe0\x91\x9e\x75\x75\xcb\xf9\xd9\xe4\x2f\x57\xdf\xbf\x08\xae\x53\x77\x86\x6b\xaf\x0a\x6d\xbf\x44\x75\x4f\xa1\x87\x94\x4f\x7f\x12\xe3\xec\xe7\xab\x4f\xc4\xcb\x79\xb8\x17\xbe\xff\xc4\x80\x54\x8e\x7e\xe4\xfb\xd9\xb6\xce\xf5\xa5\x6f\x16\x54\xdd\x66\x4f\x7b\xf1\x08\xb7\x18\x47\x61\xe3\x6c\x12\xa7\x04\x74\x6a\xb8\xc3\x7c\xa8\xe0\xe1\x4e\xa6\x0f\x4f\x05\xc6\x30\x35\x6f\xb7\x98\x7b\x84\xc5\xcf\x76\x89\x84\xe9\xe6\x2a\x66\x0f\x4c\x77\x12\x62\x0f\x18\x5d\xa7\x42\x5a\x6e\x57\x7e\xa2\x1d\xec\x58\x95\xed\xe1\x5a\x5b\x8f\x55\x6f\xbb\x77\xbc\x9c\xdd\x81\x63\x22\x85\x3b\x1b\x15\xaf\x74\x36\x4d\xdc\xfd\xed\x0a\x53\x6b\x64\x42\x56\xf9\x97\x28\x1e\xd2\x96\xd7\xa1\xff\x2a\x93\xcc\xdf\x2e\x16\x74\x2a\x03\x85\x55\x8e\x69\xe3\xb4\x6e\x0e\x77\xd0\x85\x08\x4d\x8e\x40\x9f\x5e\xc9\x98\x36\xf7\x8a\x09\x4d\xa0\xdc\x77\x5c\x34\xb1\x9d\x25\xc9\xb4\xf7\x1b\xbc\x5a\xf1\xa8\x98\xaa\x2b\x3b\x5d\x4a\xe6\x74\x4a\xc5\x19\x9a\xf6\xb8\x86\x04\x26\x48\xb8\xdb\x6e\xcb\xa9\x8c\x3c\x33\x38\x7a\x3a\x97\x3b\x74\x3f\xd2\x3d\xfd\xd1\xa8\xde\x53\xfe\xf4\x06\x5d\x3a\x87\x12\xf0\x5d\x31\xed\xef\xfd\x6f\x7d\x97\xfe\x60\xb0\xe7\xa8\x75\xc7\x82\x7d\xe7\xfe\xbb\x45\x99\x33\x31\x52\xc8\x52\x7a\xc6\xca\x37\x06\x2e\x52\xd2\xc9\x62\x0e\x29\x1a\xc6\xad\x8b\x3d\x6d\x76\xf7\x3c\x58\x76\xc5\x5d\xcd\x6a\x1b\x92\xbd\xc0\x2b\x64\x3a\x52\xe1\xde\xd3\x1a\xc5\x56\xaf\x2e\x2c\xa9\x08\xfe\xad\xf6\x73\xf1\xe5\x10\x35\x79\x3f\x2d\x10\x79\x17\x68\x63\x44\x1d\x30\xe7\xee\x08\xd6\x0c\xee\x55\x89\xe7\xf0\x9a\x65\x1a\xcf\xe1\xa3\xa0\x0b\x37\x9e\x0c\x57\x57\xaa\xea\x7e\x82\xaa\x9c\xb9\xd7\x0c\xfc\xa9\xb1\x0a\xb6\x27\x0e\xdf\x6d\x07\x5a\xe5\x78\x44\xfd\x1e\xce\x48\xa4\x7c\x8e\xba\x6f\xad\x64\xe7\xc2\x55\x74\x9a\xa6\x39\x0e\xd3\x81\x70\xda\x7a\xbb\xfd\xd6\x38\x0b\xb9\x22\x77\xdd\xfa\x00\x46\xca\x65\xc5\x95\xee\x70\xe0\xf5\x82\x09\xb7\x1c\x78\x15\xce\xee\x5d\xc0\xcd\xe4\xb6\x81\x1a\x3f\xfe\xe9\xbb\xef\xad\x3f\x21\xe0\xfa\xc3\x2b\x77\x86\xe5\xb6\x40\x71\x75\x77\x43\x91\x53\x78\xfc\xa1\xba\x53\x6b\xce\xcd\xa2\x9c\x8e\x13\x99\x5f\xdc\x5e\xdd\x5c\xf8\x6a\xa3\x49\x3d\xa7\xff\x82\x6b\x5d\xa2\xbe\xf8\xf1\x0f\x7f\x1c\x82\x36\x2a\x25\x1b\x02\x92\xfb\x9e\x86\xad\x57\xff\x0c\x67\x7c\x06\x4c\x34\xc4\x31\x3a\x46\x9b\x31\x9e\x35\x06\x5f\x1a\xe2\x12\x24\xf3\x5e\xca\x7c\xbb\xf6\x31\xbb\x2d\x5b\x97\xbe\xd9\x31\xf8\x7a\x21\xed\x22\xd8\x2e\x51\xfd\xe1\x99\x60\xe3\x5d\x27\xed\x52\xda\x25\x47\x89\x7c\xc4\xb6\xf8\x62\x03\xea\xae\x7a\x78\x34\xa6\xee\xeb\x78\x42\x34\x76\xd4\x1f\x5a\xf4\x1d\xb6\x07\x64\xb6\x89\xe1\xdf\xac\x11\x65\x3e\xed\x08\x7f\x3b\xe4\xfd\x2b\x2a\xdd\x03\xbf\x63\x9f\x23\xc7\x0e\x01\x0e\x37\x36\x39\x40\xae\x8b\x0e\xc7\x21\x1e\x8e\x2e\x73\xbf\x3b\x21\x7c\x13\x6b\x0e\x04\xa9\xa2\x2e\xad\x5d\xc4\x9a\xf9\x28\x5b\xd9\x75\x44\x7b\x14\x80\xea\xfe\xf5\x1d\xfb\xdc\xc1\xb8\xed\xd1\xad\x56\x3a\xed\x31\x2d\xd1\x89\xb4\x59\x5d\x5e\x17\x4c\xc3\x82\x1e\x50\x6f\x09\xd9\xc5\x11\xaa\x93\x48\xed\x04\x1a\xb5\xc9\xec\xa8\x92\xb1\x86\x9f\x1a\xa1\xe8\x20\x54\xcb\xc6\xc9\xfe\x22\xb8\xda\x2c\x21\x5b\xd1\x66\x01\x1b\xb1\x0c\x31\x96\x9f\x29\x98\x10\x61\xa6\x6e\xf7\x1a\x84\xd3\x7f\xb9\xd4\xc6\xa2\x8f\xc2\xf8\xd8\x04\xfd\x1a\x46\x68\xa0\x7f\xa5\x7c\x68\xa5\xd2\x1e\x74\xe3\xc2\x34\x9c\xc1\xee\x12\x4b\x8a\xee\xf5\x60\xb2\xbd\x1e\xa2\x16\x43\x28\x47\x41\x4d\x4c\xaf\x62\xfc\x87\x0d\x0f\x73\x13\x1a\xb6\x87\x18\x5b\x39\x76\x58\xe4\x6d\xef\xa3\x9b\x07\x97\x8e\xe7\x3e\x18\xa9\x2c\x8b\xd5\xbe\x94\xd3\xb0\x1a\xac\x74\xbd\xf7\x60\xe1\xbf\xff\xe7\xe4\x7f\x03\x00\x00\xff\xff\x81\x6a\x34\x3a\x52\xb3\x00\x00"), }, "/crd/bases/camel.apache.org_camelcatalogs.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_camelcatalogs.yaml", @@ -540,9 +540,9 @@ var assets = func() http.FileSystem { "/samples/patch-integration-platform.yaml": &vfsgen۰CompressedFileInfo{ name: "patch-integration-platform.yaml", modTime: time.Time{}, - uncompressedSize: 3825, + uncompressedSize: 3836, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x4f\x8f\xdb\xba\x11\xbf\xeb\x53\x0c\xe2\x4b\x02\x48\x72\x36\x6d\x51\x54\x3d\x39\x9b\xa4\xcf\xdd\x64\x1d\xac\xf6\xf5\xf5\xa1\xe8\x61\x4c\x8d\x25\xc2\x14\xa9\x92\xd4\x3a\x6e\xb7\xdf\xbd\x18\x92\xb2\xe5\x8d\x5b\xf4\x10\x03\x71\xbc\xd4\xfc\xf9\xcd\xcc\x6f\x86\xa3\x05\x14\x3f\xee\x93\x2d\xe0\xb3\x14\xa4\x1d\x35\xe0\x0d\xf8\x8e\x60\x35\xa0\xe8\x08\x6a\xb3\xf3\x07\xb4\x04\x9f\xcc\xa8\x1b\xf4\xd2\x68\x78\xbd\xaa\x3f\xbd\x81\x51\x37\x64\xc1\x68\x02\x63\xa1\x37\x96\xb2\x05\x08\xa3\xbd\x95\xdb\xd1\x1b\x0b\x2a\x1a\x04\x6c\x2d\x51\x4f\xda\xbb\x12\xa0\x26\x0a\xd6\xef\x37\x8f\xeb\xdb\x8f\xb0\x93\x8a\xa0\x91\x2e\x2a\x51\x03\x07\xe9\xbb\x6c\x01\xbe\x93\x0e\x0e\xc6\xee\x61\x67\x2c\x60\xd3\x48\x76\x8c\x0a\xa4\xde\x19\xdb\x47\x18\x96\x5a\xb4\x8d\xd4\x2d\x08\x33\x1c\xad\x6c\x3b\x0f\xe6\xa0\xc9\xba\x4e\x0e\x65\xb6\x80\x47\x0e\xa3\xfe\x34\x21\x71\xd1\x6c\xf0\xe9\x0d\xfc\x6a\xc6\x14\xc3\x2c\xdc\x94\x85\x1c\xfe\x42\xd6\xb1\x93\x77\xe5\xdb\x6c\x01\xaf\x59\xe4\x55\x7a\xf8\xea\xcd\x1f\xe1\x68\x46\xe8\xf1\x08\xda\x78\x18\x1d\xcd\x2c\xd3\x37\x41\x83\x07\xa9\x41\x98\x7e\x50\x12\xb5\xa0\x73\x58\x27\x0f\x25\x04\x00\x6c\xc3\x6c\x3d\x4a\x0d\x18\xc2\x00\xb3\x9b\x8b\x01\xfa\x6c\x91\x2d\x20\x7c\x3a\xef\x87\x6a\xb9\x3c\x1c\x0e\x25\x06\xb8\xa5\xb1\xed\x72\x8a\x6e\xf9\x79\x7d\xfb\xf1\xbe\xfe\x58\x04\xc8\xd9\x02\x7e\xd6\x8a\x9c\x03\x4b\xff\x18\xa5\xa5\x06\xb6\x47\xc0\x61\x50\x52\xe0\x56\x11\x28\x3c\x70\xe1\x42\x75\x42\xd1\xa5\x86\x83\x95\x5e\xea\x36\x07\x97\xaa\x9e\x2d\x2e\xaa\x73\x4e\xd7\x04\x4f\xba\x0b\x01\xa3\x01\x35\xbc\x5a\xd5\xb0\xae\x5f\xc1\xfb\x55\xbd\xae\xf3\x6c\x01\xbf\xac\x1f\x7f\xda\xfc\xfc\x08\xbf\xac\x1e\x1e\x56\xf7\x8f\xeb\x8f\x35\x6c\x1e\xe0\x76\x73\xff\x61\xfd\xb8\xde\xdc\xd7\xb0\xf9\x04\xab\xfb\x5f\xe1\x6e\x7d\xff\x21\x07\x92\xbe\x23\x0b\xf4\x6d\xb0\x8c\xdf\x58\x90\x9c\x48\x6a\xb8\xa6\x13\x81\x26\x00\xcc\x0f\xfe\xdb\x0d\x24\xe4\x4e\x0a\x50\xa8\xdb\x11\x5b\x82\xd6\x3c\x91\xd5\x4c\x8f\x81\x6c\x2f\x1d\x97\xd3\x01\xea\x26\x5b\x80\x92\xbd\xf4\x81\x45\xee\xfb\xa0\xd8\xcd\x8f\xec\xad\x0c\x07\x99\xe8\x54\x81\xc0\x9e\xd4\xbc\x7c\x4f\x37\xd9\x5e\xea\xa6\x82\xb5\xf6\xd4\xda\x00\xea\xab\x42\xcf\x3c\xcf\x7a\xf2\xd8\xa0\xc7\x2a\x03\xd0\xd8\x53\xd2\x2f\xf6\x19\xc7\xcb\xa7\x0b\xfe\x17\x98\x3e\x58\x33\x51\x7b\x4b\x21\x65\xa1\xeb\x62\xe1\x1b\xda\xe1\xa8\x7c\x10\x96\x54\xc2\x66\x20\x5d\x77\x72\xe7\x73\xb8\x1b\xb7\x64\x35\x79\x72\x39\xdc\x69\xf4\xf2\x89\x92\xdd\x64\xb1\x3a\x4b\x4f\x0e\x83\x9d\xcd\x10\x13\x38\x58\x33\x60\x8b\x7e\xa2\xd1\x29\x0c\x97\x44\x85\xd1\x3b\xd9\x8e\xf1\x30\x80\x06\xb0\x34\x18\x27\xbd\xb1\xc7\x0a\x7a\x7c\x22\x5d\x9c\x4f\xae\x7a\x49\x7d\x21\x7b\xae\xed\x76\x94\xaa\x61\xc7\x82\xdc\xe4\x25\x9c\x9d\x53\xf2\x3e\x88\x38\x6f\xd1\x53\x7b\x0c\x3c\x79\x09\x2d\x64\xc2\x9a\xd1\x4b\x4d\x39\x0c\xa6\x39\x29\x47\x63\x75\x52\xae\x26\x21\x78\x9e\x4b\xcd\xdc\x0c\xe3\x56\x49\xd7\xfd\x1f\xee\x82\x3c\x76\x39\xdc\xa1\x96\x7b\x93\x43\xfd\x6e\x9d\x43\x3d\x90\xf0\x76\xec\xcf\x00\x92\xc5\x33\x84\xa4\x08\xcf\x49\x13\x9e\x59\x95\xbf\x5f\xea\xd6\xe4\x43\xaa\x12\x55\xc0\x8e\xda\xcb\x9e\xe0\x29\x72\xf0\xec\x23\x3d\x38\x71\xf3\xa6\xfc\x6d\xf9\xf6\x3b\x33\x5b\x74\x04\xeb\x90\xf6\x31\xdd\x0f\x76\xd4\xd7\xea\xcc\x79\x43\x47\x41\xb6\x0a\x3f\x8b\x50\xae\xea\xa6\x7c\x3b\x33\x1c\x53\xc6\x9e\xcd\xe8\xcf\xaa\xe9\x20\xf1\x03\xa0\x99\x08\x03\xbf\x99\x74\x4f\xdf\xf0\xd5\x9a\x81\xac\x97\xe4\xe2\x0d\x31\x0c\xea\xc8\xad\xee\x4d\x0c\xfb\x25\xbc\x49\x73\x38\xe9\x55\xc9\x12\x00\xec\xe9\x78\x53\xc1\x13\xaa\x91\x6e\x2e\x4e\xdf\xa5\xd3\x77\x73\xdf\x49\xe2\x76\x4e\xea\x08\x02\xc4\xe8\xbc\xe9\x23\x9f\xe1\x82\xcf\x93\x5e\x78\x54\x5d\x1a\xfa\xbc\x06\x33\xb5\x12\xba\xd9\x15\xfc\x25\xd8\x11\xa6\xef\x51\x37\x2e\x35\x36\x7d\x23\xc1\xb3\xf6\xc2\x86\x50\x32\xf5\xc9\x39\xac\x02\x8a\xc2\x75\xe6\x50\x9c\xeb\x7e\x7e\xb0\x45\x2f\xba\xa2\x37\x0d\x5d\x09\xed\xb3\x11\x31\xaa\xd4\x73\xca\x08\x54\x09\xcd\xd5\xa8\x16\x10\x65\x1e\xe6\x4d\x7d\x2c\xcf\xb2\xe5\x68\xd5\xd5\xec\x11\x20\x38\x33\x5a\x41\xec\x2c\xba\x70\xe4\xf9\x16\x72\xf0\x3a\x0e\x8e\x1e\x87\x67\x47\xc2\x92\xaf\x78\x06\xfe\x6d\xb9\xa7\xe3\xdf\xdf\x4c\x8e\x27\xe9\x59\x3d\xa3\xda\x17\x1c\xee\xe8\xf8\x40\xbb\xd9\x93\x50\xd5\xea\xa4\x53\x7e\xeb\xd5\xfc\x61\x1c\xb1\x71\x1c\x4d\x32\x57\xf2\x53\x07\x30\x41\x9a\xef\x13\xb6\x99\x87\xd5\x07\x65\xb8\x6f\x38\x67\xb7\x2b\x10\x4c\xb4\x9d\x14\xe8\xe9\xb5\x7b\x73\x6a\x1e\x61\xb4\x26\xe1\x93\x2d\xee\x26\xea\x8d\xa7\x97\xf9\x95\xe4\xca\xcb\x94\xa1\x9e\x9c\xc0\x5f\xcb\xdf\xbd\xfd\xc3\xdc\x81\xcb\x03\x92\xaf\x77\xb7\xf5\xe2\xf7\x10\x77\x24\x1e\xc8\x33\x11\x10\x1d\x4a\x3d\x19\x85\x15\xfc\xf9\xae\x9e\x49\xee\xe9\xe8\xbc\xb1\xe1\x4a\xc7\xd1\x1b\x5e\xb2\x04\x2a\x75\x04\x61\x69\x1a\xee\x51\xe2\x6a\x7c\x79\xb2\xcb\x30\xa6\x81\x1f\x95\xb6\x69\x70\xa0\x03\x04\x6f\x47\xf7\x02\x18\x27\x67\x7b\xbc\xc2\xf8\x09\xea\x3d\xa7\xc7\x77\x18\xe7\x91\x35\xc6\xbf\x70\xef\x80\x37\x54\x54\xce\xf0\xbd\x67\x2c\x3b\x90\x3a\x75\xd1\x04\x7f\x0a\xf0\x32\xab\x20\x30\x96\xf3\x72\x1e\x54\xe0\x95\x2b\x85\xf5\xe7\xd3\x48\x0e\xaf\x5c\x11\xc9\xf8\x3f\x66\x02\x03\x9a\x86\x81\xa5\x96\x17\xa4\xd4\x2e\x40\x6d\x09\x1f\x64\x2b\x3d\xaa\x8d\x20\xd4\x39\x7c\x30\x62\x4f\x16\x7e\x1a\xb7\x39\xfc\x49\xfa\x2e\xfc\x2f\x6c\x29\x4d\x0e\xeb\xf7\x5f\xd8\x28\xd7\x9c\x2c\x3c\x5c\x9a\x7a\xa0\x1d\x2f\x2e\x26\xec\x85\xae\x5a\x2e\xbf\xdb\x2d\xd2\x0d\xb0\x54\x9c\x23\xbf\x94\xda\x79\x54\x2a\xf4\xf6\x72\xc2\x75\xfa\x51\x76\xbe\x9f\x37\xe9\x74\x3e\x25\x86\x77\x0c\x6c\x9a\xb8\x93\xc5\xc1\x70\x25\xb6\x93\xb5\x26\x06\x69\x38\xc8\x52\x98\x3e\x87\x26\x04\x5a\x0e\xfb\xb6\x6c\x43\x9c\x7c\x7c\x59\x8c\x64\xbf\x3a\x99\x29\x3a\xe3\x7c\x29\xcd\x95\x64\x33\x1e\xd9\x90\x66\x12\xf0\x8b\x48\x84\x64\x6c\x8b\x5a\xfe\x33\xc4\x38\x83\x15\x1d\x16\xa3\x23\xbb\xfc\x6f\x23\x6c\xae\x5a\xf1\x86\x6f\x83\x7c\x21\x9b\xc2\xd8\xc2\xd8\xf6\x0a\x88\x15\x6f\x94\x80\xca\x93\x8d\xab\x53\xce\x03\x2d\xce\x07\x81\x9a\xb9\x8f\x4d\x73\x1e\xe9\x4c\x22\x37\xa0\xa0\xf9\xbc\x10\x96\x42\x1c\xa8\x5c\x3e\xc3\xcc\x77\x0a\xbf\x5b\xf0\xcb\xc3\x34\x35\xd2\x1d\x77\xe6\xcc\x65\x08\x69\x4c\xb2\xab\x62\x18\x5d\x57\xec\x4f\xcb\x5d\x62\x6d\xc1\x08\x2e\xa7\x59\x67\x46\xd5\x9c\x1c\x18\x1d\x67\x52\xcc\x3f\x07\xe0\x48\x8c\xf6\x52\x07\xa4\x8e\xa7\x15\x37\x34\xef\x45\x3b\x54\x8e\x65\xf6\x4c\x39\x86\xf0\xaf\x7f\x67\xce\xa3\x1f\xc3\x60\x3e\xed\x66\x17\x37\xe0\x6c\x78\xb3\xf8\x05\xe9\xe2\xc1\xdc\xda\x7f\x02\x00\x00\xff\xff\x5d\xa6\x79\xee\xf1\x0e\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x5f\x8f\xdb\xb8\x11\x7f\xf7\xa7\x18\xc4\x2f\x09\x20\xc9\xd9\xb4\x45\x51\xf5\xc9\xd9\x24\x3d\xdf\x26\xeb\x60\xb5\xd7\xeb\xa1\xe8\xc3\x98\x1a\x4b\x84\x29\x52\x25\xa9\x75\xdc\x6e\xbf\x7b\x31\x24\x65\x4b\x1b\xb7\xb8\x87\x33\x10\xc7\x4b\xcd\x9f\xdf\xcc\xfc\x66\x38\x5a\x42\xfe\xdb\x7d\x16\x4b\xf8\x2c\x05\x69\x47\x35\x78\x03\xbe\x25\x58\xf7\x28\x5a\x82\xca\xec\xfd\x11\x2d\xc1\x27\x33\xe8\x1a\xbd\x34\x1a\x5e\xaf\xab\x4f\x6f\x60\xd0\x35\x59\x30\x9a\xc0\x58\xe8\x8c\xa5\xc5\x12\x84\xd1\xde\xca\xdd\xe0\x8d\x05\x15\x0d\x02\x36\x96\xa8\x23\xed\x5d\x01\x50\x11\x05\xeb\xf7\xdb\xc7\xcd\xed\x47\xd8\x4b\x45\x50\x4b\x17\x95\xa8\x86\xa3\xf4\xed\x62\x09\xbe\x95\x0e\x8e\xc6\x1e\x60\x6f\x2c\x60\x5d\x4b\x76\x8c\x0a\xa4\xde\x1b\xdb\x45\x18\x96\x1a\xb4\xb5\xd4\x0d\x08\xd3\x9f\xac\x6c\x5a\x0f\xe6\xa8\xc9\xba\x56\xf6\xc5\x62\x09\x8f\x1c\x46\xf5\x69\x44\xe2\xa2\xd9\xe0\xd3\x1b\xf8\xc5\x0c\x29\x86\x49\xb8\x29\x0b\x19\xfc\x95\xac\x63\x27\xef\x8a\xb7\x8b\x25\xbc\x66\x91\x57\xe9\xe1\xab\x37\x7f\x86\x93\x19\xa0\xc3\x13\x68\xe3\x61\x70\x34\xb1\x4c\xdf\x04\xf5\x1e\xa4\x06\x61\xba\x5e\x49\xd4\x82\x2e\x61\x9d\x3d\x14\x10\x00\xb0\x0d\xb3\xf3\x28\x35\x60\x08\x03\xcc\x7e\x2a\x06\xe8\x17\xcb\xc5\x12\xc2\xa7\xf5\xbe\x2f\x57\xab\xe3\xf1\x58\x60\x80\x5b\x18\xdb\xac\xc6\xe8\x56\x9f\x37\xb7\x1f\xef\xab\x8f\x79\x80\xbc\x58\xc2\x4f\x5a\x91\x73\x60\xe9\x9f\x83\xb4\x54\xc3\xee\x04\xd8\xf7\x4a\x0a\xdc\x29\x02\x85\x47\x2e\x5c\xa8\x4e\x28\xba\xd4\x70\xb4\xd2\x4b\xdd\x64\xe0\x52\xd5\x17\xcb\x59\x75\x2e\xe9\x1a\xe1\x49\x37\x13\x30\x1a\x50\xc3\xab\x75\x05\x9b\xea\x15\xbc\x5f\x57\x9b\x2a\x5b\x2c\xe1\xe7\xcd\xe3\x0f\xdb\x9f\x1e\xe1\xe7\xf5\xc3\xc3\xfa\xfe\x71\xf3\xb1\x82\xed\x03\xdc\x6e\xef\x3f\x6c\x1e\x37\xdb\xfb\x0a\xb6\x9f\x60\x7d\xff\x0b\xdc\x6d\xee\x3f\x64\x40\xd2\xb7\x64\x81\xbe\xf5\x96\xf1\x1b\x0b\x92\x13\x49\x35\xd7\x74\x24\xd0\x08\x80\xf9\xc1\x7f\xbb\x9e\x84\xdc\x4b\x01\x0a\x75\x33\x60\x43\xd0\x98\x27\xb2\x9a\xe9\xd1\x93\xed\xa4\xe3\x72\x3a\x40\x5d\x2f\x96\xa0\x64\x27\x7d\x60\x91\xfb\x3e\x28\x76\xf3\x5b\xf6\xd6\x02\x7b\x99\xe8\x54\x82\xc0\x8e\xd4\xb4\x7c\x4f\x37\x8b\x83\xd4\x75\x09\x1b\xed\xa9\xb1\x01\xd4\x57\x85\x9e\x79\xbe\xe8\xc8\x63\x8d\x1e\xcb\x05\x80\xc6\x8e\x92\x7e\x7e\x58\x70\xbc\x7c\xba\xe4\x7f\x81\xe9\xbd\x35\x23\xb5\x77\x14\x52\x16\xba\x2e\x16\xbe\xa6\x3d\x0e\xca\x07\x61\x49\x05\x6c\x7b\xd2\x55\x2b\xf7\x3e\x83\xbb\x61\x47\x56\x93\x27\x97\xc1\x9d\x46\x2f\x9f\x28\xd9\x4d\x16\xcb\x8b\xf4\xe8\x30\xd8\xd9\xf6\x31\x81\xbd\x35\x3d\x36\xe8\x47\x1a\x9d\xc3\x70\x49\x54\x18\xbd\x97\xcd\x10\x0f\x03\x68\x00\x4b\xbd\x71\xd2\x1b\x7b\x2a\xa1\xc3\x27\xd2\xf9\xe5\xe4\xaa\x97\xd4\x17\xb2\xe3\xda\xee\x06\xa9\x6a\x76\x2c\xc8\x8d\x5e\xc2\xd9\x25\x25\xef\x83\x88\xf3\x16\x3d\x35\xa7\xc0\x93\x97\xd0\x42\x26\xac\x19\xbc\xd4\x94\x41\x6f\xea\xb3\x72\x34\x56\x25\xe5\x72\x14\x82\xe7\xa9\xd4\xc4\x4d\x3f\xec\x94\x74\xed\xaf\x70\x17\xe4\xb1\xcd\xe0\x0e\xb5\x3c\x98\x0c\xaa\x77\x9b\x0c\xaa\x9e\x84\xb7\x43\x97\xc1\x8f\x72\x77\x41\x91\xcc\x5e\x70\x24\x6d\x78\x4e\xea\xf0\xcc\xfa\xfc\x9d\x0c\xc0\xf3\xcc\x42\x45\x3e\x64\x2d\xb1\x06\xec\xa0\xbd\xec\x08\x9e\x22\x1d\x2f\x9e\xd2\x83\x33\x4d\x6f\x8a\xdf\x17\x6f\xbf\x33\xb3\x43\x47\xb0\x09\x15\x18\xd2\x55\x61\x07\x7d\xad\xe4\x9c\x42\x74\x14\x64\xcb\xf0\x33\x0f\x95\x2b\x6f\x8a\xb7\x13\xc3\x31\x7b\xec\xd9\x0c\xfe\xa2\x9a\x0e\x12\x55\x00\xea\x91\x3b\xf0\xbb\x51\xf7\xfc\x0d\x5f\xad\xe9\xc9\x7a\x49\x2e\x5e\x16\x7d\xaf\x4e\xdc\xf5\xde\xc4\xb0\x5f\xc2\x1b\x35\xfb\xb3\x5e\x99\x2c\x01\xc0\x81\x4e\x37\x25\x3c\xa1\x1a\xe8\x66\x76\xfa\x2e\x9d\xbe\x9b\xfa\x4e\x12\xb7\x53\x7e\x47\x10\x20\x06\xe7\x4d\x17\xa9\x0d\x33\x6a\x8f\x7a\xe1\x51\x39\x37\xf4\x79\x03\x66\xec\x2a\x74\x93\xdb\xf8\x4b\xb0\x23\x4c\xd7\xa1\xae\x5d\xea\x71\xfa\x46\x82\xc7\xee\xcc\x86\x50\x32\xb5\xcc\x25\xac\x1c\xf2\xdc\xb5\xe6\x98\x5f\xea\x7e\x79\xb0\x43\x2f\xda\xbc\x33\x35\x5d\x09\xed\xb3\x11\x31\xaa\xd4\x7e\xca\x08\x54\x09\xcd\xd5\xa8\x96\x10\x65\x1e\xa6\xfd\x7d\x2a\x2e\xb2\xc5\x60\xd5\xd5\xec\x11\x20\x38\x33\x58\x41\xec\x2c\xba\x70\xe4\xf9\x42\x72\xf0\x3a\xce\x90\x0e\xfb\x67\x47\xc2\x92\x2f\x79\x1c\xfe\x7d\x75\xa0\xd3\x3f\xde\x8c\x8e\x47\xe9\x49\x3d\xa3\xda\x17\xec\xef\xe8\xf4\x40\xfb\xc9\x93\x50\xd5\xf2\xac\x53\x7c\xeb\xd4\xf4\x61\x9c\xb6\x71\x32\x8d\x32\x57\xf2\x53\x05\x30\x41\x9a\xaf\x16\xb6\x99\x85\x2d\x08\x65\xb8\x7a\x38\x67\xb7\x6b\x10\x4c\xb4\xbd\x14\xe8\xe9\xb5\x7b\x73\x6e\x1e\x61\xb4\x26\xe1\x93\x2d\xee\x26\xea\x8c\xa7\x97\xf9\x95\xe4\x8a\x79\xca\x50\x8f\x4e\xe0\x6f\xc5\x1f\xde\xfe\x69\xea\xc0\x65\x01\xc9\xd7\xbb\xdb\x6a\xf9\x47\x88\xeb\x12\xcf\xe6\x89\x08\x88\x16\xa5\x1e\x8d\xc2\x1a\x7e\xbc\xab\x26\x92\x07\x3a\x39\x6f\x6c\xb8\xdd\x71\xf0\x86\xf7\x2d\x81\x4a\x9d\x40\x58\x1a\xe7\x7c\x94\xb8\x1a\x5f\x96\xec\x32\x8c\x71\xf6\x47\xa5\x5d\x1a\x1c\xe8\x00\xc1\xdb\xc1\xbd\x00\xc6\xc9\xd9\x9d\xae\x30\x7e\x84\x7a\xcf\xe9\xf1\x2d\xc6\x79\x64\x8d\xf1\x2f\xdc\x3b\xe0\x65\x15\x95\x33\x7c\x05\x1a\xcb\x0e\xa4\x4e\x5d\x34\xc2\x1f\x03\x9c\x67\x15\x04\xc6\x72\xce\xe7\x41\x09\x5e\xb9\x42\x58\x7f\x39\x8d\xe4\xf0\xca\xe5\x91\x8c\xff\x67\x26\x30\xa0\x71\x18\x58\x6a\x78\x57\x4a\xed\x02\xd4\x14\xf0\x41\x36\xd2\xa3\xda\x0a\x42\x9d\xc1\x07\x23\x0e\x64\xe1\x87\x61\x97\xc1\x5f\xa4\x6f\xc3\xff\xc2\x16\xd2\x64\xb0\x79\xff\x85\x8d\x72\xcd\xc9\xc2\xc3\xdc\xd4\x03\xed\x79\x87\x31\x61\x45\x74\xe5\x6a\xf5\xdd\x9a\x91\x6e\x80\x95\xe2\x1c\xf9\x95\xd4\xce\xa3\x52\xa1\xb7\x57\x23\xae\xf3\x8f\xa2\xf5\xdd\xb4\x49\xc7\xf3\x31\x31\xbc\x6e\x60\x5d\xc7\xf5\x2c\x0e\x86\x2b\xb1\x9d\xad\xd5\x31\x48\xc3\x41\x16\xc2\x74\x19\xd4\x21\xd0\xa2\x3f\x34\x45\x13\xe2\xe4\xe3\x79\x31\x92\xfd\xf2\x6c\x26\x6f\x8d\xf3\x85\x34\x57\x92\xcd\x78\x64\x4d\x9a\x49\xc0\xef\x24\x11\x92\xb1\x0d\x6a\xf9\xaf\x10\xe3\x04\x56\x74\x98\x0f\x8e\xec\xea\x7f\x8d\xb0\xa9\x6a\xc9\xcb\xbe\x0d\xf2\xb9\xac\x73\x63\x73\x63\x9b\x2b\x20\xd6\xbc\x5c\x02\x2a\x4f\x36\x6e\x51\x19\x0f\xb4\x38\x1f\x04\x6a\xe6\x3e\xd6\xf5\x65\xa4\x33\x89\x5c\x8f\x82\xa6\xf3\x42\x58\x0a\x71\xa0\x72\xd9\x04\x33\xdf\x29\xfc\x9a\xc1\xef\x11\xe3\xd4\x48\x77\xdc\x85\x33\xf3\x10\xd2\x98\x64\x57\x79\x3f\xb8\x36\x3f\x9c\xf7\xbc\xc4\xda\x9c\x11\xcc\xa7\x59\x6b\x06\x55\x9f\x1d\x18\x1d\x67\x52\xcc\x3f\x07\xe0\x48\x0c\x76\xae\x03\x52\xc7\xd3\x92\x1b\x9a\x57\xa4\x3d\x2a\xc7\x32\x07\xa6\x1c\x43\xf8\xf7\x7f\x16\xce\xa3\x1f\xc2\x60\x3e\xaf\x69\xb3\x1b\x70\x32\xbc\x59\x7c\x46\xba\x78\x30\xb5\xf6\xdf\x00\x00\x00\xff\xff\x37\x9d\x55\xe1\xfc\x0e\x00\x00"), }, "/templates": &vfsgen۰DirInfo{ name: "templates", diff --git a/pkg/trait/builder.go b/pkg/trait/builder.go index 5c18f42c62..a4a1f0a5ce 100644 --- a/pkg/trait/builder.go +++ b/pkg/trait/builder.go @@ -94,6 +94,18 @@ func (t *builderTrait) Apply(e *Environment) error { }, }}) + case v1.IntegrationPlatformBuildPublishStrategyJib: + e.Pipeline = append(e.Pipeline, v1.Task{Jib: &v1.JibTask{ + BaseTask: v1.BaseTask{ + Name: "jib", + }, + PublishTask: v1.PublishTask{ + BaseImage: e.Platform.Status.Build.BaseImage, + Image: getImageName(e), + Registry: e.Platform.Status.Build.Registry, + }, + }}) + case v1.IntegrationPlatformBuildPublishStrategyS2I: e.Pipeline = append(e.Pipeline, v1.Task{S2i: &v1.S2iTask{ BaseTask: v1.BaseTask{ diff --git a/pkg/trait/quarkus.go b/pkg/trait/quarkus.go index 23f011ae0e..bc13ccdce3 100644 --- a/pkg/trait/quarkus.go +++ b/pkg/trait/quarkus.go @@ -314,14 +314,14 @@ func (t *quarkusTrait) applyWhenBuildSubmitted(e *Environment) error { } steps = append(steps, builder.Image.NativeImageContext) // Spectrum does not rely on Dockerfile to assemble the image - if e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategySpectrum { + if e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategySpectrum && e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategyJib { steps = append(steps, builder.Image.ExecutableDockerfile) } } else { build.Maven.Properties["quarkus.package.type"] = string(traitv1.FastJarPackageType) steps = append(steps, builder.Quarkus.ComputeQuarkusDependencies, builder.Image.IncrementalImageContext) // Spectrum does not rely on Dockerfile to assemble the image - if e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategySpectrum { + if e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategySpectrum && e.Platform.Status.Build.PublishStrategy != v1.IntegrationPlatformBuildPublishStrategyJib { steps = append(steps, builder.Image.JvmDockerfile) } } diff --git a/pkg/util/maven/maven_command.go b/pkg/util/maven/maven_command.go index 49b49d6dbf..d88fe252df 100644 --- a/pkg/util/maven/maven_command.go +++ b/pkg/util/maven/maven_command.go @@ -142,6 +142,11 @@ func (c *Command) Do(ctx context.Context) error { Log.WithValues("MAVEN_OPTS", mavenOptions).Infof("executing: %s", strings.Join(cmd.Args, " ")) + // generate maven file + if err := generateMavenContext(c.context, cmd.Args); err != nil { + return err + } + return util.RunAndLog(ctx, cmd, mavenLogHandler, mavenLogHandler) } @@ -239,6 +244,11 @@ func generateProjectStructure(context Context, project Project) error { return nil } +// Create a MAVEN_CONTEXT file containing all arguments for a maven command +func generateMavenContext(context Context, args []string) error { + return util.WriteToFile(filepath.Join(context.Path, "MAVEN_CONTEXT"), strings.Join(args, " ")) +} + // We expect a maven wrapper under /usr/share/maven/mvnw. func (c *Command) prepareMavenWrapper(ctx context.Context) error { cmd := exec.CommandContext(ctx, "cp", "--recursive", "/usr/share/maven/mvnw/.", ".") diff --git a/pkg/util/maven/maven_types.go b/pkg/util/maven/maven_types.go index 57edc133c0..b8fbab9546 100644 --- a/pkg/util/maven/maven_types.go +++ b/pkg/util/maven/maven_types.go @@ -37,11 +37,12 @@ type Build struct { } type Plugin struct { - GroupID string `xml:"groupId"` - ArtifactID string `xml:"artifactId"` - Version string `xml:"version,omitempty"` - Executions []Execution `xml:"executions>execution,omitempty"` - Dependencies []Dependency `xml:"dependencies>dependency,omitempty"` + GroupID string `xml:"groupId"` + ArtifactID string `xml:"artifactId"` + Version string `xml:"version,omitempty"` + Executions []Execution `xml:"executions>execution,omitempty"` + Dependencies []Dependency `xml:"dependencies>dependency,omitempty"` + Configuration v1.PluginConfiguration `xml:"configuration,omitempty"` } type Execution struct { From 95c89c355d6002eb0caddc4902a5d8d7ed89ed84 Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Wed, 3 May 2023 10:10:49 +0200 Subject: [PATCH 2/2] Temporary set default publish strategy to Jib --- pkg/install/operator.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/install/operator.go b/pkg/install/operator.go index c76666a33d..737aa1f713 100644 --- a/pkg/install/operator.go +++ b/pkg/install/operator.go @@ -664,7 +664,8 @@ func NewPlatform( pl.Spec.Build.Registry.Insecure = true if pl.Spec.Build.PublishStrategy == "" { // Use spectrum in insecure dev clusters by default - pl.Spec.Build.PublishStrategy = v1.IntegrationPlatformBuildPublishStrategySpectrum + // TODO temporary change to JIB + pl.Spec.Build.PublishStrategy = v1.IntegrationPlatformBuildPublishStrategyJib } } }