From 51b7c011deca11d575e74377724a7790359cbc1c Mon Sep 17 00:00:00 2001 From: nicolaferraro Date: Wed, 17 Feb 2021 12:47:05 +0100 Subject: [PATCH] Fix #2043: add processing steps to KameletBinding --- addons/strimzi/strimzi.go | 2 +- addons/strimzi/strimzi_test.go | 8 +- .../camel.apache.org_kameletbindings.yaml | 220 ++ deploy/camel-catalog-1.6.0.yaml | 3278 ++++++++--------- .../camel.apache.org_kameletbindings.yaml | 220 ++ .../kamelet-steps/prefix-action.kamelet.yaml | 45 + .../kamelet-steps/steps-binding.feature | 5 + .../common/kamelet-steps/steps-binding.yaml | 27 + .../kamelet-steps/timer-source.kamelet.yaml | 54 + .../common/kamelet-steps/yaks-config.yaml | 30 + helm/camel-k/crds/crd-kamelet-binding.yaml | 220 ++ pkg/apis/camel/v1/zz_generated.deepcopy.go | 21 +- .../camel/v1alpha1/kamelet_binding_types.go | 3 + .../camel/v1alpha1/zz_generated.deepcopy.go | 7 + pkg/controller/kameletbinding/common.go | 70 +- pkg/resources/resources.go | 10 +- pkg/util/bindings/api.go | 16 +- pkg/util/bindings/bindings_test.go | 15 +- pkg/util/bindings/camel_uri.go | 2 +- pkg/util/bindings/catalog.go | 4 +- pkg/util/bindings/kamelet.go | 5 +- pkg/util/bindings/knative_ref.go | 4 +- pkg/util/bindings/knative_uri.go | 4 +- 23 files changed, 2579 insertions(+), 1691 deletions(-) create mode 100644 e2e/yaks/common/kamelet-steps/prefix-action.kamelet.yaml create mode 100644 e2e/yaks/common/kamelet-steps/steps-binding.feature create mode 100644 e2e/yaks/common/kamelet-steps/steps-binding.yaml create mode 100644 e2e/yaks/common/kamelet-steps/timer-source.kamelet.yaml create mode 100644 e2e/yaks/common/kamelet-steps/yaks-config.yaml diff --git a/addons/strimzi/strimzi.go b/addons/strimzi/strimzi.go index 8b3849f17a..582c5a7c97 100644 --- a/addons/strimzi/strimzi.go +++ b/addons/strimzi/strimzi.go @@ -40,7 +40,7 @@ func (s StrimziBindingProvider) ID() string { return "strimzi" } -func (s StrimziBindingProvider) Translate(ctx bindings.BindingContext, _ v1alpha1.EndpointType, endpoint v1alpha1.Endpoint) (*bindings.Binding, error) { +func (s StrimziBindingProvider) Translate(ctx bindings.BindingContext, _ bindings.EndpointContext, endpoint v1alpha1.Endpoint) (*bindings.Binding, error) { if endpoint.Ref == nil { // React only on refs return nil, nil diff --git a/addons/strimzi/strimzi_test.go b/addons/strimzi/strimzi_test.go index 540db88acb..7769b7abc9 100644 --- a/addons/strimzi/strimzi_test.go +++ b/addons/strimzi/strimzi_test.go @@ -58,7 +58,9 @@ func TestStrimziDirect(t *testing.T) { }), } - binding, err := StrimziBindingProvider{}.Translate(bindingContext, v1alpha1.EndpointTypeSink, endpoint) + binding, err := StrimziBindingProvider{}.Translate(bindingContext, bindings.EndpointContext{ + Type: v1alpha1.EndpointTypeSink, + }, endpoint) assert.NoError(t, err) assert.NotNil(t, binding) assert.Equal(t, "kafka:mytopic?brokers=my-cluster-kafka-bootstrap%3A9092", binding.URI) @@ -116,7 +118,9 @@ func TestStrimziLookup(t *testing.T) { }, } - binding, err := provider.Translate(bindingContext, v1alpha1.EndpointTypeSink, endpoint) + binding, err := provider.Translate(bindingContext, bindings.EndpointContext{ + Type: v1alpha1.EndpointTypeSink, + }, endpoint) assert.NoError(t, err) assert.NotNil(t, binding) assert.Equal(t, "kafka:mytopicy?brokers=my-clusterx-kafka-bootstrap%3A9092", binding.URI) diff --git a/config/crd/bases/camel.apache.org_kameletbindings.yaml b/config/crd/bases/camel.apache.org_kameletbindings.yaml index 9ae1705262..5a427b5af4 100644 --- a/config/crd/bases/camel.apache.org_kameletbindings.yaml +++ b/config/crd/bases/camel.apache.org_kameletbindings.yaml @@ -617,6 +617,226 @@ spec: endpoint explicitly type: string type: object + steps: + description: Steps contains an optional list of intermediate steps + that are executed between the Source and the Sink + items: + description: Endpoint represents a source/sink external entity + properties: + properties: + description: Properties are a key value representation of endpoint + properties + type: object + x-kubernetes-preserve-unknown-fields: true + ref: + description: Ref can be used to declare a Kubernetes resource + as source/sink endpoint + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead + of an entire object, this string should contain a valid + JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container + within a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that + triggered the event) or if no container name is specified + "spec.containers[2]" (container with index 2 in this pod). + This syntax is chosen only to have some well-defined way + of referencing a part of an object. TODO: this design + is not final and this field is subject to change in the + future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + types: + additionalProperties: + properties: + mediaType: + type: string + schema: + description: JSONSchemaProps is a JSON-Schema following + Specification Draft 4 (http://json-schema.org/). + properties: + $schema: + description: JSONSchemaURL represents a schema url. + type: string + description: + type: string + example: + description: 'JSON represents any valid JSON value. + These types are supported: bool, int64, float64, + string, []interface{}, map[string]interface{} and + nil.' + x-kubernetes-preserve-unknown-fields: true + externalDocs: + description: ExternalDocumentation allows referencing + an external resource for extended documentation. + properties: + description: + type: string + url: + type: string + type: object + id: + type: string + properties: + additionalProperties: + properties: + default: + description: default is a default value for + undefined object fields. + x-kubernetes-preserve-unknown-fields: true + description: + type: string + enum: + items: + description: 'JSON represents any valid JSON + value. These types are supported: bool, + int64, float64, string, []interface{}, map[string]interface{} + and nil.' + x-kubernetes-preserve-unknown-fields: true + type: array + example: + description: 'JSON represents any valid JSON + value. These types are supported: bool, int64, + float64, string, []interface{}, map[string]interface{} + and nil.' + x-kubernetes-preserve-unknown-fields: true + exclusiveMaximum: + type: boolean + exclusiveMinimum: + type: boolean + format: + description: "format is an OpenAPI v3 format + string. Unknown formats are ignored. The following + formats are validated: \n - bsonobjectid: + a bson object ID, i.e. a 24 characters hex + string - uri: an URI as parsed by Golang net/url.ParseRequestURI + - email: an email address as parsed by Golang + net/mail.ParseAddress - hostname: a valid + representation for an Internet host name, + as defined by RFC 1034, section 3.1 [RFC1034]. + - ipv4: an IPv4 IP as parsed by Golang net.ParseIP + - ipv6: an IPv6 IP as parsed by Golang net.ParseIP + - cidr: a CIDR as parsed by Golang net.ParseCIDR + - mac: a MAC address as parsed by Golang net.ParseMAC + - uuid: an UUID that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ + - uuid3: an UUID3 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ + - uuid4: an UUID4 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ + - uuid5: an UUID5 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ + - isbn: an ISBN10 or ISBN13 number string + like \"0321751043\" or \"978-0321751041\" + - isbn10: an ISBN10 number string like \"0321751043\" + - isbn13: an ISBN13 number string like \"978-0321751041\" + - creditcard: a credit card number defined + by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\\\d{3})\\\\d{11})$ + with any non digit characters mixed in - ssn: + a U.S. social security number following the + regex ^\\\\d{3}[- ]?\\\\d{2}[- ]?\\\\d{4}$ + - hexcolor: an hexadecimal color code like + \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ + - rgbcolor: an RGB color code like rgb like + \"rgb(255,255,2559\" - byte: base64 encoded + binary data - password: any kind of string + - date: a date string like \"2006-01-02\" + as defined by full-date in RFC3339 - duration: + a duration string like \"22 ns\" as parsed + by Golang time.ParseDuration or compatible + with Scala duration format - datetime: a date + time string like \"2014-12-15T19:30:20.000Z\" + as defined by date-time in RFC3339." + type: string + id: + type: string + maxItems: + format: int64 + type: integer + maxLength: + format: int64 + type: integer + maxProperties: + format: int64 + type: integer + maximum: + description: A Number represents a JSON number + literal. + type: string + minItems: + format: int64 + type: integer + minLength: + format: int64 + type: integer + minProperties: + format: int64 + type: integer + minimum: + description: A Number represents a JSON number + literal. + type: string + multipleOf: + description: A Number represents a JSON number + literal. + type: string + nullable: + type: boolean + pattern: + type: string + title: + type: string + type: + type: string + uniqueItems: + type: boolean + x-descriptors: + description: The list of descriptors that determine + which UI components to use on different views + items: + type: string + type: array + type: object + type: object + required: + items: + type: string + type: array + title: + type: string + type: + type: string + type: object + type: object + description: Types defines the schema of the data produced/consumed + by the endpoint + type: object + uri: + description: URI can alternatively be used to specify the (Camel) + endpoint explicitly + type: string + type: object + type: array type: object status: description: KameletBindingStatus -- diff --git a/deploy/camel-catalog-1.6.0.yaml b/deploy/camel-catalog-1.6.0.yaml index 8d35f7ea35..e1051d02b1 100644 --- a/deploy/camel-catalog-1.6.0.yaml +++ b/deploy/camel-catalog-1.6.0.yaml @@ -20,9 +20,9 @@ kind: CamelCatalog metadata: name: camel-catalog-1.6.0 labels: - camel.apache.org/catalog.version: 3.7.0 - camel.apache.org/runtime.version: 1.6.0 camel.apache.org/catalog.loader.version: 3.7.0 + camel.apache.org/runtime.version: 1.6.0 + camel.apache.org/catalog.version: 3.7.0 app: camel-k spec: runtime: @@ -30,1010 +30,946 @@ spec: provider: quarkus applicationClass: io.quarkus.runner.GeneratedMain metadata: - quarkus.version: 1.10.3.Final - camel.version: 3.7.0 camel-quarkus.version: 1.5.0 + camel.version: 3.7.0 + quarkus.version: 1.10.3.Final dependencies: - groupId: org.apache.camel.k artifactId: camel-k-runtime capabilities: - tracing: + rest: dependencies: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-opentracing - master: + artifactId: camel-quarkus-platform-http + - groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-rest + cron: dependencies: - groupId: org.apache.camel.k - artifactId: camel-k-master - circuit-breaker: + artifactId: camel-k-cron + platform-http: dependencies: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-microprofile-fault-tolerance + artifactId: camel-quarkus-platform-http health: dependencies: - groupId: org.apache.camel.quarkus artifactId: camel-quarkus-microprofile-health - platform-http: + circuit-breaker: dependencies: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-platform-http - cron: + artifactId: camel-quarkus-microprofile-fault-tolerance + master: dependencies: - groupId: org.apache.camel.k - artifactId: camel-k-cron - rest: + artifactId: camel-k-master + tracing: dependencies: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rest - - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-platform-http + artifactId: camel-quarkus-opentracing artifacts: - camel-k-kamelet: - groupId: org.apache.camel.k - artifactId: camel-k-kamelet - schemes: - - id: kamelet - http: false - passive: true - camel-quarkus-influxdb: + camel-quarkus-ipfs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-influxdb + artifactId: camel-quarkus-ipfs schemes: - - id: influxdb + - id: ipfs http: false passive: false javaTypes: - - org.apache.camel.component.influxdb.InfluxDbComponent - camel-quarkus-netty-http: + - org.apache.camel.component.ipfs.IPFSComponent + camel-quarkus-grpc: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-netty-http + artifactId: camel-quarkus-grpc schemes: - - id: netty-http + - id: grpc http: true passive: false javaTypes: - - org.apache.camel.component.netty.http.NettyHttpComponent - camel-quarkus-aws2-ecs: + - org.apache.camel.component.grpc.GrpcComponent + camel-quarkus-servicenow: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-ecs + artifactId: camel-quarkus-servicenow schemes: - - id: aws2-ecs + - id: servicenow http: false passive: false javaTypes: - - org.apache.camel.component.aws2.ecs.ECS2Component - camel-quarkus-zipfile: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zipfile - dataformats: - - zipfile - javaTypes: - - org.apache.camel.dataformat.zipfile.ZipFileDataFormat - camel-quarkus-flatpack: + - org.apache.camel.component.servicenow.ServiceNowComponent + camel-quarkus-sap-netweaver: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-flatpack + artifactId: camel-quarkus-sap-netweaver schemes: - - id: flatpack + - id: sap-netweaver http: false passive: false - dataformats: - - flatpack javaTypes: - - org.apache.camel.dataformat.flatpack.FlatpackDataFormat - - org.apache.camel.component.flatpack.FlatpackComponent - camel-quarkus-slack: + - org.apache.camel.component.sap.netweaver.NetWeaverComponent + camel-quarkus-aws-sdb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-slack + artifactId: camel-quarkus-aws-sdb schemes: - - id: slack + - id: aws-sdb http: false passive: false javaTypes: - - org.apache.camel.component.slack.SlackComponent - camel-quarkus-aws-sns: + - org.apache.camel.component.aws.sdb.SdbComponent + camel-quarkus-hbase: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sns + artifactId: camel-quarkus-hbase schemes: - - id: aws-sns + - id: hbase http: false passive: false javaTypes: - - org.apache.camel.component.aws.sns.SnsComponent - camel-quarkus-couchbase: + - org.apache.camel.component.hbase.HBaseComponent + camel-quarkus-yammer: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-couchbase + artifactId: camel-quarkus-yammer schemes: - - id: couchbase + - id: yammer http: false passive: false javaTypes: - - org.apache.camel.component.couchbase.CouchbaseComponent - camel-quarkus-digitalocean: + - org.apache.camel.component.yammer.YammerComponent + camel-quarkus-jgroups: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-digitalocean + artifactId: camel-quarkus-jgroups schemes: - - id: digitalocean + - id: jgroups http: false passive: false javaTypes: - - org.apache.camel.component.digitalocean.DigitalOceanComponent - camel-quarkus-timer: + - org.apache.camel.component.jgroups.JGroupsComponent + camel-quarkus-dataformat: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-timer + artifactId: camel-quarkus-dataformat schemes: - - id: timer + - id: dataformat http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.timer.TimerComponent - camel-quarkus-platform-http: + - org.apache.camel.component.dataformat.DataFormatComponent + camel-quarkus-jing: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-platform-http + artifactId: camel-quarkus-jing schemes: - - id: platform-http - http: true + - id: jing + http: false passive: false javaTypes: - - org.apache.camel.component.platform.http.PlatformHttpComponent - camel-quarkus-mail: + - org.apache.camel.component.validator.jing.JingComponent + camel-quarkus-jaxb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mail + artifactId: camel-quarkus-jaxb + dataformats: + - jaxb + javaTypes: + - org.apache.camel.converter.jaxb.JaxbDataFormat + camel-quarkus-scheduler: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-scheduler schemes: - - id: smtp - http: false - passive: false - - id: pop3 - http: false - passive: false - - id: smtps - http: false - passive: false - - id: pop3s + - id: scheduler http: false passive: false - - id: imap + javaTypes: + - org.apache.camel.component.scheduler.SchedulerComponent + camel-quarkus-weather: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-weather + schemes: + - id: weather http: false passive: false - - id: imaps + javaTypes: + - org.apache.camel.component.weather.WeatherComponent + camel-quarkus-aws2-eks: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-aws2-eks + schemes: + - id: aws2-eks http: false passive: false + javaTypes: + - org.apache.camel.component.aws2.eks.EKS2Component + camel-quarkus-jsonapi: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-jsonapi dataformats: - - mime-multipart + - jsonApi javaTypes: - - org.apache.camel.component.mail.MailComponent - - org.apache.camel.dataformat.mime.multipart.MimeMultipartDataFormat - camel-quarkus-google-bigquery: + - org.apache.camel.component.jsonapi.JsonApiDataFormat + camel-quarkus-iota: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-google-bigquery + artifactId: camel-quarkus-iota schemes: - - id: google-bigquery-sql - http: false - passive: false - - id: google-bigquery + - id: iota http: false passive: false javaTypes: - - org.apache.camel.component.google.bigquery.GoogleBigQueryComponent - - org.apache.camel.component.google.bigquery.sql.GoogleBigQuerySQLComponent - camel-quarkus-dropbox: + - org.apache.camel.component.iota.IOTAComponent + camel-quarkus-jt400: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dropbox + artifactId: camel-quarkus-jt400 schemes: - - id: dropbox + - id: jt400 http: false passive: false javaTypes: - - org.apache.camel.component.dropbox.DropboxComponent - camel-quarkus-aws2-s3: + - org.apache.camel.component.jt400.Jt400Component + camel-quarkus-aws2-sqs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-s3 + artifactId: camel-quarkus-aws2-sqs schemes: - - id: aws2-s3 + - id: aws2-sqs http: false passive: false javaTypes: - - org.apache.camel.component.aws2.s3.AWS2S3Component - camel-quarkus-json-validator: + - org.apache.camel.component.aws2.sqs.Sqs2Component + camel-quarkus-stub: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-json-validator + artifactId: camel-quarkus-stub schemes: - - id: json-validator + - id: stub http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.jsonvalidator.JsonValidatorComponent - camel-quarkus-lumberjack: + - org.apache.camel.component.stub.StubComponent + camel-quarkus-pubnub: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-lumberjack + artifactId: camel-quarkus-pubnub schemes: - - id: lumberjack + - id: pubnub http: false passive: false javaTypes: - - org.apache.camel.component.lumberjack.LumberjackComponent - camel-quarkus-websocket-jsr356: + - org.apache.camel.component.pubnub.PubNubComponent + camel-quarkus-aws-swf: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-websocket-jsr356 + artifactId: camel-quarkus-aws-swf schemes: - - id: websocket-jsr356 + - id: aws-swf http: false passive: false javaTypes: - - org.apache.camel.websocket.jsr356.JSR356WebSocketComponent - camel-quarkus-google-mail: + - org.apache.camel.component.aws.swf.SWFComponent + camel-quarkus-twitter: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-google-mail + artifactId: camel-quarkus-twitter schemes: - - id: google-mail-stream + - id: twitter-directmessage http: false passive: false - - id: google-mail + - id: twitter-timeline http: false passive: false - javaTypes: - - org.apache.camel.component.google.mail.GoogleMailComponent - - org.apache.camel.component.google.mail.stream.GoogleMailStreamComponent - camel-quarkus-arangodb: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-arangodb - schemes: - - id: arangodb + - id: twitter-search http: false passive: false javaTypes: - - org.apache.camel.component.arangodb.ArangoDbComponent - camel-quarkus-soap: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-soap - dataformats: - - soapjaxb - javaTypes: - - org.apache.camel.dataformat.soap.SoapJaxbDataFormat - camel-quarkus-freemarker: + - org.apache.camel.component.twitter.directmessage.TwitterDirectMessageComponent + - org.apache.camel.component.twitter.search.TwitterSearchComponent + - org.apache.camel.component.twitter.timeline.TwitterTimelineComponent + camel-quarkus-aws2-kinesis: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-freemarker + artifactId: camel-quarkus-aws2-kinesis schemes: - - id: freemarker + - id: aws2-kinesis-firehose + http: false + passive: false + - id: aws2-kinesis http: false passive: false javaTypes: - - org.apache.camel.component.freemarker.FreemarkerComponent - camel-quarkus-servlet: + - org.apache.camel.component.aws2.firehose.KinesisFirehose2Component + - org.apache.camel.component.aws2.kinesis.Kinesis2Component + camel-quarkus-ganglia: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-servlet + artifactId: camel-quarkus-ganglia schemes: - - id: servlet - http: true + - id: ganglia + http: false passive: false javaTypes: - - org.apache.camel.component.servlet.ServletComponent - camel-quarkus-git: + - org.apache.camel.component.ganglia.GangliaComponent + camel-quarkus-telegram: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-git + artifactId: camel-quarkus-telegram schemes: - - id: git + - id: telegram http: false passive: false javaTypes: - - org.apache.camel.component.git.GitComponent - camel-quarkus-aws-kinesis: + - org.apache.camel.component.telegram.TelegramComponent + camel-quarkus-http: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-kinesis + artifactId: camel-quarkus-http schemes: - - id: aws-kinesis-firehose + - id: http http: false passive: false - - id: aws-kinesis + - id: https http: false passive: false javaTypes: - - org.apache.camel.component.aws.kinesis.KinesisComponent - - org.apache.camel.component.aws.firehose.KinesisFirehoseComponent - camel-quarkus-openstack: + - org.apache.camel.component.http.HttpComponent + camel-quarkus-jolt: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-openstack + artifactId: camel-quarkus-jolt schemes: - - id: openstack-neutron - http: false - passive: false - - id: openstack-keystone - http: false - passive: false - - id: openstack-cinder + - id: jolt http: false passive: false - - id: openstack-nova + javaTypes: + - org.apache.camel.component.jolt.JoltComponent + camel-quarkus-netty: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-netty + schemes: + - id: netty http: false passive: false - - id: openstack-glance + javaTypes: + - org.apache.camel.component.netty.NettyComponent + camel-quarkus-micrometer: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-micrometer + schemes: + - id: micrometer http: false passive: false - - id: openstack-swift + javaTypes: + - org.apache.camel.component.micrometer.MicrometerComponent + camel-quarkus-elsql: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-elsql + schemes: + - id: elsql http: false passive: false javaTypes: - - org.apache.camel.component.openstack.neutron.NeutronComponent - - org.apache.camel.component.openstack.keystone.KeystoneComponent - - org.apache.camel.component.openstack.cinder.CinderComponent - - org.apache.camel.component.openstack.nova.NovaComponent - - org.apache.camel.component.openstack.swift.SwiftComponent - - org.apache.camel.component.openstack.glance.GlanceComponent - camel-quarkus-barcode: + - org.apache.camel.component.elsql.ElsqlComponent + camel-quarkus-cbor: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-barcode + artifactId: camel-quarkus-cbor dataformats: - - barcode + - cbor javaTypes: - - org.apache.camel.dataformat.barcode.BarcodeDataFormat - camel-quarkus-snmp: + - org.apache.camel.component.cbor.CBORDataFormat + camel-quarkus-mybatis: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-snmp + artifactId: camel-quarkus-mybatis schemes: - - id: snmp + - id: mybatis http: false passive: false - javaTypes: - - org.apache.camel.component.snmp.SnmpComponent - camel-quarkus-aws2-ec2: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-ec2 - schemes: - - id: aws2-ec2 + - id: mybatis-bean http: false passive: false javaTypes: - - org.apache.camel.component.aws2.ec2.AWS2EC2Component - camel-k-master: - groupId: org.apache.camel.k - artifactId: camel-k-master + - org.apache.camel.component.mybatis.MyBatisBeanComponent + - org.apache.camel.component.mybatis.MyBatisComponent + camel-quarkus-file: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-file schemes: - - id: master + - id: file http: false passive: false - camel-quarkus-master: + javaTypes: + - org.apache.camel.component.file.FileComponent + camel-quarkus-robotframework: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-master + artifactId: camel-quarkus-robotframework schemes: - - id: master + - id: robotframework http: false passive: false javaTypes: - - org.apache.camel.component.master.MasterComponent - camel-quarkus-mustache: + - org.apache.camel.component.robotframework.RobotFrameworkComponent + camel-quarkus-file-watch: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mustache + artifactId: camel-quarkus-file-watch schemes: - - id: mustache + - id: file-watch http: false passive: false javaTypes: - - org.apache.camel.component.mustache.MustacheComponent - camel-quarkus-djl: + - org.apache.camel.component.file.watch.FileWatchComponent + camel-quarkus-rest-openapi: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-djl + artifactId: camel-quarkus-rest-openapi schemes: - - id: djl + - id: rest-openapi http: false passive: false javaTypes: - - org.apache.camel.component.djl.DJLComponent - camel-quarkus-bonita: + - org.apache.camel.component.rest.openapi.RestOpenApiComponent + camel-quarkus-jclouds: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bonita + artifactId: camel-quarkus-jclouds schemes: - - id: bonita + - id: jclouds http: false passive: false javaTypes: - - org.apache.camel.component.bonita.BonitaComponent - camel-quarkus-nagios: + - org.apache.camel.component.jclouds.JcloudsComponent + camel-quarkus-quickfix: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-nagios + artifactId: camel-quarkus-quickfix schemes: - - id: nagios + - id: quickfix http: false passive: false javaTypes: - - org.apache.camel.component.nagios.NagiosComponent - camel-quarkus-crypto: + - org.apache.camel.component.quickfixj.QuickfixjComponent + camel-quarkus-solr: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-crypto + artifactId: camel-quarkus-solr schemes: - - id: crypto + - id: solr http: false passive: false + - id: solrs + http: false + passive: false + - id: solrCloud + http: false + passive: false + javaTypes: + - org.apache.camel.component.solr.SolrComponent + camel-quarkus-johnzon: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-johnzon dataformats: - - pgp - - crypto + - json-johnzon javaTypes: - - org.apache.camel.component.crypto.DigitalSignatureComponent - - org.apache.camel.converter.crypto.CryptoDataFormat - - org.apache.camel.converter.crypto.PGPDataFormat - camel-quarkus-cm-sms: + - org.apache.camel.component.johnzon.JohnzonDataFormat + camel-quarkus-fop: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-cm-sms + artifactId: camel-quarkus-fop schemes: - - id: cm-sms + - id: fop http: false passive: false javaTypes: - - org.apache.camel.component.cm.CMComponent - camel-quarkus-aws2-athena: + - org.apache.camel.component.fop.FopComponent + camel-quarkus-saga: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-athena + artifactId: camel-quarkus-saga schemes: - - id: aws2-athena + - id: saga http: false passive: false javaTypes: - - org.apache.camel.component.aws2.athena.Athena2Component - camel-quarkus-kubernetes: + - org.apache.camel.component.saga.SagaComponent + camel-quarkus-beanstalk: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-kubernetes + artifactId: camel-quarkus-beanstalk schemes: - - id: kubernetes-persistent-volumes-claims + - id: beanstalk http: false passive: false - - id: kubernetes-deployments + javaTypes: + - org.apache.camel.component.beanstalk.BeanstalkComponent + camel-quarkus-xslt: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-xslt + schemes: + - id: xslt http: false passive: false - - id: kubernetes-hpa + javaTypes: + - org.apache.camel.component.xslt.XsltComponent + camel-quarkus-rest: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-rest + schemes: + - id: rest-api http: false passive: false - - id: kubernetes-nodes - http: false + - id: rest + http: true passive: false - - id: kubernetes-namespaces + javaTypes: + - org.apache.camel.component.rest.RestApiComponent + - org.apache.camel.component.rest.RestComponent + camel-quarkus-groovy: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-groovy + languages: + - groovy + javaTypes: + - org.apache.camel.language.groovy.GroovyLanguage + camel-quarkus-xmlsecurity: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-xmlsecurity + schemes: + - id: xmlsecurity-sign http: false passive: false - - id: kubernetes-custom-resources - http: false - passive: false - - id: openshift-builds - http: false - passive: false - - id: kubernetes-resources-quota - http: false - passive: false - - id: kubernetes-replication-controllers - http: false - passive: false - - id: kubernetes-job - http: false - passive: false - - id: openshift-build-configs - http: false - passive: false - - id: kubernetes-service-accounts - http: false - passive: false - - id: kubernetes-secrets - http: false - passive: false - - id: kubernetes-services - http: false - passive: false - - id: kubernetes-persistent-volumes - http: false - passive: false - - id: kubernetes-config-maps - http: false - passive: false - - id: kubernetes-pods - http: false - passive: false - javaTypes: - - org.apache.camel.component.kubernetes.hpa.KubernetesHPAComponent - - org.apache.camel.component.kubernetes.resources_quota.KubernetesResourcesQuotaComponent - - org.apache.camel.component.kubernetes.service_accounts.KubernetesServiceAccountsComponent - - org.apache.camel.component.kubernetes.config_maps.KubernetesConfigMapsComponent - - org.apache.camel.component.openshift.builds.OpenshiftBuildsComponent - - org.apache.camel.component.kubernetes.secrets.KubernetesSecretsComponent - - org.apache.camel.component.kubernetes.nodes.KubernetesNodesComponent - - org.apache.camel.component.kubernetes.services.KubernetesServicesComponent - - org.apache.camel.component.kubernetes.persistent_volumes.KubernetesPersistentVolumesComponent - - org.apache.camel.component.openshift.build_configs.OpenshiftBuildConfigsComponent - - org.apache.camel.component.kubernetes.persistent_volumes_claims.KubernetesPersistentVolumesClaimsComponent - - org.apache.camel.component.kubernetes.customresources.KubernetesCustomResourcesComponent - - org.apache.camel.component.kubernetes.replication_controllers.KubernetesReplicationControllersComponent - - org.apache.camel.component.kubernetes.job.KubernetesJobComponent - - org.apache.camel.component.kubernetes.deployments.KubernetesDeploymentsComponent - - org.apache.camel.component.kubernetes.pods.KubernetesPodsComponent - - org.apache.camel.component.kubernetes.namespaces.KubernetesNamespacesComponent - camel-quarkus-pdf: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pdf - schemes: - - id: pdf + - id: xmlsecurity-verify http: false passive: false + dataformats: + - secureXML javaTypes: - - org.apache.camel.component.pdf.PdfComponent - camel-k-cron: - groupId: org.apache.camel.k - artifactId: camel-k-cron - schemes: - - id: cron - http: false - passive: false - camel-quarkus-aws2-lambda: + - org.apache.camel.dataformat.xmlsecurity.XMLSecurityDataFormat + - org.apache.camel.component.xmlsecurity.XmlVerifierComponent + - org.apache.camel.component.xmlsecurity.XmlSignerComponent + camel-quarkus-azure: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-lambda + artifactId: camel-quarkus-azure schemes: - - id: aws2-lambda + - id: azure-queue http: false passive: false - javaTypes: - - org.apache.camel.component.aws2.lambda.Lambda2Component - camel-quarkus-stringtemplate: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-stringtemplate - schemes: - - id: string-template + - id: azure-blob http: false passive: false javaTypes: - - org.apache.camel.component.stringtemplate.StringTemplateComponent - camel-quarkus-stomp: + - org.apache.camel.component.azure.blob.BlobServiceComponent + - org.apache.camel.component.azure.queue.QueueServiceComponent + camel-quarkus-aws-translate: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-stomp + artifactId: camel-quarkus-aws-translate schemes: - - id: stomp + - id: aws-translate http: false passive: false javaTypes: - - org.apache.camel.component.stomp.StompComponent - camel-quarkus-google-sheets: + - org.apache.camel.component.aws.translate.TranslateComponent + camel-quarkus-chatscript: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-google-sheets + artifactId: camel-quarkus-chatscript schemes: - - id: google-sheets - http: false - passive: false - - id: google-sheets-stream + - id: chatscript http: false passive: false javaTypes: - - org.apache.camel.component.google.sheets.stream.GoogleSheetsStreamComponent - - org.apache.camel.component.google.sheets.GoogleSheetsComponent - camel-quarkus-ftp: + - org.apache.camel.component.chatscript.ChatScriptComponent + camel-quarkus-rabbitmq: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ftp + artifactId: camel-quarkus-rabbitmq schemes: - - id: sftp - http: false - passive: false - - id: ftps - http: false - passive: false - - id: ftp + - id: rabbitmq http: false passive: false javaTypes: - - org.apache.camel.component.file.remote.SftpComponent - - org.apache.camel.component.file.remote.FtpsComponent - - org.apache.camel.component.file.remote.FtpComponent - camel-quarkus-validator: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-validator - schemes: - - id: validator - http: false - passive: true - javaTypes: - - org.apache.camel.component.validator.ValidatorComponent - camel-quarkus-jackson: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jackson - dataformats: - - json-jackson - javaTypes: - - org.apache.camel.component.jackson.JacksonDataFormat - camel-quarkus-printer: + - org.apache.camel.component.rabbitmq.RabbitMQComponent + camel-quarkus-reactive-streams: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-printer + artifactId: camel-quarkus-reactive-streams schemes: - - id: lpr + - id: reactive-streams http: false passive: false javaTypes: - - org.apache.camel.component.printer.PrinterComponent - camel-quarkus-google-pubsub: + - org.apache.camel.component.reactive.streams.ReactiveStreamsComponent + camel-quarkus-azure-storage-queue: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-google-pubsub + artifactId: camel-quarkus-azure-storage-queue schemes: - - id: google-pubsub + - id: azure-storage-queue http: false passive: false javaTypes: - - org.apache.camel.component.google.pubsub.GooglePubsubComponent - camel-quarkus-cmis: + - org.apache.camel.component.azure.storage.queue.QueueComponent + camel-quarkus-cron: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-cmis + artifactId: camel-quarkus-cron schemes: - - id: cmis + - id: cron http: false passive: false javaTypes: - - org.apache.camel.component.cmis.CMISComponent - camel-quarkus-aws2-ses: + - org.apache.camel.component.cron.CronComponent + camel-quarkus-mongodb-gridfs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-ses + artifactId: camel-quarkus-mongodb-gridfs schemes: - - id: aws2-ses + - id: mongodb-gridfs http: false passive: false javaTypes: - - org.apache.camel.component.aws2.ses.Ses2Component - camel-quarkus-hazelcast: + - org.apache.camel.component.mongodb.gridfs.GridFsComponent + camel-quarkus-ignite: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-hazelcast + artifactId: camel-quarkus-ignite schemes: - - id: hazelcast-topic - http: false - passive: false - - id: hazelcast-multimap + - id: ignite-set http: false passive: false - - id: hazelcast-seda + - id: ignite-queue http: false passive: false - - id: hazelcast-map + - id: ignite-events http: false passive: false - - id: hazelcast-set + - id: ignite-messaging http: false passive: false - - id: hazelcast-queue + - id: ignite-compute http: false passive: false - - id: hazelcast-list + - id: ignite-cache http: false passive: false - - id: hazelcast-instance + - id: ignite-idgen http: false passive: false - - id: hazelcast-ringbuffer + javaTypes: + - org.apache.camel.component.ignite.queue.IgniteQueueComponent + - org.apache.camel.component.ignite.messaging.IgniteMessagingComponent + - org.apache.camel.component.ignite.set.IgniteSetComponent + - org.apache.camel.component.ignite.idgen.IgniteIdGenComponent + - org.apache.camel.component.ignite.cache.IgniteCacheComponent + - org.apache.camel.component.ignite.events.IgniteEventsComponent + - org.apache.camel.component.ignite.compute.IgniteComputeComponent + camel-quarkus-web3j: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-web3j + schemes: + - id: web3j http: false passive: false - - id: hazelcast-atomicvalue + javaTypes: + - org.apache.camel.component.web3j.Web3jComponent + camel-quarkus-aws-ec2: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-aws-ec2 + schemes: + - id: aws-ec2 http: false passive: false - - id: hazelcast-replicatedmap + javaTypes: + - org.apache.camel.component.aws.ec2.EC2Component + camel-quarkus-ldif: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-ldif + schemes: + - id: ldif http: false passive: false javaTypes: - - org.apache.camel.component.hazelcast.replicatedmap.HazelcastReplicatedmapComponent - - org.apache.camel.component.hazelcast.seda.HazelcastSedaComponent - - org.apache.camel.component.hazelcast.map.HazelcastMapComponent - - org.apache.camel.component.hazelcast.queue.HazelcastQueueComponent - - org.apache.camel.component.hazelcast.atomicnumber.HazelcastAtomicnumberComponent - - org.apache.camel.component.hazelcast.list.HazelcastListComponent - - org.apache.camel.component.hazelcast.topic.HazelcastTopicComponent - - org.apache.camel.component.hazelcast.ringbuffer.HazelcastRingbufferComponent - - org.apache.camel.component.hazelcast.multimap.HazelcastMultimapComponent - - org.apache.camel.component.hazelcast.instance.HazelcastInstanceComponent - - org.apache.camel.component.hazelcast.set.HazelcastSetComponent - camel-quarkus-box: + - org.apache.camel.component.ldif.LdifComponent + camel-quarkus-xml-jaxp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-box + artifactId: camel-quarkus-xml-jaxp + languages: + - xtokenize + javaTypes: + - org.apache.camel.language.xtokenizer.XMLTokenizeLanguage + camel-quarkus-corda: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-corda schemes: - - id: box + - id: corda http: false passive: false javaTypes: - - org.apache.camel.component.box.BoxComponent - camel-quarkus-wordpress: + - org.apache.camel.component.corda.CordaComponent + camel-quarkus-github: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-wordpress + artifactId: camel-quarkus-github schemes: - - id: wordpress + - id: github http: false passive: false javaTypes: - - org.apache.camel.component.wordpress.WordpressComponent - camel-quarkus-vertx-http: + - org.apache.camel.component.github.GitHubComponent + camel-quarkus-aws2-eventbridge: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-vertx-http + artifactId: camel-quarkus-aws2-eventbridge schemes: - - id: vertx-http + - id: aws2-eventbridge http: false passive: false javaTypes: - - org.apache.camel.component.vertx.http.VertxHttpComponent - camel-quarkus-aws2-translate: + - org.apache.camel.component.aws2.eventbridge.EventbridgeComponent + camel-quarkus-xmpp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-translate + artifactId: camel-quarkus-xmpp schemes: - - id: aws2-translate + - id: xmpp http: false passive: false javaTypes: - - org.apache.camel.component.aws2.translate.Translate2Component - camel-quarkus-ahc-ws: + - org.apache.camel.component.xmpp.XmppComponent + camel-quarkus-aws-lambda: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ahc-ws + artifactId: camel-quarkus-aws-lambda schemes: - - id: ahc-ws - http: true - passive: false - - id: ahc-wss + - id: aws-lambda http: false passive: false javaTypes: - - org.apache.camel.component.ahc.ws.WsComponent - camel-quarkus-mllp: + - org.apache.camel.component.aws.lambda.LambdaComponent + camel-quarkus-minio: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mllp + artifactId: camel-quarkus-minio schemes: - - id: mllp + - id: minio http: false passive: false javaTypes: - - org.apache.camel.component.mllp.MllpComponent - camel-quarkus-irc: + - org.apache.camel.component.minio.MinioComponent + camel-quarkus-atlasmap: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-irc + artifactId: camel-quarkus-atlasmap schemes: - - id: irc + - id: atlasmap http: false passive: false javaTypes: - - org.apache.camel.component.irc.IrcComponent - camel-quarkus-jsch: + - org.apache.camel.component.atlasmap.AtlasMapComponent + camel-quarkus-aws2-sts: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jsch + artifactId: camel-quarkus-aws2-sts schemes: - - id: scp + - id: aws2-sts http: false passive: false javaTypes: - - org.apache.camel.component.scp.ScpComponent - camel-quarkus-beanio: + - org.apache.camel.component.aws2.sts.STS2Component + camel-quarkus-tarfile: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-beanio + artifactId: camel-quarkus-tarfile dataformats: - - beanio + - tarfile javaTypes: - - org.apache.camel.dataformat.beanio.BeanIODataFormat - camel-quarkus-aws2-mq: + - org.apache.camel.dataformat.tarfile.TarFileDataFormat + camel-quarkus-avro: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-mq - schemes: - - id: aws2-mq - http: false - passive: false + artifactId: camel-quarkus-avro + dataformats: + - avro javaTypes: - - org.apache.camel.component.aws2.mq.MQ2Component - camel-quarkus-coap: + - org.apache.camel.dataformat.avro.AvroDataFormat + camel-quarkus-msv: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-coap + artifactId: camel-quarkus-msv schemes: - - id: coap - http: false - passive: false - - id: coap+tcp - http: false - passive: false - - id: coaps - http: false - passive: false - - id: coaps+tcp + - id: msv http: false passive: false javaTypes: - - org.apache.camel.coap.CoAPComponent - camel-quarkus-tika: + - org.apache.camel.component.validator.msv.MsvComponent + camel-quarkus-spark: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tika + artifactId: camel-quarkus-spark schemes: - - id: tika + - id: spark http: false passive: false javaTypes: - - org.apache.camel.component.tika.TikaComponent - camel-quarkus-ssh: + - org.apache.camel.component.spark.SparkComponent + camel-quarkus-saxon: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ssh + artifactId: camel-quarkus-saxon schemes: - - id: ssh + - id: xquery http: false passive: false + languages: + - xquery javaTypes: - - org.apache.camel.component.ssh.SshComponent - camel-quarkus-xslt-saxon: + - org.apache.camel.component.xquery.XQueryComponent + - org.apache.camel.language.xquery.XQueryLanguage + camel-quarkus-caffeine: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xslt-saxon + artifactId: camel-quarkus-caffeine schemes: - - id: xslt-saxon + - id: caffeine-loadcache + http: false + passive: false + - id: caffeine-cache http: false passive: false javaTypes: - - org.apache.camel.component.xslt.saxon.XsltSaxonComponent - camel-quarkus-kafka: + - org.apache.camel.component.caffeine.cache.CaffeineCacheComponent + - org.apache.camel.component.caffeine.load.CaffeineLoadCacheComponent + camel-quarkus-elasticsearch-rest: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-kafka + artifactId: camel-quarkus-elasticsearch-rest schemes: - - id: kafka + - id: elasticsearch-rest http: false passive: false javaTypes: - - org.apache.camel.component.kafka.KafkaComponent - camel-quarkus-stream: + - org.apache.camel.component.elasticsearch.ElasticsearchComponent + camel-quarkus-bean-validator: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-stream + artifactId: camel-quarkus-bean-validator schemes: - - id: stream + - id: bean-validator http: false passive: false javaTypes: - - org.apache.camel.component.stream.StreamComponent - camel-quarkus-browse: + - org.apache.camel.component.bean.validator.BeanValidatorComponent + camel-quarkus-jira: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-browse + artifactId: camel-quarkus-jira schemes: - - id: browse + - id: jira http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.browse.BrowseComponent - camel-quarkus-avro-rpc: + - org.apache.camel.component.jira.JiraComponent + camel-quarkus-sql: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-avro-rpc + artifactId: camel-quarkus-sql schemes: - - id: avro + - id: sql + http: false + passive: false + - id: sql-stored http: false passive: false javaTypes: - - org.apache.camel.component.avro.AvroComponent - camel-quarkus-google-calendar: + - org.apache.camel.component.sql.stored.SqlStoredComponent + - org.apache.camel.component.sql.SqlComponent + camel-quarkus-ehcache: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-google-calendar + artifactId: camel-quarkus-ehcache schemes: - - id: google-calendar-stream - http: false - passive: false - - id: google-calendar + - id: ehcache http: false passive: false javaTypes: - - org.apache.camel.component.google.calendar.GoogleCalendarComponent - - org.apache.camel.component.google.calendar.stream.GoogleCalendarStreamComponent - camel-quarkus-vertx-websocket: + - org.apache.camel.component.ehcache.EhcacheComponent + camel-quarkus-aws2-iam: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-vertx-websocket + artifactId: camel-quarkus-aws2-iam schemes: - - id: vertx-websocket + - id: aws2-iam http: false passive: false javaTypes: - - org.apache.camel.component.vertx.websocket.VertxWebsocketComponent - camel-quarkus-jcache: + - org.apache.camel.component.aws2.iam.IAM2Component + camel-quarkus-velocity: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jcache + artifactId: camel-quarkus-velocity schemes: - - id: jcache + - id: velocity http: false passive: false javaTypes: - - org.apache.camel.component.jcache.JCacheComponent - camel-quarkus-salesforce: + - org.apache.camel.component.velocity.VelocityComponent + camel-quarkus-core: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-core + languages: + - ref + - constant + - csimple + - exchangeProperty + - tokenize + - file + - header + - simple + javaTypes: + - org.apache.camel.language.ref.RefLanguage + - org.apache.camel.language.simple.FileLanguage + - org.apache.camel.language.csimple.CSimpleLanguage + - org.apache.camel.language.constant.ConstantLanguage + - org.apache.camel.language.simple.SimpleLanguage + - org.apache.camel.language.header.HeaderLanguage + - org.apache.camel.language.property.ExchangePropertyLanguage + - org.apache.camel.language.tokenizer.TokenizeLanguage + camel-quarkus-debezium-mysql: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-salesforce + artifactId: camel-quarkus-debezium-mysql schemes: - - id: salesforce + - id: debezium-mysql http: false passive: false javaTypes: - - org.apache.camel.component.salesforce.SalesforceComponent - camel-quarkus-jbpm: + - org.apache.camel.component.debezium.DebeziumMySqlComponent + camel-quarkus-jcr: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jbpm + artifactId: camel-quarkus-jcr schemes: - - id: jbpm + - id: jcr http: false passive: false javaTypes: - - org.apache.camel.component.jbpm.JBPMComponent - camel-quarkus-aws-ecs: + - org.apache.camel.component.jcr.JcrComponent + camel-quarkus-hdfs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-ecs + artifactId: camel-quarkus-hdfs schemes: - - id: aws-ecs + - id: hdfs http: false passive: false javaTypes: - - org.apache.camel.component.aws.ecs.ECSComponent - camel-quarkus-splunk-hec: + - org.apache.camel.component.hdfs.HdfsComponent + camel-quarkus-kudu: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-splunk-hec + artifactId: camel-quarkus-kudu schemes: - - id: splunk-hec + - id: kudu http: false passive: false javaTypes: - - org.apache.camel.component.splunkhec.SplunkHECComponent - camel-quarkus-lucene: + - org.apache.camel.component.kudu.KuduComponent + camel-quarkus-jooq: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-lucene + artifactId: camel-quarkus-jooq schemes: - - id: lucene + - id: jooq http: false passive: false javaTypes: - - org.apache.camel.component.lucene.LuceneComponent - camel-quarkus-aws2-kms: + - org.apache.camel.component.jooq.JooqComponent + camel-quarkus-jsonpath: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-kms - schemes: - - id: aws2-kms - http: false - passive: false + artifactId: camel-quarkus-jsonpath + languages: + - jsonpath javaTypes: - - org.apache.camel.component.aws2.kms.KMS2Component - camel-quarkus-csv: + - org.apache.camel.jsonpath.JsonPathLanguage + camel-quarkus-hl7: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-csv + artifactId: camel-quarkus-hl7 + languages: + - hl7terser dataformats: - - csv + - hl7 javaTypes: - - org.apache.camel.dataformat.csv.CsvDataFormat - camel-quarkus-fhir: + - org.apache.camel.component.hl7.Hl7TerserLanguage + - org.apache.camel.component.hl7.HL7DataFormat + camel-quarkus-disruptor: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-fhir + artifactId: camel-quarkus-disruptor schemes: - - id: fhir + - id: disruptor + http: false + passive: false + - id: disruptor-vm http: false passive: false - dataformats: - - fhirJson - - fhirXml javaTypes: - - org.apache.camel.component.fhir.FhirJsonDataFormat - - org.apache.camel.component.fhir.FhirXmlDataFormat - - org.apache.camel.component.fhir.FhirComponent - camel-quarkus-atomix: + - org.apache.camel.component.disruptor.vm.DisruptorVmComponent + - org.apache.camel.component.disruptor.DisruptorComponent + camel-quarkus-graphql: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-atomix + artifactId: camel-quarkus-graphql schemes: - - id: atomix-messaging - http: false - passive: false - - id: atomix-set - http: false - passive: false - - id: atomix-queue - http: false - passive: false - - id: atomix-map - http: false - passive: false - - id: atomix-multimap - http: false - passive: false - - id: atomix-value + - id: graphql http: false passive: false javaTypes: - - org.apache.camel.component.atomix.client.messaging.AtomixMessagingComponent - - org.apache.camel.component.atomix.client.set.AtomixSetComponent - - org.apache.camel.component.atomix.client.value.AtomixValueComponent - - org.apache.camel.component.atomix.client.multimap.AtomixMultiMapComponent - - org.apache.camel.component.atomix.client.map.AtomixMapComponent - - org.apache.camel.component.atomix.client.queue.AtomixQueueComponent - camel-quarkus-milo: + - org.apache.camel.component.graphql.GraphqlComponent + camel-quarkus-log: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-milo + artifactId: camel-quarkus-log schemes: - - id: milo-client - http: false - passive: false - - id: milo-server + - id: log http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.milo.server.MiloServerComponent - - org.apache.camel.component.milo.client.MiloClientComponent + - org.apache.camel.component.log.LogComponent camel-quarkus-ahc: groupId: org.apache.camel.quarkus artifactId: camel-quarkus-ahc @@ -1043,1435 +979,1408 @@ spec: passive: false javaTypes: - org.apache.camel.component.ahc.AhcComponent - camel-quarkus-log: + camel-quarkus-milo: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-log + artifactId: camel-quarkus-milo schemes: - - id: log + - id: milo-server http: false - passive: true - javaTypes: - - org.apache.camel.component.log.LogComponent - camel-quarkus-graphql: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-graphql - schemes: - - id: graphql + passive: false + - id: milo-client http: false passive: false javaTypes: - - org.apache.camel.component.graphql.GraphqlComponent - camel-quarkus-disruptor: + - org.apache.camel.component.milo.client.MiloClientComponent + - org.apache.camel.component.milo.server.MiloServerComponent + camel-quarkus-atomix: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-disruptor + artifactId: camel-quarkus-atomix schemes: - - id: disruptor-vm + - id: atomix-map http: false passive: false - - id: disruptor + - id: atomix-queue http: false passive: false - javaTypes: - - org.apache.camel.component.disruptor.DisruptorComponent - - org.apache.camel.component.disruptor.vm.DisruptorVmComponent - camel-quarkus-hl7: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-hl7 - languages: - - hl7terser - dataformats: - - hl7 - javaTypes: - - org.apache.camel.component.hl7.HL7DataFormat - - org.apache.camel.component.hl7.Hl7TerserLanguage - camel-quarkus-jsonpath: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jsonpath - languages: - - jsonpath - javaTypes: - - org.apache.camel.jsonpath.JsonPathLanguage - camel-quarkus-jooq: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jooq - schemes: - - id: jooq + - id: atomix-set http: false passive: false - javaTypes: - - org.apache.camel.component.jooq.JooqComponent - camel-quarkus-kudu: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-kudu - schemes: - - id: kudu + - id: atomix-messaging http: false passive: false - javaTypes: - - org.apache.camel.component.kudu.KuduComponent - camel-quarkus-hdfs: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-hdfs - schemes: - - id: hdfs + - id: atomix-value http: false passive: false - javaTypes: - - org.apache.camel.component.hdfs.HdfsComponent - camel-quarkus-jcr: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jcr - schemes: - - id: jcr + - id: atomix-multimap http: false passive: false javaTypes: - - org.apache.camel.component.jcr.JcrComponent - camel-quarkus-debezium-mysql: + - org.apache.camel.component.atomix.client.map.AtomixMapComponent + - org.apache.camel.component.atomix.client.multimap.AtomixMultiMapComponent + - org.apache.camel.component.atomix.client.value.AtomixValueComponent + - org.apache.camel.component.atomix.client.set.AtomixSetComponent + - org.apache.camel.component.atomix.client.messaging.AtomixMessagingComponent + - org.apache.camel.component.atomix.client.queue.AtomixQueueComponent + camel-quarkus-fhir: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-debezium-mysql + artifactId: camel-quarkus-fhir schemes: - - id: debezium-mysql + - id: fhir http: false passive: false + dataformats: + - fhirXml + - fhirJson javaTypes: - - org.apache.camel.component.debezium.DebeziumMySqlComponent - camel-quarkus-core: + - org.apache.camel.component.fhir.FhirComponent + - org.apache.camel.component.fhir.FhirXmlDataFormat + - org.apache.camel.component.fhir.FhirJsonDataFormat + camel-quarkus-csv: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-core - languages: - - exchangeProperty - - csimple - - constant - - ref - - simple - - header - - file - - tokenize + artifactId: camel-quarkus-csv + dataformats: + - csv javaTypes: - - org.apache.camel.language.ref.RefLanguage - - org.apache.camel.language.tokenizer.TokenizeLanguage - - org.apache.camel.language.property.ExchangePropertyLanguage - - org.apache.camel.language.header.HeaderLanguage - - org.apache.camel.language.simple.SimpleLanguage - - org.apache.camel.language.constant.ConstantLanguage - - org.apache.camel.language.csimple.CSimpleLanguage - - org.apache.camel.language.simple.FileLanguage - camel-quarkus-velocity: + - org.apache.camel.dataformat.csv.CsvDataFormat + camel-quarkus-aws2-kms: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-velocity + artifactId: camel-quarkus-aws2-kms schemes: - - id: velocity + - id: aws2-kms http: false passive: false javaTypes: - - org.apache.camel.component.velocity.VelocityComponent - camel-quarkus-aws2-iam: + - org.apache.camel.component.aws2.kms.KMS2Component + camel-quarkus-lucene: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-iam + artifactId: camel-quarkus-lucene schemes: - - id: aws2-iam + - id: lucene http: false passive: false javaTypes: - - org.apache.camel.component.aws2.iam.IAM2Component - camel-quarkus-ehcache: + - org.apache.camel.component.lucene.LuceneComponent + camel-quarkus-splunk-hec: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ehcache + artifactId: camel-quarkus-splunk-hec schemes: - - id: ehcache + - id: splunk-hec http: false passive: false javaTypes: - - org.apache.camel.component.ehcache.EhcacheComponent - camel-quarkus-sql: + - org.apache.camel.component.splunkhec.SplunkHECComponent + camel-quarkus-aws-ecs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sql + artifactId: camel-quarkus-aws-ecs schemes: - - id: sql-stored + - id: aws-ecs http: false passive: false - - id: sql + javaTypes: + - org.apache.camel.component.aws.ecs.ECSComponent + camel-quarkus-jbpm: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-jbpm + schemes: + - id: jbpm http: false passive: false javaTypes: - - org.apache.camel.component.sql.SqlComponent - - org.apache.camel.component.sql.stored.SqlStoredComponent - camel-quarkus-jira: + - org.apache.camel.component.jbpm.JBPMComponent + camel-quarkus-salesforce: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jira + artifactId: camel-quarkus-salesforce schemes: - - id: jira + - id: salesforce http: false passive: false javaTypes: - - org.apache.camel.component.jira.JiraComponent - camel-quarkus-bean-validator: + - org.apache.camel.component.salesforce.SalesforceComponent + camel-quarkus-jcache: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bean-validator + artifactId: camel-quarkus-jcache schemes: - - id: bean-validator + - id: jcache http: false passive: false javaTypes: - - org.apache.camel.component.bean.validator.BeanValidatorComponent - camel-quarkus-elasticsearch-rest: + - org.apache.camel.component.jcache.JCacheComponent + camel-quarkus-vertx-websocket: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-elasticsearch-rest + artifactId: camel-quarkus-vertx-websocket schemes: - - id: elasticsearch-rest + - id: vertx-websocket http: false passive: false javaTypes: - - org.apache.camel.component.elasticsearch.ElasticsearchComponent - camel-quarkus-caffeine: + - org.apache.camel.component.vertx.websocket.VertxWebsocketComponent + camel-quarkus-google-calendar: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-caffeine + artifactId: camel-quarkus-google-calendar schemes: - - id: caffeine-cache + - id: google-calendar http: false passive: false - - id: caffeine-loadcache + - id: google-calendar-stream http: false passive: false javaTypes: - - org.apache.camel.component.caffeine.load.CaffeineLoadCacheComponent - - org.apache.camel.component.caffeine.cache.CaffeineCacheComponent - camel-quarkus-saxon: + - org.apache.camel.component.google.calendar.stream.GoogleCalendarStreamComponent + - org.apache.camel.component.google.calendar.GoogleCalendarComponent + camel-quarkus-avro-rpc: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-saxon + artifactId: camel-quarkus-avro-rpc schemes: - - id: xquery + - id: avro http: false passive: false - languages: - - xquery javaTypes: - - org.apache.camel.language.xquery.XQueryLanguage - - org.apache.camel.component.xquery.XQueryComponent - camel-quarkus-spark: + - org.apache.camel.component.avro.AvroComponent + camel-quarkus-browse: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-spark + artifactId: camel-quarkus-browse schemes: - - id: spark + - id: browse http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.spark.SparkComponent - camel-quarkus-msv: + - org.apache.camel.component.browse.BrowseComponent + camel-quarkus-stream: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-msv + artifactId: camel-quarkus-stream schemes: - - id: msv + - id: stream http: false passive: false javaTypes: - - org.apache.camel.component.validator.msv.MsvComponent - camel-quarkus-avro: + - org.apache.camel.component.stream.StreamComponent + camel-quarkus-kafka: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-avro - dataformats: - - avro + artifactId: camel-quarkus-kafka + schemes: + - id: kafka + http: false + passive: false javaTypes: - - org.apache.camel.dataformat.avro.AvroDataFormat - camel-quarkus-tarfile: + - org.apache.camel.component.kafka.KafkaComponent + camel-quarkus-xslt-saxon: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tarfile - dataformats: - - tarfile + artifactId: camel-quarkus-xslt-saxon + schemes: + - id: xslt-saxon + http: false + passive: false javaTypes: - - org.apache.camel.dataformat.tarfile.TarFileDataFormat - camel-quarkus-aws2-sts: + - org.apache.camel.component.xslt.saxon.XsltSaxonComponent + camel-quarkus-ssh: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-sts + artifactId: camel-quarkus-ssh schemes: - - id: aws2-sts + - id: ssh http: false passive: false javaTypes: - - org.apache.camel.component.aws2.sts.STS2Component - camel-quarkus-atlasmap: + - org.apache.camel.component.ssh.SshComponent + camel-quarkus-tika: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-atlasmap + artifactId: camel-quarkus-tika schemes: - - id: atlasmap + - id: tika http: false passive: false javaTypes: - - org.apache.camel.component.atlasmap.AtlasMapComponent - camel-quarkus-minio: + - org.apache.camel.component.tika.TikaComponent + camel-quarkus-coap: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-minio + artifactId: camel-quarkus-coap schemes: - - id: minio + - id: coaps+tcp + http: false + passive: false + - id: coaps + http: false + passive: false + - id: coap+tcp + http: false + passive: false + - id: coap http: false passive: false javaTypes: - - org.apache.camel.component.minio.MinioComponent - camel-quarkus-aws-lambda: + - org.apache.camel.coap.CoAPComponent + camel-quarkus-aws2-mq: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-lambda + artifactId: camel-quarkus-aws2-mq schemes: - - id: aws-lambda + - id: aws2-mq http: false passive: false javaTypes: - - org.apache.camel.component.aws.lambda.LambdaComponent - camel-quarkus-xmpp: + - org.apache.camel.component.aws2.mq.MQ2Component + camel-quarkus-beanio: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xmpp + artifactId: camel-quarkus-beanio + dataformats: + - beanio + javaTypes: + - org.apache.camel.dataformat.beanio.BeanIODataFormat + camel-quarkus-jsch: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-jsch schemes: - - id: xmpp + - id: scp http: false passive: false javaTypes: - - org.apache.camel.component.xmpp.XmppComponent - camel-quarkus-aws2-eventbridge: + - org.apache.camel.component.scp.ScpComponent + camel-quarkus-irc: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-eventbridge + artifactId: camel-quarkus-irc schemes: - - id: aws2-eventbridge + - id: irc http: false passive: false javaTypes: - - org.apache.camel.component.aws2.eventbridge.EventbridgeComponent - camel-quarkus-github: + - org.apache.camel.component.irc.IrcComponent + camel-quarkus-mllp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-github + artifactId: camel-quarkus-mllp schemes: - - id: github + - id: mllp http: false passive: false javaTypes: - - org.apache.camel.component.github.GitHubComponent - camel-quarkus-corda: + - org.apache.camel.component.mllp.MllpComponent + camel-quarkus-ahc-ws: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-corda + artifactId: camel-quarkus-ahc-ws schemes: - - id: corda + - id: ahc-wss http: false passive: false + - id: ahc-ws + http: true + passive: false javaTypes: - - org.apache.camel.component.corda.CordaComponent - camel-quarkus-xml-jaxp: + - org.apache.camel.component.ahc.ws.WsComponent + camel-quarkus-aws2-translate: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xml-jaxp - languages: - - xtokenize + artifactId: camel-quarkus-aws2-translate + schemes: + - id: aws2-translate + http: false + passive: false javaTypes: - - org.apache.camel.language.xtokenizer.XMLTokenizeLanguage - camel-quarkus-ldif: + - org.apache.camel.component.aws2.translate.Translate2Component + camel-quarkus-vertx-http: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ldif + artifactId: camel-quarkus-vertx-http schemes: - - id: ldif + - id: vertx-http http: false passive: false javaTypes: - - org.apache.camel.component.ldif.LdifComponent - camel-quarkus-aws-ec2: + - org.apache.camel.component.vertx.http.VertxHttpComponent + camel-quarkus-wordpress: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-ec2 + artifactId: camel-quarkus-wordpress schemes: - - id: aws-ec2 + - id: wordpress http: false passive: false javaTypes: - - org.apache.camel.component.aws.ec2.EC2Component - camel-quarkus-web3j: + - org.apache.camel.component.wordpress.WordpressComponent + camel-quarkus-box: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-web3j + artifactId: camel-quarkus-box schemes: - - id: web3j + - id: box http: false passive: false javaTypes: - - org.apache.camel.component.web3j.Web3jComponent - camel-quarkus-ignite: + - org.apache.camel.component.box.BoxComponent + camel-quarkus-hazelcast: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ignite + artifactId: camel-quarkus-hazelcast schemes: - - id: ignite-cache + - id: hazelcast-multimap http: false passive: false - - id: ignite-compute + - id: hazelcast-topic + http: false + passive: false + - id: hazelcast-replicatedmap + http: false + passive: false + - id: hazelcast-atomicvalue + http: false + passive: false + - id: hazelcast-ringbuffer + http: false + passive: false + - id: hazelcast-instance http: false passive: false - - id: ignite-messaging + - id: hazelcast-list http: false passive: false - - id: ignite-events + - id: hazelcast-queue http: false passive: false - - id: ignite-queue + - id: hazelcast-set http: false passive: false - - id: ignite-set + - id: hazelcast-map http: false passive: false - - id: ignite-idgen + - id: hazelcast-seda http: false passive: false javaTypes: - - org.apache.camel.component.ignite.events.IgniteEventsComponent - - org.apache.camel.component.ignite.cache.IgniteCacheComponent - - org.apache.camel.component.ignite.idgen.IgniteIdGenComponent - - org.apache.camel.component.ignite.set.IgniteSetComponent - - org.apache.camel.component.ignite.messaging.IgniteMessagingComponent - - org.apache.camel.component.ignite.queue.IgniteQueueComponent - - org.apache.camel.component.ignite.compute.IgniteComputeComponent - camel-quarkus-mongodb-gridfs: + - org.apache.camel.component.hazelcast.seda.HazelcastSedaComponent + - org.apache.camel.component.hazelcast.replicatedmap.HazelcastReplicatedmapComponent + - org.apache.camel.component.hazelcast.set.HazelcastSetComponent + - org.apache.camel.component.hazelcast.instance.HazelcastInstanceComponent + - org.apache.camel.component.hazelcast.multimap.HazelcastMultimapComponent + - org.apache.camel.component.hazelcast.ringbuffer.HazelcastRingbufferComponent + - org.apache.camel.component.hazelcast.topic.HazelcastTopicComponent + - org.apache.camel.component.hazelcast.list.HazelcastListComponent + - org.apache.camel.component.hazelcast.atomicnumber.HazelcastAtomicnumberComponent + - org.apache.camel.component.hazelcast.queue.HazelcastQueueComponent + - org.apache.camel.component.hazelcast.map.HazelcastMapComponent + camel-quarkus-aws2-ses: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mongodb-gridfs + artifactId: camel-quarkus-aws2-ses schemes: - - id: mongodb-gridfs + - id: aws2-ses http: false passive: false javaTypes: - - org.apache.camel.component.mongodb.gridfs.GridFsComponent - camel-quarkus-cron: + - org.apache.camel.component.aws2.ses.Ses2Component + camel-quarkus-cmis: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-cron + artifactId: camel-quarkus-cmis schemes: - - id: cron + - id: cmis http: false passive: false javaTypes: - - org.apache.camel.component.cron.CronComponent - camel-quarkus-azure-storage-queue: + - org.apache.camel.component.cmis.CMISComponent + camel-quarkus-google-pubsub: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-azure-storage-queue + artifactId: camel-quarkus-google-pubsub schemes: - - id: azure-storage-queue + - id: google-pubsub http: false passive: false javaTypes: - - org.apache.camel.component.azure.storage.queue.QueueComponent - camel-quarkus-reactive-streams: + - org.apache.camel.component.google.pubsub.GooglePubsubComponent + camel-quarkus-printer: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-reactive-streams + artifactId: camel-quarkus-printer schemes: - - id: reactive-streams + - id: lpr http: false passive: false javaTypes: - - org.apache.camel.component.reactive.streams.ReactiveStreamsComponent - camel-quarkus-rabbitmq: + - org.apache.camel.component.printer.PrinterComponent + camel-quarkus-jackson: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rabbitmq - schemes: - - id: rabbitmq - http: false - passive: false + artifactId: camel-quarkus-jackson + dataformats: + - json-jackson javaTypes: - - org.apache.camel.component.rabbitmq.RabbitMQComponent - camel-quarkus-chatscript: + - org.apache.camel.component.jackson.JacksonDataFormat + camel-quarkus-validator: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-chatscript + artifactId: camel-quarkus-validator schemes: - - id: chatscript + - id: validator http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.chatscript.ChatScriptComponent - camel-quarkus-aws-translate: + - org.apache.camel.component.validator.ValidatorComponent + camel-quarkus-ftp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-translate + artifactId: camel-quarkus-ftp schemes: - - id: aws-translate + - id: ftp http: false passive: false - javaTypes: - - org.apache.camel.component.aws.translate.TranslateComponent - camel-quarkus-azure: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-azure - schemes: - - id: azure-blob + - id: ftps http: false passive: false - - id: azure-queue + - id: sftp http: false passive: false javaTypes: - - org.apache.camel.component.azure.queue.QueueServiceComponent - - org.apache.camel.component.azure.blob.BlobServiceComponent - camel-quarkus-xmlsecurity: + - org.apache.camel.component.file.remote.FtpComponent + - org.apache.camel.component.file.remote.FtpsComponent + - org.apache.camel.component.file.remote.SftpComponent + camel-quarkus-google-sheets: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xmlsecurity + artifactId: camel-quarkus-google-sheets schemes: - - id: xmlsecurity-verify + - id: google-sheets-stream http: false passive: false - - id: xmlsecurity-sign + - id: google-sheets http: false passive: false - dataformats: - - secureXML - javaTypes: - - org.apache.camel.component.xmlsecurity.XmlSignerComponent - - org.apache.camel.component.xmlsecurity.XmlVerifierComponent - - org.apache.camel.dataformat.xmlsecurity.XMLSecurityDataFormat - camel-quarkus-groovy: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-groovy - languages: - - groovy javaTypes: - - org.apache.camel.language.groovy.GroovyLanguage - camel-quarkus-rest: + - org.apache.camel.component.google.sheets.GoogleSheetsComponent + - org.apache.camel.component.google.sheets.stream.GoogleSheetsStreamComponent + camel-quarkus-stomp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rest + artifactId: camel-quarkus-stomp schemes: - - id: rest - http: true - passive: false - - id: rest-api + - id: stomp http: false passive: false javaTypes: - - org.apache.camel.component.rest.RestComponent - - org.apache.camel.component.rest.RestApiComponent - camel-quarkus-xslt: + - org.apache.camel.component.stomp.StompComponent + camel-quarkus-stringtemplate: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xslt + artifactId: camel-quarkus-stringtemplate schemes: - - id: xslt + - id: string-template http: false passive: false javaTypes: - - org.apache.camel.component.xslt.XsltComponent - camel-quarkus-beanstalk: + - org.apache.camel.component.stringtemplate.StringTemplateComponent + camel-quarkus-aws2-lambda: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-beanstalk + artifactId: camel-quarkus-aws2-lambda schemes: - - id: beanstalk + - id: aws2-lambda http: false passive: false javaTypes: - - org.apache.camel.component.beanstalk.BeanstalkComponent - camel-quarkus-saga: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-saga + - org.apache.camel.component.aws2.lambda.Lambda2Component + camel-k-cron: + groupId: org.apache.camel.k + artifactId: camel-k-cron schemes: - - id: saga + - id: cron http: false passive: false - javaTypes: - - org.apache.camel.component.saga.SagaComponent - camel-quarkus-fop: + camel-quarkus-pdf: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-fop + artifactId: camel-quarkus-pdf schemes: - - id: fop + - id: pdf http: false passive: false javaTypes: - - org.apache.camel.component.fop.FopComponent - camel-quarkus-johnzon: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-johnzon - dataformats: - - json-johnzon - javaTypes: - - org.apache.camel.component.johnzon.JohnzonDataFormat - camel-quarkus-solr: + - org.apache.camel.component.pdf.PdfComponent + camel-quarkus-kubernetes: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-solr + artifactId: camel-quarkus-kubernetes schemes: - - id: solrCloud + - id: openshift-builds http: false passive: false - - id: solrs + - id: kubernetes-custom-resources http: false passive: false - - id: solr + - id: kubernetes-namespaces http: false passive: false - javaTypes: - - org.apache.camel.component.solr.SolrComponent - camel-quarkus-quickfix: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-quickfix - schemes: - - id: quickfix + - id: kubernetes-nodes http: false passive: false - javaTypes: - - org.apache.camel.component.quickfixj.QuickfixjComponent - camel-quarkus-jclouds: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jclouds - schemes: - - id: jclouds + - id: kubernetes-hpa + http: false + passive: false + - id: kubernetes-deployments + http: false + passive: false + - id: kubernetes-persistent-volumes-claims + http: false + passive: false + - id: kubernetes-pods + http: false + passive: false + - id: kubernetes-config-maps + http: false + passive: false + - id: kubernetes-persistent-volumes + http: false + passive: false + - id: kubernetes-services + http: false + passive: false + - id: kubernetes-secrets + http: false + passive: false + - id: kubernetes-service-accounts + http: false + passive: false + - id: openshift-build-configs + http: false + passive: false + - id: kubernetes-job + http: false + passive: false + - id: kubernetes-replication-controllers + http: false + passive: false + - id: kubernetes-resources-quota http: false passive: false javaTypes: - - org.apache.camel.component.jclouds.JcloudsComponent - camel-quarkus-rest-openapi: + - org.apache.camel.component.kubernetes.nodes.KubernetesNodesComponent + - org.apache.camel.component.kubernetes.secrets.KubernetesSecretsComponent + - org.apache.camel.component.openshift.builds.OpenshiftBuildsComponent + - org.apache.camel.component.kubernetes.config_maps.KubernetesConfigMapsComponent + - org.apache.camel.component.kubernetes.service_accounts.KubernetesServiceAccountsComponent + - org.apache.camel.component.kubernetes.resources_quota.KubernetesResourcesQuotaComponent + - org.apache.camel.component.kubernetes.hpa.KubernetesHPAComponent + - org.apache.camel.component.kubernetes.namespaces.KubernetesNamespacesComponent + - org.apache.camel.component.kubernetes.pods.KubernetesPodsComponent + - org.apache.camel.component.kubernetes.deployments.KubernetesDeploymentsComponent + - org.apache.camel.component.kubernetes.job.KubernetesJobComponent + - org.apache.camel.component.kubernetes.replication_controllers.KubernetesReplicationControllersComponent + - org.apache.camel.component.kubernetes.customresources.KubernetesCustomResourcesComponent + - org.apache.camel.component.kubernetes.persistent_volumes_claims.KubernetesPersistentVolumesClaimsComponent + - org.apache.camel.component.openshift.build_configs.OpenshiftBuildConfigsComponent + - org.apache.camel.component.kubernetes.persistent_volumes.KubernetesPersistentVolumesComponent + - org.apache.camel.component.kubernetes.services.KubernetesServicesComponent + camel-quarkus-aws2-athena: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rest-openapi + artifactId: camel-quarkus-aws2-athena schemes: - - id: rest-openapi + - id: aws2-athena http: false passive: false javaTypes: - - org.apache.camel.component.rest.openapi.RestOpenApiComponent - camel-quarkus-file-watch: + - org.apache.camel.component.aws2.athena.Athena2Component + camel-quarkus-cm-sms: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-file-watch + artifactId: camel-quarkus-cm-sms schemes: - - id: file-watch + - id: cm-sms http: false passive: false javaTypes: - - org.apache.camel.component.file.watch.FileWatchComponent - camel-quarkus-robotframework: + - org.apache.camel.component.cm.CMComponent + camel-quarkus-crypto: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-robotframework + artifactId: camel-quarkus-crypto schemes: - - id: robotframework + - id: crypto http: false passive: false + dataformats: + - crypto + - pgp javaTypes: - - org.apache.camel.component.robotframework.RobotFrameworkComponent - camel-quarkus-file: + - org.apache.camel.converter.crypto.PGPDataFormat + - org.apache.camel.converter.crypto.CryptoDataFormat + - org.apache.camel.component.crypto.DigitalSignatureComponent + camel-quarkus-nagios: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-file + artifactId: camel-quarkus-nagios schemes: - - id: file + - id: nagios http: false passive: false javaTypes: - - org.apache.camel.component.file.FileComponent - camel-quarkus-mybatis: + - org.apache.camel.component.nagios.NagiosComponent + camel-quarkus-bonita: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mybatis + artifactId: camel-quarkus-bonita schemes: - - id: mybatis-bean - http: false - passive: false - - id: mybatis + - id: bonita http: false passive: false javaTypes: - - org.apache.camel.component.mybatis.MyBatisComponent - - org.apache.camel.component.mybatis.MyBatisBeanComponent - camel-quarkus-cbor: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-cbor - dataformats: - - cbor - javaTypes: - - org.apache.camel.component.cbor.CBORDataFormat - camel-quarkus-elsql: + - org.apache.camel.component.bonita.BonitaComponent + camel-quarkus-djl: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-elsql + artifactId: camel-quarkus-djl schemes: - - id: elsql + - id: djl http: false passive: false javaTypes: - - org.apache.camel.component.elsql.ElsqlComponent - camel-quarkus-micrometer: + - org.apache.camel.component.djl.DJLComponent + camel-quarkus-mustache: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-micrometer + artifactId: camel-quarkus-mustache schemes: - - id: micrometer + - id: mustache http: false passive: false javaTypes: - - org.apache.camel.component.micrometer.MicrometerComponent - camel-quarkus-netty: + - org.apache.camel.component.mustache.MustacheComponent + camel-quarkus-master: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-netty + artifactId: camel-quarkus-master schemes: - - id: netty + - id: master http: false passive: false javaTypes: - - org.apache.camel.component.netty.NettyComponent - camel-quarkus-jolt: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jolt + - org.apache.camel.component.master.MasterComponent + camel-k-master: + groupId: org.apache.camel.k + artifactId: camel-k-master schemes: - - id: jolt + - id: master http: false passive: false - javaTypes: - - org.apache.camel.component.jolt.JoltComponent - camel-quarkus-http: + camel-quarkus-aws2-ec2: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-http + artifactId: camel-quarkus-aws2-ec2 schemes: - - id: https - http: false - passive: false - - id: http + - id: aws2-ec2 http: false passive: false javaTypes: - - org.apache.camel.component.http.HttpComponent - camel-quarkus-telegram: + - org.apache.camel.component.aws2.ec2.AWS2EC2Component + camel-quarkus-snmp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-telegram + artifactId: camel-quarkus-snmp schemes: - - id: telegram + - id: snmp http: false passive: false javaTypes: - - org.apache.camel.component.telegram.TelegramComponent - camel-quarkus-ganglia: + - org.apache.camel.component.snmp.SnmpComponent + camel-quarkus-barcode: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ganglia - schemes: - - id: ganglia - http: false - passive: false + artifactId: camel-quarkus-barcode + dataformats: + - barcode javaTypes: - - org.apache.camel.component.ganglia.GangliaComponent - camel-quarkus-aws2-kinesis: + - org.apache.camel.dataformat.barcode.BarcodeDataFormat + camel-quarkus-openstack: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-kinesis + artifactId: camel-quarkus-openstack schemes: - - id: aws2-kinesis + - id: openstack-nova http: false passive: false - - id: aws2-kinesis-firehose + - id: openstack-cinder http: false passive: false - javaTypes: - - org.apache.camel.component.aws2.kinesis.Kinesis2Component - - org.apache.camel.component.aws2.firehose.KinesisFirehose2Component - camel-quarkus-twitter: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-twitter - schemes: - - id: twitter-search + - id: openstack-keystone http: false passive: false - - id: twitter-timeline + - id: openstack-neutron http: false passive: false - - id: twitter-directmessage + - id: openstack-swift http: false passive: false - javaTypes: - - org.apache.camel.component.twitter.timeline.TwitterTimelineComponent - - org.apache.camel.component.twitter.search.TwitterSearchComponent - - org.apache.camel.component.twitter.directmessage.TwitterDirectMessageComponent - camel-quarkus-aws-swf: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-swf - schemes: - - id: aws-swf + - id: openstack-glance http: false passive: false javaTypes: - - org.apache.camel.component.aws.swf.SWFComponent - camel-quarkus-pubnub: + - org.apache.camel.component.openstack.cinder.CinderComponent + - org.apache.camel.component.openstack.keystone.KeystoneComponent + - org.apache.camel.component.openstack.neutron.NeutronComponent + - org.apache.camel.component.openstack.glance.GlanceComponent + - org.apache.camel.component.openstack.swift.SwiftComponent + - org.apache.camel.component.openstack.nova.NovaComponent + camel-quarkus-aws-kinesis: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pubnub + artifactId: camel-quarkus-aws-kinesis schemes: - - id: pubnub + - id: aws-kinesis http: false passive: false - javaTypes: - - org.apache.camel.component.pubnub.PubNubComponent - camel-quarkus-stub: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-stub - schemes: - - id: stub + - id: aws-kinesis-firehose http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.stub.StubComponent - camel-quarkus-aws2-sqs: + - org.apache.camel.component.aws.firehose.KinesisFirehoseComponent + - org.apache.camel.component.aws.kinesis.KinesisComponent + camel-quarkus-git: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-sqs + artifactId: camel-quarkus-git schemes: - - id: aws2-sqs + - id: git http: false passive: false javaTypes: - - org.apache.camel.component.aws2.sqs.Sqs2Component - camel-quarkus-jt400: + - org.apache.camel.component.git.GitComponent + camel-quarkus-servlet: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jt400 + artifactId: camel-quarkus-servlet schemes: - - id: jt400 - http: false + - id: servlet + http: true passive: false javaTypes: - - org.apache.camel.component.jt400.Jt400Component - camel-quarkus-iota: + - org.apache.camel.component.servlet.ServletComponent + camel-quarkus-freemarker: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-iota + artifactId: camel-quarkus-freemarker schemes: - - id: iota + - id: freemarker http: false passive: false javaTypes: - - org.apache.camel.component.iota.IOTAComponent - camel-quarkus-jsonapi: + - org.apache.camel.component.freemarker.FreemarkerComponent + camel-quarkus-soap: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jsonapi + artifactId: camel-quarkus-soap dataformats: - - jsonApi - javaTypes: - - org.apache.camel.component.jsonapi.JsonApiDataFormat - camel-quarkus-aws2-eks: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-eks - schemes: - - id: aws2-eks - http: false - passive: false + - soapjaxb javaTypes: - - org.apache.camel.component.aws2.eks.EKS2Component - camel-quarkus-weather: + - org.apache.camel.dataformat.soap.SoapJaxbDataFormat + camel-quarkus-arangodb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-weather + artifactId: camel-quarkus-arangodb schemes: - - id: weather + - id: arangodb http: false passive: false javaTypes: - - org.apache.camel.component.weather.WeatherComponent - camel-quarkus-scheduler: + - org.apache.camel.component.arangodb.ArangoDbComponent + camel-quarkus-google-mail: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-scheduler + artifactId: camel-quarkus-google-mail schemes: - - id: scheduler + - id: google-mail http: false passive: false - javaTypes: - - org.apache.camel.component.scheduler.SchedulerComponent - camel-quarkus-jaxb: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jaxb - dataformats: - - jaxb - javaTypes: - - org.apache.camel.converter.jaxb.JaxbDataFormat - camel-quarkus-jing: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jing - schemes: - - id: jing + - id: google-mail-stream http: false passive: false javaTypes: - - org.apache.camel.component.validator.jing.JingComponent - camel-quarkus-dataformat: + - org.apache.camel.component.google.mail.stream.GoogleMailStreamComponent + - org.apache.camel.component.google.mail.GoogleMailComponent + camel-quarkus-websocket-jsr356: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dataformat + artifactId: camel-quarkus-websocket-jsr356 schemes: - - id: dataformat + - id: websocket-jsr356 http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.dataformat.DataFormatComponent - camel-quarkus-jgroups: + - org.apache.camel.websocket.jsr356.JSR356WebSocketComponent + camel-quarkus-lumberjack: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jgroups + artifactId: camel-quarkus-lumberjack schemes: - - id: jgroups + - id: lumberjack http: false passive: false javaTypes: - - org.apache.camel.component.jgroups.JGroupsComponent - camel-quarkus-yammer: + - org.apache.camel.component.lumberjack.LumberjackComponent + camel-quarkus-json-validator: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-yammer + artifactId: camel-quarkus-json-validator schemes: - - id: yammer + - id: json-validator http: false passive: false javaTypes: - - org.apache.camel.component.yammer.YammerComponent - camel-quarkus-hbase: + - org.apache.camel.component.jsonvalidator.JsonValidatorComponent + camel-quarkus-aws2-s3: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-hbase + artifactId: camel-quarkus-aws2-s3 schemes: - - id: hbase + - id: aws2-s3 http: false passive: false javaTypes: - - org.apache.camel.component.hbase.HBaseComponent - camel-quarkus-aws-sdb: + - org.apache.camel.component.aws2.s3.AWS2S3Component + camel-quarkus-dropbox: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sdb + artifactId: camel-quarkus-dropbox schemes: - - id: aws-sdb + - id: dropbox http: false passive: false javaTypes: - - org.apache.camel.component.aws.sdb.SdbComponent - camel-quarkus-sap-netweaver: + - org.apache.camel.component.dropbox.DropboxComponent + camel-quarkus-google-bigquery: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sap-netweaver + artifactId: camel-quarkus-google-bigquery schemes: - - id: sap-netweaver + - id: google-bigquery + http: false + passive: false + - id: google-bigquery-sql http: false passive: false javaTypes: - - org.apache.camel.component.sap.netweaver.NetWeaverComponent - camel-quarkus-servicenow: + - org.apache.camel.component.google.bigquery.sql.GoogleBigQuerySQLComponent + - org.apache.camel.component.google.bigquery.GoogleBigQueryComponent + camel-quarkus-mail: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-servicenow + artifactId: camel-quarkus-mail schemes: - - id: servicenow + - id: smtps + http: false + passive: false + - id: pop3 + http: false + passive: false + - id: smtp + http: false + passive: false + - id: imaps + http: false + passive: false + - id: imap + http: false + passive: false + - id: pop3s http: false passive: false + dataformats: + - mime-multipart javaTypes: - - org.apache.camel.component.servicenow.ServiceNowComponent - camel-quarkus-grpc: + - org.apache.camel.dataformat.mime.multipart.MimeMultipartDataFormat + - org.apache.camel.component.mail.MailComponent + camel-quarkus-platform-http: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-grpc + artifactId: camel-quarkus-platform-http schemes: - - id: grpc + - id: platform-http http: true passive: false javaTypes: - - org.apache.camel.component.grpc.GrpcComponent - camel-quarkus-ipfs: + - org.apache.camel.component.platform.http.PlatformHttpComponent + camel-quarkus-timer: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ipfs + artifactId: camel-quarkus-timer schemes: - - id: ipfs + - id: timer http: false passive: false javaTypes: - - org.apache.camel.component.ipfs.IPFSComponent - camel-quarkus-aws-kms: + - org.apache.camel.component.timer.TimerComponent + camel-quarkus-digitalocean: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-kms + artifactId: camel-quarkus-digitalocean schemes: - - id: aws-kms + - id: digitalocean http: false passive: false javaTypes: - - org.apache.camel.component.aws.kms.KMSComponent - camel-quarkus-stax: + - org.apache.camel.component.digitalocean.DigitalOceanComponent + camel-quarkus-couchbase: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-stax + artifactId: camel-quarkus-couchbase schemes: - - id: stax + - id: couchbase http: false passive: false javaTypes: - - org.apache.camel.component.stax.StAXComponent - camel-quarkus-aws2-msk: + - org.apache.camel.component.couchbase.CouchbaseComponent + camel-quarkus-aws-sns: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-msk + artifactId: camel-quarkus-aws-sns schemes: - - id: aws2-msk + - id: aws-sns http: false passive: false javaTypes: - - org.apache.camel.component.aws2.msk.MSK2Component - camel-quarkus-debezium-sqlserver: + - org.apache.camel.component.aws.sns.SnsComponent + camel-quarkus-slack: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-debezium-sqlserver + artifactId: camel-quarkus-slack schemes: - - id: debezium-sqlserver + - id: slack http: false passive: false javaTypes: - - org.apache.camel.component.debezium.DebeziumSqlserverComponent - camel-quarkus-snakeyaml: + - org.apache.camel.component.slack.SlackComponent + camel-quarkus-flatpack: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-snakeyaml + artifactId: camel-quarkus-flatpack + schemes: + - id: flatpack + http: false + passive: false dataformats: - - yaml-snakeyaml + - flatpack javaTypes: - - org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat - camel-quarkus-fastjson: + - org.apache.camel.component.flatpack.FlatpackComponent + - org.apache.camel.dataformat.flatpack.FlatpackDataFormat + camel-quarkus-zipfile: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-fastjson + artifactId: camel-quarkus-zipfile dataformats: - - json-fastjson + - zipfile javaTypes: - - org.apache.camel.component.fastjson.FastjsonDataFormat - camel-quarkus-xj: + - org.apache.camel.dataformat.zipfile.ZipFileDataFormat + camel-quarkus-aws2-ecs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xj + artifactId: camel-quarkus-aws2-ecs schemes: - - id: xj + - id: aws2-ecs http: false passive: false javaTypes: - - org.apache.camel.component.xj.XJComponent - camel-quarkus-direct: + - org.apache.camel.component.aws2.ecs.ECS2Component + camel-quarkus-netty-http: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-direct + artifactId: camel-quarkus-netty-http schemes: - - id: direct - http: false - passive: true + - id: netty-http + http: true + passive: false javaTypes: - - org.apache.camel.component.direct.DirectComponent - camel-quarkus-bean: + - org.apache.camel.component.netty.http.NettyHttpComponent + camel-quarkus-influxdb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bean + artifactId: camel-quarkus-influxdb schemes: - - id: bean - http: false - passive: true - - id: class + - id: influxdb http: false - passive: true - languages: - - bean + passive: false javaTypes: - - org.apache.camel.component.beanclass.ClassComponent - - org.apache.camel.component.bean.BeanComponent - - org.apache.camel.language.bean.BeanLanguage - camel-quarkus-aws-s3: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-s3 + - org.apache.camel.component.influxdb.InfluxDbComponent + camel-k-kamelet: + groupId: org.apache.camel.k + artifactId: camel-k-kamelet schemes: - - id: aws-s3 + - id: kamelet http: false - passive: false - javaTypes: - - org.apache.camel.component.aws.s3.S3Component - camel-quarkus-grok: + passive: true + camel-quarkus-tagsoup: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-grok + artifactId: camel-quarkus-tagsoup dataformats: - - grok + - tidyMarkup javaTypes: - - org.apache.camel.component.grok.GrokDataFormat - camel-quarkus-couchdb: + - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat + camel-quarkus-protobuf: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-couchdb - schemes: - - id: couchdb - http: false - passive: false + artifactId: camel-quarkus-protobuf + dataformats: + - protobuf javaTypes: - - org.apache.camel.component.couchdb.CouchDbComponent - camel-quarkus-workday: + - org.apache.camel.dataformat.protobuf.ProtobufDataFormat + camel-quarkus-azure-storage-blob: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-workday + artifactId: camel-quarkus-azure-storage-blob schemes: - - id: workday + - id: azure-storage-blob http: false passive: false javaTypes: - - org.apache.camel.component.workday.WorkdayComponent - camel-quarkus-zip-deflater: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zip-deflater - dataformats: - - gzipdeflater - - zipdeflater - javaTypes: - - org.apache.camel.dataformat.deflater.ZipDeflaterDataFormat - - org.apache.camel.dataformat.deflater.GzipDeflaterDataFormat - camel-quarkus-smpp: + - org.apache.camel.component.azure.storage.blob.BlobComponent + camel-quarkus-asterisk: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-smpp + artifactId: camel-quarkus-asterisk schemes: - - id: smpps - http: false - passive: false - - id: smpp + - id: asterisk http: false passive: false javaTypes: - - org.apache.camel.component.smpp.SmppComponent - camel-quarkus-syslog: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-syslog - dataformats: - - syslog - javaTypes: - - org.apache.camel.component.syslog.SyslogDataFormat - camel-quarkus-aws-iam: + - org.apache.camel.component.asterisk.AsteriskComponent + camel-quarkus-microprofile-metrics: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-iam + artifactId: camel-quarkus-microprofile-metrics schemes: - - id: aws-iam + - id: microprofile-metrics http: false passive: false javaTypes: - - org.apache.camel.component.aws.iam.IAMComponent - camel-quarkus-debezium-postgres: + - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent + camel-quarkus-nats: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-debezium-postgres + artifactId: camel-quarkus-nats schemes: - - id: debezium-postgres + - id: nats http: false passive: false javaTypes: - - org.apache.camel.component.debezium.DebeziumPostgresComponent - camel-quarkus-flink: + - org.apache.camel.component.nats.NatsComponent + camel-quarkus-infinispan: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-flink + artifactId: camel-quarkus-infinispan schemes: - - id: flink + - id: infinispan http: false passive: false javaTypes: - - org.apache.camel.component.flink.FlinkComponent - camel-quarkus-amqp: + - org.apache.camel.component.infinispan.InfinispanComponent + camel-quarkus-base64: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-amqp + artifactId: camel-quarkus-base64 + dataformats: + - base64 + javaTypes: + - org.apache.camel.dataformat.base64.Base64DataFormat + camel-quarkus-exec: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-exec schemes: - - id: amqp + - id: exec http: false passive: false javaTypes: - - org.apache.camel.component.amqp.AMQPComponent - camel-quarkus-guava-eventbus: + - org.apache.camel.component.exec.ExecComponent + camel-quarkus-rss: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-guava-eventbus + artifactId: camel-quarkus-rss schemes: - - id: guava-eventbus + - id: rss http: false passive: false + dataformats: + - rss javaTypes: - - org.apache.camel.component.guava.eventbus.GuavaEventBusComponent - camel-quarkus-pulsar: + - org.apache.camel.component.rss.RssComponent + - org.apache.camel.dataformat.rss.RssDataFormat + camel-quarkus-gson: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pulsar + artifactId: camel-quarkus-gson + dataformats: + - json-gson + javaTypes: + - org.apache.camel.component.gson.GsonDataFormat + camel-quarkus-geocoder: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-geocoder schemes: - - id: pulsar + - id: geocoder http: false passive: false javaTypes: - - org.apache.camel.component.pulsar.PulsarComponent - camel-quarkus-jpa: + - org.apache.camel.component.geocoder.GeoCoderComponent + camel-quarkus-pgevent: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jpa + artifactId: camel-quarkus-pgevent schemes: - - id: jpa + - id: pgevent http: false passive: false javaTypes: - - org.apache.camel.component.jpa.JpaComponent - camel-quarkus-aws2-ddb: + - org.apache.camel.component.pgevent.PgEventComponent + camel-quarkus-atom: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-ddb + artifactId: camel-quarkus-atom schemes: - - id: aws2-ddb + - id: atom http: false passive: false - - id: aws2-ddbstream + javaTypes: + - org.apache.camel.component.atom.AtomComponent + camel-quarkus-soroush: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-soroush + schemes: + - id: soroush http: false passive: false javaTypes: - - org.apache.camel.component.aws2.ddb.Ddb2Component - - org.apache.camel.component.aws2.ddbstream.Ddb2StreamComponent - camel-quarkus-mock: + - org.apache.camel.component.soroushbot.component.SoroushBotComponent + camel-quarkus-drill: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mock + artifactId: camel-quarkus-drill schemes: - - id: mock + - id: drill http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.mock.MockComponent - camel-quarkus-iec60870: + - org.apache.camel.component.drill.DrillComponent + camel-quarkus-cometd: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-iec60870 + artifactId: camel-quarkus-cometd schemes: - - id: iec60870-server + - id: cometd http: false passive: false - - id: iec60870-client + - id: cometds http: false passive: false javaTypes: - - org.apache.camel.component.iec60870.client.ClientComponent - - org.apache.camel.component.iec60870.server.ServerComponent - camel-quarkus-weka: + - org.apache.camel.component.cometd.CometdComponent + camel-quarkus-chunk: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-weka + artifactId: camel-quarkus-chunk schemes: - - id: weka + - id: chunk http: false passive: false javaTypes: - - org.apache.camel.component.weka.WekaComponent - camel-quarkus-controlbus: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-controlbus + - org.apache.camel.component.chunk.ChunkComponent + camel-k-webhook: + groupId: org.apache.camel.k + artifactId: camel-k-webhook schemes: - - id: controlbus - http: false + - id: webhook + http: true passive: true - javaTypes: - - org.apache.camel.component.controlbus.ControlBusComponent - camel-quarkus-vertx: + camel-quarkus-dns: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-vertx + artifactId: camel-quarkus-dns schemes: - - id: vertx + - id: dns http: false passive: false javaTypes: - - org.apache.camel.component.vertx.VertxComponent - camel-quarkus-jdbc: + - org.apache.camel.component.dns.DnsComponent + camel-quarkus-mongodb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jdbc + artifactId: camel-quarkus-mongodb schemes: - - id: jdbc + - id: mongodb http: false passive: false javaTypes: - - org.apache.camel.component.jdbc.JdbcComponent - camel-quarkus-consul: + - org.apache.camel.component.mongodb.MongoDbComponent + camel-quarkus-jgroups-raft: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-consul + artifactId: camel-quarkus-jgroups-raft schemes: - - id: consul + - id: jgroups-raft http: false passive: false javaTypes: - - org.apache.camel.component.consul.ConsulComponent - camel-quarkus-ognl: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ognl - languages: - - ognl - javaTypes: - - org.apache.camel.language.ognl.OgnlLanguage - camel-quarkus-facebook: + - org.apache.camel.component.jgroups.raft.JGroupsRaftComponent + camel-quarkus-cassandraql: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-facebook + artifactId: camel-quarkus-cassandraql schemes: - - id: facebook + - id: cql http: false passive: false javaTypes: - - org.apache.camel.component.facebook.FacebookComponent - camel-quarkus-xpath: + - org.apache.camel.component.cassandra.CassandraComponent + camel-quarkus-ical: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xpath - languages: - - xpath + artifactId: camel-quarkus-ical + dataformats: + - ical javaTypes: - - org.apache.camel.language.xpath.XPathLanguage - camel-quarkus-nsq: + - org.apache.camel.component.ical.ICalDataFormat + camel-quarkus-sjms: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-nsq + artifactId: camel-quarkus-sjms schemes: - - id: nsq + - id: sjms-batch + http: false + passive: false + - id: sjms http: false passive: false javaTypes: - - org.apache.camel.component.nsq.NsqComponent - camel-quarkus-jsonb: + - org.apache.camel.component.sjms.SjmsComponent + - org.apache.camel.component.sjms.batch.SjmsBatchComponent + camel-quarkus-google-drive: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jsonb - dataformats: - - json-jsonb + artifactId: camel-quarkus-google-drive + schemes: + - id: google-drive + http: false + passive: false javaTypes: - - org.apache.camel.component.jsonb.JsonbDataFormat - camel-quarkus-aws2-sns: + - org.apache.camel.component.google.drive.GoogleDriveComponent + camel-quarkus-splunk: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-sns + artifactId: camel-quarkus-splunk schemes: - - id: aws2-sns + - id: splunk http: false passive: false javaTypes: - - org.apache.camel.component.aws2.sns.Sns2Component - camel-quarkus-mvel: + - org.apache.camel.component.splunk.SplunkComponent + camel-quarkus-dozer: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mvel + artifactId: camel-quarkus-dozer schemes: - - id: mvel + - id: dozer http: false passive: false - languages: - - mvel javaTypes: - - org.apache.camel.component.mvel.MvelComponent - - org.apache.camel.language.mvel.MvelLanguage - camel-quarkus-univocity-parsers: + - org.apache.camel.component.dozer.DozerComponent + camel-quarkus-aws-eks: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-univocity-parsers - dataformats: - - univocity-csv - - univocity-tsv - - univocity-fixed + artifactId: camel-quarkus-aws-eks + schemes: + - id: aws-eks + http: false + passive: false javaTypes: - - org.apache.camel.dataformat.univocity.UniVocityFixedWidthDataFormat - - org.apache.camel.dataformat.univocity.UniVocityCsvDataFormat - - org.apache.camel.dataformat.univocity.UniVocityTsvDataFormat - camel-quarkus-ref: + - org.apache.camel.component.aws.eks.EKSComponent + camel-quarkus-seda: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ref + artifactId: camel-quarkus-seda schemes: - - id: ref + - id: seda http: false passive: true javaTypes: - - org.apache.camel.component.ref.RefComponent - camel-quarkus-lzf: + - org.apache.camel.component.seda.SedaComponent + camel-quarkus-nitrite: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-lzf - dataformats: - - lzf - javaTypes: - - org.apache.camel.dataformat.lzf.LZFDataFormat - camel-quarkus-paho: + artifactId: camel-quarkus-nitrite + schemes: + - id: nitrite + http: false + passive: false + javaTypes: + - org.apache.camel.component.nitrite.NitriteComponent + camel-quarkus-activemq: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-paho + artifactId: camel-quarkus-activemq schemes: - - id: paho + - id: activemq http: false passive: false javaTypes: - - org.apache.camel.component.paho.PahoComponent - camel-quarkus-vm: + - org.apache.camel.component.activemq.ActiveMQComponent + camel-quarkus-twilio: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-vm + artifactId: camel-quarkus-twilio schemes: - - id: vm + - id: twilio http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.vm.VmComponent - camel-quarkus-bindy: + - org.apache.camel.component.twilio.TwilioComponent + camel-quarkus-zendesk: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-bindy - dataformats: - - bindy-csv - - bindy-fixed - - bindy-kvp + artifactId: camel-quarkus-zendesk + schemes: + - id: zendesk + http: false + passive: false javaTypes: - - org.apache.camel.dataformat.bindy.csv.BindyCsvDataFormat - - org.apache.camel.dataformat.bindy.fixed.BindyFixedLengthDataFormat - - org.apache.camel.dataformat.bindy.kvp.BindyKeyValuePairDataFormat - camel-quarkus-jslt: + - org.apache.camel.component.zendesk.ZendeskComponent + camel-quarkus-braintree: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jslt + artifactId: camel-quarkus-braintree schemes: - - id: jslt + - id: braintree http: false passive: false javaTypes: - - org.apache.camel.component.jslt.JsltComponent - camel-quarkus-apns: + - org.apache.camel.component.braintree.BraintreeComponent + camel-quarkus-aws-sqs: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-apns + artifactId: camel-quarkus-aws-sqs schemes: - - id: apns + - id: aws-sqs http: false passive: false javaTypes: - - org.apache.camel.component.apns.ApnsComponent - camel-quarkus-optaplanner: + - org.apache.camel.component.aws.sqs.SqsComponent + camel-quarkus-olingo4: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-optaplanner + artifactId: camel-quarkus-olingo4 schemes: - - id: optaplanner + - id: olingo4 http: false passive: false javaTypes: - - org.apache.camel.component.optaplanner.OptaPlannerComponent - camel-quarkus-xstream: + - org.apache.camel.component.olingo4.Olingo4Component + camel-quarkus-zookeeper: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xstream - dataformats: - - json-xstream - - xstream + artifactId: camel-quarkus-zookeeper + schemes: + - id: zookeeper + http: false + passive: false javaTypes: - - org.apache.camel.dataformat.xstream.XStreamDataFormat - - org.apache.camel.dataformat.xstream.JsonDataFormat - camel-quarkus-debezium-mongodb: + - org.apache.camel.component.zookeeper.ZooKeeperComponent + camel-quarkus-sjms2: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-debezium-mongodb + artifactId: camel-quarkus-sjms2 schemes: - - id: debezium-mongodb + - id: sjms2 http: false passive: false javaTypes: - - org.apache.camel.component.debezium.DebeziumMongodbComponent - camel-quarkus-jacksonxml: + - org.apache.camel.component.sjms2.Sjms2Component + camel-quarkus-ldap: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jacksonxml - dataformats: - - jacksonxml + artifactId: camel-quarkus-ldap + schemes: + - id: ldap + http: false + passive: false javaTypes: - - org.apache.camel.component.jacksonxml.JacksonXMLDataFormat - camel-quarkus-zookeeper-master: + - org.apache.camel.component.ldap.LdapComponent + camel-quarkus-xchange: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zookeeper-master + artifactId: camel-quarkus-xchange schemes: - - id: zookeeper-master + - id: xchange http: false passive: false javaTypes: - - org.apache.camel.component.zookeepermaster.MasterComponent - camel-k-knative: + - org.apache.camel.component.xchange.XChangeComponent + camel-k-kamelet-reify: groupId: org.apache.camel.k - artifactId: camel-k-knative + artifactId: camel-k-kamelet-reify schemes: - - id: knative - http: true + - id: wrap + http: false passive: false - producer: - dependencies: - - groupId: org.apache.camel.k - artifactId: camel-k-knative-producer - consumer: - dependencies: - - groupId: org.apache.camel.k - artifactId: camel-k-knative-consumer - camel-quarkus-language: + camel-quarkus-atmos: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-language + artifactId: camel-quarkus-atmos schemes: - - id: language + - id: atmos http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.language.LanguageComponent - camel-quarkus-schematron: + - org.apache.camel.component.atmos.AtmosComponent + camel-quarkus-as2: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-schematron + artifactId: camel-quarkus-as2 schemes: - - id: schematron + - id: as2 http: false passive: false javaTypes: - - org.apache.camel.component.schematron.SchematronComponent - camel-quarkus-asn1: + - org.apache.camel.component.as2.AS2Component + camel-quarkus-etcd: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-asn1 - dataformats: - - asn1 + artifactId: camel-quarkus-etcd + schemes: + - id: etcd-keys + http: false + passive: false + - id: etcd-stats + http: false + passive: false + - id: etcd-watch + http: false + passive: false javaTypes: - - org.apache.camel.dataformat.asn1.ASN1DataFormat - camel-quarkus-aws2-cw: + - org.apache.camel.component.etcd.EtcdWatchComponent + - org.apache.camel.component.etcd.EtcdStatsComponent + - org.apache.camel.component.etcd.EtcdKeysComponent + camel-quarkus-quartz: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws2-cw + artifactId: camel-quarkus-quartz schemes: - - id: aws2-cw + - id: quartz http: false passive: false javaTypes: - - org.apache.camel.component.aws2.cw.Cw2Component - camel-quarkus-sip: + - org.apache.camel.component.quartz.QuartzComponent + camel-quarkus-pg-replication-slot: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sip + artifactId: camel-quarkus-pg-replication-slot schemes: - - id: sips + - id: pg-replication-slot http: false passive: false - - id: sip + javaTypes: + - org.apache.camel.component.pg.replication.slot.PgReplicationSlotComponent + camel-quarkus-jms: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-jms + schemes: + - id: jms http: false passive: false javaTypes: - - org.apache.camel.component.sip.SipComponent + - org.apache.camel.component.jms.JmsComponent camel-quarkus-thrift: groupId: org.apache.camel.quarkus artifactId: camel-quarkus-thrift @@ -2482,452 +2391,536 @@ spec: dataformats: - thrift javaTypes: - - org.apache.camel.dataformat.thrift.ThriftDataFormat - org.apache.camel.component.thrift.ThriftComponent - camel-quarkus-jms: + - org.apache.camel.dataformat.thrift.ThriftDataFormat + camel-quarkus-sip: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jms + artifactId: camel-quarkus-sip schemes: - - id: jms + - id: sip http: false passive: false - javaTypes: - - org.apache.camel.component.jms.JmsComponent - camel-quarkus-pg-replication-slot: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pg-replication-slot - schemes: - - id: pg-replication-slot + - id: sips http: false passive: false javaTypes: - - org.apache.camel.component.pg.replication.slot.PgReplicationSlotComponent - camel-quarkus-quartz: + - org.apache.camel.component.sip.SipComponent + camel-quarkus-aws2-cw: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-quartz + artifactId: camel-quarkus-aws2-cw schemes: - - id: quartz + - id: aws2-cw http: false passive: false javaTypes: - - org.apache.camel.component.quartz.QuartzComponent - camel-quarkus-etcd: + - org.apache.camel.component.aws2.cw.Cw2Component + camel-quarkus-asn1: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-etcd + artifactId: camel-quarkus-asn1 + dataformats: + - asn1 + javaTypes: + - org.apache.camel.dataformat.asn1.ASN1DataFormat + camel-quarkus-schematron: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-schematron schemes: - - id: etcd-watch - http: false - passive: false - - id: etcd-stats - http: false - passive: false - - id: etcd-keys + - id: schematron http: false passive: false javaTypes: - - org.apache.camel.component.etcd.EtcdKeysComponent - - org.apache.camel.component.etcd.EtcdStatsComponent - - org.apache.camel.component.etcd.EtcdWatchComponent - camel-quarkus-as2: + - org.apache.camel.component.schematron.SchematronComponent + camel-quarkus-language: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-as2 + artifactId: camel-quarkus-language schemes: - - id: as2 + - id: language http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.as2.AS2Component - camel-quarkus-atmos: + - org.apache.camel.component.language.LanguageComponent + camel-k-knative: + groupId: org.apache.camel.k + artifactId: camel-k-knative + schemes: + - id: knative + http: true + passive: false + producer: + dependencies: + - groupId: org.apache.camel.k + artifactId: camel-k-knative-producer + consumer: + dependencies: + - groupId: org.apache.camel.k + artifactId: camel-k-knative-consumer + camel-quarkus-zookeeper-master: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-atmos + artifactId: camel-quarkus-zookeeper-master schemes: - - id: atmos + - id: zookeeper-master http: false passive: false javaTypes: - - org.apache.camel.component.atmos.AtmosComponent - camel-k-kamelet-reify: - groupId: org.apache.camel.k - artifactId: camel-k-kamelet-reify - schemes: - - id: wrap - http: false - passive: false - camel-quarkus-xchange: + - org.apache.camel.component.zookeepermaster.MasterComponent + camel-quarkus-jacksonxml: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-xchange + artifactId: camel-quarkus-jacksonxml + dataformats: + - jacksonxml + javaTypes: + - org.apache.camel.component.jacksonxml.JacksonXMLDataFormat + camel-quarkus-debezium-mongodb: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-debezium-mongodb schemes: - - id: xchange + - id: debezium-mongodb http: false passive: false javaTypes: - - org.apache.camel.component.xchange.XChangeComponent - camel-quarkus-ldap: + - org.apache.camel.component.debezium.DebeziumMongodbComponent + camel-quarkus-xstream: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ldap + artifactId: camel-quarkus-xstream + dataformats: + - xstream + - json-xstream + javaTypes: + - org.apache.camel.dataformat.xstream.JsonDataFormat + - org.apache.camel.dataformat.xstream.XStreamDataFormat + camel-quarkus-optaplanner: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-optaplanner schemes: - - id: ldap + - id: optaplanner http: false passive: false javaTypes: - - org.apache.camel.component.ldap.LdapComponent - camel-quarkus-sjms2: + - org.apache.camel.component.optaplanner.OptaPlannerComponent + camel-quarkus-apns: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sjms2 + artifactId: camel-quarkus-apns schemes: - - id: sjms2 + - id: apns http: false passive: false javaTypes: - - org.apache.camel.component.sjms2.Sjms2Component - camel-quarkus-zookeeper: + - org.apache.camel.component.apns.ApnsComponent + camel-quarkus-jslt: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zookeeper + artifactId: camel-quarkus-jslt schemes: - - id: zookeeper + - id: jslt http: false passive: false javaTypes: - - org.apache.camel.component.zookeeper.ZooKeeperComponent - camel-quarkus-olingo4: + - org.apache.camel.component.jslt.JsltComponent + camel-quarkus-bindy: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-olingo4 + artifactId: camel-quarkus-bindy + dataformats: + - bindy-kvp + - bindy-fixed + - bindy-csv + javaTypes: + - org.apache.camel.dataformat.bindy.kvp.BindyKeyValuePairDataFormat + - org.apache.camel.dataformat.bindy.fixed.BindyFixedLengthDataFormat + - org.apache.camel.dataformat.bindy.csv.BindyCsvDataFormat + camel-quarkus-vm: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-vm schemes: - - id: olingo4 + - id: vm http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.olingo4.Olingo4Component - camel-quarkus-aws-sqs: + - org.apache.camel.component.vm.VmComponent + camel-quarkus-paho: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-sqs + artifactId: camel-quarkus-paho schemes: - - id: aws-sqs + - id: paho http: false passive: false javaTypes: - - org.apache.camel.component.aws.sqs.SqsComponent - camel-quarkus-braintree: + - org.apache.camel.component.paho.PahoComponent + camel-quarkus-lzf: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-braintree + artifactId: camel-quarkus-lzf + dataformats: + - lzf + javaTypes: + - org.apache.camel.dataformat.lzf.LZFDataFormat + camel-quarkus-ref: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-ref schemes: - - id: braintree + - id: ref http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.braintree.BraintreeComponent - camel-quarkus-zendesk: + - org.apache.camel.component.ref.RefComponent + camel-quarkus-univocity-parsers: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-zendesk + artifactId: camel-quarkus-univocity-parsers + dataformats: + - univocity-fixed + - univocity-tsv + - univocity-csv + javaTypes: + - org.apache.camel.dataformat.univocity.UniVocityTsvDataFormat + - org.apache.camel.dataformat.univocity.UniVocityCsvDataFormat + - org.apache.camel.dataformat.univocity.UniVocityFixedWidthDataFormat + camel-quarkus-mvel: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-mvel schemes: - - id: zendesk + - id: mvel http: false passive: false + languages: + - mvel javaTypes: - - org.apache.camel.component.zendesk.ZendeskComponent - camel-quarkus-twilio: + - org.apache.camel.language.mvel.MvelLanguage + - org.apache.camel.component.mvel.MvelComponent + camel-quarkus-aws2-sns: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-twilio + artifactId: camel-quarkus-aws2-sns schemes: - - id: twilio + - id: aws2-sns http: false passive: false javaTypes: - - org.apache.camel.component.twilio.TwilioComponent - camel-quarkus-activemq: + - org.apache.camel.component.aws2.sns.Sns2Component + camel-quarkus-jsonb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-activemq + artifactId: camel-quarkus-jsonb + dataformats: + - json-jsonb + javaTypes: + - org.apache.camel.component.jsonb.JsonbDataFormat + camel-quarkus-nsq: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-nsq schemes: - - id: activemq + - id: nsq http: false passive: false javaTypes: - - org.apache.camel.component.activemq.ActiveMQComponent - camel-quarkus-nitrite: + - org.apache.camel.component.nsq.NsqComponent + camel-quarkus-xpath: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-nitrite + artifactId: camel-quarkus-xpath + languages: + - xpath + javaTypes: + - org.apache.camel.language.xpath.XPathLanguage + camel-quarkus-facebook: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-facebook schemes: - - id: nitrite + - id: facebook http: false passive: false javaTypes: - - org.apache.camel.component.nitrite.NitriteComponent - camel-quarkus-seda: + - org.apache.camel.component.facebook.FacebookComponent + camel-quarkus-ognl: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-seda + artifactId: camel-quarkus-ognl + languages: + - ognl + javaTypes: + - org.apache.camel.language.ognl.OgnlLanguage + camel-quarkus-consul: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-consul schemes: - - id: seda + - id: consul http: false - passive: true + passive: false javaTypes: - - org.apache.camel.component.seda.SedaComponent - camel-quarkus-aws-eks: + - org.apache.camel.component.consul.ConsulComponent + camel-quarkus-jdbc: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-aws-eks + artifactId: camel-quarkus-jdbc schemes: - - id: aws-eks + - id: jdbc http: false passive: false javaTypes: - - org.apache.camel.component.aws.eks.EKSComponent - camel-quarkus-dozer: + - org.apache.camel.component.jdbc.JdbcComponent + camel-quarkus-vertx: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dozer + artifactId: camel-quarkus-vertx schemes: - - id: dozer + - id: vertx http: false passive: false javaTypes: - - org.apache.camel.component.dozer.DozerComponent - camel-quarkus-splunk: + - org.apache.camel.component.vertx.VertxComponent + camel-quarkus-controlbus: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-splunk + artifactId: camel-quarkus-controlbus schemes: - - id: splunk + - id: controlbus http: false - passive: false + passive: true javaTypes: - - org.apache.camel.component.splunk.SplunkComponent - camel-quarkus-google-drive: + - org.apache.camel.component.controlbus.ControlBusComponent + camel-quarkus-weka: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-google-drive + artifactId: camel-quarkus-weka schemes: - - id: google-drive + - id: weka http: false passive: false javaTypes: - - org.apache.camel.component.google.drive.GoogleDriveComponent - camel-quarkus-sjms: + - org.apache.camel.component.weka.WekaComponent + camel-quarkus-iec60870: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-sjms + artifactId: camel-quarkus-iec60870 schemes: - - id: sjms + - id: iec60870-client http: false passive: false - - id: sjms-batch + - id: iec60870-server http: false passive: false javaTypes: - - org.apache.camel.component.sjms.batch.SjmsBatchComponent - - org.apache.camel.component.sjms.SjmsComponent - camel-quarkus-ical: + - org.apache.camel.component.iec60870.server.ServerComponent + - org.apache.camel.component.iec60870.client.ClientComponent + camel-quarkus-mock: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-ical - dataformats: - - ical + artifactId: camel-quarkus-mock + schemes: + - id: mock + http: false + passive: true javaTypes: - - org.apache.camel.component.ical.ICalDataFormat - camel-quarkus-cassandraql: + - org.apache.camel.component.mock.MockComponent + camel-quarkus-aws2-ddb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-cassandraql + artifactId: camel-quarkus-aws2-ddb schemes: - - id: cql + - id: aws2-ddbstream + http: false + passive: false + - id: aws2-ddb http: false passive: false javaTypes: - - org.apache.camel.component.cassandra.CassandraComponent - camel-quarkus-jgroups-raft: + - org.apache.camel.component.aws2.ddbstream.Ddb2StreamComponent + - org.apache.camel.component.aws2.ddb.Ddb2Component + camel-quarkus-jpa: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-jgroups-raft + artifactId: camel-quarkus-jpa schemes: - - id: jgroups-raft + - id: jpa http: false passive: false javaTypes: - - org.apache.camel.component.jgroups.raft.JGroupsRaftComponent - camel-quarkus-mongodb: + - org.apache.camel.component.jpa.JpaComponent + camel-quarkus-pulsar: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-mongodb + artifactId: camel-quarkus-pulsar schemes: - - id: mongodb + - id: pulsar http: false passive: false javaTypes: - - org.apache.camel.component.mongodb.MongoDbComponent - camel-quarkus-dns: + - org.apache.camel.component.pulsar.PulsarComponent + camel-quarkus-guava-eventbus: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-dns + artifactId: camel-quarkus-guava-eventbus schemes: - - id: dns + - id: guava-eventbus http: false passive: false javaTypes: - - org.apache.camel.component.dns.DnsComponent - camel-k-webhook: - groupId: org.apache.camel.k - artifactId: camel-k-webhook - schemes: - - id: webhook - http: true - passive: true - camel-quarkus-chunk: + - org.apache.camel.component.guava.eventbus.GuavaEventBusComponent + camel-quarkus-amqp: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-chunk + artifactId: camel-quarkus-amqp schemes: - - id: chunk + - id: amqp http: false passive: false javaTypes: - - org.apache.camel.component.chunk.ChunkComponent - camel-quarkus-cometd: + - org.apache.camel.component.amqp.AMQPComponent + camel-quarkus-flink: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-cometd + artifactId: camel-quarkus-flink schemes: - - id: cometds - http: false - passive: false - - id: cometd + - id: flink http: false passive: false javaTypes: - - org.apache.camel.component.cometd.CometdComponent - camel-quarkus-drill: + - org.apache.camel.component.flink.FlinkComponent + camel-quarkus-debezium-postgres: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-drill + artifactId: camel-quarkus-debezium-postgres schemes: - - id: drill + - id: debezium-postgres http: false passive: false javaTypes: - - org.apache.camel.component.drill.DrillComponent - camel-quarkus-soroush: + - org.apache.camel.component.debezium.DebeziumPostgresComponent + camel-quarkus-aws-iam: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-soroush + artifactId: camel-quarkus-aws-iam schemes: - - id: soroush + - id: aws-iam http: false passive: false javaTypes: - - org.apache.camel.component.soroushbot.component.SoroushBotComponent - camel-quarkus-atom: + - org.apache.camel.component.aws.iam.IAMComponent + camel-quarkus-syslog: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-atom + artifactId: camel-quarkus-syslog + dataformats: + - syslog + javaTypes: + - org.apache.camel.component.syslog.SyslogDataFormat + camel-quarkus-smpp: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-smpp schemes: - - id: atom + - id: smpp + http: false + passive: false + - id: smpps http: false passive: false javaTypes: - - org.apache.camel.component.atom.AtomComponent - camel-quarkus-pgevent: + - org.apache.camel.component.smpp.SmppComponent + camel-quarkus-zip-deflater: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-pgevent + artifactId: camel-quarkus-zip-deflater + dataformats: + - zipdeflater + - gzipdeflater + javaTypes: + - org.apache.camel.dataformat.deflater.GzipDeflaterDataFormat + - org.apache.camel.dataformat.deflater.ZipDeflaterDataFormat + camel-quarkus-workday: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-workday schemes: - - id: pgevent + - id: workday http: false passive: false javaTypes: - - org.apache.camel.component.pgevent.PgEventComponent - camel-quarkus-geocoder: + - org.apache.camel.component.workday.WorkdayComponent + camel-quarkus-couchdb: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-geocoder + artifactId: camel-quarkus-couchdb schemes: - - id: geocoder + - id: couchdb http: false passive: false javaTypes: - - org.apache.camel.component.geocoder.GeoCoderComponent - camel-quarkus-gson: + - org.apache.camel.component.couchdb.CouchDbComponent + camel-quarkus-grok: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-gson + artifactId: camel-quarkus-grok dataformats: - - json-gson + - grok javaTypes: - - org.apache.camel.component.gson.GsonDataFormat - camel-quarkus-rss: + - org.apache.camel.component.grok.GrokDataFormat + camel-quarkus-aws-s3: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-rss + artifactId: camel-quarkus-aws-s3 schemes: - - id: rss + - id: aws-s3 http: false passive: false - dataformats: - - rss javaTypes: - - org.apache.camel.dataformat.rss.RssDataFormat - - org.apache.camel.component.rss.RssComponent - camel-quarkus-exec: + - org.apache.camel.component.aws.s3.S3Component + camel-quarkus-bean: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-exec + artifactId: camel-quarkus-bean schemes: - - id: exec + - id: bean http: false - passive: false + passive: true + - id: class + http: false + passive: true + languages: + - bean javaTypes: - - org.apache.camel.component.exec.ExecComponent - camel-quarkus-base64: + - org.apache.camel.language.bean.BeanLanguage + - org.apache.camel.component.bean.BeanComponent + - org.apache.camel.component.beanclass.ClassComponent + camel-quarkus-direct: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-base64 - dataformats: - - base64 + artifactId: camel-quarkus-direct + schemes: + - id: direct + http: false + passive: true javaTypes: - - org.apache.camel.dataformat.base64.Base64DataFormat - camel-quarkus-infinispan: + - org.apache.camel.component.direct.DirectComponent + camel-quarkus-xj: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-infinispan + artifactId: camel-quarkus-xj schemes: - - id: infinispan + - id: xj http: false passive: false javaTypes: - - org.apache.camel.component.infinispan.InfinispanComponent - camel-quarkus-nats: + - org.apache.camel.component.xj.XJComponent + camel-quarkus-fastjson: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-nats + artifactId: camel-quarkus-fastjson + dataformats: + - json-fastjson + javaTypes: + - org.apache.camel.component.fastjson.FastjsonDataFormat + camel-quarkus-snakeyaml: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-snakeyaml + dataformats: + - yaml-snakeyaml + javaTypes: + - org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat + camel-quarkus-debezium-sqlserver: + groupId: org.apache.camel.quarkus + artifactId: camel-quarkus-debezium-sqlserver schemes: - - id: nats + - id: debezium-sqlserver http: false passive: false javaTypes: - - org.apache.camel.component.nats.NatsComponent - camel-quarkus-microprofile-metrics: + - org.apache.camel.component.debezium.DebeziumSqlserverComponent + camel-quarkus-aws2-msk: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-microprofile-metrics + artifactId: camel-quarkus-aws2-msk schemes: - - id: microprofile-metrics + - id: aws2-msk http: false passive: false javaTypes: - - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent - camel-quarkus-asterisk: + - org.apache.camel.component.aws2.msk.MSK2Component + camel-quarkus-stax: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-asterisk + artifactId: camel-quarkus-stax schemes: - - id: asterisk + - id: stax http: false passive: false javaTypes: - - org.apache.camel.component.asterisk.AsteriskComponent - camel-quarkus-azure-storage-blob: + - org.apache.camel.component.stax.StAXComponent + camel-quarkus-aws-kms: groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-azure-storage-blob + artifactId: camel-quarkus-aws-kms schemes: - - id: azure-storage-blob + - id: aws-kms http: false passive: false javaTypes: - - org.apache.camel.component.azure.storage.blob.BlobComponent - camel-quarkus-protobuf: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-protobuf - dataformats: - - protobuf - javaTypes: - - org.apache.camel.dataformat.protobuf.ProtobufDataFormat - camel-quarkus-tagsoup: - groupId: org.apache.camel.quarkus - artifactId: camel-quarkus-tagsoup - dataformats: - - tidyMarkup - javaTypes: - - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat + - org.apache.camel.component.aws.kms.KMSComponent loaders: - java: - groupId: org.apache.camel.k - artifactId: camel-k-loader-java - languages: - - java - metadata: - native: "false" xml: groupId: org.apache.camel.k artifactId: camel-k-loader-xml @@ -2935,18 +2928,18 @@ spec: - xml metadata: native: "true" - js: + java: groupId: org.apache.camel.k - artifactId: camel-k-loader-js + artifactId: camel-k-loader-java languages: - - js + - java metadata: - native: "true" - kts: + native: "false" + groovy: groupId: org.apache.camel.k - artifactId: camel-k-loader-kotlin + artifactId: camel-k-loader-groovy languages: - - kts + - groovy metadata: native: "false" yaml: @@ -2956,10 +2949,17 @@ spec: - yaml metadata: native: "true" - groovy: + kts: groupId: org.apache.camel.k - artifactId: camel-k-loader-groovy + artifactId: camel-k-loader-kotlin languages: - - groovy + - kts metadata: native: "false" + js: + groupId: org.apache.camel.k + artifactId: camel-k-loader-js + languages: + - js + metadata: + native: "true" diff --git a/deploy/olm-catalog/camel-k-dev/1.4.0-snapshot/camel.apache.org_kameletbindings.yaml b/deploy/olm-catalog/camel-k-dev/1.4.0-snapshot/camel.apache.org_kameletbindings.yaml index 9ae1705262..5a427b5af4 100644 --- a/deploy/olm-catalog/camel-k-dev/1.4.0-snapshot/camel.apache.org_kameletbindings.yaml +++ b/deploy/olm-catalog/camel-k-dev/1.4.0-snapshot/camel.apache.org_kameletbindings.yaml @@ -617,6 +617,226 @@ spec: endpoint explicitly type: string type: object + steps: + description: Steps contains an optional list of intermediate steps + that are executed between the Source and the Sink + items: + description: Endpoint represents a source/sink external entity + properties: + properties: + description: Properties are a key value representation of endpoint + properties + type: object + x-kubernetes-preserve-unknown-fields: true + ref: + description: Ref can be used to declare a Kubernetes resource + as source/sink endpoint + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead + of an entire object, this string should contain a valid + JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container + within a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that + triggered the event) or if no container name is specified + "spec.containers[2]" (container with index 2 in this pod). + This syntax is chosen only to have some well-defined way + of referencing a part of an object. TODO: this design + is not final and this field is subject to change in the + future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + types: + additionalProperties: + properties: + mediaType: + type: string + schema: + description: JSONSchemaProps is a JSON-Schema following + Specification Draft 4 (http://json-schema.org/). + properties: + $schema: + description: JSONSchemaURL represents a schema url. + type: string + description: + type: string + example: + description: 'JSON represents any valid JSON value. + These types are supported: bool, int64, float64, + string, []interface{}, map[string]interface{} and + nil.' + x-kubernetes-preserve-unknown-fields: true + externalDocs: + description: ExternalDocumentation allows referencing + an external resource for extended documentation. + properties: + description: + type: string + url: + type: string + type: object + id: + type: string + properties: + additionalProperties: + properties: + default: + description: default is a default value for + undefined object fields. + x-kubernetes-preserve-unknown-fields: true + description: + type: string + enum: + items: + description: 'JSON represents any valid JSON + value. These types are supported: bool, + int64, float64, string, []interface{}, map[string]interface{} + and nil.' + x-kubernetes-preserve-unknown-fields: true + type: array + example: + description: 'JSON represents any valid JSON + value. These types are supported: bool, int64, + float64, string, []interface{}, map[string]interface{} + and nil.' + x-kubernetes-preserve-unknown-fields: true + exclusiveMaximum: + type: boolean + exclusiveMinimum: + type: boolean + format: + description: "format is an OpenAPI v3 format + string. Unknown formats are ignored. The following + formats are validated: \n - bsonobjectid: + a bson object ID, i.e. a 24 characters hex + string - uri: an URI as parsed by Golang net/url.ParseRequestURI + - email: an email address as parsed by Golang + net/mail.ParseAddress - hostname: a valid + representation for an Internet host name, + as defined by RFC 1034, section 3.1 [RFC1034]. + - ipv4: an IPv4 IP as parsed by Golang net.ParseIP + - ipv6: an IPv6 IP as parsed by Golang net.ParseIP + - cidr: a CIDR as parsed by Golang net.ParseCIDR + - mac: a MAC address as parsed by Golang net.ParseMAC + - uuid: an UUID that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ + - uuid3: an UUID3 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ + - uuid4: an UUID4 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ + - uuid5: an UUID5 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ + - isbn: an ISBN10 or ISBN13 number string + like \"0321751043\" or \"978-0321751041\" + - isbn10: an ISBN10 number string like \"0321751043\" + - isbn13: an ISBN13 number string like \"978-0321751041\" + - creditcard: a credit card number defined + by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\\\d{3})\\\\d{11})$ + with any non digit characters mixed in - ssn: + a U.S. social security number following the + regex ^\\\\d{3}[- ]?\\\\d{2}[- ]?\\\\d{4}$ + - hexcolor: an hexadecimal color code like + \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ + - rgbcolor: an RGB color code like rgb like + \"rgb(255,255,2559\" - byte: base64 encoded + binary data - password: any kind of string + - date: a date string like \"2006-01-02\" + as defined by full-date in RFC3339 - duration: + a duration string like \"22 ns\" as parsed + by Golang time.ParseDuration or compatible + with Scala duration format - datetime: a date + time string like \"2014-12-15T19:30:20.000Z\" + as defined by date-time in RFC3339." + type: string + id: + type: string + maxItems: + format: int64 + type: integer + maxLength: + format: int64 + type: integer + maxProperties: + format: int64 + type: integer + maximum: + description: A Number represents a JSON number + literal. + type: string + minItems: + format: int64 + type: integer + minLength: + format: int64 + type: integer + minProperties: + format: int64 + type: integer + minimum: + description: A Number represents a JSON number + literal. + type: string + multipleOf: + description: A Number represents a JSON number + literal. + type: string + nullable: + type: boolean + pattern: + type: string + title: + type: string + type: + type: string + uniqueItems: + type: boolean + x-descriptors: + description: The list of descriptors that determine + which UI components to use on different views + items: + type: string + type: array + type: object + type: object + required: + items: + type: string + type: array + title: + type: string + type: + type: string + type: object + type: object + description: Types defines the schema of the data produced/consumed + by the endpoint + type: object + uri: + description: URI can alternatively be used to specify the (Camel) + endpoint explicitly + type: string + type: object + type: array type: object status: description: KameletBindingStatus -- diff --git a/e2e/yaks/common/kamelet-steps/prefix-action.kamelet.yaml b/e2e/yaks/common/kamelet-steps/prefix-action.kamelet.yaml new file mode 100644 index 0000000000..2579029d8e --- /dev/null +++ b/e2e/yaks/common/kamelet-steps/prefix-action.kamelet.yaml @@ -0,0 +1,45 @@ +# --------------------------------------------------------------------------- +# 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. +# --------------------------------------------------------------------------- + +apiVersion: camel.apache.org/v1alpha1 +kind: Kamelet +metadata: + name: prefix-action + labels: + camel.apache.org/kamelet.type: "step" +spec: + definition: + title: "Prefix" + description: "Adds a prefix to the incoming payload" + required: + - prefix + properties: + prefix: + title: Prefix + description: The prefix to add + type: string + types: + in: + mediaType: text/plain + out: + mediaType: text/plain + flow: + from: + uri: "kamelet:source" + steps: + - set-body: + simple: "{{prefix}} ${body}" diff --git a/e2e/yaks/common/kamelet-steps/steps-binding.feature b/e2e/yaks/common/kamelet-steps/steps-binding.feature new file mode 100644 index 0000000000..f09994597f --- /dev/null +++ b/e2e/yaks/common/kamelet-steps/steps-binding.feature @@ -0,0 +1,5 @@ +Feature: KameletBindings can have multiple processing steps + + Scenario: Data is transformed by the steps + Given Camel-K integration steps-binding is running + Then Camel-K integration steps-binding should print Hello Apache Camel diff --git a/e2e/yaks/common/kamelet-steps/steps-binding.yaml b/e2e/yaks/common/kamelet-steps/steps-binding.yaml new file mode 100644 index 0000000000..42ebc116a5 --- /dev/null +++ b/e2e/yaks/common/kamelet-steps/steps-binding.yaml @@ -0,0 +1,27 @@ +apiVersion: camel.apache.org/v1alpha1 +kind: KameletBinding +metadata: + name: steps-binding +spec: + source: + ref: + kind: Kamelet + apiVersion: camel.apache.org/v1alpha1 + name: timer-source + properties: + message: "Camel" + steps: + - ref: + kind: Kamelet + apiVersion: camel.apache.org/v1alpha1 + name: prefix-action + properties: + prefix: "Apache" + - ref: + kind: Kamelet + apiVersion: camel.apache.org/v1alpha1 + name: prefix-action + properties: + prefix: "Hello" + sink: + uri: log:info diff --git a/e2e/yaks/common/kamelet-steps/timer-source.kamelet.yaml b/e2e/yaks/common/kamelet-steps/timer-source.kamelet.yaml new file mode 100644 index 0000000000..a08cecfbbe --- /dev/null +++ b/e2e/yaks/common/kamelet-steps/timer-source.kamelet.yaml @@ -0,0 +1,54 @@ +# --------------------------------------------------------------------------- +# 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. +# --------------------------------------------------------------------------- + +apiVersion: camel.apache.org/v1alpha1 +kind: Kamelet +metadata: + name: timer-source + labels: + camel.apache.org/kamelet.type: "source" +spec: + definition: + title: "Timer" + description: "Produces periodic events with a custom payload" + required: + - message + properties: + period: + title: Period + description: The time interval between two events + type: integer + default: 1000 + message: + title: Message + description: The message to generate + type: string + types: + out: + mediaType: application/json + schema: + id: text.camel.apache.org + type: string + flow: + from: + uri: timer:tick + parameters: + period: "{{period}}" + steps: + - set-body: + constant: "{{message}}" + - to: "kamelet:sink" diff --git a/e2e/yaks/common/kamelet-steps/yaks-config.yaml b/e2e/yaks/common/kamelet-steps/yaks-config.yaml new file mode 100644 index 0000000000..7466b88157 --- /dev/null +++ b/e2e/yaks/common/kamelet-steps/yaks-config.yaml @@ -0,0 +1,30 @@ +# --------------------------------------------------------------------------- +# 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. +# --------------------------------------------------------------------------- + +config: + namespace: + temporary: true +pre: +- name: installation + run: | + kamel install -n $YAKS_NAMESPACE + + kubectl apply -f timer-source.kamelet.yaml -n $YAKS_NAMESPACE + kubectl apply -f prefix-action.kamelet.yaml -n $YAKS_NAMESPACE + kubectl apply -f steps-binding.yaml -n $YAKS_NAMESPACE + + kubectl wait kameletbinding steps-binding --for=condition=Ready --timeout=10m -n $YAKS_NAMESPACE diff --git a/helm/camel-k/crds/crd-kamelet-binding.yaml b/helm/camel-k/crds/crd-kamelet-binding.yaml index 9ae1705262..5a427b5af4 100644 --- a/helm/camel-k/crds/crd-kamelet-binding.yaml +++ b/helm/camel-k/crds/crd-kamelet-binding.yaml @@ -617,6 +617,226 @@ spec: endpoint explicitly type: string type: object + steps: + description: Steps contains an optional list of intermediate steps + that are executed between the Source and the Sink + items: + description: Endpoint represents a source/sink external entity + properties: + properties: + description: Properties are a key value representation of endpoint + properties + type: object + x-kubernetes-preserve-unknown-fields: true + ref: + description: Ref can be used to declare a Kubernetes resource + as source/sink endpoint + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead + of an entire object, this string should contain a valid + JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container + within a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that + triggered the event) or if no container name is specified + "spec.containers[2]" (container with index 2 in this pod). + This syntax is chosen only to have some well-defined way + of referencing a part of an object. TODO: this design + is not final and this field is subject to change in the + future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + types: + additionalProperties: + properties: + mediaType: + type: string + schema: + description: JSONSchemaProps is a JSON-Schema following + Specification Draft 4 (http://json-schema.org/). + properties: + $schema: + description: JSONSchemaURL represents a schema url. + type: string + description: + type: string + example: + description: 'JSON represents any valid JSON value. + These types are supported: bool, int64, float64, + string, []interface{}, map[string]interface{} and + nil.' + x-kubernetes-preserve-unknown-fields: true + externalDocs: + description: ExternalDocumentation allows referencing + an external resource for extended documentation. + properties: + description: + type: string + url: + type: string + type: object + id: + type: string + properties: + additionalProperties: + properties: + default: + description: default is a default value for + undefined object fields. + x-kubernetes-preserve-unknown-fields: true + description: + type: string + enum: + items: + description: 'JSON represents any valid JSON + value. These types are supported: bool, + int64, float64, string, []interface{}, map[string]interface{} + and nil.' + x-kubernetes-preserve-unknown-fields: true + type: array + example: + description: 'JSON represents any valid JSON + value. These types are supported: bool, int64, + float64, string, []interface{}, map[string]interface{} + and nil.' + x-kubernetes-preserve-unknown-fields: true + exclusiveMaximum: + type: boolean + exclusiveMinimum: + type: boolean + format: + description: "format is an OpenAPI v3 format + string. Unknown formats are ignored. The following + formats are validated: \n - bsonobjectid: + a bson object ID, i.e. a 24 characters hex + string - uri: an URI as parsed by Golang net/url.ParseRequestURI + - email: an email address as parsed by Golang + net/mail.ParseAddress - hostname: a valid + representation for an Internet host name, + as defined by RFC 1034, section 3.1 [RFC1034]. + - ipv4: an IPv4 IP as parsed by Golang net.ParseIP + - ipv6: an IPv6 IP as parsed by Golang net.ParseIP + - cidr: a CIDR as parsed by Golang net.ParseCIDR + - mac: a MAC address as parsed by Golang net.ParseMAC + - uuid: an UUID that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ + - uuid3: an UUID3 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ + - uuid4: an UUID4 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ + - uuid5: an UUID5 that allows uppercase defined + by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ + - isbn: an ISBN10 or ISBN13 number string + like \"0321751043\" or \"978-0321751041\" + - isbn10: an ISBN10 number string like \"0321751043\" + - isbn13: an ISBN13 number string like \"978-0321751041\" + - creditcard: a credit card number defined + by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\\\d{3})\\\\d{11})$ + with any non digit characters mixed in - ssn: + a U.S. social security number following the + regex ^\\\\d{3}[- ]?\\\\d{2}[- ]?\\\\d{4}$ + - hexcolor: an hexadecimal color code like + \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ + - rgbcolor: an RGB color code like rgb like + \"rgb(255,255,2559\" - byte: base64 encoded + binary data - password: any kind of string + - date: a date string like \"2006-01-02\" + as defined by full-date in RFC3339 - duration: + a duration string like \"22 ns\" as parsed + by Golang time.ParseDuration or compatible + with Scala duration format - datetime: a date + time string like \"2014-12-15T19:30:20.000Z\" + as defined by date-time in RFC3339." + type: string + id: + type: string + maxItems: + format: int64 + type: integer + maxLength: + format: int64 + type: integer + maxProperties: + format: int64 + type: integer + maximum: + description: A Number represents a JSON number + literal. + type: string + minItems: + format: int64 + type: integer + minLength: + format: int64 + type: integer + minProperties: + format: int64 + type: integer + minimum: + description: A Number represents a JSON number + literal. + type: string + multipleOf: + description: A Number represents a JSON number + literal. + type: string + nullable: + type: boolean + pattern: + type: string + title: + type: string + type: + type: string + uniqueItems: + type: boolean + x-descriptors: + description: The list of descriptors that determine + which UI components to use on different views + items: + type: string + type: array + type: object + type: object + required: + items: + type: string + type: array + title: + type: string + type: + type: string + type: object + type: object + description: Types defines the schema of the data produced/consumed + by the endpoint + type: object + uri: + description: URI can alternatively be used to specify the (Camel) + endpoint explicitly + type: string + type: object + type: array type: object status: description: KameletBindingStatus -- diff --git a/pkg/apis/camel/v1/zz_generated.deepcopy.go b/pkg/apis/camel/v1/zz_generated.deepcopy.go index 9fefd5c418..48ab8ddd95 100644 --- a/pkg/apis/camel/v1/zz_generated.deepcopy.go +++ b/pkg/apis/camel/v1/zz_generated.deepcopy.go @@ -209,7 +209,9 @@ func (in *BuilderTask) DeepCopyInto(out *BuilderTask) { if in.Resources != nil { in, out := &in.Resources, &out.Resources *out = make([]ResourceSpec, len(*in)) - copy(*out, *in) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } } if in.Dependencies != nil { in, out := &in.Dependencies, &out.Dependencies @@ -575,6 +577,11 @@ func (in *ContainerTask) DeepCopy() *ContainerTask { // 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 + if in.RawContent != nil { + in, out := &in.RawContent, &out.RawContent + *out = make([]byte, len(*in)) + copy(*out, *in) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSpec. @@ -1134,7 +1141,9 @@ func (in *IntegrationSpec) DeepCopyInto(out *IntegrationSpec) { if in.Resources != nil { in, out := &in.Resources, &out.Resources *out = make([]ResourceSpec, len(*in)) - copy(*out, *in) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } } if in.Dependencies != nil { in, out := &in.Dependencies, &out.Dependencies @@ -1188,7 +1197,9 @@ func (in *IntegrationStatus) DeepCopyInto(out *IntegrationStatus) { if in.GeneratedResources != nil { in, out := &in.GeneratedResources, &out.GeneratedResources *out = make([]ResourceSpec, len(*in)) - copy(*out, *in) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } } if in.Failure != nil { in, out := &in.Failure, &out.Failure @@ -1291,7 +1302,7 @@ func (in RawMessage) DeepCopy() RawMessage { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ResourceSpec) DeepCopyInto(out *ResourceSpec) { *out = *in - out.DataSpec = in.DataSpec + in.DataSpec.DeepCopyInto(&out.DataSpec) } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSpec. @@ -1341,7 +1352,7 @@ func (in *RuntimeSpec) DeepCopy() *RuntimeSpec { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SourceSpec) DeepCopyInto(out *SourceSpec) { *out = *in - out.DataSpec = in.DataSpec + in.DataSpec.DeepCopyInto(&out.DataSpec) if in.Interceptors != nil { in, out := &in.Interceptors, &out.Interceptors *out = make([]string, len(*in)) diff --git a/pkg/apis/camel/v1alpha1/kamelet_binding_types.go b/pkg/apis/camel/v1alpha1/kamelet_binding_types.go index 04ac92aacb..06789f2aa7 100644 --- a/pkg/apis/camel/v1alpha1/kamelet_binding_types.go +++ b/pkg/apis/camel/v1alpha1/kamelet_binding_types.go @@ -32,6 +32,8 @@ type KameletBindingSpec struct { Source Endpoint `json:"source,omitempty"` // Sink is the destination of the integration defined by this binding Sink Endpoint `json:"sink,omitempty"` + // Steps contains an optional list of intermediate steps that are executed between the Source and the Sink + Steps []Endpoint `json:"steps,omitempty"` } // Endpoint represents a source/sink external entity @@ -50,6 +52,7 @@ type EndpointType string const ( EndpointTypeSource EndpointType = "source" + EndpointTypeAction EndpointType = "action" EndpointTypeSink EndpointType = "sink" ) diff --git a/pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go index 00a682cb60..71938f5dd8 100644 --- a/pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/camel/v1alpha1/zz_generated.deepcopy.go @@ -370,6 +370,13 @@ func (in *KameletBindingSpec) DeepCopyInto(out *KameletBindingSpec) { } in.Source.DeepCopyInto(&out.Source) in.Sink.DeepCopyInto(&out.Sink) + if in.Steps != nil { + in, out := &in.Steps, &out.Steps + *out = make([]Endpoint, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KameletBindingSpec. diff --git a/pkg/controller/kameletbinding/common.go b/pkg/controller/kameletbinding/common.go index 1fc8dc67bc..e51bf1ac60 100644 --- a/pkg/controller/kameletbinding/common.go +++ b/pkg/controller/kameletbinding/common.go @@ -71,52 +71,68 @@ func createIntegrationFor(ctx context.Context, c client.Client, kameletbinding * Profile: profile, } - from, err := bindings.Translate(bindingContext, v1alpha1.EndpointTypeSource, kameletbinding.Spec.Source) + from, err := bindings.Translate(bindingContext, bindings.EndpointContext{Type: v1alpha1.EndpointTypeSource}, kameletbinding.Spec.Source) if err != nil { return nil, errors.Wrap(err, "could not determine source URI") } - to, err := bindings.Translate(bindingContext, v1alpha1.EndpointTypeSink, kameletbinding.Spec.Sink) + to, err := bindings.Translate(bindingContext, bindings.EndpointContext{Type: v1alpha1.EndpointTypeSink}, kameletbinding.Spec.Sink) if err != nil { return nil, errors.Wrap(err, "could not determine sink URI") } - if len(from.Traits) > 0 || len(to.Traits) > 0 { + steps := make([]*bindings.Binding, 0, len(kameletbinding.Spec.Steps)) + for idx, step := range kameletbinding.Spec.Steps { + position := idx + stepBinding, err := bindings.Translate(bindingContext, bindings.EndpointContext{ + Type: v1alpha1.EndpointTypeAction, + Position: &position, + }, step) + if err != nil { + return nil, errors.Wrapf(err, "could not determine URI for step %d", idx) + } + steps = append(steps, stepBinding) + } + + allBindings := make([]*bindings.Binding, 0, len(steps)+2) + allBindings = append(allBindings, from) + allBindings = append(allBindings, steps...) + allBindings = append(allBindings, to) + + propList := make([]string, 0) + for _, b := range allBindings { if it.Spec.Traits == nil { it.Spec.Traits = make(map[string]v1.TraitSpec) } - for k, v := range from.Traits { + for k, v := range b.Traits { it.Spec.Traits[k] = v } - for k, v := range to.Traits { - it.Spec.Traits[k] = v + for k, v := range b.ApplicationProperties { + propList = append(propList, fmt.Sprintf("%s=%s", k, v)) } } - if len(from.ApplicationProperties) > 0 || len(to.ApplicationProperties) > 0 { - propList := make([]string, 0, len(from.ApplicationProperties)+len(to.ApplicationProperties)) - for k, v := range from.ApplicationProperties { - propList = append(propList, fmt.Sprintf("%s=%s", k, v)) - } - for k, v := range to.ApplicationProperties { - propList = append(propList, fmt.Sprintf("%s=%s", k, v)) - } - sort.Strings(propList) - for _, p := range propList { - it.Spec.Configuration = append(it.Spec.Configuration, v1.ConfigurationSpec{ - Type: "property", - Value: p, - }) - } + sort.Strings(propList) + for _, p := range propList { + it.Spec.Configuration = append(it.Spec.Configuration, v1.ConfigurationSpec{ + Type: "property", + Value: p, + }) + } + + dslSteps := make([]map[string]interface{}, 0) + for _, step := range steps { + dslSteps = append(dslSteps, map[string]interface{}{ + "to": step.URI, + }) } + dslSteps = append(dslSteps, map[string]interface{}{ + "to": to.URI, + }) flow := map[string]interface{}{ "from": map[string]interface{}{ - "uri": from.URI, - "steps": []map[string]interface{}{ - { - "to": to.URI, - }, - }, + "uri": from.URI, + "steps": dslSteps, }, } encodedFlow, err := json.Marshal(flow) diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 08860be157..a64afc38f1 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -113,9 +113,9 @@ var assets = func() http.FileSystem { "/crd/bases/camel.apache.org_kameletbindings.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_kameletbindings.yaml", modTime: time.Time{}, - uncompressedSize: 36345, + uncompressedSize: 50466, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6b\x4f\x23\xb9\xd2\xf0\xf7\xfc\x8a\x12\xac\x34\x20\xd1\xb9\x10\x98\x9d\xc9\xfb\x61\xc4\xc2\xb0\x6f\xce\xce\x00\x22\x70\x8e\xf6\x81\x39\x92\xd3\x5d\x49\xbc\x74\xdb\x7d\x6c\x77\x42\x9e\x85\xff\xfe\xc8\x76\x77\xd2\xb9\xf4\x25\x04\xe6\xcc\x48\x6d\x69\x34\xa4\xdb\x2e\xd7\xdd\xe5\xb2\x2b\xd9\x05\xe7\xf5\x5a\x6d\x17\xbe\x50\x17\x99\x44\x0f\x14\x07\x35\x42\x38\x09\x89\x3b\x42\xe8\xf1\x81\x9a\x10\x81\x70\xce\x23\xe6\x11\x45\x39\x83\xbd\x93\xde\xf9\x3e\x44\xcc\x43\x01\x9c\x21\x70\x01\x01\x17\x58\xdb\x05\x97\x33\x25\x68\x3f\x52\x5c\x80\x6f\x01\x02\x19\x0a\xc4\x00\x99\x92\x75\x80\x1e\xa2\x81\x7e\x71\x79\xd3\x3d\xfd\x0c\x03\xea\x23\x78\x54\xda\x41\xe8\xc1\x84\xaa\x51\x6d\x17\xd4\x88\x4a\x98\x70\xf1\x00\x03\x2e\x80\x78\x1e\xd5\x13\x13\x1f\x28\x1b\x70\x11\x58\x34\x04\x0e\x89\xf0\x28\x1b\x82\xcb\xc3\xa9\xa0\xc3\x91\x02\x3e\x61\x28\xe4\x88\x86\xf5\xda\x2e\xdc\x68\x32\x7a\xe7\x09\x26\xd2\x82\x35\x73\x2a\x0e\x7f\xf2\x28\xa6\x21\x45\x6e\xcc\x85\x03\xf8\x27\x0a\xa9\x27\x39\xac\x37\x6b\xbb\xb0\xa7\xbb\xec\xc4\x2f\x77\xf6\xff\x1f\x4c\x79\x04\x01\x99\x02\xe3\x0a\x22\x89\x29\xc8\xf8\xe8\x62\xa8\x80\x32\x70\x79\x10\xfa\x94\x30\x17\xe7\x64\xcd\x66\xa8\x83\x41\x40\xc3\xe0\x7d\x45\x28\x03\x62\xc8\x00\x3e\x48\x77\x03\xa2\x6a\xbb\xb5\x5d\x30\x6d\xa4\x54\xd8\x69\x34\x26\x93\x49\x9d\x18\x74\xeb\x5c\x0c\x1b\x09\x75\x8d\x2f\xdd\xd3\xcf\x17\xbd\xcf\x8e\x41\xb9\xb6\x0b\xb7\xcc\x47\x29\x41\xe0\x7f\x22\x2a\xd0\x83\xfe\x14\x48\x18\xfa\xd4\x25\x7d\x1f\xc1\x27\x13\x2d\x38\x23\x1d\x23\x74\xca\x60\x22\xa8\xa2\x6c\x78\x00\x32\x96\x7a\x6d\x77\x41\x3a\x73\x76\x25\xe8\x51\xb9\xd0\x81\x33\x20\x0c\x76\x4e\x7a\xd0\xed\xed\xc0\x6f\x27\xbd\x6e\xef\xa0\xb6\x0b\xff\xea\xde\xfc\xff\xcb\xdb\x1b\xf8\xd7\xc9\xf5\xf5\xc9\xc5\x4d\xf7\x73\x0f\x2e\xaf\xe1\xf4\xf2\xe2\xac\x7b\xd3\xbd\xbc\xe8\xc1\xe5\x39\x9c\x5c\xfc\x09\x7f\x74\x2f\xce\x0e\x00\xa9\x1a\xa1\x00\x7c\x0c\x85\xc6\x9f\x0b\xa0\x9a\x91\xe8\x69\x99\x26\x0a\x94\x20\xa0\xf5\x43\x7f\x96\x21\xba\x74\x40\x5d\xf0\x09\x1b\x46\x64\x88\x30\xe4\x63\x14\x4c\xab\x47\x88\x22\xa0\x52\x8b\x53\x02\x61\x5e\x6d\x17\x7c\x1a\x50\x65\xb4\x48\xae\x12\xa5\xa7\x79\x4d\xdb\xaa\x91\x90\xc6\xea\xd4\x01\x12\x52\x7c\x54\xc8\x0c\x36\xf5\x87\x0f\xb2\x4e\x79\x63\xdc\xaa\x3d\x50\xe6\x75\xe0\x34\x92\x8a\x07\xd7\x28\x79\x24\x5c\x3c\xc3\x01\x65\x46\xf3\x6b\x01\x2a\xe2\x11\x45\x3a\x35\x00\xc2\x18\x8f\x91\xd7\x1f\xc1\x5a\x1d\xf7\x7d\x14\xce\x10\x59\xfd\x21\xea\x63\x3f\xa2\xbe\x87\xc2\x00\x4f\xa6\x1e\x37\xeb\x47\xf5\x56\x0d\xc0\x15\x68\x86\xdf\xd0\x00\xa5\x22\x41\xd8\x01\x16\xf9\x7e\x0d\xc0\x27\x7d\xf4\x63\xa8\x24\x0c\x3b\xe0\x92\x00\x7d\xe7\xa1\x06\xc0\x48\x80\x1d\x78\xd0\x9f\x51\xf5\x29\xd3\x86\x27\xeb\xe6\x7d\x4a\x1b\x6b\x5a\x0e\x7a\xfc\x50\xf0\x28\x19\x9f\x7e\x6f\x01\x25\x88\x13\x85\x43\x2e\x68\xf2\xd9\xb1\xf0\xe3\xbf\xdd\xd9\xdf\x96\x39\x7f\xd8\xb9\x7f\xb3\x73\x9b\x17\x3e\x95\xea\x8f\x35\x2f\xbf\x50\xa9\x4c\x87\xd0\x8f\x04\xf1\x57\xf0\x36\xef\xe4\x88\x0b\x75\x31\xc7\xc6\x81\x07\xbf\x6f\xdf\x50\x36\x8c\x7c\x22\x96\xc7\xd5\x00\xa4\xcb\x43\xec\x80\x19\x16\x12\x17\xbd\x1a\x40\xcc\x61\x03\xc6\x49\x79\xab\x2b\x41\x99\x42\x71\xca\xfd\x28\x60\xb3\x49\x3c\x94\xae\xa0\xa1\x32\x32\xd1\x2e\x2a\x46\x1d\x62\xdc\x21\x1c\x11\x89\x35\x6b\xf2\x7f\x49\xce\xae\x88\x1a\x75\xa0\x2e\x15\x51\x91\xac\xa7\xdf\x5a\x99\x5c\xa5\x9e\xa8\xa9\xc6\x4e\x1b\x64\xcc\x21\xdb\x65\xdc\x22\x7e\x38\x22\x2d\x4b\x9d\x3b\xc2\x80\x74\xe2\x11\x3c\x44\x76\x72\xd5\xfd\x67\xbb\xb7\xf0\x18\x16\xf1\x5c\x64\xaf\x36\x7b\x6d\x30\x76\xc8\xcc\x06\x63\x66\x49\x88\xd9\x05\x27\x57\xdd\x19\xb8\x50\xf0\x10\x85\x9a\xc9\xda\xb6\x94\x69\xa4\x9e\x2e\x4d\xfe\x4e\xe3\x17\xfb\x63\x4f\xdb\x04\xda\xe9\x63\xbe\xa3\x17\x93\x64\x7d\x27\xd5\x2e\x4f\xbb\x0e\x64\xd6\x4a\x16\x00\x83\xee\x44\x18\xf0\xfe\x5f\xe8\xaa\x3a\xf4\x50\x68\x30\x5a\x19\x22\xdf\xd3\xa6\x34\x46\xa1\x40\xa0\xcb\x87\x8c\xfe\xef\x0c\xb6\x4c\xd6\x45\x9f\x28\x8c\x95\x6b\xde\x8c\x9c\xf5\xfa\x34\x26\x7e\x84\x07\xda\xcb\x18\xd7\x2e\x50\xcf\x02\x11\x4b\xc1\x33\x5d\x64\x1d\xbe\x72\x81\x66\x3d\xeb\x18\xc7\x2e\x3b\x8d\xc6\x90\xaa\xc4\x25\xb8\x3c\x08\x22\x46\xd5\xb4\x91\x5a\x53\x65\xc3\xc3\x31\xfa\x0d\x49\x87\x0e\x11\xee\x88\x2a\x74\x55\x24\xb0\x41\x42\xea\x18\xd4\x99\x71\x0b\xf5\xc0\xdb\x15\xb1\x13\x91\xef\x16\x70\x5d\x51\x10\xdb\x8c\x85\xe5\x48\x40\x1b\x99\x96\x3a\x89\x87\x5a\x2a\xe6\x8c\xd6\x8f\x34\x77\xae\x3f\xf7\x6e\x20\x99\xda\x08\x63\x99\xfb\x86\xef\xf3\x81\x72\x2e\x02\xcd\x30\xca\x06\xc6\x19\xeb\xd5\x54\xf0\xc0\xc0\x44\xe6\x85\x9c\x32\x65\x3e\xb8\x3e\x45\xb6\xcc\x7e\x19\xf5\x03\xaa\xec\x52\x87\x52\x69\x59\xd5\xe1\xd4\xf8\x49\xe8\x23\x44\xa1\x47\x14\x7a\x75\xe8\x32\x38\xd5\x3a\x7a\x4a\xf4\x02\xfc\xc6\x02\xd0\x9c\x96\x8e\x66\x6c\x39\x11\xa4\x5d\xfc\x72\x67\xcb\xb5\xd4\x8b\xc4\xcd\x66\xc8\x6b\xd1\x5c\x7b\x21\xba\xe0\x38\x0b\xdd\xd7\x9b\x63\xa2\xcb\x43\x61\x2c\x67\xf9\xd5\xd2\x2c\xdd\x79\x4f\xa3\x1b\x0c\x78\x38\x8b\xd3\xe6\xaf\xa2\x38\xaa\xb4\x4b\xf4\x74\x05\x26\x80\x6b\x96\x3d\x08\x89\x20\x01\x2a\x14\xcb\x4a\x93\x87\x2e\xd8\x05\x70\x40\x87\x51\x16\xd2\x86\x2a\x85\xc1\xda\xb1\x2b\x54\x9d\xa6\x81\xad\x63\x5d\x59\xac\x6c\x33\x02\xcc\x7c\x9b\xa9\x0d\x8b\xcd\x58\xdb\x96\x50\x92\x38\x30\x0b\x8c\x63\x80\x64\xbe\x34\x28\x64\xbc\xcd\x50\xd2\xe5\x0e\x44\x08\xb2\x4e\xfc\x1e\x86\xc8\x3c\x64\x6e\x26\x23\x73\xa5\x57\x48\x7b\xfe\xec\x03\x9f\x4f\x5e\x32\xed\x82\xd2\x9c\xfb\x7c\x12\xdb\x40\xc4\xa4\x12\x91\x71\x0b\xde\x8a\xbb\xd3\x7e\x92\x58\x27\x94\x29\x4d\x0b\x8b\xc1\x9f\x27\x5f\xbf\x34\xfe\xd1\xbb\xbc\x80\xb3\xde\x97\x97\x72\x1e\xe0\xd1\xd1\x01\xa1\x60\xa8\x50\x3a\x06\x0d\x31\x46\x27\x62\x0f\x8c\x4f\x98\x33\xa0\xe8\x7b\xb2\x03\x4a\x64\x48\x37\x9f\x79\x0f\x54\xad\xe7\x4f\x81\x50\x42\xc1\xf5\x6e\x69\xfd\xd8\xc5\x08\x49\x10\xaa\xae\x6c\xf7\xd4\xb2\x61\x42\x3f\x69\x56\x7c\xdd\x41\x07\x04\x44\x81\xde\xb2\xac\xe7\x02\x32\xbd\xeb\xf1\x56\xf7\x0b\x94\x49\x45\x7c\xdf\x58\x7b\x23\xe5\xb6\x5e\x42\x95\x40\xb3\xbd\xca\x50\x19\xbb\x73\xed\x68\xdf\xd8\x3e\xcc\x01\x6f\x90\x40\xb1\x1e\x3e\x97\x54\xa5\x22\xe6\xe5\xf6\x96\x86\x32\x8b\x28\xb6\x35\x96\x64\x7f\xb3\xbd\x73\xd5\x5b\x6c\xbd\x49\xcc\x74\xfb\x69\xba\xfa\x9c\xfb\x48\xd6\x0b\x16\xe2\x6d\x14\xb2\x0c\x7d\x4e\x03\x2a\x70\xd6\x31\x9c\x3f\x70\xfa\x5a\xa0\xae\x71\xf0\x5a\xa0\x6e\x5e\x63\x39\x0a\x78\xc4\x94\xd9\x96\x6c\x0b\xc9\x6c\x4f\xb6\x05\x22\xc8\xe4\xb4\x58\x76\x89\xf9\xf5\xa7\x2a\xcb\x49\x94\x9e\xb1\x68\x51\x5f\xab\xee\x9a\xf5\xd9\xea\x5e\x72\xee\x2d\x97\x5a\xed\xfc\xa9\x8b\x27\xae\xab\x45\x78\x91\xc9\xfd\x02\x4c\x5e\xc9\x11\xf4\x2a\x37\xf0\x33\xbb\x01\xb3\xeb\x75\x31\xd4\x1b\xa3\xd2\xd6\xd0\x4d\x0d\xd2\xeb\x75\x6a\xcf\xe0\xe9\x00\x69\x40\xf5\x5e\x50\x2f\xd1\x5c\x0c\x93\xcc\x91\x4d\x23\x3d\xd4\xaf\x79\xa4\x50\x7e\xe1\xc4\x5b\xbb\x3e\xce\x5b\x64\xd2\xbd\x1c\x42\x81\x8d\x90\x4b\xa5\xd5\xc8\x45\x29\x13\xcd\xcd\x19\x9c\xab\xbe\x1b\x70\xa7\xc8\x14\x6d\x4b\xd2\x95\xa5\xf9\xf7\x25\xc9\x6f\x6e\xeb\x49\x00\x7c\xc3\xc7\xf2\x33\x9b\xee\x2b\x3b\x3d\x2f\x49\x59\x6f\x23\x2f\x13\xbd\x4d\xa8\x6f\x77\x8e\x22\x14\xa8\x6c\x16\x20\xce\x24\x10\x05\x22\x62\x8a\x06\x5b\xbb\xee\x57\x59\x71\x62\xa7\x34\x75\x52\xc9\xcc\xf5\x6d\x91\x83\x54\x2a\xcd\xad\x64\xb8\xcd\x85\xc6\x39\x2d\x4f\xc7\xfc\x26\x34\x35\x24\xe7\xb2\x6b\x0f\xeb\xc3\x3a\xd0\x81\xc1\x56\x4b\x64\x47\x61\x10\xfa\x44\xe1\xce\xfe\x0f\xa3\xda\x3f\xf8\xb2\x6c\x96\xe3\x74\x3a\xf1\x81\x32\xa3\xcb\xb1\xca\xd9\xce\x7d\x73\x70\x52\xa0\xbb\x54\xe6\x6f\xc1\x4a\x12\xb0\xe5\xda\x6e\x37\x42\xeb\xe9\x4f\x27\xa5\x8b\xd6\xd3\x05\x2e\x9d\xd8\x0d\x98\x59\xa3\xf5\xda\x41\x28\xb3\xdc\x5a\xc8\xb9\x98\xa4\xaa\x45\x60\xab\x65\xbc\x30\x8d\xb3\x06\x43\x83\xdf\x42\xd2\xa6\x8c\x6b\x2c\x94\xd7\x96\xdb\xe6\x32\xf9\x96\x05\x7a\xb7\xd3\x89\x8c\x0e\x39\x2f\x25\x65\x0f\x05\xf9\xbd\x1e\x65\x0f\x49\xaa\xdf\x43\xa9\x28\x9b\x09\x5b\x3f\x4a\xe7\xf8\x12\x17\xb6\xd6\x54\x8c\x81\xf4\x53\xc7\x36\xe9\x96\xaf\x18\x45\x6a\xb3\x80\xef\x5c\xb5\x4d\x60\x41\xe0\x01\xa7\xcb\x89\xea\x19\x05\x49\x56\xb9\x50\x5f\x37\xe7\x3a\x6c\xab\x3e\x22\x2b\xd0\x5b\xda\x57\x0c\xc0\x25\xcc\x64\xb8\xe3\x14\xab\x87\xae\x6f\x49\xff\x63\x36\xfb\x6c\xdf\x9e\x41\x29\x49\x16\xd9\x86\x56\x89\x7c\xbe\x14\x5b\x71\xd6\x81\x4e\x26\x15\x27\x57\xdd\xe4\x20\x27\x51\x2c\x81\x03\x14\xc8\x54\x3d\xdf\xd1\xe7\x3b\x53\xc3\xe2\xfc\x3d\xea\xe2\x11\x47\x77\x60\x27\x36\xc7\x1b\x8a\x03\x81\x90\xa2\x8b\x0b\xe7\x45\x26\x5b\x84\xc4\xcb\xf1\x1b\xb6\xbb\x8e\x64\x75\x6c\x6b\x46\x1d\xc4\xa1\x8c\x3d\x39\x99\x9f\x34\xc5\xc7\xfe\x63\xe2\xd3\x3c\x88\xff\xe8\x5d\x5e\x34\x7e\xe7\x96\x22\x20\xae\x8d\x63\x15\x51\xe6\x56\xc5\x01\xc8\xc8\x1d\x69\x29\x7a\x28\xb5\xbf\xe9\xe9\x37\xf5\x80\x30\x3a\x40\xa9\xea\xf1\x3c\x28\xe4\xdd\xe1\xb7\x6c\x8e\x02\x9c\x73\x01\xf8\x48\x82\xd0\xc7\x03\x13\x5a\x8c\x70\x9e\xbe\x34\x02\x71\x4d\xa8\x61\x58\x33\x83\x6a\xae\x36\xd0\xec\xdd\x14\x68\x3e\x72\xef\x20\xb9\xd2\xa1\x49\x57\xe4\x01\xcd\x55\x81\xd8\x38\x7d\xfa\x80\x1d\xd8\x91\x21\xba\x29\x74\xff\xd6\xc1\xd1\xf3\x4e\x0e\xe4\xbd\xc9\x08\x05\xc2\x8e\xee\xb8\x63\x91\x9c\x1d\xd3\xe9\x67\x89\x3e\xcd\x91\x35\x61\xa6\x12\x74\x38\x44\x81\x79\x3c\x37\xe7\x4e\x63\x64\x6a\xdf\xdc\x3f\x18\x00\xe3\x29\x30\x06\xb8\x96\xa8\x4d\x22\xa2\xb7\x82\xfc\xdd\xe1\xb7\x5c\xcc\x17\xf9\x07\x94\x79\xf8\x08\x87\x36\x02\xa4\x52\x73\x6c\xbf\x0e\x37\x46\x6b\xa6\x4c\x91\x47\x3d\x9b\x3b\xe2\x12\xf3\x38\xcd\x99\x3f\xd5\xf4\x8f\xc8\x58\x47\x91\x01\xc2\x04\x7d\xdf\x49\x7c\xf3\x84\x98\xdb\x25\x89\x30\x6d\x2a\x3a\x24\x22\x6f\x15\x5c\x3c\x2c\xbd\xb9\x3c\xbb\xec\x58\x0c\xb5\xb2\x0d\xcd\xb1\x0f\xe3\x0a\x06\x54\x6f\x05\x08\xf3\x92\x8b\x30\xe8\xe7\x71\x57\x93\x15\x59\xd5\x52\x1c\xdc\x11\x61\x43\x4c\xa2\xdf\x41\xa4\x22\x81\xf5\x77\xdb\xd8\xfe\xea\x69\x66\xba\xad\x39\xd9\x5c\x76\x3c\xff\xb5\xb3\xc1\x0d\x09\xcd\xdf\xcc\x2c\x12\x7a\x91\xb2\x88\x5c\x42\xe7\x0b\x97\xa6\xd5\xe3\xae\xd4\x64\xea\x2d\xbb\x6c\xf0\x31\x8a\x31\xc5\x49\x63\xc2\xc5\x03\x65\x43\x47\xab\xaf\x63\xf5\x43\x36\xcc\x76\xa6\xb1\x6b\xfe\xdb\x9a\x2e\x73\xbd\x62\x13\xe2\xcc\x80\xef\x41\xa1\x9e\x47\x36\xb6\x22\x30\x59\x93\x37\x5b\x2b\xdf\xf5\x92\x53\x8b\xa5\xf1\xda\x8c\x26\x23\xea\x8e\x92\xfb\x0f\xb1\xbf\xce\xb7\xc1\x80\x78\xd6\xd5\x13\x36\x7d\x73\x95\xd7\x0c\x8e\x84\xc6\x6a\xea\xc4\x17\x96\x1c\xc2\x3c\xfd\xb7\xa4\x52\xe9\xe7\x5b\x71\x34\xa2\xa5\x4d\xfe\xb6\x7b\xf6\x7d\x0c\x21\xa2\x5b\xd9\x77\x41\x90\x69\x9c\xc8\xf6\xdb\xbd\x32\x3b\xb3\x00\x3d\x4a\x5e\x25\x67\x28\x97\x6e\x19\xad\xb6\x05\x59\xe9\xd8\xc7\xde\x32\xd2\x84\x48\x7b\x05\x45\x3f\x74\x66\x77\x8f\x7c\x9f\x4f\xf2\x93\x15\x00\x89\xdd\xd8\xe8\xff\x4c\x90\x81\x82\x23\xd8\x8b\x2f\x54\xfe\x25\x39\x73\x2c\x62\xe6\x46\xe5\x7e\x5e\x98\x54\x86\x5d\xba\xfd\x52\x4c\x69\x0e\xb5\xb7\xd7\x5f\xd2\x87\x9d\x24\xb9\xe1\x14\x09\x3f\x0f\x39\x28\x9f\xc1\x59\x9c\xfa\xb5\x60\xc6\x01\xe4\x46\x54\xbf\x33\x67\xdc\x69\x6a\xd9\xd4\x06\xc5\x86\x21\x36\x48\x2c\xa2\x1a\xe0\x66\x84\x12\xad\x51\x98\xed\x9f\x8c\xc2\x90\x0b\x85\x9e\x4d\xf9\x1f\xe8\xfd\xea\xfb\xa3\x03\x18\xf8\x9c\x98\x3f\x2c\x39\x07\x85\x80\xef\xbe\x99\x9c\xe4\x80\xb8\xf8\xf7\xf3\x01\x04\x24\xbc\xb3\x43\xd3\xcf\x4d\xf0\xc3\xa8\x9f\x13\xb8\xd8\xb6\x75\x5e\xc1\x36\x7c\xb4\x37\xce\xce\xb8\x5b\xa0\x88\x4b\xdc\xfe\x3c\x1f\x18\x05\xb3\x0d\x31\xd1\x56\x24\xd3\xb1\x61\x21\x5b\xf4\x2e\x27\x86\x35\xbf\xf1\x35\x30\x9b\x08\x85\xcc\x43\x0f\xbc\xf4\x14\x45\x02\x2c\x6b\x57\xcb\x04\x15\x76\xde\x40\x7b\x75\x8b\x84\xff\xca\x30\x4b\x26\x9c\x00\xf2\x56\xb0\x0d\x67\x2d\xcf\xcd\x4d\x96\x8a\x97\xc0\x07\x23\xaf\x01\x89\xfc\xdc\x34\x70\xba\x73\x4a\x5b\xe3\x91\xd6\xef\x27\x1f\xec\xae\x51\xab\x5a\xc4\xe2\xcd\x4d\x29\xc8\xb3\xdb\x87\xd6\xca\x8a\x5d\x0a\xbc\x9e\xbd\xae\xd2\x56\x6a\xf6\x8d\x54\x17\x00\x59\x14\x94\x03\x5c\xe2\x28\x60\xde\x36\x71\xd7\x25\x41\xc6\x77\xda\xea\x65\xdd\x76\x69\xb0\xcb\xee\xbd\x9c\xfb\x2e\x0d\xbe\xac\x9b\x4f\xda\xab\xaa\x4f\xb9\x73\x97\x79\x2b\xb9\x1a\xdb\xf6\x16\x6b\xb2\x6d\x9b\xae\xcc\x25\xc1\xbe\x85\x80\x37\x13\xef\xab\x0a\x17\x1f\x5d\x3f\x92\x74\x8c\x5f\xc9\x23\x0d\xca\xda\x71\xb9\x3b\x0d\xeb\x66\xa1\xec\xed\x66\x89\x0f\xf5\x36\xd7\xbb\x1d\x3b\x32\x3e\x64\xbe\xb4\xb5\x09\x30\x6e\xc7\x10\x63\x99\x97\x55\xbc\x5b\x2b\x89\x78\xb0\x55\x3e\x3a\x64\x5c\xa0\x67\x1c\xcf\x7c\xf7\x90\x74\x29\xab\x26\x02\xad\x35\x10\xa3\xc5\xf7\x0c\x1c\xe8\x4b\xce\xec\xfa\x42\xbd\x0e\x10\xf3\xb9\xcc\xaa\x3f\x6f\xdd\xb3\x03\xa0\x75\xac\x03\x81\xc3\x23\x70\x47\x44\x10\x57\xa1\x90\x30\xc2\xc7\x24\x7b\xec\x40\x24\x68\x07\x4a\x49\xc1\xb0\xe0\xba\x0b\x44\x42\x48\x84\xb4\x25\x60\xbf\x73\x9f\xb0\x21\x30\x54\x0d\xbd\x99\xb8\xd2\x2f\xae\xed\xbd\xf9\xdb\xeb\x6e\x49\xa8\x0e\x60\x40\xa8\xdf\x31\x41\xa0\xfe\x4b\x87\x11\xa6\x5a\x6b\xcd\x5c\x25\x61\x6a\x8c\x34\x28\x8b\xd2\x49\x0c\xcf\x81\x11\x97\xca\x56\xb1\xc4\xa9\xf2\xfc\xf2\x8e\xac\x66\x0a\x09\x99\xbd\x7e\xc2\x50\x19\xb0\x26\xcf\x74\x60\x73\xe7\xc9\xf9\x15\x5c\x9f\x9f\x96\x04\xd9\x6a\xb6\xf5\x3a\xa3\x25\xce\x19\xb4\xeb\x2d\xb8\xbb\x3e\x3f\xd5\x4f\xbf\xd5\xc1\x01\x1a\x8e\x8f\x0c\x87\xba\x57\xe3\xa3\xb2\x2a\x70\x95\x25\x2d\xcb\x96\xee\x95\x05\xfc\x7e\x03\x15\xe8\x5e\x8d\xdf\x97\x03\xec\x52\x2f\xf7\x3a\x48\xba\x11\x38\xed\x9e\x5d\xe7\x03\x35\x3d\x1c\x08\x88\x5b\x1e\xea\xd7\x93\xd3\x3c\x65\x9a\x03\xff\x7a\x52\x56\x4e\x0e\x44\x91\xb1\x49\x06\xb7\xb7\xdd\xb3\xf8\xaa\xb0\xdd\xf1\x44\x61\x88\xc2\x25\x32\xb9\x0a\x50\x36\x92\xec\x4f\xe3\xfc\xd1\x10\x1f\x61\xef\x13\xdd\xff\xf7\x5d\xd3\xf9\x48\x9c\xc1\xb7\xbf\x3f\x3c\x3b\x9f\x66\x1f\x8e\xca\x7d\x68\x1d\x3e\xff\xb2\x11\x35\xed\x19\x39\xed\xef\x4e\x4f\x7b\xf6\xa9\xfd\x7a\x04\x1d\xcd\x08\x3a\xfa\xee\x04\x1d\x2d\x12\xf4\xe1\x23\xe9\x7f\x5b\x4f\xe3\xc6\x64\x1d\xcf\xc8\x3a\xfe\xee\x64\x1d\xbf\x0d\x59\x54\xf6\x99\xf5\x6b\xbd\xdf\x2e\x5a\x4d\xe0\xc2\xfe\xd5\x06\x16\x05\x7d\x14\xc9\x52\xe5\xd3\x87\x72\x41\x2d\xc0\xfd\x4e\xb3\x7d\xd8\xfa\xf5\xb8\xd5\x3c\x6a\xdf\xef\x68\x88\xf7\x3b\x1f\x7f\xfd\xe0\xcc\x9e\xb6\xee\x77\xe2\x99\x5b\xcd\xd2\xbe\x64\x86\xe1\x2a\x5e\x4b\x33\x6e\x44\x7b\xab\x3d\xa7\x7e\x1d\xcd\x6b\x70\x2f\x0d\xdf\x15\xe8\x51\xe5\x12\x61\x42\x08\xfb\x09\xf4\xc7\x64\x9e\xdc\x8b\x16\xeb\xda\x5c\x5b\xfe\xbd\xf7\xa9\x63\x34\xdd\xc8\x7b\xef\x53\xc7\xfe\xdd\x7e\xde\xff\xf4\x74\x7c\xd7\x72\x8e\xbf\xc5\x2f\x8f\x9e\x9f\xde\xef\x7d\xea\x34\x5b\xad\x27\xa3\x42\xf6\xf9\xfe\x6c\xe8\x53\xfb\xee\xe8\xd7\xa4\x73\xfb\xf9\xa9\xad\x3b\xdf\x35\x9d\xe3\x6f\x4f\x77\xef\x3f\x2c\xf6\x6e\x3d\x3f\xed\x7d\xea\x1c\xb6\xda\xad\xa7\xd6\x87\x66\xf3\xa9\x7d\x7c\x7f\x7f\x7f\xef\xe9\x59\xed\x1f\xad\xd6\xf3\x7e\x59\xdd\x33\x67\xa5\x7a\x27\xc2\x38\x03\x8f\x0e\x35\x6f\xe6\x51\x52\x40\x1f\xed\x25\x3a\x07\xa4\x2c\xb9\xbf\xd6\x2b\xce\x6d\xbd\x57\x07\xc9\x5d\x4a\x7c\xbd\x98\x47\x82\xaa\x69\xc2\xee\x79\x80\xa8\x46\x65\x95\x39\xe6\x76\x42\xe7\x9d\x03\xdf\x3e\xd9\x0f\x87\xe9\x0f\x47\xcf\xbf\x40\xde\x3d\xa5\x74\x1b\xe1\xa3\xcb\x7d\x2e\x8c\xe2\x8d\xf0\x91\x78\xe8\xd2\x80\xf8\x60\x9e\x82\xcb\x3d\x4c\x54\x6f\xf7\xdc\xb4\xb2\xe4\x2f\x10\x98\xa0\xbe\xfb\x69\x2f\x76\x0d\x27\xce\xb9\xd6\x90\xa7\xf4\xc7\xf7\xe5\x05\xe6\x80\x18\xf6\xe7\x98\x5f\xff\xfe\xdb\x0a\xc6\x62\xd8\xdf\xcc\x53\x88\x61\x7f\xef\xf0\xf8\xf8\x20\xfe\xf7\xd1\x78\x86\xfe\x54\xe9\x0d\x0a\x91\xf8\xfe\x08\x90\x69\xf0\xa5\x3d\x2a\x65\x44\x4c\xc1\x23\x8a\x80\x03\x21\x91\x72\xc2\x8d\xf9\xb1\xe9\xfc\x4a\x60\x1c\x7c\x97\xcd\x97\x10\x65\xc2\x55\xfd\xff\x92\x67\x38\x6c\x36\xdf\x3b\xcd\x96\xd3\x3c\xbc\xdf\x49\x05\x9e\xe5\xbd\xff\x20\xf2\x7d\xc7\x00\xa6\x4c\xc7\xaa\xed\x76\xfb\x23\x38\xe0\x25\xd7\xe6\xf4\xb4\xf9\x57\xca\x96\xdb\x12\x82\x87\xc0\xa4\xc5\x6d\x25\xf6\x52\x34\x40\x1b\x7c\x9d\x6d\x36\x85\x91\x78\x10\x12\x45\xfb\xbe\xfd\x36\x0c\xe8\xb9\xc4\x9f\xa3\x9a\xec\xef\x1c\xc3\x33\x3d\x4f\x79\xfb\x35\xcc\xd0\x43\x56\x58\xdd\x3a\x72\x5a\x87\x4e\xeb\xf8\xa6\xf5\xb1\xd3\x6e\x76\x0e\x9b\xf5\x66\xb3\xf9\x3f\xa5\xdd\xf1\xe2\xbe\x40\x4f\xe3\x98\x69\xe6\x8c\xaf\x97\x03\xb5\x61\x16\xaf\x38\x0f\xfc\x22\xb0\x01\x79\xec\x96\xcf\xfa\xa5\xaa\xd5\xde\x97\xdb\xbd\x14\x55\xaf\xad\xc1\xe7\x0b\xb2\x61\x7e\x15\xd1\x77\x46\x68\x93\x1c\xf8\x77\x43\xaa\x7c\x9e\x66\xe9\xea\xee\x85\x5d\xc4\x16\x0e\x12\x4d\xfa\xce\xae\x6e\x25\xcd\xc0\xa7\x0a\x05\x29\x3c\x77\xb4\x6d\x53\x9d\xa4\xec\xc7\xd2\x49\xca\x7e\x30\x9d\xa4\xec\x07\xd4\xc9\x4d\x72\x87\x3f\x9f\x4e\x46\xbe\xa2\xa1\x8f\x97\xb9\xd5\x56\xf3\xf6\xd3\x11\xc8\x22\xdf\x27\xfd\xb2\xe7\x02\x9b\xe6\x7e\x43\xa2\x14\x8a\xb7\x39\xdf\x52\x54\x6d\x86\x76\x79\xc8\x05\x97\x5b\x5e\x0c\x38\x62\xf4\x3f\x11\x6e\xe0\xe4\x36\xe5\xf7\xa3\x93\x28\x60\x41\x19\xde\xbc\xad\x7c\x05\x91\x1f\x17\x26\xa5\x20\xd9\x6c\x85\x87\x0a\x45\x40\x59\xd9\xf0\xdc\x5e\x42\xbb\xed\x9a\x70\x8f\x33\xa3\xfe\x8a\x9b\xaf\x48\x33\x5b\xb6\x81\xbd\x6e\x05\x63\x8a\x93\x72\xc9\xf6\x8d\x0e\x2a\x37\x94\xcd\x66\xe7\x69\xa5\xcf\xf1\x37\xe8\x5a\x54\x24\x92\xb4\x92\x5c\xd8\xf8\x56\x42\x31\xe5\xa5\x4c\xae\xf4\xbc\x65\xcc\x6c\xa3\x12\xb4\x5c\x1e\x17\x76\x59\x29\x08\x93\x0b\x15\x61\xe9\xaf\x95\x42\xbb\x43\x0c\x05\xf7\x22\x17\xbd\x86\xcb\x99\x8c\x82\xcc\x9d\x5b\x9c\xa7\xcb\xad\xa6\x28\x40\x2f\x12\xb4\x44\x15\xc8\xed\x75\xd7\x54\x81\x10\xdf\xdc\xc5\x51\x74\x8c\xfe\x34\x5d\x13\x12\x7f\xed\x8e\x41\x67\xcf\x7c\xf3\x48\x56\x89\xe0\xec\x8b\x96\xf0\x31\xf4\xa9\x4b\x95\xbf\x5e\x35\x72\x05\x94\x57\x72\x64\xee\x08\x15\x15\x1d\xd9\x8b\x44\x71\xd9\x91\x54\x44\x98\x2f\x4d\xb1\x88\x65\x57\x1e\xad\x41\xd4\x88\xa0\xaa\x3c\xaa\x2a\x8f\x32\xa8\xa8\x2a\x8f\xaa\xca\xa3\xaa\xf2\xa8\xaa\x3c\xaa\x2a\x8f\x5e\x40\x68\x55\x79\x54\x55\x1e\x55\x95\x47\xa6\x55\x95\x47\xa9\x56\x55\x1e\x2d\xb6\xaa\xf2\xa8\x60\xea\xd7\x82\x59\x55\x1e\x55\x95\x47\x55\xe5\xd1\xba\xae\x55\xe5\x51\x55\x79\x54\x55\x1e\xa5\x5a\x55\x79\x54\x55\x1e\x55\x95\x47\xf3\x56\x55\x1e\x55\x95\x47\x55\xe5\x51\x55\x79\x54\x55\x1e\x55\x95\x47\xc5\xd4\x54\x95\x47\xaf\x48\x50\x55\x79\x54\x55\x1e\x95\xa7\xbd\xaa\x3c\xaa\x2a\x8f\xf2\x5a\x55\x79\x34\x6b\x55\xe5\x51\x55\x79\x04\x55\xe5\x51\x55\x79\x94\x81\xcf\x0f\x56\xe5\x51\x55\x1e\xad\x6b\x55\xe5\xd1\x7f\x17\xa1\x1f\x50\x27\xab\xca\xa3\x54\xfb\xe9\x08\xac\x2a\x8f\x32\xba\xbf\x05\xe0\xaa\xf2\xa8\xaa\x3c\xca\x6e\x55\xe5\xd1\x8b\x81\x55\x95\x47\x3f\x57\xe5\x51\xc6\x0b\xa9\x88\x8a\x96\x54\x3b\xef\x57\xd4\x4d\xf7\xf2\xbf\xa3\xee\x72\x66\xef\xb7\xac\xb1\x9e\xe5\x1f\x1c\x8f\x3b\xae\xfb\xe1\xaa\x4c\xfb\xcb\x41\x75\x06\x71\xf6\x23\x66\xb3\x6a\x2a\x65\xcb\x4a\xf2\x4b\x73\x88\x02\x02\x2e\x0a\x53\x26\x62\x04\xb3\x2e\x1a\x28\xba\x89\xe3\x13\xa9\x6e\x04\x61\xd2\xa0\x72\x93\xb3\xb3\x5e\xfa\x81\x43\xa9\xec\xa6\x3a\xae\xa0\x88\x49\x51\x33\x50\xe8\xc1\x40\xf0\x00\x38\xc3\x58\x88\x99\xc6\xaa\x38\x10\xc6\xd5\x08\x45\x56\x3c\x93\xc4\xac\xb3\x4d\x76\xae\x45\xe7\xf8\x06\x4d\xee\x6d\xa8\xc1\x94\x26\xd5\x2c\x80\x29\x72\xa9\x4c\xd1\x3b\x21\x12\x22\x03\xcf\x7b\x73\xdc\x03\x94\x32\xe7\x47\x28\x97\xe2\xcc\x51\x14\x10\x06\x02\x89\xa7\x63\xb9\x64\x30\x68\xdd\x73\x89\xa9\xd6\xf3\x50\x11\xea\x4b\x20\x7d\x1e\x65\x2f\x43\x5a\xbe\x73\xa9\x66\x11\x59\x88\xbc\x40\x22\xb3\x6f\x35\xad\x30\xdc\x76\x9f\xfd\x10\xf8\x8c\xe1\xef\x64\x2c\x8b\xed\x31\x5a\xe7\x59\x32\x30\x8a\xbd\xca\xbc\x5e\xc8\x22\x73\x60\x94\x9b\x0f\xe0\x46\x44\x78\x00\xe7\xc4\x97\x78\x90\xdc\x2a\x78\x31\x5e\x79\x6b\xe0\xea\x6f\x23\xf2\x01\x3c\x2c\xb8\x95\x39\x7a\x2f\xc4\x20\x2f\xe6\x70\xb2\x4d\xd9\x31\x70\xd7\xbc\x28\xf1\xdb\x77\xeb\xc2\x8c\x70\x44\x64\x51\x19\xea\x95\xee\xb3\xce\x1f\x67\x92\xb8\x16\x99\x95\x87\xe6\xa2\x8e\x97\xba\x9a\x23\x15\x17\xda\xf4\x52\x4f\xa2\xfe\xca\x4f\xad\xc7\x1a\x05\x7f\x3f\xd7\xfe\x2f\x00\x00\xff\xff\x41\x0f\xef\x2e\xf9\x8d\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7f\x6f\xdb\x38\xd2\xff\xff\x79\x15\x83\xe4\x80\x4d\x81\xc8\x89\x93\xb4\xb7\xeb\xef\x1f\x45\x36\xdd\xde\xd7\xd7\x6e\x1a\xc4\xc9\x1d\xee\x69\x7b\x00\x2d\x8d\x6d\x5e\x24\x52\x47\x52\x71\xf2\x6c\xfb\xde\x1f\x90\x94\x6c\xd9\xb1\x24\xd2\xb1\xb3\x29\x20\x02\x45\x63\x9b\x1a\xce\x2f\x0e\xc9\xe1\x7c\xec\x3d\x08\x36\xd7\x76\xf6\xe0\x23\x0d\x91\x49\x8c\x40\x71\x50\x13\x84\xb3\x94\x84\x13\x84\x01\x1f\xa9\x29\x11\x08\xef\x79\xc6\x22\xa2\x28\x67\xb0\x7f\x36\x78\xff\x0a\x32\x16\xa1\x00\xce\x10\xb8\x80\x84\x0b\xdc\xd9\x83\x90\x33\x25\xe8\x30\x53\x5c\x40\x6c\x09\x02\x19\x0b\xc4\x04\x99\x92\x1d\x80\x01\xa2\xa1\x7e\xf1\xe9\xba\x7f\xfe\x1b\x8c\x68\x8c\x10\x51\x69\x1f\xc2\x08\xa6\x54\x4d\x76\xf6\x40\x4d\xa8\x84\x29\x17\xb7\x30\xe2\x02\x48\x14\x51\x3d\x30\x89\x81\xb2\x11\x17\x89\x65\x43\xe0\x98\x88\x88\xb2\x31\x84\x3c\x7d\x10\x74\x3c\x51\xc0\xa7\x0c\x85\x9c\xd0\xb4\xb3\xb3\x07\xd7\x5a\x8c\xc1\xfb\x82\x13\x69\xc9\x9a\x31\x15\x87\x7f\xf1\x2c\x97\xa1\x24\x6e\xae\x85\x03\xf8\x07\x0a\xa9\x07\x39\xee\x1c\xed\xec\xc1\xbe\xee\xb2\x9b\x7f\xb8\xfb\xea\xff\xc1\x03\xcf\x20\x21\x0f\xc0\xb8\x82\x4c\x62\x89\x32\xde\x87\x98\x2a\xa0\x0c\x42\x9e\xa4\x31\x25\x2c\xc4\xb9\x58\xb3\x11\x3a\x60\x18\xd0\x34\xf8\x50\x11\xca\x80\x18\x31\x80\x8f\xca\xdd\x80\xa8\x9d\xbd\x9d\x3d\x30\x6d\xa2\x54\xda\x3b\x3c\x9c\x4e\xa7\x1d\x62\xd8\xed\x70\x31\x3e\x2c\xa4\x3b\xfc\xd8\x3f\xff\xed\x62\xf0\x5b\x60\x58\xde\xd9\x83\x1b\x16\xa3\x94\x20\xf0\xbf\x19\x15\x18\xc1\xf0\x01\x48\x9a\xc6\x34\x24\xc3\x18\x21\x26\x53\x6d\x38\x63\x1d\x63\x74\xca\x60\x2a\xa8\xa2\x6c\x7c\x00\x32\xb7\xfa\xce\xde\x82\x75\xe6\xea\x2a\xd8\xa3\x72\xa1\x03\x67\x40\x18\xec\x9e\x0d\xa0\x3f\xd8\x85\x5f\xcf\x06\xfd\xc1\xc1\xce\x1e\xfc\xb3\x7f\xfd\xff\x3f\xdd\x5c\xc3\x3f\xcf\xae\xae\xce\x2e\xae\xfb\xbf\x0d\xe0\xd3\x15\x9c\x7f\xba\x78\xd7\xbf\xee\x7f\xba\x18\xc0\xa7\xf7\x70\x76\xf1\x2f\xf8\xd0\xbf\x78\x77\x00\x48\xd5\x04\x05\xe0\x7d\x2a\x34\xff\x5c\x00\xd5\x8a\xc4\x48\xdb\xb4\x70\xa0\x82\x01\xed\x1f\xfa\xb5\x4c\x31\xa4\x23\x1a\x42\x4c\xd8\x38\x23\x63\x84\x31\xbf\x43\xc1\xb4\x7b\xa4\x28\x12\x2a\xb5\x39\x25\x10\x16\xed\xec\x41\x4c\x13\xaa\x8c\x17\xc9\xc7\x42\xe9\x61\x36\x39\xb7\x76\x48\x4a\x73\x77\xea\x01\x49\x29\xde\x2b\x64\x86\x9b\xce\xed\xcf\xb2\x43\xf9\xe1\x5d\x77\xe7\x96\xb2\xa8\x07\xe7\x99\x54\x3c\xb9\x42\xc9\x33\x11\xe2\x3b\x1c\x51\x66\x3c\x7f\x27\x41\x45\x22\xa2\x48\x6f\x07\x80\x30\xc6\x73\xe6\xf5\x4b\xb0\xb3\x8e\xc7\x31\x8a\x60\x8c\xac\x73\x9b\x0d\x71\x98\xd1\x38\x42\x61\x88\x17\x43\xdf\x1d\x75\x4e\x3b\xdd\x1d\x80\x50\xa0\x79\xfc\x9a\x26\x28\x15\x49\xd2\x1e\xb0\x2c\x8e\x77\x00\x62\x32\xc4\x38\xa7\x4a\xd2\xb4\x07\x21\x49\x30\x0e\x6e\x77\x00\x18\x49\xb0\x07\xb7\xfa\x35\xaa\x21\x65\x7a\xe2\xc9\x8e\xf9\xbc\xe4\x8d\x3b\xda\x0e\xfa\xf9\xb1\xe0\x59\xf1\x7c\xf9\x73\x4b\xa8\x60\x9c\x28\x1c\x73\x41\x8b\xd7\x81\xa5\x9f\xff\x1d\xce\xfe\xb6\xca\xf9\x60\xc7\xfe\xd5\x8e\x6d\x3e\x88\xa9\x54\x1f\x56\x7c\xf8\x91\x4a\x65\x3a\xa4\x71\x26\x48\xfc\x88\x6f\xf3\x99\x9c\x70\xa1\x2e\xe6\xdc\x04\x70\x1b\x0f\xed\x27\x94\x8d\xb3\x98\x88\xe5\xe7\x76\x00\x64\xc8\x53\xec\x81\x79\x2c\x25\x21\x46\x3b\x00\xb9\x86\x0d\x99\xa0\x14\xad\x2e\x05\x65\x0a\xc5\x39\x8f\xb3\x84\xcd\x06\x89\x50\x86\x82\xa6\xca\xd8\x44\x87\xa8\x9c\x75\xc8\x79\x87\x74\x42\x24\xee\xd8\x29\xff\x1f\xc9\xd9\x25\x51\x93\x1e\x74\xa4\x22\x2a\x93\x9d\xf2\xa7\xd6\x26\x97\xa5\x77\xd4\x83\xe6\x4e\x4f\xc8\x5c\x43\xb6\xcb\x5d\x97\xc4\xe9\x84\x74\xad\x74\xe1\x04\x13\xd2\xcb\x9f\xe0\x29\xb2\xb3\xcb\xfe\x3f\x4e\x06\x0b\x6f\xc3\x22\x9f\x8b\xea\xd5\xd3\x5e\x4f\x18\xfb\xc8\x6c\x0e\xe6\xca\x92\x90\xab\x0b\xce\x2e\xfb\x33\x72\xa9\xe0\x29\x0a\x35\xb3\xb5\x6d\xa5\xa9\x51\x7a\x77\x69\xf0\x9f\x34\x7f\x79\x3c\x8e\xf4\x9c\x40\x3b\x7c\xae\x77\x8c\x72\x91\x6c\xec\xa4\x3a\xe4\xe9\xd0\x81\xcc\xce\x92\x05\xc2\xa0\x3b\x11\x06\x7c\xf8\x1f\x0c\x55\x07\x06\x28\x34\x19\xed\x0c\x59\x1c\xe9\xa9\x74\x87\x42\x81\xc0\x90\x8f\x19\xfd\xdf\x19\x6d\x59\xac\x8b\x31\x51\x98\x3b\xd7\xbc\x19\x3b\xeb\xf5\xe9\x8e\xc4\x19\x1e\xe8\x28\x63\x42\xbb\x40\x3d\x0a\x64\xac\x44\xcf\x74\x91\x1d\xf8\x9d\x0b\x34\xeb\x59\xcf\x04\x76\xd9\x3b\x3c\x1c\x53\x55\x84\x84\x90\x27\x49\xc6\xa8\x7a\x38\x2c\xad\xa9\xf2\x30\xc2\x3b\x8c\x0f\x25\x1d\x07\x44\x84\x13\xaa\x30\x54\x99\xc0\x43\x92\xd2\xc0\xb0\xce\x4c\x58\xe8\x24\xd1\x9e\xc8\x83\x88\xfc\x69\x81\xd7\x47\x0e\x62\x9b\x99\x61\x35\x16\xd0\x93\x4c\x5b\x9d\xe4\x8f\x5a\x29\xe6\x8a\xd6\x6f\x69\xed\x5c\xfd\x36\xb8\x86\x62\x68\x63\x8c\x65\xed\x1b\xbd\xcf\x1f\x94\x73\x13\x68\x85\x51\x36\x32\xc1\x58\xaf\xa6\x82\x27\x86\x26\xb2\x28\xe5\x94\x29\xf3\x22\x8c\x29\xb2\x65\xf5\xcb\x6c\x98\x50\x65\x97\x3a\x94\x4a\xdb\xaa\x03\xe7\x26\x4e\xc2\x10\x21\x4b\x23\xa2\x30\xea\x40\x9f\xc1\xb9\xf6\xd1\x73\xa2\x17\xe0\x2d\x1b\x40\x6b\x5a\x06\x5a\xb1\x6e\x26\x28\x87\xf8\xe5\xce\x56\x6b\xa5\x0f\x8a\x30\x5b\x61\xaf\xc5\xe9\x3a\x48\x31\x84\x20\x58\xe8\xbe\x7a\x3a\x16\xbe\x3c\x16\x66\xe6\x2c\x7f\xb4\x34\x4a\x7f\xde\xd3\xf8\x06\x03\x9e\xce\xf6\x69\xf3\x8f\xb2\x7c\x57\x69\x97\xe8\x87\x47\x34\x01\x42\xb3\xec\x41\x4a\x04\x49\x50\xa1\x58\x76\x9a\x3a\x76\xc1\x2e\x80\x23\x3a\xce\xaa\x98\x36\x52\x29\x4c\x56\x3e\xfb\x48\xaa\xf3\x32\xb1\x55\xaa\x73\xe5\xca\x36\x63\xc0\xca\x4f\x2b\xbd\x61\xb1\x99\xd9\xf6\x44\x2a\xc5\x3e\xb0\x8a\x4c\x60\x88\x54\x7e\x68\x58\xa8\xf8\xb4\xc2\x49\x97\x3b\x10\x21\xc8\x2a\xf3\x47\x98\x22\x8b\x90\x85\x95\x8a\xac\xb5\x5e\xa3\xec\xf5\xa3\x8f\x62\x3e\x5d\x67\xd8\x05\xa7\x79\x1f\xf3\x69\x3e\x07\x32\x26\x95\xc8\x4c\x58\x88\x1e\x85\x3b\x1d\x27\x89\x0d\x42\x95\xd6\xb4\xb4\x18\xfc\xeb\xec\xf7\x8f\x87\x7f\x1f\x7c\xba\x80\x77\x83\x8f\xeb\x6a\x1e\xe0\x3e\xd0\x1b\x42\xc1\x50\xa1\x0c\x0c\x1b\xe2\x0e\x83\x8c\xdd\x32\x3e\x65\xc1\x88\x62\x1c\xc9\x1e\x28\x51\x61\xdd\x7a\xe5\xdd\x52\xb5\x5a\x3f\x0d\x46\x49\x05\xd7\xa7\xa5\xd5\xcf\x2e\xee\x90\x04\xa1\xea\xd2\x76\x2f\x2d\x1b\x66\xeb\x27\xcd\x8a\xaf\x3b\xe8\x0d\x01\x51\xa0\x8f\x2c\xab\xb5\x80\x4c\x9f\x7a\xa2\xc7\xe7\x05\xca\xa4\x22\x71\x6c\x66\xfb\x61\x29\x6c\xad\x23\x95\x40\x73\xbc\xaa\x70\x19\x7b\x72\xed\xe9\xd8\x78\x72\x5c\x43\xde\x30\x81\x62\x35\x7d\x2e\xa9\x2a\xed\x98\x97\xdb\x36\x27\xca\x6c\x47\xf1\xd4\xc9\x52\x9c\x6f\x9e\x1e\x5c\xf5\x11\x5b\x1f\x12\x2b\xc3\x7e\x59\xae\x21\xe7\x31\x92\xd5\x86\x85\xfc\x18\x85\xac\xc2\x9f\xcb\x84\x1a\x82\x75\x4e\xe7\x03\x3e\x6c\x8a\xd4\x15\x8e\x36\x45\xea\x7a\x13\xcb\x51\xc2\x33\xa6\xcc\xb1\xe4\xa9\x94\xcc\xf1\xe4\xa9\x44\x04\x99\x9e\x37\xdb\xae\x98\x7e\xc3\x07\x55\x15\x24\x9c\x47\x6c\x5a\xd4\x57\xba\xbb\x56\x7d\xb5\xbb\x3b\x8e\xfd\xc4\xa5\x56\x07\x7f\x1a\xe2\x59\x18\x6a\x13\x5e\x54\x6a\xbf\x81\x93\x0d\x05\x82\x41\x1b\x06\x7e\xe4\x30\x60\x4e\xbd\x21\xa6\xfa\x60\xe4\x3c\x1b\xfa\xa5\x87\xf4\x7a\x5d\x3a\x33\x44\x7a\x83\x34\xa2\xfa\x2c\xa8\x97\x68\x2e\xc6\x45\xe6\xc8\xa6\x91\x6e\x3b\x57\x3c\x53\x28\x3f\x72\x12\xad\x5c\x1f\xe7\x2d\x33\xe9\x5e\x0e\xa9\xc0\xc3\x94\x4b\xa5\xdd\x28\x44\x29\x0b\xcf\xad\x79\xb8\xd6\x7d\x3d\xb4\xd3\x34\x15\x6d\x2b\xd2\x95\xce\xfa\xfb\x58\xe4\x37\x9f\x1a\x49\x00\x62\xa3\x47\xf7\x91\x4d\xf7\x47\x27\xbd\xa8\x48\x59\x3f\xc5\x5e\x66\xf7\x36\xa5\xb1\x3d\x39\x8a\x54\xa0\xb2\x59\x80\x3c\x93\x40\x14\x88\x8c\x29\x9a\x3c\x39\x74\x6f\x64\xc5\xc9\x83\xd2\x43\x50\x4a\x66\xae\x6e\x8b\x1a\xa4\x52\x69\x6d\x15\x8f\xdb\x5c\x68\x9e\xd3\x8a\xf4\x9e\xdf\x6c\x4d\x8d\xc8\xb5\xea\xda\xc7\xce\xb8\x03\x74\x64\xb8\xd5\x16\xd9\x55\x98\xa4\x31\x51\xb8\xfb\xea\xc5\xb8\xf6\x0b\x5f\x96\xcd\x72\x5c\x4e\x27\xde\x52\x66\x7c\x39\x77\x39\xdb\x79\x68\x2e\x4e\x1a\x7c\x97\xca\xfa\x23\x98\xa3\x00\x4f\x5c\xdb\xed\x41\x68\xb5\xfc\xe5\xa4\x74\xd3\x7a\xba\xa0\xa5\x33\x7b\x00\x33\x6b\xb4\x5e\x3b\x08\x65\x56\x5b\x0b\x39\x17\x93\x54\xb5\x0c\x3c\x69\x19\x6f\x4c\xe3\xac\xe0\xd0\xf0\xb7\x90\xb4\x71\x09\x8d\x8d\xf6\x7a\xe2\xb1\xd9\x25\xdf\xb2\x20\xef\xd3\x7c\xa2\xa2\x43\xcd\x87\x92\xb2\xdb\x86\xfc\xde\x80\xb2\xdb\x22\xd5\x1f\xa1\x54\x94\xcd\x8c\xad\xdf\x2a\xe7\xf8\x8a\x10\xb6\x72\xaa\x98\x09\x32\x2c\x5d\xdb\x94\x5b\xbd\x63\x34\xb9\xcd\x02\xbf\x73\xd7\x36\x1b\x0b\x02\xb7\xf8\xb0\x9c\xa8\x9e\x49\x50\x64\x95\x1b\xfd\xd5\x5f\xeb\xf0\x54\xf7\x11\x55\x1b\xbd\xa5\x73\xc5\x08\x42\xc2\x4c\x86\x3b\x4f\xb1\x46\x18\xc6\x56\xf4\x0f\xb3\xd1\x67\xe7\xf6\x0a\x49\x49\xb1\xc8\x1e\x6a\x97\xa8\xd7\x4b\xf3\x2c\xae\xba\xd0\xa9\x94\xe2\xec\xb2\x5f\x5c\xe4\x14\x8e\x25\x70\x84\x02\x99\xea\xd4\x07\xfa\xfa\x60\x6a\x54\x5c\x7f\x46\x5d\xbc\xe2\xe8\x8f\xec\xc0\xe6\x7a\x43\x71\x20\x90\x52\x0c\x71\xe1\xbe\xc8\x64\x8b\x90\x44\x35\x71\xc3\x76\xd7\x3b\x59\xbd\xb7\x35\x4f\x1d\xe4\x5b\x19\x7b\x73\x32\xbf\x69\xca\xaf\xfd\xef\x48\x4c\xeb\x28\xfe\x7d\xf0\xe9\xe2\xf0\x6f\xdc\x4a\x04\x24\xb4\xfb\x58\x45\x94\xa9\xaa\x38\x00\x99\x85\x13\x6d\xc5\x08\xa5\x8e\x37\x03\xfd\x49\x27\x21\x8c\x8e\x50\xaa\x4e\x3e\x0e\x0a\xf9\xf9\xf8\x6b\xb5\x46\x01\xde\x73\x01\x78\x4f\x92\x34\xc6\x03\xb3\xb5\x98\xe0\x3c\x7d\x69\x0c\x12\x9a\xad\x86\x51\xcd\x8c\xaa\x29\x6d\xa0\xd5\xa7\x29\xd0\x7a\xe4\xd1\x41\x51\xd2\xa1\x45\x57\xe4\x16\x4d\xa9\x40\x3e\x39\x63\x7a\x8b\x3d\xd8\x95\x29\x86\x25\x76\xff\xd0\x9b\xa3\xef\xbb\x35\x94\xf7\xa7\x13\x14\x08\xbb\xba\xe3\xae\x65\x72\x76\x4d\xa7\xdf\x2b\xfc\x69\xce\xac\xd9\x66\x2a\x41\xc7\x63\x14\x58\xa7\x73\x73\xef\x74\x87\x4c\xbd\x32\xf5\x07\x23\x60\xbc\x44\xc6\x10\xd7\x16\xb5\x49\x44\x8c\x1e\x31\xff\xf9\xf8\x6b\x2d\xe7\x8b\xfa\x03\xca\x22\xbc\x87\x63\xbb\x03\xa4\x52\x6b\xec\x55\x07\xae\x8d\xd7\x3c\x30\x45\xee\xf5\x68\xe1\x84\x4b\xac\xd3\x34\x67\xf1\x83\x96\x7f\x42\xee\xf4\x2e\x32\x41\x98\x62\x1c\x07\x45\x6c\x9e\x12\x53\x5d\x52\x18\xd3\xa6\xa2\x53\x22\xea\x56\xc1\xc5\xcb\xd2\xeb\x4f\xef\x3e\xf5\x2c\x87\xda\xd9\xc6\xe6\xda\x87\x71\x05\x23\xaa\x8f\x02\x84\x45\x45\x21\x0c\xc6\x75\xda\xd5\x62\x65\xd6\xb5\x14\x87\x70\x42\xd8\x18\x8b\xdd\xef\x28\x53\x99\xc0\xce\x4f\x4f\x99\xfb\x8f\x6f\x33\xcb\x6d\xc5\xcd\xe6\x72\xe0\xf9\xd3\xee\x06\x3d\x05\xad\x3f\xcc\x2c\x0a\x7a\x51\x9a\x11\xb5\x82\xce\x17\x2e\x2d\x6b\xc4\x43\xa9\xc5\xd4\x47\x76\x79\xc8\xef\x50\xdc\x51\x9c\x1e\x4e\xb9\xb8\xa5\x6c\x1c\x68\xf7\x0d\xac\x7f\xc8\x43\x73\x9c\x39\xdc\x33\xff\x3d\x59\x2e\x53\x5e\xe1\x23\x9c\x79\xe0\x39\x24\xd4\xe3\xc8\xc3\x27\x09\x58\xac\xc9\x7e\x6b\xe5\x4f\x83\xe2\xd6\x62\xe9\x79\x3d\x8d\xa6\x13\x1a\x4e\x8a\xfa\x87\x3c\x5e\xd7\xcf\xc1\x84\x44\x36\xd4\x13\xf6\xb0\x75\x97\xd7\x0a\xce\x84\xe6\xea\x21\xc8\x0b\x96\x02\xc2\x22\xfd\xb7\xa4\x52\xe9\xf7\x9f\xa4\xd1\x8c\x3a\x4f\xf9\x9b\xfe\xbb\xe7\x99\x08\x19\x7d\xd2\xfc\x6e\xd8\x64\x9a\x20\xf2\xf4\xe3\x9e\xcb\xc9\x2c\xc1\x88\x92\x8d\xe4\x0c\xe5\x52\x95\xd1\xe3\xb6\x60\x2b\xbd\xf7\xb1\x55\x46\x5a\x10\x69\x4b\x50\xf4\x9b\xc1\xac\xf6\x28\x8e\xf9\xb4\x3e\x59\x01\x50\xcc\x1b\xbb\xfb\x7f\x27\xc8\x48\xc1\x29\xec\xe7\x05\x95\xff\x91\x9c\x05\x96\x31\x53\x51\xf9\xaa\x6e\x9b\xe4\xa2\x2e\xdd\xfe\xd2\x2c\x69\x8d\xb4\x37\x57\x1f\xcb\x97\x9d\xa4\xa8\x70\xca\x44\x5c\xc7\x1c\xb8\x67\x70\x16\x87\xde\x14\xcd\x7c\x03\xe9\x25\xf5\x4f\xe6\x8e\xbb\x2c\x2d\x7b\xb0\x9b\x62\xa3\x10\xbb\x49\x6c\x92\x1a\xe0\x7a\x82\x12\xed\xa4\x30\xc7\x3f\x99\xa5\x29\x17\x0a\x23\x9b\xf2\x3f\xd0\xe7\xd5\x37\xa7\x07\x30\x8a\x39\x31\x7f\x58\x71\x0e\x1a\x09\x7f\xfe\x6a\x72\x92\x23\x12\xe2\x1f\xdf\x0f\x20\x21\xe9\x67\xfb\x68\xf9\x7d\xb3\xf9\x61\x34\xae\xd9\xb8\xd8\xf6\xe4\xbc\x82\x6d\x78\x6f\x2b\xce\xde\xf1\xb0\xc1\x11\x97\xb4\xfd\xdb\xfc\xc1\x2c\x99\x1d\x88\x89\x9e\x45\xb2\xbc\x37\x6c\x54\x8b\x3e\xe5\xe4\xb4\xe6\x15\x5f\x23\x73\x88\x50\xc8\x22\x8c\x20\x2a\x0f\xd1\x64\x40\xd7\x79\xb5\x2c\x50\x63\x67\x0f\xef\xd5\x2d\x13\xf1\x86\x69\x3a\x26\x9c\x00\xea\x56\x30\xcf\x51\xdd\xb5\xe9\xb3\x54\xac\x43\x1f\x8c\xbd\x46\x24\x8b\x6b\xd3\xc0\xe5\xce\x25\x6f\xcd\x9f\xb4\x71\xbf\x78\x61\x4f\x8d\xda\xd5\x32\x96\x1f\x6e\x9c\x28\xcf\xaa\x0f\xed\x2c\x6b\x0e\x29\xb0\xb9\xf9\xfa\x58\x36\xa7\xd1\xbd\x5c\x17\x00\x59\x96\xb8\x11\x76\xb8\x0a\x98\x37\x9f\x70\xed\x48\x32\xaf\x69\xeb\xb8\x86\x6d\x67\xb2\xcb\xe1\xdd\x2d\x7c\x3b\x93\x77\x0d\xf3\x45\xdb\xa8\xfb\xb8\xdd\xbb\xcc\x9b\xe3\x6a\x6c\xdb\x36\xd6\x64\xdb\x7c\x57\x66\x47\xb2\xdb\x30\xb0\x9f\x79\x37\x6a\x5c\xbc\x0f\xe3\x4c\xd2\x3b\xfc\x9d\xdc\xd3\xc4\x75\x1e\xbb\xd5\x34\xac\x1a\x85\xb2\xed\x8d\x92\x5f\xea\xf9\xfb\xdd\xae\x7d\x32\xbf\x64\xfe\x64\xb1\x09\x70\x77\x92\x53\xcc\x6d\xee\xea\x78\x37\xd6\x12\xf9\xc3\xd6\xf9\xe8\x98\x71\x81\x91\x09\x3c\xf3\xd3\x43\xd1\xc5\xd5\x4d\x04\xda\xd9\x40\x8c\x17\x7f\x61\x10\xc0\x50\x72\x66\xd7\x17\x1a\xf5\x80\x98\xd7\x2e\xab\xfe\xbc\xf5\xdf\x1d\x00\xed\x60\x07\x08\x1c\x9f\x42\x38\x21\x82\x84\x0a\x85\x84\x09\xde\x17\xd9\xe3\x00\x32\x41\x7b\xe0\x64\x05\xa3\x82\xab\x3e\x10\x09\x29\x11\xd2\x42\xc0\xfe\xc6\x63\xc2\xc6\xc0\x50\x1d\xea\xc3\xc4\xa5\xfe\xe0\xca\xd6\xcd\xdf\x5c\xf5\x1d\xa9\x06\x80\x09\xa1\x71\xcf\x6c\x02\xf5\x5f\x7a\x1b\x61\xd0\x5a\x2b\xc6\x72\xa4\xa9\x39\xd2\xa4\x2c\x4b\x67\x39\xbd\x00\x26\x5c\x2a\x8b\x62\xc9\x53\xe5\xf5\xf0\x8e\xaa\x66\x80\x84\xcc\x96\x9f\x30\x54\x86\xac\xc9\x33\x1d\xd8\xdc\x79\x71\x7f\x05\x57\xef\xcf\x1d\x49\x76\x8f\x4e\xf4\x3a\xa3\x2d\xce\x19\x9c\x74\xba\xf0\xf9\xea\xfd\xb9\x7e\xf7\x6b\x07\x02\xa0\xe9\xdd\xa9\xd1\x50\xff\xf2\xee\xd4\xd5\x05\x2e\xab\xac\x65\xd5\xd2\xbf\xb4\x84\xdf\x78\xb8\x40\xff\xf2\xee\x8d\x1b\xe1\x90\x46\xb5\xe5\x20\xe5\x46\xe0\xbc\xff\xee\xaa\x9e\xa8\xe9\x11\x40\x42\x42\x77\xaa\xbf\x9f\x9d\xd7\x39\xd3\x9c\xf8\xef\x67\xae\x76\x0a\x20\xcb\xcc\x9c\x64\x70\x73\xd3\x7f\x97\x97\x0a\xdb\x13\x4f\x96\xa6\x28\x42\x22\x8b\x52\x00\xd7\x9d\xe4\xf0\x21\xcf\x1f\x8d\xf1\x1e\xf6\xdf\xd2\x57\xff\xfe\x7c\x14\xfc\x42\x82\xd1\xd7\x3f\x7e\xfe\x1e\xbc\x9d\xbd\x38\x75\x7b\xd1\x3d\xfe\xfe\x17\x2f\x69\x4e\x66\xe2\x9c\x3c\xbb\x3c\x27\xb3\x57\x27\x9b\x13\xe8\x74\x26\xd0\xe9\xb3\x0b\x74\xba\x28\xd0\xcf\xbf\x90\xe1\xd7\xd5\x32\x7a\x8b\xf5\x7a\x26\xd6\xeb\x67\x17\xeb\xf5\x76\xc4\xa2\x72\xc8\x6c\x5c\x1b\xfc\x7a\xd1\x3d\x02\x2e\xec\x5f\x27\xc0\xb2\x64\x88\xa2\x58\xaa\x62\x7a\xeb\xb6\xa9\x05\xf8\xb2\x7b\x74\x72\xdc\xfd\xeb\xeb\xee\xd1\xe9\xc9\x97\x5d\x4d\xf1\xcb\xee\x2f\x7f\xfd\x39\x98\xbd\xdb\xfd\xb2\x9b\x8f\xdc\x3d\x72\x8e\x25\x33\x0e\x1f\xf3\xb5\x34\xa2\x97\xec\xdd\x93\xb9\xf4\xab\x64\x5e\xc1\xbb\x33\xfd\x50\x60\x44\x55\x48\x84\xd9\x42\xd8\x57\xa0\x5f\x16\xe3\xd4\x16\x5a\xac\x6a\x73\x6f\xf9\xf7\xfe\xdb\x9e\xf1\x74\x63\xef\xfd\xb7\x3d\xfb\xf7\xc9\xf7\x57\x6f\xbf\xbd\xfe\xdc\x0d\x5e\x7f\xcd\x3f\x3c\xfd\xfe\xed\xcd\xfe\xdb\xde\x51\xb7\xfb\xcd\xb8\x90\x7d\xff\xd5\xec\xd1\x6f\x27\x9f\x4f\xff\x5a\x74\x3e\xf9\xfe\xed\x44\x77\xfe\x7c\x14\xbc\xfe\xfa\xed\xf3\x9b\x9f\x17\x7b\x77\xbf\x7f\xdb\x7f\xdb\x3b\xee\x9e\x74\xbf\x75\x7f\x3e\x3a\xfa\x76\xf2\xfa\xcb\x97\x2f\x5f\x22\x3d\xaa\xfd\xa3\xdb\xfd\xfe\xca\xd5\xf7\xcc\x5d\xa9\x3e\x89\x30\xce\x20\xa2\x63\xad\x9b\xf9\x2e\x29\xa1\xf7\xb6\x88\x2e\x00\x29\x1d\xcf\xd7\x7a\xc5\xb9\xe9\x0c\x3a\x20\x79\x48\x49\xac\x17\xf3\x4c\x50\xf5\x50\xa8\x7b\xbe\x41\x54\x13\x57\x67\xce\xb5\x5d\xc8\xf9\x39\x80\xaf\x6f\xed\x8b\xe3\xf2\x8b\xd3\xef\x7f\x81\xba\x3a\xa5\x72\x9b\xe0\x7d\xc8\x63\x2e\x8c\xe3\x4d\xf0\x9e\x44\x18\xd2\x84\xc4\x60\xde\x85\x90\x47\x58\xb8\xde\xde\x7b\xd3\x5c\xc5\x5f\x10\xb0\x60\x7d\xef\xed\x7e\x1e\x1a\xce\x82\xf7\xda\x43\xbe\x95\x5f\xbe\x71\x37\x58\x00\x62\x3c\x9c\x73\x7e\xf5\xb7\x5f\x1f\x71\x2c\xc6\x43\xbf\x48\x21\xc6\xc3\xfd\xe3\xd7\xaf\x0f\xf2\x7f\xbf\x98\xc8\x30\x7c\x50\xfa\x80\x42\x24\xbe\x39\x05\x64\x9a\xbc\x73\x44\xa5\x8c\x88\x07\x88\x88\x22\x10\x40\x4a\xa4\x9c\x72\x33\xfd\xd8\xc3\xbc\x24\x30\xdf\x7c\xbb\xe6\x4b\x88\x32\xdb\x55\xfd\xff\x52\x64\x38\x3e\x3a\x7a\x13\x1c\x75\x83\xa3\xe3\x2f\xbb\xa5\x8d\xa7\x7b\xf4\x1f\x65\x71\x1c\x18\xc2\x94\xe9\xbd\xea\xc9\xc9\xc9\x2f\x10\x40\x54\x94\xcd\xe9\x61\xeb\x4b\xca\x96\xdb\x12\x83\xc7\xc0\xa4\xe5\xed\xd1\xde\x4b\xd1\x04\xed\xe6\xeb\x9d\xdf\x10\xc6\xe2\x49\x4a\x14\x1d\xc6\xf6\xdb\x30\x60\x10\x92\x78\xce\x6a\x71\xbe\x0b\x8c\xce\xf4\x38\xee\xf3\xd7\x28\x43\x3f\xf2\x48\xd5\xdd\xd3\xa0\x7b\x1c\x74\x5f\x5f\x77\x7f\xe9\x9d\x1c\xf5\x8e\x8f\x3a\x47\x47\x47\xff\xe3\x1c\x8e\x17\xcf\x05\x7a\x98\xc0\x0c\x33\x57\x7c\xc7\x8d\x94\x67\x16\xaf\x39\x0f\xbc\x16\xd9\x84\xdc\xf7\xdd\xb3\x7e\x25\xb4\xda\x1b\xb7\xd3\x4b\x13\x7a\x6d\x05\x3f\x1f\x91\x8d\xeb\x51\x44\xcf\xcc\x90\x4f\x0e\xfc\xd9\x98\x72\xcf\xd3\x2c\x95\xee\x5e\xd8\x45\x6c\xe1\x22\xd1\xa4\xef\xec\xea\xe6\x38\x0d\x62\xaa\x50\x90\xc6\x7b\x47\xdb\x7c\x7d\x92\xb2\x97\xe5\x93\x94\xbd\x30\x9f\xa4\xec\x05\xfa\xa4\x4f\xee\xf0\xc7\xf3\xc9\x2c\x56\x34\x8d\xf1\x53\x2d\xda\x6a\xde\x7e\x38\x01\x59\x16\xc7\x64\xe8\x7a\x2f\xe0\x9b\xfb\x4d\x89\x52\x28\xb6\x73\xbf\xa5\xa8\xf2\x63\xdb\x9d\x72\x43\x71\xcb\xda\x84\x33\x46\xff\x9b\xa1\x47\x90\xf3\xd5\xf7\x7d\x50\x38\x60\x03\x0c\x6f\xde\x1e\x7d\x05\x51\x9c\x03\x93\x4a\x94\x6c\xb6\x22\x42\x85\x22\xa1\xcc\x75\x7b\x6e\x8b\xd0\x6e\xfa\x66\xbb\xc7\x99\x71\x7f\xc5\xcd\x57\xa4\x99\x23\xdb\xc8\x96\x5b\xc1\x1d\xc5\xa9\x5b\xb2\xdd\xeb\xa2\xd2\xd3\x36\x7e\xf7\x69\xce\xf7\xf8\x1e\x5d\x9b\x40\x22\x45\x73\xd4\x82\x77\x55\x42\xb3\xe4\x4e\x53\xce\x79\x5c\x97\x69\xe6\x05\x41\xab\xd5\x71\x63\x97\x47\x80\x30\xb9\x80\x08\x2b\x7f\xad\x14\xda\x13\x62\x2a\x78\x94\x85\x18\x1d\x86\x9c\xc9\x2c\xa9\x3c\xb9\xe5\x79\xba\x5a\x34\x45\x03\x7b\x99\xa0\x0e\x28\x90\x9b\xab\xbe\x41\x81\x90\xd8\xd4\xe2\x28\x7a\x87\xf1\x43\x19\x13\x92\x7f\xed\x8e\x61\x67\xdf\x7c\xf3\x48\x15\x44\x70\xf6\x45\x4b\x78\x9f\xc6\x34\xa4\x2a\x5e\xed\x1a\xb5\x06\xaa\x83\x1c\x99\x1a\xa1\x26\xd0\x91\x2d\x24\xca\x61\x47\x52\x11\x61\xbe\x34\xc5\x32\x56\x8d\x3c\x5a\xc1\xa8\x31\x41\x8b\x3c\x6a\x91\x47\x15\x52\xb4\xc8\xa3\x16\x79\xd4\x22\x8f\x5a\xe4\x51\x8b\x3c\x5a\x43\xd0\x16\x79\xd4\x22\x8f\x5a\xe4\x91\x69\x2d\xf2\xa8\xd4\x5a\xe4\xd1\x62\x6b\x91\x47\x0d\x43\x6f\x8a\x66\x8b\x3c\x6a\x91\x47\x2d\xf2\x68\x55\xd7\x16\x79\xd4\x22\x8f\x5a\xe4\x51\xa9\xb5\xc8\xa3\x16\x79\xd4\x22\x8f\xe6\xad\x45\x1e\xb5\xc8\xa3\x16\x79\xd4\x22\x8f\x5a\xe4\x51\x8b\x3c\x6a\x96\xa6\x45\x1e\x6d\x50\xa0\x16\x79\xd4\x22\x8f\xdc\x65\x6f\x91\x47\x2d\xf2\xa8\xae\xb5\xc8\xa3\x59\x6b\x91\x47\x2d\xf2\x08\x5a\xe4\x51\x8b\x3c\xaa\xe0\xe7\x85\xa1\x3c\x5a\xe4\xd1\xaa\xd6\x22\x8f\xfe\x5c\x86\x5e\xa0\x4f\xb6\xc8\xa3\x52\xfb\xe1\x04\x6c\x91\x47\x15\xdd\xb7\x41\xb8\x45\x1e\xb5\xc8\xa3\xea\xd6\x22\x8f\xd6\x26\xd6\x22\x8f\x7e\x38\xe4\x91\xc2\x74\x85\x13\x2f\x02\x8f\x74\x9f\xf9\x6f\x5c\x95\x7f\xe3\xae\x08\x52\xe6\x56\xd7\x54\x24\x9a\xd3\x35\xa6\xab\x02\x49\xf1\x43\xc4\x80\xf7\x18\x66\x4a\x1f\xe1\x50\x4d\x11\x6d\x91\x79\x0e\x6f\xb2\x05\xeb\x68\x7e\x62\xe9\x11\x8d\xca\x29\xb7\x58\x4e\x55\xe8\x6c\xb1\x5a\xaf\x0c\xa8\x29\x8a\xa4\x90\x29\xaa\x56\x69\xb4\xa9\x98\xa6\xb9\xd8\x66\x6b\x30\xa8\x46\x20\x94\xd3\x3c\x7c\xe2\x3d\x79\x25\x1c\x6a\x3b\x80\x28\x3f\x48\x94\x5b\x2d\x94\x0b\x2c\x6a\x13\xc0\x28\xc7\xe8\xe9\x00\x8e\xda\x12\x3c\x6a\x1b\x00\xa9\x67\x83\x48\xad\x0b\x92\xaa\x25\x69\x01\x54\x5b\x84\x49\xad\x0b\x94\xaa\x5f\xc8\x0b\x10\x95\x2f\x54\xaa\x96\xea\x2a\x18\x95\x1b\x58\xaa\x96\xec\x4a\x20\x95\x03\x5c\xaa\xc9\x8f\x1f\x43\xa9\x9a\x00\x53\xb5\x14\x6b\xc0\x54\x75\x90\xa9\x5a\x9a\x8d\x70\x2a\xc7\x88\x51\x0f\xa9\xfa\x71\x40\x55\x1b\xfa\x7d\xda\x17\x0a\xad\xf2\x90\xae\x01\x5e\xf5\xa2\x01\x56\x8e\x62\x3a\x83\xac\xb6\x08\xb3\xfa\xc1\x80\x56\x8e\x9a\xad\x05\x5b\xbd\x50\xb8\xd5\xe6\x7e\xfc\xb7\x1a\xfc\xee\x55\x4b\xef\x56\x43\xef\x04\xbd\x72\x3e\x34\xbb\x80\x92\xb6\x01\xc0\xda\x28\x04\xcb\x07\x7e\xe0\x08\xc3\xda\x06\x10\xcb\x2b\x1d\xe3\x85\x0c\xf0\xa0\xeb\x5c\x02\xbe\x9d\xf2\xef\x2d\x94\x7e\x7b\x95\x7d\xeb\x6d\x94\x4b\x46\xdc\xa9\xe4\x7b\x63\xe5\xde\x3e\xe0\xad\x6d\xc1\xb7\x36\x0e\xe0\xf2\x07\x05\x6d\x17\x0b\xe3\x08\xe4\xf2\xa4\xeb\x91\x04\x76\xb9\xc6\xf7\x18\xdb\x47\xbb\xeb\x81\xba\x7c\x2d\xe8\x09\xec\xf2\x82\x76\x39\x52\x84\x39\x04\x6c\x1d\x70\xd7\xc6\xf1\x39\xde\x4e\xbd\xc6\x9d\x85\x3b\xc8\xcb\xf3\xf6\x64\x4b\x40\x2f\x67\xa8\x97\x07\xc5\x0a\x2c\xef\x86\xc1\x5e\xfe\x70\xaf\x8d\x3b\x94\x2f\xe4\xcb\x13\xf4\xd5\x62\xfb\x4a\xed\x4f\xc6\xf6\xad\x07\x00\xf3\xbf\x30\x5e\x17\x04\xb6\xce\x48\x3e\x40\x30\x3f\x28\x98\xb3\x55\x73\xc8\x98\x07\x18\xcc\xdd\x1f\x4b\xa4\x6a\xe1\x60\xee\x2e\x58\x86\x8d\xd5\x02\xc2\x3c\xe5\x9f\x03\xc7\xb6\x04\x09\xdb\x0e\x28\xcc\x03\x16\xe6\x4c\x71\xe9\x12\xac\x1a\x18\xe6\x6e\xb5\x65\x00\x59\x2d\x34\xcc\x43\xa1\x0b\x10\x32\x07\x0c\x97\x1f\xe9\x37\x05\x69\x17\x78\x98\x07\x69\x03\x23\x73\x06\x88\x79\x10\x4e\x48\xd8\xdb\x0e\x44\x6c\x3b\x20\xb1\x3f\x13\x26\xb6\x2d\xa0\xd8\x9f\x0a\x15\xdb\x16\x58\xec\x05\xc0\xc5\xb6\x05\x18\x7b\x01\x90\x31\x0f\xd0\x98\x33\xc5\x15\x20\xae\xd5\xb0\x31\x4f\x1e\xbb\x47\xbd\x2d\x00\xc7\xb6\x0f\x1d\xf3\x01\x8f\xad\xe7\x39\x3f\x3e\x7c\x6c\x3b\x00\xb2\x6d\x40\xc8\x7c\x40\x64\x1e\x0e\xe2\x0a\x23\x73\x26\x39\x87\x9b\x6d\x19\x48\xb6\x0d\x28\xd9\x36\xc0\x64\x3e\x70\x32\x0f\xd1\x1d\x01\x65\x6b\x6e\x58\x9b\x20\x65\x1e\x13\x61\x86\xe7\x6a\x00\x95\xf9\x84\xa0\x4a\xf0\xd9\x22\xac\xcc\x2f\x08\x34\xc2\xcf\x72\x6d\x3b\x53\xdd\x06\x00\x6d\x83\x10\xb4\x35\xf2\x8c\xee\xe7\x56\x6f\xd2\x7e\x50\xb4\x75\x20\x2d\xfe\xa0\x16\x6f\x40\xda\x33\xb2\xe5\x0b\x01\x7a\x46\xd6\x7c\xf2\x47\x5b\x41\xca\x78\x62\x65\xd6\xf1\x56\x2f\x90\xda\xb3\xe9\xde\x0f\xaa\xf6\x8c\x6c\xbd\x58\x6f\xf5\xcb\x76\xfe\xa8\xde\xea\x09\x5f\xfb\x61\x05\xf5\x83\xb1\xad\x93\xbd\xf6\x82\xb2\xad\x83\x3e\x72\x87\xb3\xad\x8b\x6d\xda\x16\x71\x6f\x58\xdb\x3a\xfa\x5f\x03\xda\xb6\x4d\x70\xdb\x36\xe0\x6d\xde\x57\xb4\xde\x96\xf2\xbd\x41\xf4\xa8\x70\xf0\xea\xec\x0a\x75\xf3\xd0\xc8\x1a\x95\x1b\x2e\x5a\x70\x9c\x96\xbe\x60\xbb\xcd\x11\x74\xd2\xba\x43\xa7\xed\xc1\xdf\xdc\x00\x70\x0e\x4c\x56\x82\xe0\xb6\x07\x83\x73\x07\xc2\x35\x9a\xac\x56\xbc\x2a\x87\xac\x78\x48\x2a\xa2\xb2\xa5\x69\xb1\xa0\x82\x0f\x5a\x28\x54\xbf\xda\x1f\xda\x1a\x98\xee\x10\x2c\x7e\x67\x4d\x75\x81\x4f\xc8\x99\xad\x19\x6a\x42\xe8\x9d\xcf\x3a\x2e\x13\x07\x67\xd4\xdc\x22\xab\x33\x8a\x79\xa7\x21\xce\x7e\x76\x4c\x59\x80\x51\x3d\x64\x8b\x28\x20\x10\xa2\x30\x70\x21\x63\xb8\x55\x7b\x8e\xa6\xda\xa6\x98\x48\x75\x2d\x08\x93\x86\x95\xeb\x9a\xaf\xa0\x59\x10\xe5\x23\x91\xca\x1e\xfe\x73\x04\x4d\x2e\x8a\x9a\x91\xc2\x08\x46\x82\x27\xc0\x19\xe6\x46\xac\x9e\xb3\x1c\x08\xe3\x6a\x82\xa2\x6a\xd7\x54\xec\x94\x67\xa9\x80\xf5\x1c\xd3\x8a\x7b\x93\x6a\x32\xce\xa2\x9a\xc5\xb4\x24\x2e\x95\x25\x79\xa7\x44\x42\x66\xe8\x45\x5b\xe7\x3d\x41\x29\xc9\xd8\x8d\xe9\x33\x98\x64\x09\x61\x20\x90\x44\x7a\xb7\x58\x3c\x0c\xda\xf7\x42\x62\x7e\xd6\x2e\x42\x45\x68\x2c\x81\x0c\x79\x56\x13\x50\x27\x58\xb2\x6a\x95\x90\x8d\xcc\x0b\x24\xb2\x3a\xa9\xf6\x48\xe1\xb6\xbb\xb9\xa5\x5e\x70\xb0\x9f\x64\x6e\x8b\xa7\x73\xb4\x2a\xb2\x54\x70\x94\x47\x95\x39\x5e\xcc\x32\x73\x60\x9c\x9b\x8f\xe0\x5a\x64\x78\x00\xef\x49\x2c\xf1\xa0\xa8\xb8\x58\x9b\xaf\xba\x55\xf3\xd1\xd2\xa5\x47\xbf\x5d\x08\x2b\x73\xf6\xd6\xe4\xa0\x6e\xc7\x12\x54\x4f\xe5\xc0\xd0\xdd\xd4\x6a\x00\x90\x4e\x88\x6c\xfa\xbd\xc6\x4b\xdd\x67\x55\x3c\xae\x14\x71\x25\x33\x8f\xde\x34\x25\x4d\x51\xa9\x88\x49\x2a\x2e\xf4\xd4\x2b\xbd\x93\x0d\x8b\xe8\x3c\xf3\xa1\xdc\xa3\xe0\x8f\xef\x3b\xff\x17\x00\x00\xff\xff\xe5\x31\xea\x4e\x22\xc5\x00\x00"), }, "/crd/bases/camel.apache.org_kamelets.yaml": &vfsgen۰CompressedFileInfo{ name: "camel.apache.org_kamelets.yaml", @@ -462,14 +462,14 @@ var assets = func() http.FileSystem { modTime: time.Time{}, uncompressedSize: 89253, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x4b\x77\xdb\x3a\xb2\xee\x3c\xbf\x82\x6b\x67\x72\xce\xba\xcd\xea\xbd\x93\xd3\xbd\xef\xca\x1d\xd9\x72\xec\xd8\xb1\x1d\x27\x72\x27\xe9\x9e\xec\x05\x91\x90\x04\x8b\x24\x68\x00\x92\xed\xfc\xfa\xbb\xf0\xe0\x4b\x92\x8b\x22\x0d\xf8\x78\x60\x52\x44\xe1\x2b\xa0\xf0\x06\x0a\x55\x6f\xa3\xd8\xdf\xdf\x9b\xb7\xd1\x25\x4b\x68\x21\x69\x1a\x29\x1e\xa9\x25\x8d\x8e\x4a\x92\x2c\x69\x34\xe5\x73\xf5\x40\x04\x8d\x4e\xf9\xba\x48\x89\x62\xbc\x88\xfe\xeb\x68\x7a\xfa\xdf\xd1\xba\x48\xa9\x88\x78\x41\x23\x2e\xa2\x9c\x0b\xfa\xe6\x6d\x94\xf0\x42\x09\x36\x5b\x2b\x2e\xa2\xcc\x02\x46\x64\x21\x28\xcd\x69\xa1\x24\x44\xd1\x94\x52\x83\x7e\xfd\xe5\xf6\x7c\xf2\x31\x9a\xb3\x8c\x46\x29\x93\x36\x12\x4d\xa3\x07\xa6\x96\x6f\xde\x46\x6a\xc9\x64\xf4\xc0\xc5\x2a\x9a\x73\x11\x91\x34\x65\x9a\x31\xc9\x22\x56\xcc\xb9\xc8\x6d\x32\x04\x5d\x10\x91\xb2\x62\x11\x25\xbc\x7c\x12\x6c\xb1\x54\x11\x7f\x28\xa8\x90\x4b\x56\xc2\x9b\xb7\xd1\xad\xce\xc6\xf4\xb4\x4a\x89\xb4\xb0\x86\xa7\xe2\xd1\xbf\xf9\xda\xe5\xa1\x95\x5d\x27\x85\xbf\x45\xdf\xa9\x90\x9a\xc9\x3b\xf8\xfd\xcd\xdb\xe8\xbf\x34\xc9\x6f\x2e\xf0\xb7\xff\xfe\x7f\xd1\x13\x5f\x47\x39\x79\x8a\x0a\xae\xa2\xb5\xa4\x2d\x64\xfa\x98\xd0\x52\x45\xac\x88\x12\x9e\x97\x19\x23\x45\x42\x9b\x6c\xd5\x1c\x20\x32\x09\xd0\x18\x7c\xa6\x08\x2b\x22\x62\xb2\x11\xf1\x79\x9b\x2c\x22\xea\xcd\xdb\x37\x6f\x23\xf3\xb7\x54\xaa\xfc\xf0\xf7\xbf\x3f\x3c\x3c\x00\x31\xc9\x05\x2e\x16\x7f\xaf\x72\xf7\xf7\xcb\xf3\xc9\xc7\xeb\xe9\xc7\xd8\x24\xf9\xcd\xdb\xe8\x5f\x45\x46\xa5\x8c\x04\xbd\x5f\x33\x41\xd3\x68\xf6\x14\x91\xb2\xcc\x58\x42\x66\x19\x8d\x32\xf2\xa0\x0b\xce\x94\x8e\x29\x74\x56\x44\x0f\x82\x29\x56\x2c\xfe\x16\x49\x57\xea\x6f\xde\x76\x4a\xa7\x11\x57\x95\x3c\x26\x3b\x04\xbc\x88\x48\x11\xfd\x76\x34\x8d\xce\xa7\xbf\x45\xc7\x47\xd3\xf3\xe9\xdf\xde\xbc\x8d\x7e\x9c\xdf\x7e\xfa\xf2\xaf\xdb\xe8\xc7\xd1\xb7\x6f\x47\xd7\xb7\xe7\x1f\xa7\xd1\x97\x6f\xd1\xe4\xcb\xf5\xc9\xf9\xed\xf9\x97\xeb\x69\xf4\xe5\x34\x3a\xba\xfe\x77\xf4\xf9\xfc\xfa\xe4\x6f\x11\x65\x6a\x49\x45\x44\x1f\x4b\xa1\xd3\xcf\x45\xc4\xb4\x20\x69\xaa\xcb\xb4\xaa\x40\x55\x02\x74\xfd\xd0\xbf\x65\x49\x13\x36\x67\x49\x94\x91\x62\xb1\x26\x0b\x1a\x2d\xf8\x86\x8a\x42\x57\x8f\x92\x8a\x9c\x49\x5d\x9c\x32\x22\x45\xfa\xe6\x6d\x94\xb1\x9c\x29\x53\x8b\xe4\x6e\xa6\x34\x1b\x9f\x6d\xeb\x0d\x29\x99\xab\x4e\x1f\xa2\x84\xe4\x34\x6b\x17\xdf\xe6\x8f\x37\x2b\x56\xa4\x1f\xa2\x89\x0e\x99\x10\x45\x32\xbe\x78\x93\x53\x45\x52\xa2\xc8\x87\x37\x51\x54\x90\x9c\xba\x88\x71\x62\xc3\xe3\x3f\xe0\x9f\xf0\xfb\x9b\x28\xca\xc8\x8c\x66\x52\x53\x45\xbb\xd0\x8e\x18\x36\x15\xf3\xf7\xf0\xa7\x89\xb5\x87\x56\xac\x0b\xc5\x72\xda\xd0\x56\x1c\x10\xdc\x8c\x93\x94\x8a\x7d\xf0\xa4\x2c\xab\x14\xaf\xde\xe8\xa2\xd1\x29\x74\x2c\x6c\x62\xf7\xf0\x29\x05\xdf\xb0\x94\x8a\x0f\xd1\xfd\x9a\x88\xd5\x5a\x56\x50\xba\xca\xea\xb2\x9a\x64\x44\xca\x0f\x11\xe3\xe0\x08\x40\xac\x8b\x82\x0a\x38\xa3\x05\x15\x44\xd1\xf4\x8a\xb0\xc2\xc4\x6a\xcb\x4f\xff\x55\x11\x5a\x6c\xff\xf8\x1d\xde\xc3\x29\x2b\x48\xe6\x68\x6c\x3e\xf7\xe4\xc6\x05\xc5\x7b\x40\xfe\xe1\x48\x52\x5a\xd2\x22\xa5\x45\xc2\xa8\x2b\x8d\x38\x5a\x08\xbe\x2e\xcf\xd3\x0f\x11\x17\x8b\x4a\x7c\x96\xc7\xca\xc1\x12\xa1\xd8\x9c\x24\x4a\x13\x39\x69\xc5\x4e\x4a\x4e\xf2\x25\x99\xb1\x8c\xa9\x1a\x35\x8a\x94\x20\x09\x2b\x16\xd5\xcf\x7d\xac\xfb\xd8\xb7\xc5\xfb\x5c\x42\x1c\x4d\xcc\x4b\x5a\x38\x96\x8e\x3e\x27\x52\x51\xf1\x12\xfe\x2b\x94\xf3\x2a\xb6\x1c\x2a\xd1\x33\x91\xac\x99\x8a\x67\x82\x92\xd5\xcb\xf8\x0e\xc9\x77\xce\x12\xc1\x4b\xc1\x75\x9f\x1e\xcf\xc9\x3a\x53\xb1\xe2\x19\x15\xba\x3b\x77\x00\x4b\x4a\x32\xb5\xfc\x5f\x49\x90\x65\xed\xe2\x95\x19\x51\x7a\x54\x8c\xcd\xf8\xf0\x4a\xc9\xe9\x30\xad\x8a\x4a\xf0\x22\x64\xbd\xd0\xf8\x8e\x44\x50\xa9\x5e\x2b\xab\x9a\x57\x70\xf9\x55\x94\xed\xbe\x3c\x5e\xc5\x2b\xfd\xa4\x75\x56\xc7\x75\x29\x0e\xc4\x51\xc8\x64\x49\xf3\x46\x4e\x71\xc4\xd2\x0f\x51\x97\xc4\x4d\x35\xa2\x39\xc9\x24\xad\xbf\x95\x44\x4a\xb6\xa1\x1f\x22\x25\xd6\xb4\x95\xca\x2a\x4b\xac\x98\x67\xeb\xc7\x74\xd6\x9f\xd8\xae\xa0\x9e\x17\x52\x85\x88\xa5\x7c\x8b\xa6\x27\xe9\xed\xcf\x77\x64\x43\x6e\x9f\xca\x36\xe0\x4e\x4a\xf5\x1c\x8e\x17\xb4\x50\x50\xf1\x81\x73\xf3\x72\x32\x9b\x54\x41\x7b\x44\x51\x50\xa5\x9e\x3a\xed\xf1\xe5\xc2\x68\x30\x31\x71\xec\x50\x55\x02\xa9\x0b\xcd\x93\x3c\x0c\x23\xd0\xd8\x70\xad\x5f\x3f\x29\x55\x62\x22\x21\x0f\xf2\x5d\x4c\x13\xe9\x4f\x20\x15\x22\x26\x8e\x2d\x9a\x60\xb5\x43\xf3\x01\x9a\x48\xf8\x38\x99\xbe\xc3\xc4\xf0\x8b\x95\xba\x07\xf7\x27\x05\x07\xe8\xe8\xf4\x9c\xc7\xae\x90\x5a\xe9\xee\x92\x1c\x92\xb1\x06\x06\x5c\x64\xf8\x0f\x2b\x4f\x59\x46\x4f\x88\x22\xa7\x26\x64\x4f\xe6\xe6\x19\x51\x25\x49\x56\xfe\x72\x57\x21\x62\x65\xbc\x45\x33\xa0\x8c\xf7\x4a\x6b\x0b\x6e\xa0\xb8\xaa\xd8\x70\xea\x5e\xb6\x04\xd6\x53\x8f\x76\xa2\x63\x75\x49\x66\x5e\x65\x6d\xe0\x30\x41\xb7\x09\x82\xb5\x24\xc3\x04\xa6\x59\x4f\xde\xc9\x83\x8c\x65\xe1\xb7\x37\xd1\x80\x3d\x9d\x49\x8b\x24\x64\x5f\x02\xb2\x90\x30\x2d\x24\x26\x81\x84\xaf\x93\xe5\x8c\x48\x8f\x7d\x49\x0d\x89\x49\x61\x9b\x28\x98\x1c\x6a\x46\x30\xa9\xde\x30\x79\xa4\x6c\xc1\xf4\xba\x34\xa1\xa4\xf0\x27\x92\x36\x2a\x26\x95\x3d\x74\xc1\x04\xd3\xe6\x05\x27\xf6\xc7\x17\xfd\x03\x13\x8f\x5e\x54\x0a\x7f\x72\x31\x70\x98\x40\xda\x04\xc1\x24\x61\x98\xc0\xad\xfe\x8f\xe5\x7d\xef\x0a\xe9\xe5\x32\xd8\xb7\x06\xda\x2b\x8b\x7d\x84\xa1\xe6\x65\x15\x2f\x3b\x35\xbb\x71\xbf\xfa\x66\x67\x39\x61\x99\x3f\xc1\x68\x34\x74\x20\xc9\x77\xc4\x70\x40\xd5\x70\xb2\xe4\xe5\xfb\xb1\x71\x35\xdf\x11\xdd\x77\xc3\x78\x74\x64\x96\x93\xd1\x39\xd6\x71\x47\x30\xde\x3b\xb9\xc9\x59\x4e\xe3\x7c\x9d\x29\x56\x12\xa1\x46\x55\x30\x5d\xb8\x70\x45\x58\xd6\xad\x4f\x7d\x13\x23\xcd\x19\x6a\xce\x70\xc5\x72\x7a\x55\xfd\x42\x27\x95\x0b\xce\x17\x19\x8d\x67\x6c\x71\xbf\xa6\xe2\xc9\x5f\x2d\xdd\x02\xc6\x2a\xec\x16\x69\x2c\xef\xb3\xb1\xa5\xb9\x9f\x6b\xb0\x1e\xd2\xb2\x83\x8a\x1d\x9c\x99\xdf\xc7\x6c\xf1\x55\xff\x3c\xa0\x08\x9f\x87\x92\xf7\xd9\x16\xdc\xf4\xeb\x25\x3a\x42\x0b\x5e\xce\xf8\xa3\xc7\xc1\xd9\x02\xa2\xe3\x72\x87\x24\xdc\x90\x6c\xd9\xc0\x89\x7d\xf6\x2e\x84\xe5\x7b\xcf\xeb\x60\xf9\xbe\x67\xe6\xda\x22\x09\xbb\x0a\x96\xef\xe1\xe8\xc7\xf4\xdd\xf4\x3d\x26\x84\x3b\xc9\x8b\x78\x43\x32\x96\x12\xc5\x3d\x4e\x4b\xba\xb8\x98\x48\xf6\x52\x06\x93\x8c\xe6\x56\x33\x83\x0b\xc9\x8b\xef\xd5\x2f\x4c\x4c\xd9\x3a\x9f\x51\x71\xe7\x75\x99\xd7\x60\x62\xe2\xd9\xa1\x0a\x26\x9a\x86\x13\x5c\xd6\xaf\x98\x50\x1e\xe8\x4c\xf2\x64\x45\x55\x7c\x27\xc5\xfb\x7f\xfc\xd3\x9f\x68\xb6\x91\x31\x01\x3d\x43\xeb\x59\x4c\x35\x17\xb0\x5c\xe0\x62\xfa\xed\xfd\x3f\xfe\xf9\x83\xce\xa6\xe6\x33\x26\x27\x37\xd2\xf8\x9d\xda\xb5\x40\x0f\x18\x30\x35\x59\x2c\x95\xa0\x24\x7f\xe1\x78\xd9\x62\x18\x7a\xac\x34\x13\x1c\x3b\xb0\x1d\x38\xcd\xd9\x0f\x61\xf3\xdd\x42\x9a\x9a\x0f\xe8\xd8\x20\x48\xb1\xe0\x3e\xb7\xd0\x2b\x44\x74\x74\xe8\xd2\x84\x1b\x1e\x1c\x1f\x38\x32\x2f\xf8\x16\xba\xe4\xc4\xe3\x52\x4d\xa3\x61\xf3\x62\x1d\x7e\x47\x1e\x67\x03\xf2\xd5\x9a\xdb\xea\xd8\x30\xe5\xa4\xbc\x20\x8f\x33\x7c\x87\x54\x50\x9a\x13\xb1\xf2\xb9\x14\x6f\x30\xb1\x42\xde\xa1\x0a\x56\xcc\x0d\x27\x38\xad\x5f\xd1\xa2\xa6\x62\x73\xd0\x21\xd7\xc1\xa5\x6d\x01\xd1\x25\x68\x87\x24\xd4\x62\xdc\x71\x81\xa9\x7d\xa2\xbd\x35\xf3\x28\x80\x05\x43\x33\xdf\x04\x87\xeb\x4b\x99\x82\x33\x86\xe6\x98\x3c\xc8\x78\xc5\x0a\x2a\x99\xe7\x6d\x5c\x07\xda\x33\x21\xae\xc8\xe2\x39\x13\x74\xc9\xc7\xec\x67\xee\x60\xbd\xc2\x04\x1b\x1c\x2b\xf8\x6c\x9f\x83\x86\x27\x1d\xbf\xca\x6e\x05\x70\xea\x7e\x63\x45\xc5\x4b\x5a\x48\xe5\x75\x1a\x5a\x43\x62\xc5\x54\x13\xc5\x05\x5d\xab\xe6\xf8\x7f\x70\x19\x35\x40\x2b\xfa\x24\x15\x2f\x46\x97\x76\x83\x94\xb0\x22\x1d\xd3\x9b\xee\x64\x8d\x6f\xc8\xcb\x51\x16\x59\x4b\x35\xe5\x05\x38\xf2\x81\xcd\x83\xf7\x0e\x35\x3b\x70\xe5\x0a\xd7\xf6\x39\xa8\x36\x37\x28\x55\xa1\xc2\x67\xf7\x32\x12\xc7\x16\x29\x4c\xcc\x63\x24\x86\x2e\x4e\xb8\xe6\x1b\x32\x32\xbe\x29\x00\x98\xea\xff\x23\x11\x6c\x55\x80\x33\xf3\xc0\x9a\xf5\x8c\x88\x84\xa7\x1e\x0f\x90\x1c\x20\x36\xd3\xea\x92\x0c\x9c\x68\xb9\xc8\x70\x6c\x9f\xe8\x54\x4b\x16\xb9\xcf\x09\x64\x91\xa3\x5b\xfc\xad\xf0\x70\x47\xa3\x45\x5e\xc2\xb4\xc8\x0f\xd1\xb3\x78\xe7\x5d\xcf\xe2\x5d\xcf\x78\xda\xa6\x09\xad\x67\xf1\xce\x6c\x31\x7d\x9c\xec\x55\xb5\xa8\x14\x08\x5f\xa6\x34\xd5\x51\x42\xdc\x9b\xe7\x0e\xc5\xc1\x39\xde\x3e\x29\x39\x2c\xa5\x87\x9f\xbc\x84\x49\xf5\xf0\x43\x02\xcd\x05\xae\xcc\x03\x3d\x78\x5a\xeb\x3e\x6b\xe9\xb1\x0f\xaa\x10\x51\x21\x74\x69\xc2\x89\xc1\xf1\x81\x2b\xf7\x82\x6e\x8f\xdf\x79\xdc\xa7\x49\xef\xd0\xfd\x99\x26\x38\xdc\x96\xf8\x5d\x06\x27\x17\xe8\x81\xc0\x8c\x17\xac\xd1\xd1\xf6\x30\xfc\x18\x3c\x2c\xdf\x1d\x8a\x60\x59\xb7\x5c\xe0\xd8\x3c\x50\x3d\x41\xb2\x60\xdc\xe3\xea\xc7\xe2\x61\x02\xe8\x50\x04\x13\x80\xe5\x02\xd7\xe6\x81\x2a\xb1\x88\xa7\x52\x71\x8f\x1a\x2c\x06\x0f\x13\x40\x87\xe2\xa5\xc7\xa9\xe5\xa2\xac\xdf\x3b\xc0\x03\x35\x5d\x4c\xd4\x4a\x95\x63\xca\x16\x05\x51\x6b\x71\xd8\x24\xb6\xd8\x50\xa1\xbb\x5a\x87\x31\x31\x8f\xc3\x94\xce\xb6\xa2\xde\x9c\xdd\xa0\x13\xaa\x24\x8f\x65\xee\xb1\xb2\x5a\x3c\xb4\xac\xda\x14\xe1\xf4\x8c\x72\x98\x5c\xf5\x4e\xa9\x88\x5a\xd2\xc2\x63\x5f\xd5\x02\xed\x9d\x58\x75\xc8\xc2\xce\xad\x2c\x2b\x38\x32\x0f\x54\x93\x75\xb5\x9e\x51\x51\x50\x45\x3d\x56\x89\x06\x13\x93\x49\x43\x15\x97\x54\x48\x26\x15\x2d\x54\xbc\xe1\xd9\x3a\xa7\x32\x4e\x32\xc2\xc6\x54\x9a\x1d\xec\x94\x96\x19\x7f\x32\x37\x17\x3d\xa0\x2d\xcb\xd1\x8b\xfc\x16\x4a\xc1\x53\xea\x23\x35\x05\xc9\xa9\x2c\x49\xe2\x05\x2c\x59\x4b\xc5\xf3\x58\x50\xc9\xd7\xe2\x05\x90\x66\x05\xbb\x64\x73\x15\xcf\xd6\x2c\x4b\x7d\x24\xad\x4e\x53\x7c\xbf\xe6\x63\x06\xfe\x3d\x88\xf5\x7d\xb4\xd8\x5c\x77\xe5\x59\x46\x85\x8f\xb4\xde\xf1\x11\x27\x30\x7b\x25\xa7\x13\x36\x67\x0b\x1f\x89\x92\x54\x6c\x58\x42\x63\x92\x24\x7c\xed\xa7\x25\x48\x9a\x08\xea\x09\xc9\x24\xce\x07\xd4\x6e\x47\xe2\xa3\x61\x98\x62\x88\xc7\xe9\x6f\xed\x26\x91\x8f\x69\x12\xc3\xc6\x80\x86\x1d\x2c\x4b\x02\x9f\xeb\x9f\x9f\x6e\x8e\x06\xed\x46\xb5\x80\xea\x36\xf8\x97\x69\x83\x2d\xd0\x6f\x55\xc8\x57\x1d\x30\x16\xdf\xd5\x82\xbf\xaa\x2a\xda\x62\x30\xb5\x41\x47\x2e\x64\x2c\x07\x5b\x8e\x7f\xe9\x72\x6c\x81\x4f\xcc\xd7\x2b\x52\x0e\xc3\xad\xdb\x2a\xd8\x5e\x0e\xbe\x54\x1f\x8e\xcd\xef\xf1\x62\x30\xcd\xaa\x93\x7b\xf3\x65\x2c\xa0\x19\x6b\x5a\x70\xd7\xfa\xf7\x0b\x0b\x69\x4f\xe1\x8c\x86\x6c\x9a\xec\x5f\xae\xc9\xb6\xc0\x6f\xea\xc0\xef\x36\xec\x25\x65\xf4\x97\xeb\x4f\xb7\x8a\xca\x56\x00\x8f\xe9\xff\xcb\xce\x5d\xd0\x6c\x18\x8a\xd1\x15\xd9\x8c\xd4\x75\x83\x6c\x57\x66\x13\x52\x37\xc8\xf1\x6d\xbd\x1e\x1d\xff\x6a\x8d\x8e\x9d\x36\xdf\xdc\xe7\x6e\x08\xc6\xf2\xbb\xe3\xb3\x16\xf6\x05\x9f\x8d\x05\x6a\x4d\xf6\x5a\x80\x27\xcd\xd7\xd1\xa5\xcc\xd3\x4e\x81\xf2\xf1\x2d\xbc\x99\xb4\xb5\x5b\x65\xfd\x11\xd5\x80\x4f\xe7\x1e\xf5\xde\xd3\x39\x36\x3d\x6f\x82\x83\x0d\x53\x65\x3a\x87\x9b\x74\xbe\x7f\xf7\xb7\x7d\x0d\x79\xdc\xde\x6f\xeb\xa2\xf1\x33\x7b\x08\xc3\x4f\x22\xf7\xac\xfe\x32\x92\xcf\x52\xdf\x4b\x4a\x0b\xda\xbb\xa4\xec\x90\x85\x5d\x52\x5a\x56\x70\x69\x1e\xe8\x92\x52\x2a\xc1\x8a\x85\xa2\x79\x99\x11\xe5\x71\x4b\xb8\x8b\x8b\xc9\xc6\x52\xc6\x5b\xa4\xe1\x4e\x74\x3a\x09\x83\xa9\xf9\x79\xeb\x7e\xe2\x92\xe2\x5e\x4f\xb7\x34\x1c\x2e\x17\xfe\x0a\xe7\x5b\x9a\x09\x4c\xf5\xff\x03\xf4\x1a\xe5\x92\x52\xe5\x71\xef\xa1\x03\x8b\xc9\x62\x1f\xe1\x58\xb5\x46\x0b\x32\x5a\x45\x72\x94\x7e\xa3\xe5\xd9\x55\x4f\x9c\x9a\x6f\xfb\x14\x14\x07\x61\xb6\xc1\xb0\x22\x9c\xfb\xbc\x86\x35\xc7\x2f\x5f\xc9\xf9\xf8\xcb\x46\xf3\x17\xdc\x17\x1a\xc5\x76\xa0\xa6\x1d\xcb\x28\x08\x9a\x73\xdd\x77\xcc\xb7\x6f\x78\x0d\x88\x7c\xaa\x06\x2e\x62\xb6\x22\x63\x65\x1d\x40\xcb\xff\x20\x05\xff\x81\xba\xfd\x2d\xd5\xbf\x61\x85\xd0\xa8\xf5\x1f\xa4\xd2\x7f\x47\x92\x95\x3c\x64\x82\x72\xf0\x95\x07\x0b\xe8\xe8\xf6\x1e\x53\x98\xbb\x0e\x5d\xba\x81\xd7\x17\x6c\x5c\xb8\xb0\x4f\xf4\x98\xa0\x14\xac\xf0\x7a\xa6\xed\x00\xb1\xb2\xce\xca\xe0\x27\xda\x2e\x15\x70\x63\x9f\x07\x0c\x50\xe5\x7a\x26\xd7\x1e\x55\xb9\x3b\xb0\x07\x0c\x50\x1d\xc2\xd0\x83\x8a\x65\xe6\x06\x80\x1b\xf3\x03\x3d\xf7\xcb\x7d\x2a\x7d\x6a\x34\x74\xbe\x9e\x87\x57\xcd\xd4\x3c\x60\x72\x75\x3e\xed\xbf\xfb\xe5\xf3\xc4\xa4\x42\xec\x9d\xf0\xcb\x31\x3b\x9a\x63\xae\x7f\x51\x09\x53\x2a\xd1\x79\xfe\x92\xfc\xa2\x59\x42\xa4\x47\x8d\xe7\x1a\x12\x13\x44\x4d\x14\x2b\x5e\xb2\x64\xec\xc8\xde\xc0\x98\xfb\xac\x2f\xb8\xda\xdb\x20\x49\x3a\x66\x35\xb6\x93\x1e\x3f\x49\x19\xa1\xff\xb9\x0d\x72\xbf\xa6\xeb\xd1\xda\xa8\x0d\x4c\xc6\xa4\x87\xc4\xb0\x42\xaa\x97\x68\xc7\x36\x48\x7a\x7d\x36\x5b\xcf\xe7\xe3\xf5\x7e\x1b\x2c\xa2\x78\xce\x92\x0d\xc9\x7c\x08\xaa\xda\x78\xa3\xe9\xa8\x3a\x30\xac\xa1\xd7\x6c\xa1\xc3\x16\x3e\x55\xdf\xbf\xb5\x3f\x0f\x9a\x58\x36\xd0\xba\x45\x34\x88\x53\x9a\x0e\x3b\x20\x68\x80\x3a\x29\xbb\x1a\x9d\x1e\x53\xa3\x1b\xa0\xaf\xfa\xe7\x48\x28\x5b\xf2\x85\xb9\xed\xd8\x20\x1e\xb5\xbe\x8e\x04\xd6\xcd\xa5\x01\xbc\x64\x72\x98\x0a\x71\x03\x64\xfa\xc7\x06\xe9\x56\xff\x1c\x09\xd5\x34\x99\x56\xfd\xa8\xbf\x8d\x2d\x53\xd7\xf1\xb6\x0a\xd6\x7d\x19\x09\x58\x75\x11\x0d\xe0\xb9\xfb\x32\xba\xfa\xaa\x76\xed\x45\x6f\xc2\x78\xbd\x14\xdf\x73\x21\xfe\x15\x2e\xc3\xcf\xf8\x23\x1c\xe3\x97\xe0\x1f\xb8\x48\x8d\x79\x5f\x8f\x97\x77\x2b\x48\x2c\xf7\xdb\x44\xc1\x64\x50\x33\x82\x1f\xd5\x1b\xba\x48\xa6\x42\x3d\x7a\x36\x4f\xd3\x60\xa2\xcb\xe4\x6d\xaa\x60\x22\x31\x9c\xac\x59\x9a\xef\xfa\xf5\x20\x8b\x81\x4a\x90\x42\xfa\xdd\x0d\xee\xe2\xf6\x4e\x9c\xb7\x29\xc3\x4e\x9f\x6b\x6e\x70\x5b\xbd\xa1\x53\x69\xb2\x4c\xe2\x07\x9f\xeb\x09\x83\x87\x0a\xa5\x4d\x71\xf8\xc5\xc9\x76\xe4\xf0\x2b\x91\x65\x02\x0f\x12\x7e\xa0\x6d\x2e\xcf\x32\x8f\xad\x4d\xa3\x61\x62\x6b\x85\x87\x53\x37\xcf\xb2\x12\xae\xb2\x0c\x6d\x56\x4c\x24\xfe\x72\xcd\x44\x82\x65\xba\x09\x0e\x67\x97\x55\x24\x70\x2e\x12\xdc\xd8\x48\xb2\xf4\xb8\xdf\x26\x93\x25\x96\x67\x99\x84\x3f\x28\x49\x4a\x98\x26\x68\x29\xcf\x28\x29\x98\x47\xc5\x6a\x8b\xe7\xc8\xf6\x5f\xec\x6a\x53\x0c\xbd\xd7\x65\xe2\xc2\x31\x25\xc5\xf9\x17\x74\x77\xd1\x74\xc9\xf9\xbd\xe7\xd1\x20\xbf\xef\x1d\x06\x6a\x92\xb0\xfd\x7f\x7e\x0f\x57\x5f\xd1\x1e\x3f\xf1\x6a\x18\x21\x69\x0c\x23\x3c\x63\xed\x71\xfc\x96\x82\x8e\xfb\x7f\xd4\x98\xe6\xd0\xc4\x1f\x7d\xfc\x62\x22\x8f\xe3\x7e\x58\xb1\x91\x12\x26\xfc\xe8\x06\xb7\xb9\xb8\xf2\x78\xbc\xaf\xd1\xb0\xa2\x6a\x85\x07\x34\xb8\xb8\x22\x70\xcb\x56\xe8\xad\x16\x29\x3d\x76\xb7\x52\xe2\xbd\x6d\x1d\x1c\xae\xb7\x95\x4b\x98\xca\x25\x96\xe3\x47\x99\xa9\x58\x92\x47\x9f\xe7\x3a\x0d\x26\x96\xff\x1d\xaa\x60\x62\xd0\x9c\xc0\x70\x82\x9f\x32\x53\x53\xfd\x86\xde\x0f\x20\x73\x9f\xb5\xdf\xc0\x61\x92\x68\x13\x84\xd3\x8f\xd5\x4c\xe0\xb3\xfe\xdf\xa3\xc8\x42\x49\xee\x55\x81\xa5\xd1\x0f\x78\x4e\x71\xe5\x15\x34\x08\x9c\xce\x40\xbf\x21\xa3\x99\xe0\x0f\x3e\x2d\x13\x5b\x3c\x4c\x00\x1d\x8a\x50\x67\xbd\x96\x09\x1c\x9b\x07\xba\x2c\xdb\x08\x1e\x8b\xd2\xe3\x4c\xbb\x42\x44\x27\x2a\x1b\x31\xe2\x66\xdb\xc0\x59\xca\x46\x70\x38\xda\x08\x7e\xc0\x09\x68\x42\x32\x5a\xa4\xc4\xe3\x59\xf0\x16\x30\x26\x8c\x2d\x52\x3f\x66\xc8\xb6\x18\x87\x3e\x55\xad\xd8\xb9\x73\xd5\x89\xfb\x39\x46\x43\xa7\x86\xea\xe8\xfd\x54\x88\xfd\x2d\xda\xee\x13\xd5\xf6\xe8\x7c\x6f\x53\xd5\xc0\x58\x91\xee\x27\x0d\xbc\x61\xd5\x98\xe0\x33\xbb\x56\x3f\xaa\x9f\xe8\x8a\x33\xf1\x7b\xa7\xdd\xe2\x61\xa2\xe9\x50\x84\x33\x63\x69\xb8\xc0\xc5\xa4\xef\x2e\xbb\x24\x19\x95\x73\x2e\x12\x9f\x5a\x9c\x35\x26\x3a\x10\x6e\x53\x85\x1b\x0c\x6b\x4e\x30\xad\x5f\xd1\x5a\x31\x2b\x3d\xce\x09\x34\x1a\x5a\x23\x9a\xf0\x70\xf5\x61\x56\xe6\x70\x71\x7c\xd3\x77\x7d\xd6\xbb\xe3\x97\x03\xfc\xbe\xbc\x92\xdb\x97\xca\xeb\x0b\xda\x1a\xca\x6c\x5d\xac\xe2\x25\xf5\x38\x1f\x68\x30\xd1\xd6\xb0\x4d\x15\xae\x35\x18\x4e\x4b\x9a\xc0\xd4\xbc\x7d\xfa\x38\xc1\x2d\xdb\x26\xb4\xf0\xd8\x39\x58\x3c\x4c\x14\x1d\x8a\x80\xd6\x6c\x35\x17\xb8\x34\x8f\xde\xd3\x8d\x95\xcf\xfb\xf4\x15\x62\x4f\xbb\x68\xd3\x84\xdd\xcb\x5a\xe5\x12\x3e\x5f\xe1\xfe\x90\x12\xb9\xf1\xb8\x99\x25\x37\x8e\x66\xef\x0e\x65\x13\x3c\x70\x7b\x32\x91\x1b\x98\xc8\x0d\x6e\xd9\x73\xc9\x7c\xda\xf4\x5c\x32\xdc\x9a\x67\x13\xfe\x62\x7f\x47\x4b\x26\x2e\x1a\xc5\x50\xfb\xe1\x67\x9e\x8d\x2a\x77\x1d\x17\x4e\x1d\xe2\x40\xd7\x47\x55\xd4\x9f\x79\x36\x32\x26\xda\xde\x14\xcf\x99\xc7\x63\x76\x8b\x87\xb6\x35\x43\x11\xe7\x54\x4a\xb2\x68\xfc\x67\x0e\xb7\x2f\x69\x71\x5e\xa0\x96\xe5\x10\x5e\xa4\x93\x55\xe5\x66\xfc\x76\x70\x85\xf0\x42\x9d\x39\x07\x33\x52\x6f\x6a\x60\x37\x66\x78\x41\x92\x31\x73\xbc\x56\x95\x24\x18\x55\x9d\xc7\xab\xea\xf7\x30\x1b\x9c\x1d\x4c\x49\x95\x43\xdb\xd1\x11\x19\x84\x63\xc4\xe1\x90\xbe\xeb\xf7\x17\x60\xd5\xca\x35\x2e\x9b\xfa\xe7\x50\xbd\xa9\x2d\xc4\x06\xec\x45\x38\x56\x07\xcb\x22\xed\x51\xc0\xda\x3a\x91\x65\x99\xc7\x03\x30\x8d\x86\xb5\x76\x1d\x1e\xdb\x64\x8e\xad\xd9\x06\x42\x52\xb1\x79\x05\xfb\x6c\x2c\xe3\x60\x59\xc1\x15\xcb\xf8\xd4\xbc\x0e\x2a\x19\x03\xe1\xca\x45\x43\x4c\xcc\x6b\x8f\xae\x82\x57\x45\x05\xb4\xf3\x5d\x6e\xcf\x78\x7d\xdb\x76\x26\xcb\x04\x8e\x96\xe8\xc1\x73\xc6\x17\x1e\x67\xb8\x7c\x81\x4e\x6f\xf9\x81\x03\xcc\xe8\xcd\xcf\x8c\x2f\xe0\x92\x2f\xd0\x7d\x3f\x41\xca\xe5\xbd\x4f\x77\x03\x16\x10\xcb\x78\x97\x24\xdc\x8e\x9c\x65\x03\x67\xf6\x89\x7b\xa2\x93\x62\x5d\x7a\xbd\xf1\x54\x43\x62\x92\xa8\x89\xe2\xcd\xe8\x7d\xce\x6d\x46\x01\x9d\xd8\x39\x46\x70\x52\xbd\x0d\xea\x7e\x9a\xf8\x9b\xbc\x81\xf8\x8e\xee\x61\x2e\xb3\x3f\x3d\xde\x38\xc8\xfe\x74\x34\x19\x29\x16\x6b\xb2\x68\x67\x7c\x99\xfd\xa9\xa8\x90\x75\x47\xbe\x77\xe6\xdd\x20\x0c\x54\xbf\xce\xfe\x84\x4f\x97\x7f\x0e\x9b\x24\x9b\x48\xd9\x9f\xb7\x26\x55\x97\x2e\xc5\x7b\x64\x74\x27\x79\x51\x12\xe5\x55\x61\xc6\x22\x3e\x2f\xad\x2d\x8a\x43\xa4\x51\x45\x31\xbe\x74\x6e\x88\x5a\x62\x59\xe2\xdc\xa3\xc2\x88\x46\xc3\x5a\x61\x2b\x3c\xdc\xbe\x1b\xe7\xf7\x70\xc1\xf9\x3d\x6e\xa0\x2d\x5d\x7b\x3c\x7f\x5d\xa7\x6b\x2c\xdb\xad\xf0\x80\xd6\x89\xd2\x35\x7c\x5e\xa7\x6b\xb4\x91\xa7\x73\x8f\x9b\x2a\x1a\x0d\xcb\x76\x2b\x3c\xdc\x75\x8b\x74\x2e\xe1\x53\x3a\x47\xb5\x19\xef\x12\x9f\x6e\xb4\x12\xdc\x77\x56\x12\xde\x61\x56\x22\xe0\x22\x41\x57\xf4\x29\x9d\xd1\x5f\x6c\x9d\xc7\xf9\x93\xf4\x39\xe7\xe8\xe2\xa2\x03\xee\x3e\xca\x70\x23\xa6\xe3\x06\x27\xee\xe5\xea\x69\x8a\x4f\x44\x12\x2e\xbc\x7a\x07\x16\xf4\xf9\x3e\x9c\x3e\x26\x4b\x52\x2c\xe8\x8d\xe0\x25\x15\xea\xa9\x0e\x48\x24\xcb\xcb\xac\x99\x65\x24\xdc\x5c\xac\x68\x06\x2d\x41\xe7\xf5\xfb\x16\xed\x92\x92\xc6\xc5\x42\x1c\xb5\xbc\x98\xc7\x91\xe2\x2b\x5a\xb0\x5f\x43\x64\x59\x25\x1b\x04\x9d\xc3\x37\x3a\xef\x8c\x19\x78\x8c\x8a\x9b\x80\x5b\xf7\x36\x20\x72\xe9\x64\x02\x1f\xb7\x84\x34\x00\xc3\x8a\x02\x3e\x99\xc7\x80\x78\x56\xa2\x30\x35\x8f\x01\xf1\xaa\x62\x82\x89\x7b\x19\x12\xd7\x31\x9d\x0c\xe6\xea\x22\x9e\xb2\xad\x58\xdb\x47\xc6\x19\x4f\x98\xf2\xe8\x0b\xb4\x42\xc4\x5a\xfb\x16\x4d\xc0\x63\x67\xcb\x07\xbe\xbb\x97\xde\x63\x04\xe6\x53\xd7\xa8\x42\xc4\x44\xb1\x45\x13\xf6\x18\x81\x91\x1c\xce\x8f\xae\xd0\x63\x04\xba\xf4\x7c\xe2\xee\x00\x31\x21\x74\x49\x82\xc9\xc0\xb1\x81\x8f\xf6\x89\x9e\x33\xfa\x1c\x06\x7b\xc6\x3e\x79\x9f\xc5\x52\x71\x41\xd3\xb1\x4b\xcd\x57\x18\x32\xe5\x7d\x06\x3b\x63\xe4\x01\x71\x6c\xc6\x74\xd4\xa9\x79\x43\x27\x5e\x4c\x78\x54\x73\xd4\x68\xe8\xd4\xab\x09\x0f\x37\xf7\x62\x82\xc0\x05\x13\xa8\x8a\xe3\x8c\x92\x20\x1e\x5c\xbb\xb8\x98\x28\xf6\x52\x86\xbb\xd4\x48\x49\xd1\xb2\xf5\x72\x4c\xc9\x61\x2e\x5c\x69\x46\xa4\x62\x89\xa4\x44\x24\xcb\x58\x50\x9f\x46\x0f\x76\xb1\xd1\xfe\xea\x39\xea\x70\x5d\x57\x9b\x23\x7c\x6c\xff\x42\xa7\xad\x64\x3e\xa7\xcc\xa7\x76\x40\x85\x88\x89\xa7\xa2\x89\x47\xf6\xea\x5b\x28\x19\x27\xe9\xab\x8c\x0f\x15\x47\xd0\x1c\x61\xe2\x7e\x5d\x72\x92\xee\xd1\xd2\x3a\x14\xcb\x0e\x39\x15\xd8\x01\xea\x5e\x5e\x55\xdf\xfb\xb5\xde\x47\xfa\x4e\xdf\xb3\x6e\xe9\x40\x0d\x5a\x44\xd8\x98\xf0\xd3\xb8\x3e\xef\x9f\xe3\xb6\x34\xe9\xdb\x11\x71\xbd\x21\x22\x3c\xba\xdc\x33\x70\xe8\x98\xde\x22\x08\xa8\x28\x44\xc4\x0a\xa6\xfa\x3f\x7a\x7a\xe7\x53\x31\x24\xaf\x35\x3f\xf6\x9f\xdd\xd5\xc1\xe1\x26\xf5\xf5\xc8\x91\xcb\x0d\x5c\xc9\x4d\x9f\xf6\xb8\x5f\xcd\x71\x47\xb4\x77\x1b\xba\x15\x3e\x50\x2f\xa6\xd6\x05\x47\x35\x63\x14\x11\x7a\xe1\xee\x2f\x43\x0e\x10\xcb\x53\x97\x64\x60\xb6\x5c\x64\xb8\x25\x42\x2f\x44\xfb\xef\x23\x4a\x9f\x76\x28\x2b\xc4\xde\xf5\x97\x1c\x63\x7d\x72\x8c\x45\x27\x25\x61\x7a\x8b\xab\x71\x11\x95\x11\x99\xfb\xbc\x98\x58\x21\xa2\x62\xe8\xd2\x04\x54\x03\xb1\x7c\xe0\x48\xbf\xec\xa8\x30\x6c\x2b\x0a\x78\xbd\x78\x6b\xe0\xd0\xce\xab\x45\x10\x50\x5f\xa0\x60\x1c\xae\xf4\xff\x3e\x55\xdf\x00\x56\x8d\x0f\x33\x6a\xfc\x7a\x36\x8d\xbb\x26\x8d\xd1\x8b\x81\x79\xe9\xb1\x4d\x68\x34\x74\x5a\xd4\x84\x87\xbb\x06\x98\x97\x25\xfc\xcc\xcb\x03\x9c\x50\x6e\x68\xa1\x66\x82\xa5\x0b\xdf\xc6\x3b\x5a\xc8\xbd\xbd\xe4\x2e\x6d\x60\xe7\x94\x0d\x3f\xf8\xd8\xbc\xf7\xb8\xfe\x5e\x7a\x35\x14\x69\xf0\x30\xc9\x74\x28\xc2\xa9\x4c\x18\x2e\x70\xc6\xd4\xa7\x1e\x6b\x90\x5c\xf8\xec\x31\x0c\x1c\xba\xd4\x6b\x11\x84\x5b\x97\x69\x26\x30\xd1\xff\xf1\x1e\x22\x8b\xef\xc8\xa3\xd7\x5e\xc2\x22\x22\x6b\x9e\x97\x9c\x9d\x3c\x36\x47\x21\x3f\xaf\x2e\xf7\x9e\x86\x74\xd3\x93\xa5\xcc\xa3\xf3\x01\x8d\x86\x95\x6d\x2b\x3c\x9c\x92\x7f\xca\xe6\x70\x99\xb2\xbd\x0e\x08\xba\xb7\x54\xfc\xfa\xe1\x3d\xc0\x0d\xef\x2b\x79\xe1\x35\x4e\x78\x9f\x71\xc0\x5b\x25\xf8\x81\xce\xde\xdf\xf9\xcb\xbf\x81\xc3\x72\xdf\x26\x08\x67\xd8\x4b\x33\x81\x1f\xfa\x3f\x6a\x65\x67\x51\x30\x9f\x46\xab\x2c\x1e\x96\x7b\x4b\xf1\xb2\xdd\xab\x0a\x83\xe7\xe5\x7a\x8c\xc1\xab\x0e\xca\x8b\x15\xdf\x1d\x8e\x19\x51\x47\xdb\x01\x71\x20\x2f\xd2\x7d\x77\x18\x2f\xd0\xc0\x77\x08\x7a\x26\x10\xdc\x50\x83\xe5\x65\x27\x22\x12\xce\xcd\x2f\x33\x13\x19\x66\xe2\xdd\xc1\xd8\x9d\x40\x8b\x32\x7c\x43\xd1\x81\x98\x7c\x3b\x90\xf3\xf4\x8c\x0e\xf3\xf3\xef\x40\x24\x55\x0e\x62\xa8\xaa\xbc\x03\x68\xf4\xf7\x2d\xcc\x38\xfd\x7d\x07\x66\x55\xd1\x2d\xd0\x70\x5b\xa0\x95\x70\x6d\x43\xab\xc4\x6b\x7f\xa1\x8b\x4b\x5e\x2c\x78\x3a\x8b\x17\x82\x79\x55\x73\xea\xe2\xa2\xcb\xcd\x7d\x94\xe1\xd6\x9d\x96\x1b\x58\x6e\x70\x26\x58\x7a\xda\xe3\x50\xd8\xe7\x46\x74\x08\x47\x40\xc3\x9d\x03\xf3\x02\x26\x02\x37\xb6\x42\x7e\xad\x05\x35\xe7\xb1\x64\xe1\x3a\x3b\x8f\x13\x8f\x5d\x70\x74\x12\xf2\x2c\x79\xb8\x09\x89\x66\x09\x8e\xa5\x6b\x9a\xbd\xf7\x43\x04\x25\x89\x62\x1b\xea\x2c\x43\x78\x6c\x4d\xdb\xc8\x98\xb4\x9e\xa1\x0d\x26\xaa\x8a\x9f\xb3\x03\x21\xe1\x9b\xfb\x60\x4d\x40\xa0\x8d\x4b\x90\xd9\x8c\x29\x9f\xd6\xd7\x2a\x44\x54\x42\x5d\x9a\x70\x92\x71\x7c\xe0\x9b\x79\xb9\xfa\x8a\xf6\x33\x4b\xa2\x64\x22\x58\xe9\xf1\x38\xb7\xc1\x44\xfb\x9c\x6d\xaa\x70\x3d\x4f\xcd\x09\x26\x4b\xa2\xa6\xe6\xb5\x6f\xc9\x13\xc6\x60\xeb\xc1\xf6\x5a\x5f\xd5\x5c\xeb\x3e\x6b\xad\xbd\xbd\xb4\xe7\x7e\xb9\xbf\x27\x9e\x65\xe3\x1d\x0b\x5b\x84\x57\xec\xc3\x5b\x7d\xb7\xf3\x0f\x3a\xec\xba\xa0\x01\xd1\x39\x86\xe3\x8c\xcf\xf6\x42\xec\xec\x96\x48\x9a\xac\x85\x57\x75\xc2\x16\x28\x56\x3e\x2d\xb2\x78\x43\x05\x9b\x8f\x38\xd2\xde\x45\x92\x6c\x31\x62\x52\xb2\xf7\x18\xcd\x60\xd2\x9f\x57\x97\xa3\x4a\xb4\x95\x28\xf8\x99\x67\x53\xb6\x28\x06\xde\x31\xdc\x42\xf8\xae\x65\xc4\x0e\xc2\x68\x1d\xe7\x75\x40\xae\x2e\xa7\xee\x1d\x3d\xd6\x5b\x08\xce\x37\x1e\x2b\x84\xc5\x73\x64\x7b\x76\xe4\x3a\xe1\x83\xb6\xe3\x6c\x4c\x38\x33\x0f\x64\x17\xce\xaf\xe6\x51\x9f\xae\xd1\x1e\xed\xa2\x43\x4d\x44\xeb\xa8\x31\x29\x59\xf8\x89\x90\x54\xf0\x8d\x0e\x74\x91\x50\xc7\x3a\x2a\x59\x9f\x45\x48\x8f\xfd\x89\xcc\x50\x71\xb7\xc2\xc3\xda\x7f\xfc\x29\x33\xdc\x93\x01\x25\x85\x54\x24\xf3\xa8\xb5\x52\x43\x62\x02\xd8\x26\x0a\xaa\x06\x68\x18\x19\x0d\x40\xf3\x86\x2b\x46\x2d\x3c\x1e\x6c\x68\x34\x4c\x0a\xad\xf0\x80\x56\xaf\x16\x04\xa6\x64\x81\x1e\x6a\xcc\xb9\x4f\xff\x8e\x1c\x3d\xf4\x6c\x82\xc3\xf9\x59\xe4\x25\x9c\x72\xf4\xc4\xf3\x8e\x2f\x8b\x5f\x5e\xdd\xfa\x59\x40\x6c\x74\xb6\x6e\xfd\x3a\x74\x43\xaf\x11\x9a\xb8\x70\x61\x9f\xe8\x88\x28\x79\xe6\x51\xcb\x57\xa3\xa1\x35\x99\x67\x62\x92\xf1\xf5\x78\xe5\x72\x9e\x89\xd1\x7b\xc6\xad\xd4\x85\x6b\x47\x3c\x13\x30\xd5\xd9\x44\x6a\xd5\xfd\x9a\x25\xab\xb9\x4f\xb3\x35\x15\x22\x26\xfc\x2d\x9a\x60\x22\xa8\xf8\xdc\xc1\xd7\xea\x0d\xbf\xe1\xa8\x2b\x84\xc7\x6d\x1a\x07\x88\x89\xa2\x4b\x12\xf0\xb6\xa3\x61\x03\x17\xf6\x89\xef\x5a\x49\x15\xf3\x92\x16\xa4\x64\x7e\xe7\x73\x15\x6a\xdf\xbc\x6e\x8b\x2e\xec\x04\xcd\xf1\x32\x53\xae\x2f\x25\x2d\x7a\xa6\x5d\x73\x96\xd1\xf8\x81\x28\x9f\x0e\x1f\x1a\x4c\x74\x18\xda\xa6\x0a\xeb\xf5\xd7\x70\x32\xf7\xe4\x7e\xe8\x37\xb4\xc6\xf0\x19\x57\x73\x41\x72\xfa\xc0\x7d\xaa\x13\x77\x71\xd1\x5a\xb3\x8f\x32\x5c\xbd\xe9\x70\x83\x6f\xfa\xe7\x69\xf5\xb3\xaf\xf2\xf8\xad\x36\x7d\x15\xe6\x55\xaa\x8a\xae\x24\xe8\x99\xd2\xd3\x8c\x28\x9f\xee\x58\x1d\x20\x96\x79\x47\x62\x26\xf7\x63\x47\xe9\x2e\x9b\x70\x47\x50\x96\x0d\x5c\x3d\x1d\xeb\xe7\x30\x1b\x49\xdd\xb8\x7a\xc9\x80\x6e\x2a\xcf\x7c\xde\xa4\xd2\x68\xd8\xf4\xb1\x15\x3e\x70\x5f\x78\xc6\x05\x4c\x8e\xbf\x7c\x43\x27\x8c\x34\xf3\x7a\x1d\xd1\xc0\x61\x55\xaa\x4d\x10\xf0\x46\x93\xbc\xcf\xe0\xa3\xfe\x8f\xeb\x00\x27\x82\xe7\xd4\xab\x1b\xec\x06\x13\x6d\x58\xdb\x54\x01\x55\x82\x2b\x4e\x70\x55\xbf\x62\x42\x29\xa8\xf2\xb9\xc7\x6a\xe0\x30\x51\xb4\x09\x82\x49\xc1\x30\x81\x6b\xfd\x1f\x5f\x1e\xfa\xdc\x0e\xd2\x68\xe8\xac\x95\x87\xdf\x0e\xd2\x3c\xe0\x82\xe3\xdb\x41\x7e\x1d\x1a\xf6\xb9\x32\xd4\xe1\xa3\xd7\x7c\xaf\xe1\x01\xd1\xf8\x3e\xec\x73\x7b\xa8\x68\x46\x17\xc2\xe7\x8d\xfe\x0a\x11\x93\xdd\x16\x4d\x38\x07\x42\x8e\x0f\xdc\xba\x17\x54\x31\x9a\x14\x8b\x8c\x79\xdc\x40\x73\x80\x98\x20\xba\x24\xe1\x74\xa3\x2d\x1b\x38\xb3\xcf\x7e\x4b\xd1\xac\xa0\xd2\xe7\x24\xad\x8d\x8a\xc9\x63\x0f\xdd\xf0\x53\xc4\x16\x46\x3c\x67\x82\x2e\xb9\x7c\x1d\x6d\x7c\xc7\x14\x3e\xdb\xe7\xbb\x61\x87\x89\x1a\xa1\x4a\x6e\x05\x71\xea\x7e\xa3\x9a\xaf\xea\x81\x29\xaf\x83\xbf\x03\x44\x5b\xb0\x25\x89\xed\xfd\xea\xb1\x45\x55\xa1\x28\x96\xd3\x8c\x8d\xb1\x97\xde\xc5\x49\x99\xa0\x89\xb2\x9a\x77\xc1\x8b\xdc\x31\x85\x2a\xf1\x70\x6b\x3f\xdc\xba\xdf\x83\x4a\xbf\x02\x73\xb7\xd7\x1d\xd4\x74\xcf\xed\xf5\x03\x81\x3a\xa2\xa8\xf0\x4e\xcc\x47\xab\x89\xd8\x67\x2f\x3e\x96\x0f\x1e\x15\xe9\x1d\x60\x4f\xdb\x6f\x91\x04\xd5\xa4\x90\x0f\x73\x98\xfe\x38\xc5\x24\x50\xae\x67\x85\xcf\x6b\x32\x16\x0f\xcb\x7f\x87\x22\x58\xf6\x2d\x17\xb8\x59\xcf\xae\xf1\x6b\x32\x52\xf9\xcc\xbe\x46\xc3\x32\xdf\x0a\x0f\x65\x51\x56\xb3\x80\xa9\xc2\x73\x6d\xef\xba\xde\x7b\xbf\x61\x7b\x7f\xc0\x0d\xdb\xfb\x57\xba\x61\x7b\x2f\x61\x7a\xbf\x3d\x3a\x6d\xcd\xf9\xd5\xff\xfc\xfe\xbb\xc7\x25\x84\x86\x43\xd7\x10\x2d\x82\x70\x8b\x08\xcd\x04\x2e\xf4\x7f\xf4\x32\x05\x57\x1e\x27\x81\x1a\x0d\xcb\x79\x2b\x3c\x9c\x8e\x3e\x57\x04\xce\xbf\xdc\x1e\xe1\x7e\x8b\xb9\xdf\x5d\x7e\x07\xe8\xe8\x9e\x3d\x53\x3c\xaa\x49\x06\x96\xa6\x85\x37\x26\x59\x8f\x4a\xd6\x7f\x6f\x9e\xae\x7c\xb7\x6a\xba\xea\x6f\xd5\x0d\x4d\xe0\x9b\xa0\x2b\x09\x1f\x3f\xe3\xf7\xe6\x1f\x28\x51\x4b\x9f\x13\x45\x07\x88\x09\xa1\x4b\x12\xf0\xa2\x94\x61\x03\x3f\xec\x13\x1d\xd8\x92\x25\x4d\xd7\x99\x4f\x39\xd4\x90\xe8\x10\xb7\x45\x14\xd0\x61\xb7\x63\x04\xd3\xea\x0d\x6d\xf8\xe4\xd1\xe3\x40\xaf\xd1\xd0\x26\xdf\x84\x1f\x96\xab\x62\x43\x85\x9e\xd0\xea\x88\x70\x41\x1e\x67\x68\x4b\xbf\x63\x85\x47\x2b\xf8\x77\xcd\x7d\xb2\x67\xec\xa3\x8d\xb9\x6f\x36\xd6\x96\x8b\xe6\x06\x17\x3b\x37\x88\xba\x49\x6e\x84\xee\x4f\x0c\x0d\x26\x26\x8c\x1d\xaa\x50\x13\xb9\x96\xb6\x65\x53\x17\xd0\x1a\x6e\x44\xe0\xf3\x2c\xdf\x02\xa2\x55\xa3\x43\x12\x6e\x4e\x63\xd9\xc0\xc5\x99\x79\x62\x52\x78\x22\x79\xee\xb3\xd3\xb3\x78\x98\x0c\x3a\x14\xc1\x44\x60\xb9\xc0\xbf\xcd\x03\xdd\x1f\x9e\x11\x9f\x5e\x82\x0d\x1c\x96\xfd\x36\x41\xb8\x5d\x5e\xcd\x04\x3e\x1d\x93\x1e\x17\xc1\x7a\x71\x9d\x7a\xec\xe7\x1d\x60\xcf\xfc\xa7\x45\x12\x76\x41\x9f\xce\x60\x9a\xe2\xeb\x59\x52\xc6\x05\x55\x0f\x94\x6c\xbc\x0e\xfd\x6d\x58\x74\xf8\xdf\x43\x18\x50\x6f\xb2\x84\x9a\x19\x5c\x53\xf5\xc3\xbc\xa1\xf2\xb1\xb7\x17\x0a\xfe\xe0\x51\x38\x35\x26\x2a\x99\x6d\xaa\x70\x62\xa9\x39\x81\xbb\xac\x71\xcd\x1f\x70\x17\x33\x3e\xbd\x6a\x2f\x7a\x3c\x6a\xb7\xc2\x43\xf9\x11\xd2\x2c\xe0\x4c\x94\xa8\x27\x21\x56\xfa\xbc\xed\xab\xd1\xb0\x5c\xb7\xc2\xc3\xad\x80\xcb\xb9\x84\xf3\x9b\x53\xd4\x71\xaa\xee\xaf\x7c\xfb\xc8\x3c\xc0\x45\xe6\x2b\x79\xc8\xac\x1c\x64\xe2\x7b\x7e\xc4\xa3\xf6\xa7\x46\x43\xdb\x7d\x13\x1e\xae\xc5\x2b\xf2\x08\x53\x75\xf4\xb3\x77\xd3\x2f\x97\x1e\xb5\xd5\x2a\xc4\x9e\xa2\x6f\xd3\x84\xdd\x1e\xc8\xe5\x0a\xae\xa6\x9f\xd1\xed\x81\xda\xc1\x84\xbc\xcf\xac\xb7\x36\x8f\x4b\x88\x1d\x6c\x74\x29\xf1\x1c\xf5\xeb\xb9\xbb\x98\x56\x9c\xd1\xf6\x52\x90\x15\x7d\x22\xb9\x4f\x43\xe8\x15\xa4\xa3\xdc\xbb\x88\xd6\xe1\x3b\x94\x03\x1b\x46\x15\x1b\xa6\xfa\xed\xdf\x47\x57\x97\xb8\xc7\x59\x22\xd5\x9d\xf4\x79\xe7\xa0\x42\xc4\x32\x6a\x2e\x1d\x6c\x11\x0e\x54\x4a\x74\x91\xe1\xd4\xbd\xa0\xb9\x7c\xf4\x68\x41\xe8\x11\x35\x1f\xf4\x18\xdc\x76\xd0\xe3\x1d\xfc\xbc\xc0\x3d\xc7\x09\x9a\xf8\xdc\x26\x30\x78\x68\xbb\x6e\x53\x04\xdb\x1e\x30\x4c\xc0\x9e\x75\xf6\x5d\x1f\xf3\x97\xfb\x96\x72\xe9\xb3\x97\xc6\x06\xe7\xdc\x5d\xc2\xcf\x88\x3c\x70\x8a\xd0\x8a\xbb\xe7\xe2\x67\x2b\x0d\xc3\x2f\xa2\x99\x54\xc0\x44\xff\x1f\x74\x22\x6d\x6c\xd9\xef\x2a\xa3\xe2\x17\x4d\xeb\x48\xc8\x25\x53\xb3\xbe\x7c\xef\x79\x49\xfb\xbe\x6f\xb6\x56\x53\x84\x5d\xd0\xbe\x87\xe9\x7b\x7c\x65\xc2\x3d\xce\x57\x34\x1a\xd6\x0f\xb7\xc2\x87\xae\x37\xf8\x0a\xce\x04\x5f\xa1\xdd\x6e\xc2\xd7\xc9\xd2\xe7\xee\x84\x03\xc4\xca\xb2\x4b\x12\xd0\x30\xa3\x61\x03\x13\xfd\x3c\x41\x77\x28\x1e\xb8\x58\xa5\xc4\xa3\xd2\xaa\x03\xc4\xa4\xd0\x25\x09\x77\x3c\x63\xd9\xc0\x0f\xfb\xc4\xa4\xf0\x8b\x95\x71\x4a\xe7\x19\xf1\xaa\xd2\xd4\x46\x45\x2b\xfa\x2f\x56\x6e\xd1\xc5\xd1\xee\xb7\x81\x36\xbe\xab\xd8\xf0\x1f\x56\x9e\xb8\xf7\x43\x1c\x6a\xee\x83\x38\xfb\xf5\x2c\xc6\xd6\x4c\xd2\xab\x35\x60\xd9\x63\x0d\x58\x87\x8f\xbf\x02\xf9\x0a\xa6\x84\x35\x0f\x98\xf6\x98\x12\x96\x4f\xd2\xab\x1b\x65\x8b\x87\x55\xb8\x0e\xc5\xc0\x1c\x99\xa8\x30\x35\x8f\xbe\xf3\x6f\xef\x6e\xbb\x0e\xf0\xda\xf5\x4a\x4e\xbb\x2a\x9f\x5d\x07\xad\x6d\x4b\x2e\xd5\x42\x50\x8f\xbb\x3c\x3b\xd0\x07\xad\x6c\xb7\x88\x5f\x6f\x61\x7b\xe3\x18\xa3\x77\xd3\x32\x56\x78\x9c\x5d\x18\x38\x4c\x2a\x6d\x82\x70\xd7\xd3\x34\x13\x38\xd5\xff\xd1\xcd\xa0\xfc\xde\xa7\x63\x81\xfc\x1e\x77\x2a\xd0\x84\x87\x6b\x22\xf9\x7d\x09\x47\x57\x5f\x6f\xd0\xf9\xe4\x9a\x6c\x88\xb3\x5f\xbe\xf6\xd8\x3a\xba\xb8\x98\x28\xf6\x52\x86\x53\x89\xd7\xdc\xa0\xe2\x06\x67\xfa\xa7\xb1\x5b\x7a\xbc\x46\x9b\x46\xb9\xce\x24\xf1\x38\x31\xb1\x78\x98\x5c\x3a\x14\x01\xf5\x42\x35\x17\xb8\x31\x0f\xf4\x30\xbd\xf4\xe9\x80\xae\xc4\xfd\xcf\x95\xe1\xdd\xcf\x95\x04\x2e\xca\xfe\x2b\x11\xa9\xe7\xc3\x53\x83\xd8\x33\x7e\xb6\x69\xc6\x5d\x83\x48\xd3\x99\xb5\xbc\xf8\x0a\xc3\xf0\x3b\x48\xd3\x19\x9c\xa4\xb3\x11\xf7\x1e\xea\x74\x9a\xf8\xd6\x38\x24\x6e\x99\x36\xf1\x38\x3e\x69\x34\xac\x28\x5a\xe1\xa1\x36\xad\x34\x0b\xb8\xe2\x09\x3a\x34\x31\x9a\xfc\xf3\xf7\xff\xfb\xa7\x47\xc5\xdc\x0a\x11\xcb\x7d\x45\x13\x8f\xdd\x89\xdf\x82\x49\x32\xd6\x54\x8d\x70\x27\x7e\x8e\x1d\x58\x76\x30\x31\x8f\x61\x66\x93\x2b\x08\x9b\x71\x73\x64\x8c\x9f\x07\x3c\xd0\x95\xc7\xce\x51\xa3\x61\x05\xd3\x0a\x0f\xa8\x57\xb9\x22\xf0\x83\xae\xd0\x0e\x32\xe1\x85\x12\x3c\xf3\x3a\x6f\x68\x30\x31\x11\xec\x50\x85\x6a\x9f\x0d\x23\x98\xd8\xd7\x9e\x79\xc2\x86\x0a\xe5\xf1\x2c\xd5\xc0\x61\x92\x68\x13\x04\x74\x16\x2d\xd4\x23\x7c\xd7\xff\xd1\x29\x42\x3a\xf3\xa8\x35\xa1\xd1\xd0\x49\x42\x13\x1e\x6e\x96\x90\xce\x12\xb8\x48\x67\xa8\xda\x44\xc2\x0b\xb9\xf6\x78\x14\x68\xf1\x7a\xaa\x7f\x43\x11\x70\x0b\x53\x73\x31\xae\xd9\xd7\xa8\x21\x02\xbe\x28\x3c\x66\x5f\xa3\x39\xa2\x3d\x47\x19\xad\xd0\x41\x16\x2c\x75\x3c\xf8\xb2\x28\x32\xe4\x60\x61\x4e\x12\x3a\xe3\x3e\xf7\xd7\x2b\x44\xac\x30\xb7\x68\xc2\xad\x83\x1d\x1f\x38\x75\x2f\xa8\x65\xc9\x92\x28\x8f\xd6\x8d\x0c\xdc\xf3\x85\xda\x0e\x1e\xe6\x26\x48\x47\x84\x9f\x37\x44\x2d\x91\x72\x2d\xa4\x47\x63\xe2\x85\x44\xed\x88\x37\xc1\xe1\xac\x41\xc8\x7b\xb8\x96\xf7\x7d\x97\x7a\x7c\x2a\xf7\x6b\x38\x47\x85\x18\x09\x6c\x51\x0d\xbf\xd3\x33\x33\x37\x7a\x70\x2d\x7f\x7b\x5f\xae\xf0\x7e\x4b\xaf\x38\xe0\x96\x5e\xf1\x4a\xb7\xf4\x0a\x09\xd3\x02\xbf\xa5\x97\x6f\xa8\xc7\xfe\x56\xa3\xa1\xab\xa0\x26\xfc\x65\x4e\x90\x5b\x40\x03\x17\x49\x1b\x9a\xc1\xd5\x86\x1e\xe2\x62\xbf\xee\x1a\xea\x48\x48\xc7\xb0\x2e\xd8\x86\x27\x4c\x3d\xc5\x25\x11\x92\x0a\x8f\x15\x6b\x07\x1a\x6b\x3e\x0d\x71\x52\x3b\x09\x6e\x7f\x55\x7b\xbf\xce\xd9\x23\x4d\x07\x08\xb4\x75\xaa\x54\x83\xc0\xbf\x0a\xf6\xdd\xbc\x9d\x6a\xb4\x1f\x2c\x55\xcb\x81\x27\x54\x7b\xb0\x26\x72\xf3\x72\x90\xdb\x1d\x90\xae\x84\x05\xf5\x78\x4f\x5d\x50\xf4\x8e\x7a\x13\x1c\x6a\xa1\x21\xe8\x1c\xbe\x51\xd4\xd7\x5b\xf6\xcb\xa7\x87\xbb\x5f\x73\xac\x46\x36\xc1\x03\x6b\x56\xf6\x6b\x0e\x97\xff\x39\x45\x4b\xae\x24\x4b\x8f\xbe\x6b\x35\x1a\x56\x76\xad\xf0\x70\xbb\xa8\x64\xc9\xe1\x86\x2c\x51\xbf\xb5\x1b\x8f\x07\x71\x1b\xf4\x0c\x6e\x73\xe0\xbe\xdf\xe8\xda\xba\xc9\xe1\x3b\xba\x51\x37\x63\x45\xea\x51\xa3\xc1\xc0\x61\xf5\xd5\x10\x74\x7a\x4f\xfb\xa5\xdd\x47\x56\xdf\x56\x9b\x72\x5c\xdd\x36\xd1\x21\x91\x1b\x38\xd6\x6f\xc3\x7b\x39\x0b\x60\xd2\x64\x21\x4c\xa7\x7b\x49\x8b\xc5\xe0\x5e\xd7\x42\xad\x36\xa5\x05\xfa\x4c\x9f\xbe\x93\x6c\x4d\x6f\x08\xc3\xb5\x03\xee\xbc\x9a\x8c\xbf\xeb\x31\x19\x7f\xf7\x0a\x26\xe3\x35\x0f\xb8\xe8\x31\x19\x4f\x4a\xaf\xb3\xc6\xb2\x67\xc6\x58\xbe\xc2\x6c\xb1\x2c\x24\x1c\x95\x05\xba\x1b\xc5\x4b\x45\xca\x8c\x14\x85\x4f\x9d\x9a\x16\x28\x26\x84\x5d\xb2\x60\xb2\x68\xb1\x82\x2f\xa5\x22\x37\xf6\x1d\x77\x9d\x60\x0e\x1b\x3c\x2e\x71\x3b\x07\x2e\xcf\xaf\x92\xba\x74\x71\xd4\xfd\x3d\xb0\x47\x72\x91\xe1\xa7\x3d\x3a\x19\xd8\x87\x54\xb1\x2f\xfa\xd4\xa3\x6b\xed\x05\xe7\x29\x2f\x80\x12\x85\x43\xc6\x2a\xd4\x33\xb4\xaf\xa7\x42\x71\x65\xf9\xe2\x97\xea\x93\x95\xe4\xc5\xa3\xcf\xab\x01\x0d\x26\x5a\xb9\xb6\xa9\x06\xf6\xa2\x75\x74\xb8\xb0\xaf\x3f\x7b\x6e\x06\xfc\xe2\x7c\x45\x69\x49\x45\x9c\x13\xe9\x57\x69\x6f\x0b\x19\xab\x14\xcf\xd0\x06\xab\x14\x35\x3f\xcb\x0e\xae\xcc\x63\x5f\x95\x58\xc5\xab\x82\x28\xcd\xae\x57\x30\xab\x67\x45\x52\x83\x60\x32\xe8\x92\x1c\x7e\x85\x30\x8a\x4a\xc1\xd3\x75\xd2\x94\x9d\xa9\x5d\xb4\xa4\x45\x4a\x8b\x84\x35\x7c\xa2\x4a\x1b\xb8\x27\x03\xbd\xd9\x88\x2b\x8e\x75\x04\xb3\xcb\x9c\xbf\x66\x12\x2a\x8e\xfb\x96\x58\x6e\xaf\xc0\xe3\x3a\xab\xbd\xfb\xf0\x9c\x37\xf1\x2e\x4d\xa8\x49\x7b\xbd\x35\x52\xed\x88\xf4\x59\x4b\xc9\x89\xf2\xea\xe8\xb4\xc1\xc4\xa4\xb1\x43\x15\xd4\x60\x8a\xe5\x64\x2c\xa6\xd8\x57\x74\x16\x29\x8b\x3f\x3c\xce\x22\x65\xf1\x07\xd6\xa3\xb7\xc2\x07\x4e\x0b\x74\x4c\x38\x9a\x5e\xff\xd1\xbf\x9b\x9a\x78\xbc\xf6\xed\x00\xd1\x99\x71\x87\x24\xec\x56\x6a\xf2\x00\x93\x07\x74\x23\x55\x32\x9f\x9a\xd2\x0c\x57\x94\x66\x2f\xd0\x93\x66\xe1\xd5\xa4\x59\x09\x53\x86\xdb\x0c\x5e\x0a\x36\xf7\xb8\x78\xb4\x78\x98\xcc\x3a\x14\x2f\x75\x33\xd8\x01\x1b\xd8\xa0\x6c\x5c\xb8\x35\x8f\x43\x66\xd9\x2d\xc3\x9c\xed\xa8\xe8\xd4\xd1\xe7\x15\xf4\x3b\xfc\xfa\xf9\x5d\xf8\xab\xe7\x77\xb9\x84\x0b\xdc\xd3\x6f\xb9\x88\x05\x2d\x33\x96\x10\xc5\x78\x11\xcb\x8c\x7b\xac\x5d\x7b\xc0\x31\x89\x3c\x4f\x1e\x6e\xd3\x70\x01\x2d\x96\xa0\x59\xc2\xcd\xe2\x5b\xf3\x69\x9a\x71\xb4\xc6\xe8\xa7\xfa\xe5\x4f\x64\x16\x0f\x93\x52\x87\x22\xa0\xcb\x26\xcd\x05\xbe\x9a\x07\x26\x00\xaa\x92\xd4\x5f\xf6\x35\x1a\x96\x79\x1d\x3e\xd6\xf9\x4e\x0b\x41\x2a\xa2\x46\x8f\x04\x06\x61\x45\x9f\x82\x37\x5f\xcd\x08\x3e\xaa\x24\xfd\x4c\x9f\x86\xdd\xfb\xac\x63\x4e\x75\x46\xc7\x45\xed\x75\x37\x44\xe4\x3b\x9f\x13\xb1\x77\xe8\x9c\xa5\x0e\x0e\x37\x5f\x91\xef\xe0\x08\x37\xe2\x48\x54\xce\x7d\x6e\x61\x6a\x38\x34\xd7\x2d\x82\x70\xf9\xd6\x4c\xe0\x48\xff\x7f\x66\x09\xad\x9f\x54\xc5\x82\xb2\xf9\x01\xe7\x09\xe8\x42\xba\x0d\x85\xe5\xfc\x41\x90\xc1\xd3\xad\xad\xbd\xc0\x64\x49\x0a\x9f\xab\x48\x07\x88\xa5\xba\x4b\x12\xce\xba\x80\x65\x03\x3f\x27\xe6\x89\x9e\x57\xa6\xc4\xe3\xf4\x5a\xa3\x61\xf9\x6f\x85\x07\xcb\xbc\xe6\x01\x97\x29\xc1\xef\x12\xde\xe5\x3e\x3b\x27\x03\x87\x2e\x2c\x5a\x04\xe1\x96\x07\x9a\x09\x4c\xf5\x7f\xf4\x12\x6f\xb5\x3b\x16\x60\x33\x10\x93\xc1\x36\x51\xf8\xed\x3f\xf8\x0f\xe7\x9f\xcd\x1b\x7a\xfe\x92\xb1\x62\xc1\xff\xc7\xe3\xd9\x8b\x05\xc4\x64\xd1\x25\x09\x77\xe6\x62\xd9\xc0\x17\xfb\xec\x35\x42\xe8\xd9\xb6\xfa\x01\xa6\xd5\x5f\xc9\xb2\x7a\x65\x58\x1d\x3d\x0e\x17\x84\x15\x4a\x50\x8f\x43\x42\x0d\x89\x49\x61\x9b\x28\x9c\xc7\xea\x8a\x11\x1c\x57\x6f\x68\x3f\x41\x8b\x94\xfa\x34\xbc\xe5\x00\xd1\x3e\xa2\x43\x12\xae\x87\xb0\x6c\xe0\x3f\xf6\xd9\xe3\xc0\x25\x63\x1e\x35\x61\x2c\x1e\x26\x83\x0e\x45\x48\x0f\x29\x19\xe3\x70\x6b\x1e\x68\xc7\x90\x28\xb6\xa1\xb9\x47\xed\xdc\x0a\x11\xed\x1a\xba\x34\xe1\xfa\x06\xc7\x07\x8e\xcc\xcb\xd5\x57\xd4\x6f\x1d\x53\x82\x29\x8f\xfd\x83\x03\xc4\x04\xd1\x25\x09\xa7\xaf\x6c\xd9\xc0\xb5\x7d\xe2\xc6\x48\x53\x9f\x9e\xec\x69\x8a\x7b\xb2\x6f\xc2\x83\x39\x1f\xa1\x29\x81\x29\x4d\xfb\x2e\x9a\x7a\xf7\x52\x70\x80\x93\x82\x57\xf2\x51\x50\xb9\x28\x40\xcd\x34\xf0\x5f\x5e\xad\x0e\x6a\x38\x2c\xf7\x6d\x82\x70\xfa\x03\x9a\x09\x9c\xe8\xff\x68\x9d\x2f\xb3\xb5\x4f\xab\x0b\x16\x0f\xad\xf7\x6d\x8a\x70\x4b\x06\xc3\x05\xa6\xe6\x81\x9a\x20\xe0\x7c\x91\xd1\x38\x15\x07\x9d\x95\x1f\x2a\x86\x36\x2a\x26\x8c\x3d\x74\xe1\x8c\x0f\x18\x5e\x60\x78\xc1\x99\xf9\x71\xa2\xdf\xfb\x96\x93\x7e\x57\x93\x7d\x8b\xc9\xe1\x52\x68\xe2\xc6\xb3\xd7\x70\x4e\xae\x39\x81\xe1\x64\x96\xa4\xc7\xbb\xbb\x85\x87\x00\xe8\xa8\xe8\xb5\xeb\x84\x78\xd4\xe2\xd1\x68\x8e\x68\xef\xf1\x54\x2b\x7c\xe0\x8d\xe7\x84\x64\x70\x3e\x21\x19\x6e\x6a\x8d\x48\x49\x8a\x54\x10\x9f\xee\x92\x5b\xa0\x58\xa5\x4a\xc2\xbb\x4c\xae\x53\x02\x93\xea\xed\x00\xcf\x10\xb1\x20\x3e\x0f\x34\xdb\xa8\x98\x3c\xf6\xd0\x05\x77\x14\xa1\x79\x55\xde\x22\xbe\x11\xfc\x24\xd2\xbb\x96\xdf\x01\xca\x7d\xaf\xa4\xd3\xe7\xd8\x80\x51\xe5\xc3\xcd\xf2\xa5\x3e\x35\x86\x53\x5c\x61\x38\x0d\xaf\x2f\x9c\x16\x12\x4e\xf6\x6b\x0b\xaf\xe2\x07\x3a\x5b\x1e\x74\xf1\x15\xdb\x60\x77\x20\x58\x3e\xbb\x24\xb8\xa6\x5a\xfd\x75\xab\xcf\x59\x7a\x9d\x2d\x19\x38\xb4\xf3\x5a\xbe\xc2\x5c\xc9\x30\x81\xc9\xb2\x67\xa6\x94\xf0\x9c\x2a\x8f\x27\x9e\x16\x0f\xcd\xbd\xa1\x18\x3d\x25\xe8\x30\x08\x78\x51\x5d\x73\x81\x89\x79\xa0\x4d\x5a\xb0\xcc\xe3\xf0\x67\xe0\xd0\x66\xdd\x22\x08\xd7\xb0\x35\x13\x38\xd1\xff\xd1\x79\x24\x17\x7c\x2d\x3d\xde\xe9\x76\x80\xe8\x6c\xb2\x43\x12\x6e\x3a\x68\xd9\xcc\xb8\x6a\x7d\x9c\xda\x8f\xc7\xb8\x0a\x05\x51\xdc\xa7\x79\x44\xc5\x71\xdb\x88\x4d\x78\xc0\x23\x55\x9e\xc3\x91\xe2\xe8\xf5\xac\x72\x61\x2c\xa0\xf9\xd4\xb6\x31\x80\x58\xe6\xbb\x24\x01\xb5\x6a\x0c\x1b\xb8\x59\x18\xb3\x6e\xe8\xc2\x93\xf2\x84\xa7\x3e\x37\x1e\x2a\x44\x4c\x0e\x5b\x34\xe1\x16\x9b\x8e\x0f\x9c\x51\x3e\xd1\x2f\xa8\x28\xbc\x9a\xf8\x5f\x1c\x62\xde\x7f\x31\xd6\xb4\xbf\x8e\x08\x67\x7d\x77\x56\x84\xf4\x38\x7d\x13\x12\x9d\xbe\x89\x43\xcd\xb4\xf7\x2a\x29\x36\x48\x03\x35\x14\x85\x94\xf0\x4d\xca\x61\xba\x89\x2e\x12\xaa\x62\xf5\x48\x3d\xda\xf4\xd1\x68\x98\x20\x5b\xe1\xe1\x34\x9b\x1e\x69\x02\x1f\x1f\x29\x6a\xd3\x67\x46\x24\xfd\xa7\xc7\x73\x5b\x8b\x87\x95\x7c\x87\x62\xe8\xc5\x54\x13\x17\x8e\xcd\x03\x6d\x15\xac\x98\xb3\x82\xc9\xd2\xa7\x07\x84\x06\x13\x2b\xda\x1d\xaa\x70\x26\xe0\x6a\x4e\x70\x5e\xbf\xa2\x67\x2f\xad\x82\xf0\x70\xf0\xd2\xa8\xf7\xed\x3f\x75\x19\xa5\xfe\x37\xf0\xc8\x85\x28\x09\xd7\x3b\xea\x77\x5b\xab\x72\x96\x08\x5e\x0a\x3e\x67\x19\x8d\x73\xaa\x04\x4b\x3c\x8a\x61\x1f\x3a\x26\x16\x84\x3e\xdc\x6e\x40\x8b\x27\x38\x9e\x70\xa5\x3f\xde\xd8\x8f\x57\xf6\x1b\xae\x89\xa8\xa8\x60\x5e\x9d\x48\x39\x44\x74\x26\xd9\xa5\x09\xa8\x98\x68\xf9\xc0\x91\x7b\x41\x45\xf1\x6b\x2d\x68\x2c\x15\x17\x64\x41\xe3\x59\xc6\x7d\x9a\x4e\xdd\xc1\x46\xc5\xf3\x1c\x75\x38\x41\x69\x8e\xe0\x38\x82\xe6\x08\xc7\x19\x47\x37\x98\x4a\xc1\x15\x9f\xad\x3d\x1a\xf5\xa8\x10\xb1\x71\x66\x8b\x66\xe0\x48\x53\xc5\x86\x1b\xf7\x82\x8e\x36\x8a\x2c\x24\x5f\x7b\x54\x02\x74\x80\x58\xfe\x14\x4b\x9f\xae\x34\xf5\x48\x23\x0f\x8e\x05\xdc\xd6\x38\x9d\x2c\x66\x9c\xa4\xb5\xa1\x20\x0d\xfd\xb2\x3d\x33\x0b\x17\x6b\x20\x47\xb5\xc7\x70\x52\x2b\x34\xa7\x8a\xe8\xc4\x7e\xa8\xeb\xae\xbb\x63\x1a\xfd\x66\xea\xee\x6f\xe6\xfb\x41\xd7\x8f\x0f\x48\x56\x73\x99\x78\x9f\xd1\xb6\x3a\x10\x49\x94\x12\x6b\x97\xa6\xbb\x03\xc6\x96\x43\x24\x25\x11\x39\xc9\x21\x09\x5a\x1d\x32\xe8\x1f\x90\xa2\x15\x57\x19\x2b\x9e\x4f\xd5\x4a\x1d\x90\xac\x56\xe1\x1d\xe6\x57\xee\x80\x84\xb5\x7c\xc4\xed\x49\x56\x2b\xf4\x20\x71\x2d\x04\xe7\x9b\x17\xaa\x60\xbb\x84\x59\xa8\xe7\x93\xd6\x09\xef\x17\xda\xff\x0f\x00\x00\xff\xff\x12\x32\xdd\x2c\xa5\x5c\x01\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x4b\x77\xdb\xb8\xb2\xee\x3c\xbf\x82\xab\x33\x39\x67\xdd\xad\xda\xdd\xce\xd9\xdd\x77\xf5\x1d\xd9\x4a\xec\xd8\xb1\x1c\x27\xf2\x4e\xb2\x7b\xd2\x0b\x22\x21\x09\x16\x49\xd0\x00\x24\xd9\xf9\xf5\x77\xe1\xc1\x97\x24\x17\x45\x1a\xf0\xf1\xc0\x24\x85\xc2\x57\x40\xe1\x5d\x28\x14\xde\x46\x23\x7f\x7f\x6f\xde\x46\xd7\x2c\xa6\xb9\xa4\x49\xa4\x78\xa4\x96\x34\x3a\x2d\x48\xbc\xa4\xd1\x94\xcf\xd5\x96\x08\x1a\x9d\xf3\x75\x9e\x10\xc5\x78\x1e\xfd\xd7\xe9\xf4\xfc\xbf\xa3\x75\x9e\x50\x11\xf1\x9c\x46\x5c\x44\x19\x17\xf4\xcd\xdb\x28\xe6\xb9\x12\x6c\xb6\x56\x5c\x44\xa9\x05\x8c\xc8\x42\x50\x9a\xd1\x5c\x49\x88\xa2\x29\xa5\x06\xfd\xe6\xf3\xdd\xe5\xf8\x43\x34\x67\x29\x8d\x12\x26\x6d\x24\x9a\x44\x5b\xa6\x96\x6f\xde\x46\x6a\xc9\x64\xb4\xe5\x62\x15\xcd\xb9\x88\x48\x92\x30\xcd\x98\xa4\x11\xcb\xe7\x5c\x64\x36\x19\x82\x2e\x88\x48\x58\xbe\x88\x62\x5e\x3c\x09\xb6\x58\xaa\x88\x6f\x73\x2a\xe4\x92\x15\xf0\xe6\x6d\x74\xa7\xb3\x31\x3d\x2f\x53\x22\x2d\xac\xe1\xa9\x78\xf4\x1f\xbe\x76\x79\x68\x64\xd7\x49\xe1\x1f\xd1\x37\x2a\xa4\x66\x72\x02\xbf\xbe\x79\x1b\xfd\x97\x26\xf9\xc5\x05\xfe\xf2\xdf\xff\x2f\x7a\xe2\xeb\x28\x23\x4f\x51\xce\x55\xb4\x96\xb4\x81\x4c\x1f\x63\x5a\xa8\x88\xe5\x51\xcc\xb3\x22\x65\x24\x8f\x69\x9d\xad\x8a\x03\x44\x26\x01\x1a\x83\xcf\x14\x61\x79\x44\x4c\x36\x22\x3e\x6f\x92\x45\x44\xbd\x79\xfb\xe6\x6d\x64\xfe\x96\x4a\x15\x7f\xfe\xf3\x9f\xdb\xed\x16\x88\x49\x2e\x70\xb1\xf8\x67\x99\xbb\x7f\x5e\x5f\x8e\x3f\xdc\x4c\x3f\x8c\x4c\x92\xdf\xbc\x8d\xfe\x9d\xa7\x54\xca\x48\xd0\x87\x35\x13\x34\x89\x66\x4f\x11\x29\x8a\x94\xc5\x64\x96\xd2\x28\x25\x5b\x5d\x70\xa6\x74\x4c\xa1\xb3\x3c\xda\x0a\xa6\x58\xbe\xf8\x47\x24\x5d\xa9\xbf\x79\xdb\x2a\x9d\x5a\x5c\x65\xf2\x98\x6c\x11\xf0\x3c\x22\x79\xf4\xcb\xe9\x34\xba\x9c\xfe\x12\x9d\x9d\x4e\x2f\xa7\xff\x78\xf3\x36\xfa\x7e\x79\xf7\xf1\xf3\xbf\xef\xa2\xef\xa7\x5f\xbf\x9e\xde\xdc\x5d\x7e\x98\x46\x9f\xbf\x46\xe3\xcf\x37\xef\x2f\xef\x2e\x3f\xdf\x4c\xa3\xcf\xe7\xd1\xe9\xcd\x7f\xa2\x4f\x97\x37\xef\xff\x11\x51\xa6\x96\x54\x44\xf4\xb1\x10\x3a\xfd\x5c\x44\x4c\x0b\x92\x26\xba\x4c\xcb\x0a\x54\x26\x40\xd7\x0f\xfd\x2d\x0b\x1a\xb3\x39\x8b\xa3\x94\xe4\x8b\x35\x59\xd0\x68\xc1\x37\x54\xe4\xba\x7a\x14\x54\x64\x4c\xea\xe2\x94\x11\xc9\x93\x37\x6f\xa3\x94\x65\x4c\x99\x5a\x24\xf7\x33\xa5\xd9\xf8\x6c\x5b\x6f\x48\xc1\x5c\x75\xfa\x33\x8a\x49\x46\xd3\x66\xf1\x6d\x7e\x7b\xb3\x62\x79\xf2\x67\x34\xd6\x21\x63\xa2\x48\xca\x17\x6f\x32\xaa\x48\x42\x14\xf9\xf3\x4d\x14\xe5\x24\xa3\x2e\xe2\x28\xb6\xe1\xa3\xdf\xe0\x77\xf8\xf5\x4d\x14\xa5\x64\x46\x53\xa9\xa9\xa2\x7d\x68\x47\x0c\x29\x27\x09\x15\xb0\x29\xd3\xf0\x0e\xfe\x30\x91\x0f\x44\x11\xeb\x5c\xb1\x8c\xd6\xb4\x25\x23\x04\xfe\x00\x2e\x29\x8a\x32\xc5\xab\x37\xba\x68\x74\x0a\x1d\xb6\x4d\xec\x01\x06\x85\xe0\x1b\x96\x50\xf1\x67\xf4\xb0\x26\x62\xb5\x96\x25\x94\xae\xb2\xba\xac\xc6\x29\x91\xf2\xcf\x88\x71\x70\x04\x20\xd6\x79\x4e\x05\x5c\xd0\x9c\x0a\xa2\x68\x32\x21\x2c\x37\xb1\x9a\xf2\xab\x12\x3f\x2a\xa3\x35\x98\xff\xcb\x31\x2f\xf3\x77\x20\x33\x51\x74\x20\xde\x6f\xbf\xc2\x3b\x38\x67\x39\x49\x0d\x4d\x42\x0b\x9a\x27\x34\x8f\x19\x75\xa5\x31\x8a\x16\x82\xaf\x8b\xcb\xe4\xcf\x88\x8b\x45\x29\x37\xcb\x64\xe5\x70\x89\x50\x6c\x4e\x62\xa5\x89\x9c\xb4\x46\x4e\x4a\x4e\xe4\x05\x99\xb1\x94\xa9\x0a\x35\x8a\x04\x95\xaa\x7c\x3f\xc4\xb7\x8b\x77\x53\xb6\xcf\xa5\xc2\xd1\x8c\x8a\x94\x28\xdd\xdf\x8e\x74\xcf\xe3\x1d\x5d\xe7\xa4\x94\xbd\xe0\xf9\x4b\x32\xb5\x42\x19\xae\x46\x1a\xdf\x91\xb4\xf2\xf4\xbf\x29\xc8\x25\x25\xa9\x5a\xbe\x56\x0a\x32\x16\x0b\x5e\x08\xae\xc7\xa8\x91\x65\x5d\xca\x9e\x89\x78\xcd\xd4\x68\x26\x28\x59\x51\xf1\xbf\x92\xa0\x39\x59\xa7\x6a\xa4\x78\x4a\x85\x1e\x2f\x1d\x40\x46\xa4\x7a\x59\x82\xba\xea\x85\xe5\xe0\x88\x94\x20\x31\xcb\x17\xaf\x25\x00\x5e\xd0\xdc\xb1\x7c\x53\xd3\x35\xfb\xf2\x8a\x94\x15\xf3\x2a\x01\xc7\x32\x7f\x9e\xb1\x46\x73\x44\x32\x5e\xd2\xac\xce\xdc\x28\x62\xc9\x9f\x51\x23\xdc\xcd\x39\xa2\x39\x49\x25\xad\x7e\x2b\x88\x94\x6c\x43\xdb\x3f\xdf\x93\x0d\xb9\x7b\x2a\x9a\x60\x7b\x29\xd4\x33\x22\x9e\xd3\x5c\x81\xe6\x01\x97\xb7\xe7\xd3\x71\xf9\xd3\x81\x6c\x2f\x44\x11\xfb\xcb\xb6\x46\xc3\xb2\xdd\x08\x2f\xb3\xad\xc4\xda\x6b\xae\x35\x0b\xb8\x10\x45\x8c\xe5\x5a\x52\xb1\xd1\x13\x11\xbe\xf5\x97\xf7\x1a\x13\x93\xc0\x1e\x55\xb0\xe2\xaf\x39\xc1\xd4\xbe\xde\xf0\x2d\x2a\x14\x52\x8c\x72\xaa\xb6\x94\x6c\xea\x1e\xc1\x83\x5c\x9a\xb0\xa8\x68\x0e\x10\x86\x93\x0e\x29\xa0\x62\x06\x37\x54\x7d\x37\x6f\x98\x7c\xc8\x56\x8e\x64\x32\xf3\x27\x19\x07\x88\xc9\xa4\x4d\x12\x4c\x1a\x64\x2b\x41\x26\x33\x98\x26\x33\x4c\x02\xcb\x19\x91\xd4\x5f\xfe\x0d\x1c\x96\xfb\x26\x41\xb0\xbc\x1b\x26\xf0\xf1\x8c\x48\x8a\xe5\xfd\x89\x64\x99\xcf\x66\x61\xf1\xb0\xdc\xb7\x28\x82\x65\xdf\x72\x81\xff\x98\x07\x26\x80\x7b\x93\x67\x8f\x63\xa4\x03\xc4\x44\xd0\x26\x09\x26\x03\xc7\x06\xae\x2e\xcc\x13\x93\x82\x5e\xf0\x58\xf5\x88\x3f\x41\xd4\x98\x98\x2c\xf6\xa8\x3a\xc4\xd1\x18\x58\xfb\x49\xa3\x66\x04\xef\x89\x22\xe7\xe6\x15\xad\x19\x8d\x19\x9d\x87\x6a\x61\x27\x6b\xcf\xd7\x89\x3a\x3c\x58\x85\xd8\x90\x94\x25\x44\x71\x01\x9a\x1b\x5c\xb1\x7c\x81\x0a\x80\x3c\x7a\x1c\x16\x34\x9a\x23\xaa\x8b\xa2\x91\xee\x46\xf8\x71\xb9\xca\x37\x54\x28\x2a\x40\x47\x84\x2b\xf2\x38\xab\x8b\xf5\xd0\x34\x20\x5e\xd2\x64\x9d\x7a\x9d\x02\x94\x90\xe8\xf0\xbf\x43\x14\x6e\xe8\x2f\x19\xc1\xb4\x7c\xc3\x0a\x77\x4b\x89\x5a\xfa\x94\x86\x03\xc4\x64\xd1\x26\x09\x26\x09\xc7\x06\xbe\xdb\x67\xc7\xe4\xe7\x64\x44\x57\x1e\xbb\xff\x12\xb1\x63\xfa\xd3\xa4\x09\x39\xff\x39\x01\xba\x92\xf0\xe1\xd3\xf4\x04\x6d\xe9\x92\xe7\xa4\x60\x1e\x1b\xbb\x05\x44\xdb\xbb\xe4\xf9\x69\x45\xd2\x73\x64\xb3\xf0\x70\x65\x31\xd0\x86\xcf\x78\xad\xcb\xf3\xb0\x02\xe6\x8a\x60\x45\xdb\x08\x0f\xb7\x02\xe6\x8a\xc0\xe5\xe7\xbb\x53\xb4\x48\xd5\xff\xfc\xfa\xab\xc7\x02\xd5\x70\xe8\xf8\xd5\x20\x08\x37\xa3\xd1\x4c\xe0\x4a\xff\xef\x6c\xd5\xf2\xc1\x77\xab\x96\x0f\xdd\xad\xba\xa6\x09\xdb\xaa\xe5\x83\x84\xe9\x83\x44\x5b\xb5\x54\x6b\x8f\xe3\xb7\x46\x43\x07\xba\x3a\x3c\xd4\x14\x4e\xb3\x80\xa9\x5a\xa3\xab\xb9\x62\x3d\xcb\x7d\xe6\xdb\xe2\x61\x39\x6f\x51\x04\x2b\x76\xcb\x05\x6e\xd7\xb3\x1b\x5c\x00\x66\x71\xbd\x9d\x7b\x5e\xd0\x6f\xe7\x1d\x75\xbf\x41\x12\x76\x41\xbf\x9d\xc3\xf4\xfb\x39\x26\x01\xb5\x65\x4a\xf9\x9c\xdb\x38\x40\x4c\x02\x8e\x64\x94\x30\x41\x63\x95\x51\x29\xc9\x62\xc0\x22\xbf\x0d\xa6\x58\x46\x53\x96\xbf\x18\x47\x52\x22\xe2\x65\xe8\xd2\x71\xdc\xa0\x25\x02\xb8\xb3\xbf\xbe\x37\x3f\x4e\xec\x8f\xed\xc2\x3b\x12\xd6\x66\xa2\xc4\x9b\x9a\xaf\x41\x40\xa5\x54\x4b\xa8\x3b\xf7\xdd\x39\xa4\xac\x58\x4e\x25\xf3\x3d\xac\x38\xd4\xce\xa1\xc5\xd1\x8d\xe6\x4c\xd0\x25\x1f\xa2\x41\xda\x07\x7b\x95\xb1\xaa\x4c\x30\x7c\xb2\x4c\xcf\xdd\xf7\x49\xaf\xd2\x33\x50\x2e\xd9\x25\x12\x3a\xfc\x2d\x48\xbe\x48\x99\xc7\xb9\x9f\x03\xc4\x0a\xaa\x4d\x12\x4c\xac\x8e\x0d\x5c\xd8\x27\xda\x17\xd2\x94\x2e\x04\xc9\x3c\x76\x86\x0e\x11\xed\x0d\xdb\x34\xe1\xba\x1c\xc7\x07\xee\xdc\x0b\xaa\xe7\x6d\x6c\xdb\x7a\x50\xf3\xd6\xfb\xb1\x87\xb5\xbc\xcd\x8d\xef\x9e\x4d\x54\x93\x07\x6f\x9b\x1a\x16\x3e\x2a\x55\xa0\xcb\x08\x9e\x7a\x54\x09\x6a\x34\x74\x11\x51\x87\x87\x5b\x43\xf0\x54\xc1\x15\x4f\x51\xdd\x5f\x4e\x95\x7a\xf2\x97\x6f\x03\x87\x65\xbc\x49\x10\x2c\xe7\x86\x09\xdc\xe8\xff\x58\xde\xcd\xf6\x7a\x46\xbd\x4e\xa0\x6a\x4c\x4c\x0a\x7b\x54\xc1\x44\x51\x73\x82\x49\xf5\x8a\x09\x85\xa6\xf2\x21\xf5\x27\x0f\x03\x87\x89\xa2\x49\x10\x4c\x0a\x86\x09\x7c\xd0\xff\xb1\xbc\xc7\x33\xee\xb1\x2a\x68\x34\x47\x74\x50\x2f\xd4\x08\xef\x97\x1b\x1d\x11\xc6\x67\x9f\xbf\xa2\xea\xa0\xec\x69\x46\x94\xcf\x39\x9c\x03\x44\xeb\x75\x8b\xa4\xf7\x68\xe0\xa2\x8f\x66\x94\xe4\xc1\x1b\x86\xe5\x05\x93\xa7\x33\xfd\x3c\xa3\x24\xef\x35\x4b\xdb\x89\x8f\x55\xab\x39\x4b\x3d\xee\xba\x6a\x34\xac\x0c\x1a\xe1\xc1\x84\xa7\x79\xc0\x39\x4b\xd1\x95\x84\xe0\x33\xae\xe6\x82\x64\x74\xcb\xc5\xca\x9f\x00\xda\xb8\x98\x28\x0e\x52\x06\x13\x4a\x9b\x1b\x7c\xd5\x9f\xe7\xe5\x67\x57\xfd\x18\x6d\x89\x8a\x97\x7e\x6b\x89\xc5\xec\xaa\x2b\x2d\xaa\xb0\x35\xc6\x70\x32\xf5\xe6\xbb\x7e\x43\x2b\x0f\x95\xca\x98\x7f\x79\xd5\xd6\x37\x51\xd1\x8a\xb3\x4f\x17\xae\xda\x50\xa9\xc0\xf1\x82\xaf\x54\xaa\xcf\x05\xcd\x4f\x0b\x86\x4e\x56\xe3\x94\xaf\x13\x9f\x7b\xf9\x16\x10\x9d\xb2\xb6\x48\xc2\xcd\x5a\x2d\x1b\xb8\xb2\x4f\x4c\x0a\x0f\x6b\x16\xaf\xe6\xec\xd1\x9f\x18\x4a\x44\x4c\x0e\x3b\x34\xc1\x04\x51\xf2\xb9\x87\x2f\xe5\x1b\xaa\x03\xe7\xa9\xcf\x1d\x5f\x9e\xe2\x9b\xbd\x75\x78\xef\x51\x5e\xc7\x1d\x3c\x45\xd0\x91\xc7\xba\x66\x84\x16\xbf\x66\x04\x53\xcd\x0d\x5d\x34\x2e\xf3\x9f\xb5\x59\xb6\x8f\x75\xa3\x01\xc4\xa6\x8d\xf7\x92\xe7\x3b\x74\x7d\xd7\x85\x26\x2e\x5c\xd9\x27\x3a\x89\x9c\x73\x8f\x8a\x84\x39\x47\xf5\x08\x75\x70\xb8\x51\x88\x17\x70\xce\x51\x3d\x80\x24\x0b\x8f\x9a\x34\x8d\x86\xb6\xa3\x3a\x3c\xa0\xa9\xe4\x82\xc0\x94\x2c\x50\xed\x99\x9e\x72\x4b\x45\x52\x8f\xf3\xb4\x0a\x12\x13\xc0\x2e\x51\x30\x29\x54\x8c\xe0\xac\x7c\xc3\xe4\xf1\x28\x7d\xaa\x83\x34\x1a\x26\x85\x46\x78\x30\x01\x68\x1e\xf0\x43\xe2\xea\xa0\xe6\xc9\x19\x3f\xd3\xad\xce\x69\xd6\xa0\x29\x56\x1d\x7f\x27\xae\x6f\x73\x74\x33\x3b\xd3\xb3\xb2\xbd\x19\xd9\xb1\x11\x71\xeb\x7d\xce\x37\x1e\xd5\x6f\x16\xcf\x91\x95\xa7\xfc\x1a\x19\x6d\x85\x1f\x23\x88\x12\x03\x6c\x4c\xb8\x30\x8f\x6b\xf7\xeb\xa1\x76\x93\xa5\x92\xc6\x6b\xc1\x7c\x6a\x15\x1b\xa0\x68\x2b\xaa\xc9\x46\x92\x2d\x06\xa8\x10\xf6\x71\x36\x54\xb0\xf9\x00\x85\xe5\xc1\xa1\xdb\xa0\xd2\x1f\x93\xeb\x1e\x25\xd0\xb0\xe6\x6c\xa4\x0b\x7e\x4c\xae\xa7\xee\x7d\x67\x00\xef\xea\x06\x9a\x20\x59\xfa\x4d\xe7\x8f\xed\xaa\x04\xfb\x61\x4c\xd9\x22\xef\xb0\x3e\xfb\xb9\x16\x1e\x55\x20\x06\x0e\xab\x09\x86\x60\xf4\xb0\xa6\xeb\xe1\x9b\x87\x06\x62\x96\xf2\xf0\xc6\xfb\x9a\x13\x68\x4e\x70\x96\xf2\x99\x3b\xec\xd1\x6f\xcb\xd0\x40\x98\xfc\xc2\x17\xfd\xff\x20\xc8\xbe\xb1\x83\x12\x24\x97\x29\x51\x3e\xcb\xa6\x09\x8b\x96\xd1\x01\xc2\xa0\xf6\x14\x15\x33\xb8\x2b\xdf\x50\x65\xf0\x92\x28\x19\x0b\x56\x78\x1c\x10\x6b\x4c\x4c\x32\x7b\x54\xc1\xc4\x52\x73\x82\xf1\x92\xa8\xa9\x79\x45\xe7\x07\x64\x36\x63\x2a\x7b\xf0\x38\x47\x70\x88\xe8\x3c\xa1\x4d\x13\x4e\x15\xe3\xf8\xc0\x57\xf3\x32\xf9\x82\x4f\x95\x48\xac\xd8\x86\x8e\xa4\x12\x94\x64\x1e\x95\x31\xbb\xc8\xf8\x14\xea\x20\x6d\x40\x6d\x95\xe5\x07\x8e\x1f\x7c\x75\x3f\x4c\xed\x77\xe7\x28\x30\x92\x8a\x0b\xb2\x70\xbd\xb3\xe7\x31\xa1\x0d\xde\x3d\x42\x1c\x22\x0f\xdc\xcf\x3b\x96\xcd\xce\x1a\xed\x85\x84\x4f\xf5\x42\xe3\x8c\xf7\xe1\x9e\xa7\x0e\x0f\xd7\xe7\x08\x9e\xc3\x58\xf0\x1c\xdd\x9a\xe5\xf9\x82\x27\xb3\xd1\x42\xb0\xc4\xe7\xb9\xde\x36\x2e\x26\x8a\x83\x94\xe1\x76\xa3\x2c\x37\xb0\xdc\xe0\x42\xb0\xe4\x1c\x6d\x4b\x6c\x91\x33\x9f\xc3\xb6\xc5\xc3\x04\x62\x29\x46\x92\x0e\x18\x95\x5a\x08\x2f\x9a\x96\x39\x0c\xba\xa1\xb9\x1a\xac\x44\x74\x20\xd6\x70\x6f\xd0\x71\xa4\x16\x8e\x2e\xc6\xf5\x90\x39\x4c\x1b\x45\x97\xda\x0b\x31\x58\xb2\xa0\xc1\x1b\xb0\xe5\xe5\x3a\xb0\x4b\xf3\x71\xa0\x1b\x3b\x0e\xa4\x2a\x02\x07\x34\x29\xbf\x87\x80\x49\xaa\x1c\xcc\x94\xaa\x21\x00\x46\x7c\x0e\xe2\x32\xb9\xa0\xfd\x76\x84\x1d\x88\x29\x47\x07\x32\xd6\xef\x43\x40\x6c\xfd\x76\x28\x1f\xcc\xc7\xa0\xb4\xd8\x9a\x59\xa6\xc6\x7e\xe1\x87\xa5\x66\xef\xee\xfd\xf5\x2a\x06\x0e\xeb\x54\x9a\x04\x01\x8f\x49\xcd\xde\xdd\xc3\x77\xfd\xbf\x6b\x41\x44\xe3\x13\xbf\x4b\x21\x1a\x9f\x74\x2d\x82\x6a\x92\xa0\xcb\x1f\x1a\x9f\xc0\x87\x31\x6a\x48\x9a\x26\xcc\xa3\x35\xbd\x46\xc3\xf2\xde\x08\x0f\x96\x71\xcd\x03\xae\x13\x36\x47\x75\xbd\x59\x3a\xba\x27\x8f\x1e\x77\x3a\x4a\x44\x47\x78\x40\x13\xf7\xa8\xf8\x8a\xe6\xec\x67\x9f\x6c\x55\xca\xb8\x2a\xb2\x80\x1f\x93\xeb\x3b\xf7\x81\x68\xe5\x62\x2e\x12\x8f\xbb\x1a\x06\x0e\x9d\x47\x36\x08\xc2\x4d\x24\x35\x13\x18\xeb\xff\xa8\x8e\x95\xa9\xa5\xcf\x63\x32\x16\x0f\xcb\x7d\x8b\x22\x9c\x69\xb4\xe1\x02\x17\x4c\x7d\xec\x3c\x26\x73\x62\x27\x4c\x33\xa1\x47\x38\xcf\x56\xfd\x0d\xe4\x8e\x9e\xee\x10\x6d\xe0\x23\xa1\x35\x3f\xf8\x50\xbf\xe3\x9d\x41\xe1\xb5\x23\x28\xd0\x3d\xcf\x46\x78\xb8\x8d\x9f\xac\x28\xe0\x47\x56\xa0\xdb\x9e\x7a\x20\x4a\x49\x36\xf3\xd9\x4d\xd4\x98\x5d\x43\x60\x8b\x2a\xe8\x28\x68\x39\xc1\xb5\x79\xe0\xc6\xc1\x39\xe3\x3e\xed\x82\x73\xc6\xd1\xf5\x66\x83\x20\xa0\x35\x70\xce\x38\x4c\xf4\x7f\xb4\x32\xa8\x94\xc8\x8c\x78\x6c\x07\x25\x22\x5a\x11\xda\x34\xe1\xaa\x81\xe3\x03\xa7\xfa\x65\x42\xba\xda\xc5\xc9\x48\x2a\xef\x27\x6c\xd5\x11\x27\x6c\x87\x2c\x70\x87\x9c\xb0\x55\x12\xa6\x77\xf8\xb9\x79\x45\x84\x5f\x2b\x56\x07\xe8\xe8\x0e\xee\x96\xb5\x49\x7a\xee\x95\xb9\xc8\x70\x47\xc4\x39\x4b\x29\x6a\xe4\x42\x36\xc2\x63\x4b\xd7\x68\x58\xb6\x1a\xe1\x3d\xf3\xa4\x63\xc2\xe9\x46\x70\xdc\xee\x5b\x6e\x3c\x76\x5b\x72\x83\x76\x5a\x55\xf0\x2b\xb8\x72\xc9\xe4\x06\x26\x72\x83\x1a\xef\x14\xc4\xa7\xa5\xb1\x81\xc3\xf2\xdf\x24\x08\x67\xbf\xa3\x99\xc0\x54\xff\xc7\x0d\x97\x1e\x7d\xaa\x8a\x0d\x1c\x3a\x75\x79\x58\x53\x31\x60\x67\xfc\xd0\x62\xa8\x09\xd5\x73\x72\x63\xa2\xc2\x8f\x2f\xfa\x71\x84\x8a\xa4\x5e\x43\x35\x23\x62\x4b\x27\x32\x9f\x53\x96\x7b\xec\xfa\x4a\x44\x74\x01\xe5\x68\x46\x29\x27\xc9\x8b\x34\x83\x15\xd2\x40\x94\x9e\x6b\x32\xc7\xcd\x69\xc1\xc6\xee\xb3\xbf\x1e\xac\x02\xd2\x02\xa8\x70\xae\x39\x49\x0e\x60\xb5\xe5\x4b\x53\x22\x15\x8b\xed\x29\x6a\xcf\x16\x4d\xfb\xd8\x58\x29\x3e\x4b\x1d\xf0\xa0\x53\x83\x23\x7c\x68\x7e\x75\x59\xff\x8d\xaa\x9e\xd6\xaf\x09\x60\x8d\x8b\x89\xea\x20\x65\x50\x63\xc0\xc6\xc8\x72\x46\x49\xfe\xad\xfc\xc2\x3d\xa5\x09\x8f\xeb\x23\x8d\x86\xc9\xa4\x11\x1e\xce\xdc\x9e\x09\x02\x57\x4c\xa0\x6b\x21\xaf\x27\x02\x3b\xce\x03\x0e\x3a\x0d\x58\x45\x35\x3b\xba\x34\xbc\x71\xf8\x43\x0a\x96\x13\x4c\x1f\xd2\xa9\x79\xeb\xd5\xbd\x69\x80\x29\x7e\x18\x91\x2e\x4d\x1f\xea\xb1\xef\x5a\x36\x87\x80\xc3\x1d\xd6\xf2\x55\x46\x09\xc7\x06\x3e\xd8\x67\xe7\xfa\x8b\xf9\x3c\xd5\x5f\x22\x76\xae\xbf\x58\xf8\x53\xfd\x66\xfd\xc5\x48\x06\x97\xa7\x13\x74\xfd\xb5\xa1\x29\x8f\xbd\xda\x54\x96\x88\x98\x18\x76\x68\xc2\xcd\xf1\x1d\x1f\xf8\xe6\x5e\x50\x8b\x08\xee\xd3\x94\x50\xa3\x3d\x3f\x31\x15\x74\x5e\xbd\xc7\x3c\x97\x8a\x34\x9a\x77\x2c\x59\x56\xa4\x75\x17\x44\x1f\xe3\x25\xc9\x17\xf4\x56\xf0\x82\x8a\x4a\x6a\xa3\x68\x47\xd5\x3f\x6a\x1e\xd1\x1c\x45\x4b\x4a\x92\xea\x1c\xf8\x28\x6a\x81\xf6\xda\x15\x10\x74\x0e\x5f\xe9\xbc\x35\x97\xc5\x63\x58\x5e\xe6\x40\x5e\x8f\x58\x2e\xdf\x30\x9e\x9a\x67\x9f\x98\x4e\x84\x30\x76\x2f\xfd\xd3\xda\x9b\xa7\x15\x2f\x7c\x34\x8f\x1e\xf1\x0a\x57\x8a\xf0\x61\xa7\x58\x7b\x60\xd4\xdb\x34\x47\xec\xd1\x24\x74\x46\x7f\xb2\x75\x36\xca\x9e\xbc\x8e\xb7\x6d\x5c\xac\xb9\x1f\xa4\x0c\xd6\xe8\x4b\x6e\xf0\xde\xbd\x4c\x9e\x3a\x46\xc4\xfb\xd8\xe3\xd4\xf4\x3e\x46\xe7\xa3\x75\x70\xc0\x93\x8e\x02\xae\x62\x74\xbe\xb9\xf4\x6a\xfc\xb4\xec\x30\x79\x5a\xbe\x82\xa1\x93\xe6\x01\x1f\x93\x39\x6a\xdc\xb4\x5a\x27\x6b\x7f\xd9\xd6\x68\x58\xb6\x1b\xe1\xc1\xb2\xad\x79\xc0\xa7\x75\xb2\xc6\x4f\x13\x72\x8f\x86\xb5\x1a\x0d\xad\xe1\x75\x78\x40\x17\x34\xfc\x01\xae\x38\x7f\xe8\xf2\xc9\x5a\x10\xe5\xf1\xf0\x7b\x89\xf8\xfc\xc0\xbe\x43\x71\x4c\xae\xca\x28\xc6\x17\xeb\x2d\x51\x4b\xa4\x2f\x5f\xa6\x7f\x78\x6c\xb6\xe9\x1f\xcf\x67\x64\x99\xfe\xa1\xa8\x90\x14\xf5\x34\x52\x23\xf4\x6c\xac\xe9\x1f\xf0\x31\xfd\xe3\xce\x30\xe8\x1e\xf7\x76\x22\x5e\xff\x81\xea\xa9\x13\x26\xc5\xba\xf0\xaa\x6e\xa8\x20\xd1\x51\x6e\x87\xa8\xf7\x32\xb3\x02\x18\x6d\x82\x2f\x10\x2a\x5e\xb0\xc9\xe0\x7d\xf9\xf1\x2d\xeb\xb5\xd8\xac\x41\x2a\x04\xfc\x50\x1a\x29\x96\x3e\x67\x20\x0e\x10\x2b\x94\x36\x49\x38\x9b\x09\xcb\x06\x2e\xec\x13\xb5\x85\xe2\x1e\x7d\xe2\xa7\x1c\x75\x89\x5f\x07\x87\x72\x28\x9b\xf2\x05\x5c\x73\xd4\x09\x3e\x59\x7a\xbc\x48\x88\x2c\xd1\x7b\x84\xea\xe0\x50\xe7\x36\xc9\x32\x86\xd3\x25\x7a\x89\x50\xc6\x52\xaf\x1b\xfc\x69\xc7\xfe\x7e\xca\xcd\x1d\x43\x43\x7c\x7e\x35\x20\xe2\x94\xd5\xcd\x3e\xa0\xa1\x40\xca\xc1\xb2\x82\x09\x4b\xf9\xd8\xbc\xf6\x73\x90\xa4\x21\x6c\x86\x0d\xc4\xd4\xbc\xe2\x66\x07\x3c\xf3\xe9\xcd\xc3\xe2\xa1\xf5\xd0\x50\x8c\x06\x19\x1d\xb4\x10\x5e\x76\xd4\xd0\x62\xbc\xc0\xb2\xbe\xcc\xc7\x4b\x0d\xda\x1d\xce\x86\xa4\x2f\xce\x4d\xb6\x4e\x15\x7b\x15\x6b\x0e\xcd\xae\xac\xab\xd6\xac\x43\xff\xb2\x67\xd7\xd1\x0f\xc7\xa5\xbe\x04\xd3\x9f\x2f\x43\x34\x32\x75\x70\xdf\xf4\xfb\x0b\xb0\x24\x55\x0e\xa9\xaf\xa1\xfb\x4e\x2e\x2b\xeb\x7b\x97\xcd\x41\xd6\xf7\x6d\x4c\x7b\x2c\xc0\xe2\x75\x9e\x6e\x9a\x2f\x99\xc7\xe9\x9f\x46\xc3\x5a\x7b\x23\xfc\xa5\x27\xb9\x35\xd4\x8f\x2c\x6d\x7d\xeb\x75\xc1\xa0\x2a\xac\x23\xc3\xf9\x92\xf5\x3b\x84\x5d\xc5\xfa\x91\xa5\xfd\x8e\x80\x57\x31\x75\x8a\xd1\x39\x7a\xec\xd3\x96\x24\xae\x8c\x45\x0e\xbb\x43\xac\x82\x7b\x9a\xc5\xc4\x72\x03\x63\xb9\xc1\x4d\x7c\x8c\x2b\x68\x9f\x87\x34\x4b\x44\x74\x78\x69\xd3\x84\xdd\x46\x58\x65\x12\x3e\x4d\x70\x33\xae\x74\x1d\x53\x9f\xa6\x0c\x16\x0f\x9d\xda\x36\x29\xc2\x99\xf9\x1b\x2e\x70\x6d\x1e\xb8\x81\x50\xba\xce\x57\xa3\x25\xf5\x38\xd7\xad\x31\x31\x41\xec\x51\x05\xb4\x17\xd2\x9c\x96\x34\x86\xa9\x79\xfb\xf8\x61\xdc\x7d\xec\xc5\x6f\xcb\xd0\x80\x1d\x0d\xa3\x41\x12\xf8\xd8\x8b\x84\x0f\x63\xf4\x0e\xd5\xfb\x59\xe1\x71\x7f\x51\xa3\x61\x79\x6f\x84\x87\xd3\xbb\xcd\x8a\x0c\xae\xce\x6e\x27\xb8\xc1\x58\x4a\xe5\x9c\x8b\xd8\x63\x87\x50\x63\xa2\x6d\x61\x97\x2a\xa0\xef\xab\x92\x13\x4c\xab\x57\x7c\x8f\xc1\xef\xa6\xfb\x7d\xe7\x9e\xfb\xfd\xab\x6c\xb9\x5b\x2e\x70\xd5\x69\x3d\xb5\xa1\x42\x3d\x8e\xb6\x74\x26\x79\xbc\xa2\x1e\x4d\xa7\x76\x80\x31\x91\x1c\x26\x0d\xb8\xfd\x2c\xd4\x23\x54\xec\xe0\x9b\xfe\xfe\x5e\x7e\xa2\xaa\x32\xce\x17\x29\x1d\xc5\x24\xa5\x79\x42\x3c\x4e\x65\x77\x80\x31\x61\x1d\x26\xed\xbd\x6c\xdb\x81\x71\xfe\x24\x42\x8b\xde\x72\x85\x92\xab\xf3\x2a\x01\x17\xe6\xe7\xb1\xfb\xd5\xba\x96\xe8\x35\x39\xde\xc5\x6d\x03\xa2\xc3\xe1\x46\xf0\x91\xd7\x4b\xb5\x4b\x44\x74\x40\xac\x8d\xc2\xc3\x8d\x86\xa5\xf9\x38\x6a\x09\x28\xf8\xd6\xe7\x1d\xc1\x16\x0f\xcb\x7a\x8b\x22\x94\xfe\xd3\x32\x81\x33\xf3\xc0\xaf\x12\xd3\x75\xcd\xe3\x80\xd8\x6c\x46\xcf\x5c\x27\xf6\x1a\x0d\xcd\x35\xac\x43\x4d\x69\x67\xb7\x94\xcc\x57\x1e\x6d\x1c\x0d\x1c\x96\xfd\x26\x41\xb8\xed\x57\xcd\x04\x3e\xe9\xff\x5d\x4e\x1f\x7d\xdb\xd1\xd7\x98\x98\x14\xf6\xa8\xc2\xba\x81\x34\x9c\x8c\x33\xc8\xa9\x7e\x43\x1b\x84\xf4\xb8\x31\x2b\x25\xea\x8e\xbc\x0e\x0e\xd7\x0e\xe4\x12\xa6\x12\x35\x86\x56\xcc\x67\x03\xd0\x68\x58\x9e\x1b\xe1\xe1\x2e\x0f\x62\x2b\x02\x77\x0c\xaf\xfc\x31\xf7\x79\xe0\x4f\xa3\x61\xd9\xd6\xe1\xf2\xff\xa8\x78\xb0\xe2\xdd\x00\xbc\x24\xf2\x4b\x99\x87\x2a\x34\x52\xc0\x98\x9f\xde\x76\x1a\xc5\xfa\x74\xc2\xe6\x00\xd1\x19\x4a\x8b\x24\xac\x2a\x2b\x7b\x80\xc9\x17\x54\x91\x35\xa3\xc4\xeb\xf1\x5c\x8b\xe7\xc8\x0e\xaa\x27\x5b\x14\x3d\x35\x94\x36\xae\x39\x66\x70\xf9\x19\xd5\x53\xde\x4b\x9f\x97\x40\x68\x34\xb4\xbf\x1d\xd2\x02\xfa\x5e\xd6\x5d\xc0\x34\x46\x8f\xd8\x32\xe1\x71\xb2\xcd\x04\x3a\xcf\xae\x83\xc3\xb9\x47\x12\x31\x5c\x0a\x7c\xe7\x39\x4d\x3d\x76\xb5\x1a\x0d\xcb\x73\x23\x3c\xdc\x7e\x71\x9a\x16\x30\x49\x53\xfc\x2c\xf5\x32\x1e\x6d\x7d\x2a\x1a\x0d\x1e\xda\x69\x19\x8a\xc1\xc3\x44\x8b\x41\x48\x4b\x85\xad\x84\xef\xb8\xeb\x44\xdd\xfb\x86\xf1\xd6\x7a\x72\xb4\xbb\xd6\x7d\xca\xb0\xc3\xc0\x01\x87\xad\x1d\x87\x24\x84\x7a\xf4\x7c\xf9\x61\x8d\x89\x09\x67\x8f\x2a\xb0\xae\xca\xdc\x68\x68\xd4\x54\x5d\xd7\x1a\x6e\xb9\x48\x0a\x41\xa5\xc7\x66\x57\x41\x62\x12\xd9\x25\x0a\xe7\xdc\xab\x64\x04\xdf\xcb\x37\x74\xe2\xc0\x3d\x1a\x98\xcc\x38\x6a\x5d\x52\x07\x87\x3b\xc8\xc8\x1f\xe1\x8c\x3f\xa2\x36\xe4\xe4\x27\x4d\x63\xe2\xf3\x14\x6c\x05\x89\xe5\xbe\x22\x7a\x81\x29\xc8\x2e\x92\xe2\x05\x1b\x30\x80\xef\xc2\x08\x5a\xa4\x2c\x26\x8a\x26\x5e\x52\x65\x0c\x20\xe2\x17\x19\xcd\x34\xd2\xc6\xf2\xc5\x6c\x3d\x9f\x0f\x37\x13\xab\xb1\x98\x39\x65\x33\x64\x97\x65\x17\x29\x65\x43\xce\x2e\xef\xa2\xbc\xc8\x4a\xaa\x86\x79\x81\xa1\x54\xa3\x52\xfa\x28\x79\x49\xc3\x7b\x2d\xaa\xb8\x81\xe6\x06\x1f\xcb\xcf\x29\xdd\x75\x60\x74\x34\x50\xab\xfe\xd7\x88\x5f\x9b\x3f\x0f\x84\x96\x54\x35\x93\xd8\xcf\x3a\xa9\x86\x29\x6b\x6e\x8d\x75\xe9\x7e\x19\x08\x58\x19\x74\x55\x80\x13\xf7\xcb\x50\x19\x56\xed\xb4\x21\xc0\xea\xb7\x81\xa0\xa6\x7f\xab\xf1\xee\xf4\xe7\x40\x28\xdd\x62\x6b\xa4\x6b\xb6\x7b\x11\xc9\xd1\x40\xb6\x77\xcb\xd7\xd9\xac\x99\xd5\xd3\xc6\xaf\x03\x81\xad\xa5\x58\x85\xd8\xdf\x87\x6c\xa3\x74\x5b\x05\x7b\x8c\x47\x27\xea\xdd\xa3\x13\x3d\xc2\xa3\x13\x7d\x25\x8f\x4e\x54\xc2\x94\xe2\x97\xc6\xc7\x99\xcf\xbb\x61\x35\x1a\x96\xfd\x46\x78\x38\xdf\x23\x19\x93\x30\x9e\x5c\xa2\xb6\x1e\x6e\x9b\xb3\x58\xcf\xa4\x57\xa7\x90\x4d\x58\x4c\x10\x87\x08\x43\xef\xae\x5a\x66\x6e\x0f\xf4\xd6\x7c\x60\x22\x2a\x04\xcb\xbd\xde\x89\xed\x00\x31\xb1\xa4\x45\xf0\xe3\x96\x2e\x15\x70\x6b\x9f\xa8\x11\x08\x89\x57\xd2\xeb\xb5\x7e\x16\xd0\xd1\x21\xd7\xfa\xb5\xe8\x7a\x5a\x78\xd8\xb8\x70\x65\x9f\xa8\x9a\x31\x80\xab\x97\xa3\xbc\xbc\xf4\x74\xf0\x32\x78\xbb\xb7\x76\xed\x72\x94\x5b\x97\xb9\x4f\x8d\xc1\x1c\x57\x15\xcc\x87\xe8\x08\xaa\xa8\xc3\xef\xcd\x1c\xc4\x77\xc0\x1d\xbf\x82\x66\x5c\x51\x38\xdf\x55\x4b\xf4\x8b\xdb\xcf\xdb\x79\x33\xf2\x74\x8e\x2b\x44\x5c\x07\x2c\x97\x94\xfa\xf4\xea\xd8\x82\x3d\x62\x00\xb0\x84\x83\xad\x6c\x0e\x60\xbd\xd2\x60\x62\x99\xb9\xc1\x64\x6a\x3e\x86\x58\xe6\x38\x98\x96\xbd\x8f\x45\xeb\x36\x51\x90\x8a\x67\x1e\x1b\xac\x81\xc3\x8a\xac\x49\x10\xd0\x40\x83\x67\x05\x4c\xf5\xff\x0e\xfb\x14\x96\x2f\x14\xcd\x0a\xbf\x8a\xe0\x36\x2e\x2e\x0d\x4d\x39\xda\x21\x0d\x69\xb8\xd2\x48\x18\x4c\xcd\xe7\x9d\xfb\xec\x9c\xe7\x07\x70\x69\x7c\x72\x9c\x4f\xe3\x93\xd7\x73\x6a\x7c\xd2\xf6\x6a\x7c\x70\xda\xbf\x3a\xf2\x26\xa1\xd5\xb3\x22\x58\x05\xb9\x3d\x68\x67\xa6\x98\x78\xbc\x7f\xa0\x48\xd0\xeb\x07\xea\xe0\x70\x53\xce\x64\x0e\xb7\x09\x7a\xf7\xc0\x6a\x3d\xa3\x22\xa7\xca\xe7\x7a\xb4\xc6\xc4\xf2\xcf\x0b\x9a\xcb\x25\x9b\xab\xd1\x6c\xcd\xd2\x21\x17\xbb\x97\xee\x33\x4a\x6e\xa3\x78\xad\x7b\xb1\x91\xa0\x92\xaf\x45\x3c\x64\xb1\xbb\x07\x99\x93\x8c\xca\x82\x78\x02\xe3\x89\x17\x9c\x65\x31\xa0\x59\xef\xa1\x24\xb4\x48\xf9\x53\xf6\x92\x8b\x8c\x1a\x68\x05\x15\x92\x49\x45\x73\x35\xda\xf0\x74\x9d\xe9\xe2\x48\x09\x1b\x72\xf8\x68\x1f\x9b\xfb\xa9\x1e\x3c\x9f\xb3\xc5\x28\x7b\x81\xe1\x0e\x9a\x61\x0f\xa0\xd2\xde\x9b\xe9\x07\x2a\x16\x83\xa6\x65\xcf\x25\x6a\x44\xe2\x98\xaf\x5f\x50\x5b\x76\x5a\xbc\x2b\x0f\x1f\x29\xbc\x1f\x72\x4b\xea\x1e\x4a\xa9\x96\x66\x3c\xd7\x69\x53\x82\xa7\x29\x15\x3e\xd2\x57\xf5\x48\xa3\x87\x35\x57\xe1\xcd\x4d\x2b\xce\x60\xba\x1c\xf8\x54\xfd\x70\xa3\xbf\x7b\x4d\x98\x1b\x60\xae\x4a\x35\xe0\xa6\xf6\x97\x5e\x80\x55\x35\x00\xdb\xf1\xc3\xe7\xf2\x87\x33\xf3\x3d\x34\x75\xb6\x3a\xfd\xad\x9b\x77\x23\x85\x63\xf3\xeb\x84\xf4\x5c\xd2\xb5\x72\x6d\xaa\xff\xdf\x65\xf5\x6f\x65\xdf\x04\x9d\xba\x90\xa1\x1c\xaa\xea\xf1\xb7\xa9\x1e\x0d\x06\x5f\xcb\x90\x2f\x3a\x60\x28\xfe\xb2\x68\x62\x7e\xbc\x3d\x1d\x0a\x54\x8f\x86\xcd\x2a\x55\xfd\x38\x14\x56\xf7\xef\x0d\xc0\x5b\x3e\xbc\x12\x34\x06\xb5\x06\xe2\xfb\xfa\xd7\xa1\xc0\xf7\x7c\xd6\x00\xbc\xe2\xb3\xe1\x85\x5d\xf5\x32\x7f\x37\x7a\x99\x56\xa1\x57\x14\xe3\x9a\x60\x70\xb3\x30\x93\xa2\xaa\x8a\x35\x9b\x86\x09\xa9\xaa\xd8\xe0\xd2\xab\x06\xc2\xbf\xdd\x40\xf8\xb7\x1d\xf9\x9b\x45\x5a\xd1\x7c\xb3\x24\x63\x43\xf1\x92\x7e\xe3\x6f\x37\x7c\xec\x74\x1f\xb6\xbd\x7b\xcc\x0c\x9a\x8b\x97\x75\x29\x07\xba\x92\x6e\x2b\x2c\xa2\x96\x34\xf7\xbd\xa4\xb4\xa0\x9d\x4b\xca\x16\x59\xd8\x25\xa5\x65\x05\xa7\xe6\xd1\xb1\x93\x34\x92\x3e\x4f\xd6\x5b\x3c\x74\xa1\xd9\xa4\x08\xb8\x9f\x04\x63\xf4\x00\x6d\x2c\x9e\x0a\xe5\xd1\x08\xd9\xe2\xe1\x2b\xec\x06\xc5\x4b\x7d\x58\xb4\xc0\x46\x51\xb1\x28\x7a\x89\x29\xdf\x50\xa1\xa8\x00\x0b\x03\xb7\x17\xb7\xc7\x79\xa1\xd8\x89\x37\x36\x8f\x7e\x0e\x2c\x5c\xd4\xf7\x6c\xc1\x14\x49\xa7\x6c\x91\x13\xb5\x16\xa8\x36\x28\x27\x0b\xc6\x3d\x56\x52\x8b\x87\x95\x55\x8b\x22\x58\x25\xb5\x5c\xe0\xc6\x3c\x70\xc3\xb7\x9c\x29\x8f\xdd\x96\xc5\xc3\x04\xd0\xa2\x08\x68\x01\xa7\xb9\xc0\x99\x79\x60\x02\x48\xee\x7d\x3a\xd5\xbd\xc7\x3d\xe9\xde\x87\x77\x9f\x7b\x9f\xc2\xfb\xab\x6b\xd4\xcc\x7c\x2d\x95\xdf\xd3\xec\x25\x22\x96\xf7\x1d\x9a\x70\x26\xe7\x8e\x0f\x4c\xdc\x0b\x2a\x0a\x22\xbd\x6e\x69\x5b\x3c\x54\x0c\x4d\x8a\x70\x42\x30\x5c\x60\x62\x1e\x87\xf5\xbe\xc7\x66\x1d\xd3\xfc\x86\xca\xee\x81\x99\x90\xef\x1b\x78\x4f\x8e\xb8\x82\xf7\xe4\x95\xee\xe0\x3d\x31\x97\xf0\x9e\x7e\x9f\x9e\x74\x5c\xc4\x2b\x73\xaf\x1b\x5c\x79\xc7\xfe\x56\xfe\x0a\xdb\x5b\x79\x56\xc0\x34\xc7\x37\xb7\x66\x44\xc4\x3c\xf1\x79\xfa\xdc\x02\x62\xb3\xa0\x36\x49\xdf\x83\x5d\x36\x32\x9c\xd9\x27\x6a\x73\x61\x96\x4f\x8a\xc4\x1e\xef\x27\xab\x20\xb1\xd2\xad\x88\x46\x39\xdf\x0c\xd6\x5b\xd7\x28\x31\xcb\x93\xe1\xc6\xc9\x35\xce\x8a\x3e\x49\xc5\x87\xf8\x86\xda\xcb\x17\x5d\xab\x01\x5b\x4f\xfb\x40\x72\xcb\xe6\x83\x4d\x8b\x6b\x98\x45\x3a\xcc\xe8\xba\x5f\x8b\xaa\xf8\x81\x2d\x11\x18\x9b\x47\xff\x25\xbd\xc1\x28\x4b\x03\x3e\xb9\x97\x81\x38\xae\x2c\xe0\xc6\x3e\x07\xa2\x58\x09\xc2\x45\xda\xdb\xe2\xb7\xc6\x30\x85\x09\x53\xfd\x7f\x68\x5e\xf8\x86\xc0\x0d\xdf\xa0\xd3\x4a\xb2\x95\xa3\x15\xcb\xa9\xf4\x69\x4e\xd9\x00\xed\x18\xba\x76\xc8\xfa\x1f\x71\xab\x21\x46\x73\x26\xe8\x92\xcb\xe0\x35\x97\x6c\x25\x94\xbc\xe0\x93\x65\x7e\xee\xbe\xfb\x79\x9e\xdc\x4a\x70\x89\x2f\x71\x3a\x6e\x02\xf7\x68\xf0\xc3\xd0\xd3\x2f\x75\x70\x38\x83\x1c\xa6\xe0\x82\xa1\xfe\x89\x24\x15\x9b\xd4\xa7\x13\x27\x07\x88\xce\x26\x5a\x24\xa1\x4e\x4d\x3a\x2e\x30\xb5\x4f\xd4\xba\x4f\x50\x9a\x11\xb1\xf2\x39\xff\xaf\x31\x31\x51\xec\x51\x85\x33\xbd\xab\x38\xc1\x79\xf5\x8a\xd6\x0c\xaf\xde\x1e\x64\xed\x0f\xe1\xe0\x24\x4b\x87\xdf\x93\xc7\xd9\xb0\x59\x96\x8e\x0d\x53\x4e\x8a\x2b\xf2\x38\xc3\xdd\x7c\x0a\x92\x2f\x78\xe2\xd1\xb0\xbb\x44\x44\xbb\xe1\x36\x4d\xb8\x7e\xd3\xf1\x81\x53\xf3\xf2\x1e\xb5\xe2\x76\xb6\x81\x19\x61\x3e\x3d\xf9\xd7\xa0\x68\xe7\xb7\x47\x36\xd4\xb4\x51\x43\xbc\xae\x2b\x32\xcd\xb1\x6d\x96\x38\x21\x2c\x1d\xee\x82\xcc\xe0\xd5\x40\xe8\x59\xdd\xd2\xe5\xdc\xe8\x5e\x8a\x77\xff\xfa\xdd\xe3\x91\xdd\x1d\x64\xac\xf0\x9e\xa1\xf5\x2c\xf7\xda\xdb\x9e\xe5\x02\x57\xd3\xaf\xef\xfe\xf5\xfb\x77\x3a\x9b\x76\x7a\xdd\x4b\xcd\xa9\xa3\x7b\xaf\x4b\xa9\x1a\x13\x93\xcd\x1e\x55\x40\x8f\xb6\x25\x27\xb8\xae\x5e\xbb\x6e\xd1\x09\x61\xd7\xdf\xc6\xc5\x84\x73\x90\x32\x9c\x43\x4b\xc9\xf3\xda\xcc\xff\x4a\xf2\xe3\x6e\x70\xb5\xe7\xb0\xde\xf9\x3e\xfc\xf5\xae\x63\x9a\xde\x20\x09\x7c\xf4\xeb\x9d\xd1\x2f\x4d\xdf\xa1\xaa\x70\xc1\x0b\xaf\x07\xe1\x1d\x20\x26\x84\x36\x49\x38\xb5\xb8\x65\x03\xef\xed\xf3\x88\x11\x72\xc6\x16\xe6\x2a\x70\xef\xa3\x64\x09\x7c\xc4\x48\xb9\x43\x3a\x74\xb4\x2c\x61\x46\xaf\x70\x7d\x9f\x1b\xde\x4a\x96\xe6\x46\x5b\x3b\xcc\x9d\xb1\x85\xb9\x54\x7d\xfa\xe5\x7a\xc8\x80\x59\x21\xb6\xd1\x70\xed\xbe\xcf\x49\x4e\xd7\xec\x46\x66\x2f\x38\x87\x53\xf0\x62\x40\x47\x50\x33\x1e\x1a\x97\xbd\xc4\xea\xf2\x25\xce\x1b\x74\x86\x07\x30\x3e\xb8\x8c\xc8\x58\x46\xad\x37\x89\x82\x08\x35\x6c\x31\xa1\x31\xa0\xc2\x80\x09\xcb\xe8\xa4\xfc\xea\xb7\x0b\x6d\x66\x76\x5d\x73\xba\x22\x25\x4a\x73\xf6\xec\x96\xa6\x05\x8b\x55\xd6\x43\x84\xa1\xd6\xe4\x25\x2f\xeb\x9e\xe6\xd6\x7d\x75\x79\xa8\x51\x2c\xf3\xb9\x32\x37\x70\x98\x44\x9a\x04\x01\x3d\x2e\x66\x54\xc0\x9d\xfe\x8f\x0e\xc4\xd6\x82\x81\xc7\x94\x78\x3c\x6d\xda\x44\x45\x87\xe4\x7d\xba\x80\x17\xd9\xd5\xbc\x4a\xc3\x8d\xcf\xfa\x03\x77\x49\xb9\x8e\x97\x33\xe2\xd3\x1f\x71\x05\x89\x09\x66\x97\x28\x9c\x89\x51\xc9\x08\xc6\xe5\x5b\x97\xae\x59\xe6\x9e\xf5\xcc\x32\xef\xd4\x31\xd7\x24\x41\x75\xc2\x32\x97\x30\xcd\x51\x15\xae\x4c\xbd\xae\xfa\x0c\x1c\x3a\xd6\xa7\xaf\xb0\xd6\x33\x4c\x60\x9a\x76\xac\xf0\xe6\x29\x51\x85\xd7\xec\x97\x88\x98\x04\x76\x68\x5e\x7c\x71\x52\x1b\xae\xa7\x96\xd3\x45\x86\x73\xf7\x72\xc4\xfc\xb2\x31\xf4\xef\x45\x47\x75\x89\x3f\x59\x31\x67\xa9\xc7\xae\xc7\x01\x62\xd2\x69\x93\xf4\x9c\xd9\xb8\xc8\xf0\x17\x2b\xce\x59\x8a\x6f\x46\x3b\xa3\x07\xdf\x4e\x50\xba\xaf\x7d\x39\x79\xa5\x7b\x5f\x4e\xca\x8b\x5f\x50\x3b\x8b\x9c\x2a\xf5\xe4\x79\x6a\x56\x63\x62\xa2\xd8\xa3\x0a\x35\x29\x33\x8c\xec\x8c\xec\x46\xbf\x76\x4d\xc7\x58\x3e\x4f\xd7\x8f\x3e\x55\xe8\x25\x22\x26\x8e\x1d\x9a\x70\xce\x59\x1d\x1f\xb8\x34\x2f\x87\x55\xe8\xab\xd1\x4a\x3f\x8f\xd9\x37\xc3\x8c\xa6\x1c\x08\x96\xed\x36\xc9\xb1\xde\x30\x76\x26\xbc\x64\x21\xf9\xda\x63\x05\x76\x80\x58\x3f\xa5\x58\xf2\x34\xd1\xd4\x7d\x4c\x86\x1b\x5d\x95\x63\x01\x77\x15\x0e\xda\x5b\x15\x82\x2b\x3e\x5b\xfb\x3c\x1b\xec\x10\xb1\x4c\xee\xd0\xf4\xcc\x62\x19\x1b\x6e\xdd\x0b\xde\x1f\xff\x5c\x0b\x3a\x92\x8a\x0b\xb2\xa0\xa3\x59\xca\x7d\x6e\x61\xed\x61\xa3\x7d\xf4\x73\xd4\xe1\x7a\x6b\xcd\x11\x1c\x47\xd0\x1c\xe1\x2c\xdd\x3d\xdf\xb3\x93\x25\xa9\xa8\x60\xd2\xe3\x54\xa8\x44\x44\x45\xd3\xa6\x09\x27\x10\xc7\x07\x4e\xdd\x0b\x7e\x8b\x71\x2c\x78\x21\xb8\x1e\xfa\x47\x19\x55\x82\xf9\x1c\xd5\x0f\xa1\x63\x22\x42\xe8\xc3\xd9\xc0\x36\x78\x82\xe3\x09\x13\xfd\xe3\xad\xfd\x71\x62\x7f\xc3\x8f\x07\xf8\x74\x06\xa3\xd1\xd0\xc1\x9f\x84\x77\xd7\xa2\x79\xc0\x0d\xd9\x3d\x70\xb7\x37\x34\xb3\x9c\xc9\xc2\xa7\xf6\xa1\xc6\xec\x18\xf0\xdb\x54\x21\x87\x7c\xc7\x49\x0f\xfa\xee\x15\xb7\x42\x95\xf4\xf7\xff\xf1\x69\x84\xaa\xf1\xb0\x91\xa6\x45\xd1\xdb\x04\x55\xc7\x85\x33\xf3\x40\xc7\x18\xfa\xe8\xf3\xd6\x4b\x8d\x86\x15\x70\x23\x3c\x58\xd1\x6a\x1e\xf0\xe1\x91\xa2\xce\xf6\x85\x4f\xdf\xd7\x02\xf7\x7a\x2d\x86\xf8\xbb\x3e\x58\x25\x6a\xa4\x7e\x22\x11\x52\xc2\xd7\x5d\x17\xd8\x5d\x75\xc8\x45\x42\x6b\xcf\xc2\xab\x43\xbc\xc5\x31\xde\xf0\x16\x43\x5d\xe1\xe9\x88\x70\xd1\xe5\x04\x6f\x41\x79\xcc\x13\x9f\xba\xe7\x12\x11\xab\x22\x3b\x34\xe1\xf6\xe7\x1c\x1f\xb8\xa0\x7c\xcc\xf7\x0c\x83\x77\xa6\xc3\x0b\xba\xa1\xb9\x47\x3b\x41\x07\x88\x09\xa2\x4d\x12\xce\x07\x8f\x65\x03\xb7\x8b\x0f\xfa\x89\xce\x2a\x15\xf7\x78\xf3\x9b\x46\x43\x67\x93\x75\x78\xb8\x99\xa4\xe2\x99\xb9\x8b\x1d\x37\x05\x14\x7c\xed\xf5\x96\x2f\x0b\x88\x65\xbe\x4d\x12\x4e\xb3\x6a\xd9\xcc\xb8\x6a\xfc\x38\xb5\x3f\x9e\x71\xb4\x32\x24\x82\xa5\x3e\x0f\x0c\x6a\x38\x4c\x22\x4d\x82\x80\xd6\x11\x2c\x4d\xe1\xbd\xfe\x8f\xef\xbb\x64\x54\x25\x3e\x37\x5d\x34\x1e\x96\xfb\x16\xc5\x80\xeb\xb8\x74\xec\xf0\x07\xc2\x0d\x1b\x18\x9b\x07\x2a\xbf\xe5\x3a\xf7\xb8\x36\x35\x70\xa8\xf4\x1a\x04\xe1\x72\xaf\x99\xc0\x58\xff\x3f\xac\x34\xdb\xd2\xd9\x92\xf3\x23\xf2\x8d\x29\xcd\x1c\x08\x96\xdb\x36\x09\xae\x37\x7d\x46\x67\x96\xf8\xdc\x44\x4b\xf0\x0d\xb4\x24\xfc\xe6\x59\x92\x4b\x78\x8f\x6f\x9c\x65\xdc\xb3\x61\xb4\x03\xc4\x72\xde\x26\x09\xb7\xfe\xb7\x6c\x60\xc2\x3b\x8d\xa2\xef\x4d\xbe\xe5\x48\x90\xb9\xc7\xc9\x4e\x13\x15\x93\xc7\x01\xba\x70\xe6\x91\x96\x17\x68\x5e\x70\x75\x61\x3e\xbe\x92\xdd\xa3\x50\x3b\xfd\x0c\x91\x92\xe4\x89\x20\x0f\x1e\x07\xbe\x06\x28\xda\x85\x85\xb7\x58\xab\x52\x02\xe3\xf2\x0d\xd5\x8d\xc4\xc4\xa3\x18\x34\x1a\xb6\xe0\x69\x84\xf7\x54\x6f\xc4\x24\x85\xcb\x31\x49\xd1\xb5\x8e\xbc\xf7\xe9\xa1\x45\xa3\xa1\xb3\xbb\xfb\x4c\x8e\x66\x44\xc5\x03\x26\x78\x35\x42\xf0\xc9\xe1\x7d\x26\x61\x7a\xdf\xd3\x0b\x92\x89\x65\xf2\x66\xe2\x9e\xe9\xb7\x23\xac\x4c\x13\xa1\x53\xeb\xad\x04\x9a\xa8\x58\x49\x1c\xa0\x0b\x6d\x11\x6a\x78\x39\xe3\xcd\xf7\xfa\x1d\x5d\x7b\x14\xa9\xd7\xa9\x92\xc5\x43\xeb\x66\x93\x22\x5c\xdd\x32\x5c\x60\x6a\x1e\xe8\x32\x83\xff\xf4\xa9\x81\x30\x70\xe8\x6c\xa4\x41\x10\x6e\x3e\xa2\x99\xc0\x7b\xfd\xbf\xcb\x9c\x89\xae\x3c\x9b\x33\xd1\x55\xa7\x39\x53\x4d\x12\xd4\x9c\x89\xae\x24\x7c\xf8\x84\xde\x46\x22\xa9\x4f\xe7\xd4\x8d\xdb\xa8\x9e\x39\x99\x79\xac\x3b\xea\xc1\x17\x2f\x98\x2b\xaa\xf6\x6f\xa6\xda\xd9\x1e\x61\x4a\x30\x9f\xce\xcb\x1d\x20\x96\xf7\x36\x49\xb8\x5d\x17\xcb\x06\x6e\xec\x13\xad\xfd\xb1\x62\x1b\xea\xf5\x16\x67\x87\x88\xd6\xff\x36\x4d\xb8\x06\xe0\xf8\xc0\xa9\x79\x99\x7c\x41\x4d\x80\xb7\x2c\xf5\x79\x9b\xb3\xc5\xc3\xc4\xd0\xa2\x08\x67\x05\x6c\xb8\xc0\x9d\x79\x60\x02\xf8\x49\xf3\x84\xfa\xdc\xce\x76\x80\x98\x08\xda\x24\xc1\x64\xe0\xd8\xc0\x5f\xf6\x89\x6e\xbc\x09\xc2\x72\x25\xa8\x4f\x07\x30\x25\x24\x26\x89\x5d\xa2\x70\xbe\xca\x4a\x46\x70\x56\xbe\x75\x9a\xfb\x3e\xf8\x36\xf7\x7d\xe8\x36\xf7\x7d\x78\x1d\x73\xdf\x07\x09\xd3\x07\x54\x6b\xc1\x53\x96\x2f\xb8\xc7\xbd\x58\x07\x88\x49\xa0\x4d\x12\xce\x7d\x8b\x65\x03\x9f\xed\x13\xed\x1d\x38\x5f\x51\x5a\xf8\x9c\x27\x56\x90\x68\x0f\xb1\x43\x14\xae\x8f\x28\x19\xc1\x5f\x9c\x7f\x32\x6f\xe8\xac\xe9\x3e\x93\x1e\x9d\x84\x19\x38\x74\xde\xd4\x20\x08\xba\x1a\x3d\x31\x4b\x4a\xd4\x62\x35\x4d\x7c\xfa\x6d\xd0\x68\x58\xce\x1b\xe1\xe1\x4e\x3a\x27\xa4\x80\xeb\x04\xbf\xb4\xf1\x31\x5e\x92\x7c\xe1\x71\x60\x70\x80\x58\xe6\xdb\x24\xc1\xf2\xef\xd8\xc0\x8f\xb1\x79\xa2\x06\xa9\x23\x41\xd9\xfc\x88\x93\xaa\x47\x98\xa5\x5a\x28\x2c\xff\x5b\xd1\xbf\xf0\x77\xb7\x40\x33\x9f\x3e\x57\x0d\x1c\x3a\x78\x35\x08\x02\xee\xa9\x66\x5c\xc2\xa9\xfe\x8f\x9b\x28\xfa\xf4\x63\x88\x77\x50\x24\x7c\xf7\x44\xe4\x09\x9c\xe2\xc6\xf4\x54\xc5\x1e\xf7\x0c\x35\x1a\x96\x67\x1d\x6e\x7c\xc8\xf5\xcf\x79\x03\x40\xaa\x41\xa6\x78\x0d\x84\xed\x30\x35\x67\x4f\x43\x27\x15\x27\xf0\x41\xc5\xc9\xf7\x7d\x75\xe3\xb1\x51\xa7\x6a\xcf\x18\xf0\xd8\xa8\x9f\xe8\x13\x5a\xd7\xf5\x53\xfd\xf4\x57\xf6\x16\x0f\x2b\xfd\x16\x45\x30\xb1\x5b\x2e\xf0\xc5\x3c\x70\xfb\x99\xd6\xe5\x25\x32\xe5\x5e\x6d\x69\xf6\xc0\x31\xd1\x3c\x4f\x1e\xd0\xc6\xa6\x79\xab\x02\x68\x96\x70\xbb\x68\x5c\xa3\x30\x4d\x71\x63\x0b\xaf\xbb\x13\x1d\x9b\x13\xaf\xb0\xb3\x70\x9f\x49\xb8\xda\xdd\x57\xd8\x51\x51\x2c\x05\xf3\xb9\x07\x69\xf1\xb0\x7c\xb7\x28\x5e\x6a\x9e\xd8\x02\xeb\xa9\x14\x31\x51\xe1\xce\x3c\xfa\xd9\x29\xb6\xa2\xe2\xfb\x5d\xcc\xa7\x77\x33\x86\xbb\xcf\x65\x83\x9d\x23\x48\x36\xc4\x29\x43\xcf\x85\x05\x2b\x60\xca\xba\xaf\x44\x8f\xb7\x5e\x15\x0d\x1a\x10\x9d\xb3\xb4\x48\xc2\x1e\x05\x8c\xb7\x30\xde\xa2\x73\x17\x22\xf3\xdf\x7c\x4e\xd7\xf2\xdf\xb0\xd6\xd3\x08\xef\x69\xed\xad\x63\xc2\xe9\xf4\xe6\x37\xbc\xf6\x6b\x81\x13\x75\xd4\x85\x8f\x47\x37\x82\x0a\x13\x6d\x0b\xbb\x54\xe1\xaa\x75\xc5\x09\xa6\xd5\x2b\xba\x72\x26\xf9\x62\x4d\x7c\xae\x21\x4b\x44\x4c\x20\x3b\x34\xa1\xf6\x5d\x4a\x36\x70\xed\x5e\x9e\x59\x46\xe6\x44\x1d\xb5\x0f\x8d\x2e\x20\x2d\x08\x96\xeb\x36\xc9\xf1\x47\x5b\xa3\xa8\x10\x3c\x59\xc7\xb5\xaa\xcb\xb4\x21\x5a\xd0\x3c\xa1\x79\xcc\x6a\x3e\x96\x57\x77\x06\x3a\xb3\x31\x2a\x39\x56\x11\x62\x9e\xcb\x75\xf6\x9a\x49\x28\x39\x1e\xa8\xb5\x95\x6a\xcc\xfb\x15\x06\xbb\xc8\x58\x79\x3e\x43\x1b\x5e\x21\xd8\x79\xbf\x41\x35\xe9\xb3\xb7\xde\x3f\x66\x1e\x6d\x76\x6a\x4c\xac\x33\xdf\xa3\x1a\x74\x6d\xff\x63\x96\x96\x37\xf7\xff\x98\x5c\xa3\xbd\x7b\x42\x67\xf4\x27\x5b\x67\xfe\x6d\xfa\x76\x91\xb1\x2a\xf1\x0c\x6d\x38\x9b\x02\xc7\x0f\xde\xbb\x97\x89\xe5\x8b\x6a\x0d\xad\x1f\x4f\x8f\x5a\xc3\x96\x2b\xd2\x83\xd5\xa1\x4d\xe2\x4e\xb2\xb4\x7f\xec\x39\xe6\xbb\xc8\xc6\xc7\xe1\x31\x1e\xaa\x0e\x44\xfd\x61\xfd\x97\x76\xdc\x4f\xa0\x48\x91\x92\x3c\xf7\xd9\xc9\x34\x40\xb1\xca\xb4\x4f\x16\xd0\x6d\x7e\xc5\x0a\x3e\x17\x8a\xdc\xda\x77\x74\x72\x58\x78\xf5\xb9\x53\x74\x38\xdc\x29\x5e\xc1\xdb\x4e\x91\x4b\x38\x2d\x70\x93\xe1\x7b\x99\xfa\x34\x92\x95\x29\x6e\x1c\x5b\x87\x07\xf4\x19\x9a\x2a\xb8\x92\x29\xaa\x8b\x98\xb1\x3c\xf1\xe8\x0c\xd2\xc0\x61\x1d\x86\x21\x18\xad\x36\xc5\xce\x2f\x73\xf6\x48\x93\x9d\xdf\x62\xb9\x19\xd6\x87\x98\xe8\xb0\xda\x14\x70\xa6\xdf\x3e\xd1\xa7\x6f\x24\x5d\xd3\x5b\xc2\x44\xcf\x2e\xc5\x22\x99\xc4\x59\xac\x73\xfd\x7a\x4d\xf3\x85\x5a\x0e\x82\x8a\xe5\xc6\x02\x8d\xe5\x06\xed\xa0\x36\x1e\x3b\xf2\x0d\x7a\x34\x6b\x73\xe4\xc1\xac\xc1\xd3\xf5\x4d\x06\xdf\xd0\x33\x59\x05\x59\x7a\xb4\x87\xd1\x68\x58\x7e\x1b\xe1\xe1\x74\x84\x64\xc9\xe1\x96\x2c\x51\x3b\x98\xf4\xa7\x47\x1f\x1f\xe9\x4f\xd4\xbd\x47\x1d\xdc\xb3\x2d\xa5\x3f\xe7\x70\xfd\xd7\x39\x5a\x57\x05\xf5\x98\x11\x41\xe7\x58\xe9\xd5\xc1\xa1\xaa\xab\xa0\x73\xf8\x4a\xe7\x58\xc9\xad\x73\xb6\xe1\x31\x53\x4f\xa3\x82\x08\x49\x85\xc7\x01\x73\x0f\x1a\x2b\xd5\x9a\xb8\xdd\x7f\xd6\xbf\xab\xaa\x0f\x6d\xfe\x3a\xb8\x67\xad\x20\xe0\xdf\x39\xfb\x66\xde\xee\xf6\x3a\xb2\x01\x20\xfb\xbd\xe1\x00\x10\xd3\x37\x7f\x67\xc9\x5e\xd7\xdc\x96\x70\xb6\xa1\x3e\xfd\xe7\x6e\x28\x7a\xd4\xa3\x11\xde\xa3\xb7\x29\x35\x1c\x0d\xb0\x06\xd0\x31\x85\x56\xe9\x48\x74\x3c\x98\x6c\x68\x7a\xdd\x56\xce\xe0\xa7\x8c\xca\x48\xdd\xde\xc5\x3d\x7b\x68\x3c\x39\xc2\x45\xe3\xc9\x2b\xf9\x68\x3c\x29\x9d\x34\xa2\xda\x54\xbd\xe6\xf1\xb8\x2c\x35\x70\x58\xa3\x37\x6b\xac\x26\x55\x7f\x57\xf2\x33\xb3\xbc\xc2\x6f\x17\xc9\xa5\x47\x63\xdd\x5c\xa2\x76\xba\x75\x70\x38\x5b\x65\xf9\x00\x37\xf2\x01\x5d\x40\x17\x44\x79\x3c\x18\x6e\xe0\x9e\x6f\xcf\xcd\xe0\x5e\x0d\xda\x44\x84\x1f\xb7\x44\x2d\x5b\x4d\xba\xcd\x7d\x4e\x62\x3a\x3b\xea\x80\xea\xb1\xf9\x29\x11\xb1\x82\xdc\xa1\x09\x77\x03\x90\xe3\x03\xe7\xee\x05\xb5\xab\x5c\xe4\x1e\x3b\x7c\x8d\xf6\x7c\xa9\x36\x42\x7b\x15\xaa\x8e\x07\x9f\x17\x79\x8a\x14\xa9\x51\x9c\xfa\x3c\xac\x68\xf0\xb0\xe2\x6c\x51\x04\x3c\x69\xae\xb9\xc0\xd8\x3c\xd0\x9e\x36\x99\x79\xf4\xe9\xa3\xd1\xb0\xcc\x37\xc2\xc3\xad\xd1\x93\x59\x0c\x57\xc9\x0c\xf5\xe9\xb3\xa1\x42\x79\xbc\xbe\xc2\xc0\xa1\x0b\xc2\x06\x41\xb0\x9c\x1b\x26\xf0\x4d\xff\xc7\x9d\x33\xe4\x4a\xf0\x74\xb6\xf6\x38\xcb\xa8\x31\x3b\xea\x7e\x9b\x2a\xd4\x7a\xa3\x66\xa4\x9b\x80\x7e\x3d\x5b\xa3\xaa\xaa\x2d\x5d\x79\x3c\x47\xa5\xd1\x30\x39\x34\xc2\x83\x55\x06\xcd\x03\xbe\xd3\x15\x7e\x44\x99\xc6\xbf\xff\xfa\x7f\xff\xf8\xd5\x5f\xd6\x4b\x44\x2c\xfb\x25\xcd\x28\x4e\xd9\x20\x07\x3e\x3b\x30\x92\x8a\x4d\x78\xbd\x6f\xc9\x0e\x2c\x3b\x73\x71\x60\xcf\xdb\x52\x2b\x08\x9b\x71\x18\x9b\x07\xee\x75\xc1\xa7\xbb\x6e\x8d\x86\x2e\xac\xf8\xb1\x6e\xba\x07\xb7\x4c\xcd\x02\x26\x1c\x77\x54\x6e\xd6\x23\x89\xd7\x5b\xf8\x1c\x62\xe7\x2a\x28\x49\x66\x43\x6f\x8b\x6b\xa3\xbc\xca\x5a\xaa\x4a\x2d\xbc\x4f\x66\x27\x03\xee\x98\x2b\x51\x4c\x7c\x74\x9e\x50\x78\xec\x1f\xef\x0b\xb4\x7b\xac\x83\xc3\x4d\x12\x0a\x02\x57\x05\xda\x37\x16\xeb\x54\x12\x8f\x3b\x59\x16\x0f\xcb\x77\x8b\x22\x9c\x1e\xd5\x70\x81\x5b\xf3\x40\x1d\x0f\xac\xc9\x86\x8c\x8c\xf3\x33\xaf\x73\x85\x36\x2e\x26\x90\x83\x94\xe1\xdc\x0f\x68\x6e\x50\x72\x83\x0b\xfd\x69\x5c\xbe\x75\xcc\x1d\x48\xf6\xe0\xd1\x56\x50\xa3\xa1\xbd\x54\x1d\x1e\xae\x6f\xc9\x1e\x0a\x38\x9d\x7c\xb9\xc5\x6f\x93\x60\x3e\x1d\x2f\x18\x38\x2c\xe3\x4d\x82\x70\x8b\x60\xcd\x04\xce\xf5\x7f\xd4\xe9\x42\x69\xbb\x50\x70\xa9\x16\x82\x7a\x6c\x1d\x7b\xd0\x98\x4c\x9e\x23\x7e\x3d\x23\x8a\x5b\xc7\xb8\xeb\x18\x2a\xf3\x69\x45\xe1\x00\x3b\x06\xf3\x06\x49\xd0\x63\xa8\x8c\x64\x70\x79\x3a\x41\x0f\x1c\x3e\xc9\x94\x2f\x3c\xda\x52\x1a\x3c\x47\x76\xf8\xc2\xe4\x26\x45\x4f\xc3\x48\x13\x15\xa6\xe6\x81\x9b\x89\x66\x85\x4f\x2b\xe9\xac\xc0\xcd\xa4\xeb\xf0\x01\x37\xdf\x15\xaf\x60\x28\x9d\x15\x05\x4c\xb3\x02\x35\x95\xfe\xc9\x8a\x51\x42\xe7\x29\xf1\x6b\x8b\xd7\x40\xc5\xaa\xc5\x4f\x56\xec\x90\x8d\xa2\xc5\xfe\x8f\x3d\xb7\xb0\xca\xd8\x70\xf1\x93\x15\xef\xdd\x47\xcf\xcd\xa7\x0a\xe3\xaf\x67\x21\x76\x16\xd9\x5c\xac\x12\xe2\xd1\xd0\xc2\x01\x62\x55\xb0\x4d\x12\x6e\xed\x6e\xd9\xc0\x77\xfb\xec\xbc\xe1\xcc\xe7\x4a\xc9\x01\x62\x52\x68\x93\x84\xbd\xdb\x2c\x99\xd9\x9b\xcd\x3a\xee\x2a\x17\x3e\xb5\xf2\x1a\x0d\x6b\x44\x8d\xf0\x9e\x33\x4c\xc1\x57\x70\x21\x38\x7e\x6f\x94\xf1\xa0\xe0\xf7\x82\xe1\xee\xfb\x85\x5f\xe7\x7a\x61\x90\xef\x00\xbf\x59\x78\xe6\xf5\x22\xc3\x59\xc7\x05\x86\xb3\xa3\x2f\x2e\x6c\x28\x3c\x5c\x23\x48\xc9\xb1\xbe\xda\x1b\x71\x0f\x6c\x6f\x34\xd2\xd0\x6b\x7b\x43\xc7\x83\x33\x4a\xf2\x3e\x9b\xd0\x55\xa4\x5e\x5a\x02\x1d\xcb\xe4\x17\xc6\xfa\x3f\x7e\x21\xa5\xa0\xb1\x47\xab\x3f\x8b\x87\xce\x81\x9b\x14\xa1\xd4\x56\x96\x09\xbc\x37\x0f\x74\xc3\xf3\xde\xe3\x6e\xe7\x3d\x96\xef\x2a\x34\x9c\x63\x81\x7b\xf8\x71\x85\x2e\x01\x89\x54\xf7\x5e\xdd\xfa\x97\x88\x58\xf7\x6b\x36\xeb\x77\x08\xfb\x6e\x75\xda\xc8\x70\xee\x5e\xf0\x59\x6e\x4e\x56\xf4\x89\xf8\x3c\x18\x50\x41\x62\xf9\xd4\xe1\x7b\x94\x3d\x67\xa4\x65\x6c\x98\xea\xb7\xff\x9c\x1e\x7b\x32\x40\x3e\xa4\x56\xcd\x1d\x60\x61\x5b\x61\x1f\xb5\xb2\xdd\xa5\x7e\xbd\xa5\xed\xb4\xe4\xdc\xa9\xaa\xce\xbc\x5e\x24\xe5\x10\x3b\x06\xec\x26\x4d\x58\x25\x73\x26\x57\x30\x99\x7e\x42\xd5\xc3\x52\x11\x8f\xdb\xa9\x1a\x0d\x5d\x09\xd6\xe1\xe1\x16\x73\x8a\x3c\xc2\x54\x9d\xfe\xe8\xd2\x6c\xac\x7c\x1e\x3d\x77\x80\x5d\x93\xb5\x55\xf8\x23\xe8\x7a\xb6\xb6\xca\x24\x7c\x9a\xb4\x1c\x50\xa6\x9c\x24\x95\x71\xe6\x51\x87\xa5\xb0\x93\x80\x16\x6d\x54\x1f\x7d\x3a\x64\xd4\x53\x05\x66\x54\x11\xdd\x53\xfe\x59\xe5\xd3\x9d\x46\x8c\x7e\xd1\x03\xfb\x2f\x6f\xca\x5c\x7a\x49\x94\x06\x7a\x3e\x55\x8d\x50\x24\x59\x46\xfc\x36\x5d\x0b\xc1\xf9\xe6\x85\x9e\x77\x5c\xca\x2c\xd4\xf3\x69\x6b\x85\x1f\x97\xba\xe3\x86\xb7\x23\xd2\xd6\x18\xaa\x0e\xa4\xac\x11\x7a\x54\x61\xae\x8e\xb9\x54\xed\x88\x54\xad\xb8\x4a\x59\xfe\x7c\xba\x56\x95\x0f\x97\xe3\xc4\x75\xef\x27\x59\xf7\x12\xa9\x60\x47\xa4\xc8\x0a\xea\xff\x07\x00\x00\xff\xff\xc3\x92\x09\xe1\xa5\x5c\x01\x00"), }, "/traits.yaml": &vfsgen۰CompressedFileInfo{ name: "traits.yaml", modTime: time.Time{}, - uncompressedSize: 33769, + uncompressedSize: 34423, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3d\xfd\x6f\x1b\x37\x96\xbf\xf7\xaf\x20\x74\x07\xd8\x32\xa4\xb1\xd3\x45\xb7\x5d\xdf\xf5\x0a\x37\x49\x77\xdd\xe6\xc3\x17\xa7\x5d\x1c\x7a\x8b\x15\x35\xf3\x24\x31\xe6\x90\xb3\x24\x47\x8e\x7a\xb8\xff\xfd\xc0\xc7\xcf\x19\x8d\xed\x71\x62\x17\x5e\xe0\x90\x1f\x62\x49\x43\xf2\xf1\xf1\x7d\x7f\x70\x8c\xa2\xcc\xe8\xd3\x2f\xe6\x44\xd0\x1a\x4e\x09\x5d\xad\x98\x60\x66\xf7\x05\x21\x0d\xa7\x66\x25\x55\x7d\x4a\x56\x94\x6b\xb0\xdf\x28\xb9\x62\x1c\xf4\xe9\x17\x84\xcc\xc9\x4f\xed\x12\x94\x00\x03\xda\x7d\x14\xd4\xb0\x2d\xe0\xdf\x6f\x1b\x10\x97\x1b\xb6\x32\x5f\x10\x52\x81\x2e\x15\x6b\x0c\x93\xe2\x94\x9c\x71\x2e\xaf\x35\x29\xa5\xd0\x76\x65\xc1\xc4\x9a\x5c\x6f\x58\xb9\x21\x42\x56\xa0\x89\xd9\x00\x61\xc2\xc0\x5a\x51\x3b\x80\x34\xb2\x3a\xd4\x53\x42\x15\x10\xe0\x6c\xcd\x96\x1c\x88\x91\x64\x09\x44\x97\x1b\xa8\x5a\x0e\x15\x91\x62\x46\x96\x54\xe3\x5f\x84\xd3\x25\x70\x6d\xff\xb2\x53\xd9\x49\x67\x44\x2a\x72\xcd\xcc\x06\x27\x56\xf3\x46\x56\x71\x97\x84\x8a\x8a\x50\x61\xd8\x3c\x7c\x33\x38\x55\x23\x2b\x0b\x1a\x35\x08\x08\xe5\x0a\x68\xb5\x23\xaa\x15\x08\x7f\xb6\x96\x2e\xc8\xb9\x39\xd0\xa4\x62\x9a\x2e\x2d\x6c\xcb\x1d\xa9\x60\x45\x5b\x6e\x0a\x87\xbf\x06\x94\x61\x01\x83\x0e\xe5\x20\xf0\xd9\x2f\x08\x21\xc4\xec\x1a\x38\x25\x4b\x29\x39\x7e\xec\xe0\xee\x39\x15\x76\xe3\xad\x05\xcf\x48\x3f\xcc\x6e\xce\xaf\x46\x28\xc1\xd3\x2c\x2c\x96\xdd\x9f\x9a\xe8\x8d\x05\xd9\x6c\x98\x45\x7a\x5d\xdb\xcd\x38\x20\x76\x45\x06\x42\x23\xab\x79\x76\xf2\xb7\xc3\x71\xc6\xaf\xe9\xce\x4e\x37\xe7\xb2\xa4\x06\x34\xa9\x5b\x6e\x58\xc3\x81\x28\x68\x38\x2b\xa9\x26\x72\xb5\x77\x94\xcc\xa1\x49\xd3\xda\xe1\x8a\x1c\x7a\xcc\x90\x23\xa4\xaf\xa3\xe9\x1e\x44\xf9\xc1\xdc\x09\xd6\x1b\xd8\x82\x7a\x64\xa8\xec\x13\x11\xa2\xb9\x23\x90\x0c\xb0\x83\x5f\xff\xa6\x8d\x62\x62\x7d\xb0\x0f\xde\x0b\x58\x31\x01\x9a\x50\xa2\xc1\x58\x48\x1e\x8d\xe0\x6f\x3a\xd8\xcf\x84\x17\x99\xe0\xd0\x4e\xcb\x77\xc4\x6c\xa4\x06\x52\x53\x53\x6e\x2c\x0b\xd8\xa5\x71\x76\xa2\x81\x43\x69\xa4\x9a\x11\x05\x1c\x05\x82\x05\xdf\xfe\xbe\x66\x5b\x10\x08\x96\x6e\x68\x09\x53\xc7\x50\x66\x03\x03\xdb\xd7\x1b\xd9\xf2\xca\xee\x3a\x9e\x67\x85\x3c\x7c\x2b\x89\xfc\xf3\x6d\x50\x48\x33\xb8\xc9\xb0\xc5\x65\xcb\x78\x05\xaa\x23\x8c\x8d\x6a\x1f\x46\x16\xbf\xdf\x40\x58\xc0\x49\x0b\xc2\xb4\x93\x91\x82\x72\xbe\x8b\x82\xa6\x02\x03\xaa\x66\x02\x70\x97\x4b\xd0\x86\x58\xe1\x6d\x60\xbd\x43\xd2\xb4\x53\xa0\x20\x2d\xa5\x58\xb1\x75\xab\x80\x9c\xa7\x1d\xff\xc4\x8c\x7e\xd2\xb2\x6f\x0b\x6a\x29\x51\xbd\xdd\x0e\xc2\x4b\xb7\xa6\x7f\x9c\x70\xb9\x5e\x7b\xe9\xef\x30\x50\xca\xba\x91\x02\x84\xf1\xaa\x42\xb7\x4d\x23\x95\x21\xcc\x90\x43\x28\xd6\x05\xf9\x89\x0a\x76\x15\xf0\xd5\xc8\x6a\x9a\xce\xb9\xb4\x44\xf7\x78\xa7\xfc\xdc\x4e\xef\xcf\xb8\xec\x62\x32\x9d\xd9\x16\x94\x66\x52\xa0\x94\x3c\x6b\x68\x19\xc7\xfd\x64\x35\x9d\x61\x35\xe0\x21\x23\xd5\x43\x45\x38\x5b\x2a\xaa\x18\xe8\x19\x71\xb3\x7a\x5a\x0e\xaa\xef\x49\x9f\xb9\xdf\xd0\xdc\xef\x39\x03\xc5\x89\x8b\x7d\x60\x2c\x1a\xf1\x94\xe6\x57\xf3\x80\x0e\x3f\xda\x02\xd7\x6a\x20\x2b\xa9\xfa\xe2\xdc\x9a\x03\x44\x6e\x41\x29\x16\x84\x7d\x50\x2f\x61\xb0\x15\x3e\x5e\x09\x65\x5c\x43\x2e\x3c\x25\x64\x34\x22\x85\xa1\x4c\x3c\xa6\x34\x78\x1e\x96\xb8\x8b\x56\xd2\xc1\x06\x9d\x1a\xa1\x23\xd7\x1b\x50\xb0\xa7\xd7\xae\x19\xe7\x16\xed\x88\x11\xca\xb5\xb4\x73\x6c\x11\x2b\x61\x5a\xf7\xa0\xc5\xe2\x25\xa8\x2d\x2b\xad\x6c\xd6\x5a\x96\x0c\xe9\xcd\x0b\xd9\xb8\xce\x93\xa6\x2f\xda\x1a\x79\xe7\xfa\x93\x49\x4e\x91\xf0\x8f\x16\xb4\x99\x97\x4d\x3b\x92\x1a\x6b\x26\x58\xdd\xd6\x84\xd6\xb2\x15\xa8\xc0\x9e\x5f\xfc\x8c\xf3\x30\xe5\xd8\xaf\x3f\x77\x0d\xb5\x54\xbb\x4f\x9e\xde\x0d\x1f\x5c\x81\xb3\x9a\xdd\x0b\x76\xfa\x71\x24\xec\x6e\xe6\xfb\x41\xbe\x37\xf9\x2d\x90\xc3\xc7\x66\x8c\xf0\x1f\xa4\x95\xe3\x40\x28\x38\x09\xca\x50\x46\xc9\x55\x64\xbe\x40\xc7\x5d\xa3\x45\x99\x6c\x35\x26\xcc\xc0\x26\x72\x56\xa3\xa4\x62\xab\x15\x28\x10\x06\x07\x7b\x88\xd1\xb5\xe8\x32\x5e\xb4\x5c\x17\xdf\x9c\x7c\x73\xb2\x98\xf6\x97\x9d\xdb\x3f\xc7\xe0\xf0\xd6\xe5\xed\x24\x51\xd4\x8d\x05\x68\x63\x4c\xd3\x05\x48\x3b\xd4\xcc\xef\x8d\x8f\x56\x54\x28\x64\xac\xcf\xe8\x27\x71\x60\x74\xd7\x76\xaa\x57\x7b\xdb\x39\x80\x98\xa3\xe8\x66\x78\x3e\x09\x51\x37\xc2\x85\x08\xbb\x1f\x70\xfb\xe8\x1a\x0b\x11\x92\x3f\x13\xd9\x5a\x76\xa4\xf7\x4a\xed\x9f\x15\x59\x64\x62\x79\xd1\x73\x50\x23\xb9\x28\xb9\x04\x3d\x1f\x2b\x49\x2f\xf0\x71\x67\x20\x55\x7d\xe6\x70\x73\x05\x07\x65\x88\x3a\xd0\xd1\x5a\x4c\xfb\xeb\xcf\x1b\x6a\x36\x23\x36\x7d\x41\xcd\xc6\xa2\x92\x96\x25\xe8\xb8\x10\x4e\x41\x0e\xa3\xbe\x5d\x1c\x6f\x80\x72\xb3\x59\x4c\x0b\xf2\x46\x1a\x08\xd6\x39\xd3\x51\x82\xdb\x23\xb1\x56\x8c\xb7\xdc\xa0\x92\x82\xfc\xa3\xa5\xea\xaa\xd5\x1d\x13\x48\x83\x31\xd6\xf4\x63\xc6\xab\x35\xd0\x76\x05\xaf\xc5\x73\xad\xb7\xa2\x8c\xa3\xfb\x20\x89\x36\x54\x99\xae\x64\xdb\x82\x00\xad\xe7\xd6\x77\x61\x94\xcf\x2b\xe0\x74\xd7\xe5\x85\x3f\x7c\x39\xe0\xe7\xb6\xf5\x12\x94\x15\x6b\x1a\x4a\x29\x2a\x4d\xe8\xca\x80\xea\x61\x77\x43\xb5\x5b\xd2\x32\x26\xac\xa4\x82\xb8\x60\x38\x11\xab\xc8\xdc\xda\xa6\x2f\x73\x3d\x64\x76\xc7\xb2\x35\x9f\x0e\x93\x63\x87\x74\x1c\x76\x42\x4d\x64\x6b\x75\x6a\xd3\x70\x6b\x3f\x78\xbd\xde\x05\x6e\x10\x9a\x06\x14\x93\xd5\xdd\xc0\xfc\x45\x5e\x13\xb9\x32\x80\x86\x59\x03\xca\x1a\x4a\x09\x86\x4f\x59\x59\xb7\x48\x5a\x73\xb3\x51\xa0\x37\x92\x8f\x00\xe2\xb5\x57\x9f\xa5\x14\x1a\xca\x16\xfd\x44\x3f\x0d\xe8\x24\x3f\x1d\x56\xa4\x73\x02\x85\x66\x15\x28\xa8\xc2\x83\xab\x96\x7b\x3c\x6e\xe8\xd6\x92\x91\x25\x27\xa8\x8a\xfb\x6f\xc0\x0e\x6c\x15\x7c\xee\x06\xfc\x34\x77\xc2\xef\xe0\xec\xc2\x8e\x7b\x82\xea\x3e\xe0\x2b\xa0\x15\xfb\x5d\x59\x24\xae\x78\x27\x8f\x24\xd8\x7e\x47\x26\xe9\x81\x37\x0c\xcf\x23\xb1\xc9\xa8\xb5\x9f\x36\xa3\x8c\xda\xc2\x53\x66\x95\xbd\x0d\x44\xdf\x50\xa1\x13\xfb\x18\x11\xfb\x03\x74\x0c\x95\xd5\xaa\x83\x3e\x61\xab\x8d\xac\xd9\x6f\x21\x38\x64\xb7\x20\x5b\xa4\x72\x47\x88\xac\x44\x82\x56\xc7\x16\x46\x1f\xb6\xcc\x54\xa4\x2e\xc8\x5f\x37\x8c\x03\x11\x52\xd5\x18\x76\xa2\xa2\xa3\x42\xbd\xd1\xae\x09\x25\x8d\xac\x3c\x02\xa9\x0b\x41\xb7\x8d\x0b\x49\xb8\x40\xfc\x8c\x68\x59\x43\xb6\x2c\xd5\x57\x7a\x66\xb1\xb9\x21\x54\x93\x25\x35\xe5\x86\x7c\x90\x4b\x3d\x0b\x93\x86\xd9\x4a\xc3\xb6\xe8\x64\x52\x43\x74\x03\x25\x5b\xb1\x92\x6c\x64\xab\xa2\x7b\x5b\xd1\x5d\x4c\x23\xd0\xb4\x04\xca\x23\xf4\x30\x98\x68\x0d\xe8\x82\xfc\x20\x95\x5b\xd1\xaf\x8e\x22\xa7\x8b\xbd\x9a\x1a\x50\x8c\xf2\x80\xb4\x7c\xb7\xd4\xee\x33\x1d\x13\x22\xfe\x47\xb9\x24\x4c\x68\x03\xb4\xb2\x4b\x51\x2b\xb4\x44\x45\x55\x45\x2a\x68\xb8\xdc\xd5\x20\xcc\xcc\x5a\x1f\x52\x61\x28\x4f\x12\x4d\xb7\x96\x58\xb4\x6c\x95\xf5\xa2\xaf\x37\xb0\x6f\x9a\x54\x12\x9c\xb5\x23\x00\xaa\x68\x89\x5a\xf2\x85\xaa\xc8\x43\x11\x21\x9c\x65\x25\x25\x59\x29\xe9\x84\xc4\x4a\x72\x2e\xaf\x2d\xb5\x66\x71\x2f\x8c\x5a\x6f\x29\x6f\x11\x99\xc1\x1f\x88\xbb\x3f\x25\x0b\x24\x85\xc5\x8c\x2c\xec\xb7\xf6\x7f\x6b\x5f\x99\xdf\x16\x05\x9a\xae\xaa\xe5\x9e\x63\x5a\x6d\xa7\x1e\x44\x05\xf5\xd1\x85\x08\xc1\x29\x99\x87\x89\x4f\xdd\x5e\xdd\xf9\xe8\x40\xab\xd7\x8a\x19\x2b\xe7\xa8\x76\xc0\xc0\xc7\x46\x81\xd6\x8e\xfa\x5e\x16\xeb\xc2\x0f\x3f\x35\xac\xbc\xfa\xce\x0d\xfe\xf6\x8f\x27\x27\x27\x27\x8b\xc2\xce\xdd\x83\xf5\x34\x21\xb4\x37\x5d\x42\xaa\xd7\x32\x51\xd2\x1f\x7a\x29\x30\xf1\x5f\x4c\x48\x43\x9d\x0f\xa0\xc1\x58\xec\x9f\x4c\x03\x28\x76\xce\x53\x43\x97\xdf\x85\x80\xff\xb7\x27\xc7\x5f\xfe\xeb\xff\x34\xbc\xd5\xff\x7b\x34\xf4\xdf\x77\x0b\x4b\x9a\x1e\xba\x53\xa3\xd8\x7a\x0d\xea\x3b\x3b\xcd\xb7\x27\xee\x89\x93\xe3\x2f\x6f\x1d\x5f\x1c\x3c\xe5\x60\x4a\xc0\xc3\x48\xff\x27\xd0\x49\x18\x16\x25\xf0\xf5\x46\xf2\x7e\x74\x6e\x95\x65\x89\xa4\xe5\x60\x24\xaf\x0a\x4a\x4e\x15\x54\xc8\xbe\x3b\x52\xb7\xda\x58\xd9\x0c\x29\x55\xd4\x9b\x9c\xe9\x1a\xca\x0d\x15\x4c\xd7\x76\xf7\xd7\x52\x5d\x91\x52\x2a\x05\xa5\xe1\x9d\xbd\x24\x66\x19\xb1\x9b\x83\x33\x44\x0b\x25\x1a\x1a\xaa\x7c\xd4\x55\x9b\x20\x93\x5c\x74\xb6\x1f\x76\xce\xd8\x39\xca\xe6\x2a\x49\x07\x8f\x8c\x04\x66\xa4\xe5\xb8\x25\xeb\x98\x3a\x22\xb2\xce\xdc\xc7\x98\x0f\x58\xee\x32\x76\x2c\xce\x92\xa4\x8c\xeb\x28\x3b\x36\x49\x53\xbb\x16\x50\xeb\x0f\xbb\x27\x21\x0b\x92\x7b\x6a\x0f\x67\xe3\xf9\x37\xfd\xee\x24\x27\x32\xc3\x3c\xfc\x96\x2f\x93\x56\x39\x64\xe6\xe0\xc0\x6a\x44\xd0\x20\xa2\x17\xb6\x90\x6a\x5d\x50\x0c\x63\x17\x18\xb7\x2d\xae\x4e\x43\xfc\x16\xf9\xd9\x07\xb0\x77\xd3\xe2\x32\xb8\x7b\x7d\x51\x56\xb6\x4a\x81\x30\x7c\x77\x9a\x64\x80\x87\xc5\xaa\x9d\x28\xbb\x0e\xb2\x03\x5e\x51\xce\x97\xb4\xbc\xba\x93\x61\x7e\xd6\xd0\x89\x07\xbb\xd3\x64\x75\xc3\xc1\x0a\x74\x27\xa4\xfd\x49\xbb\xd5\x09\x88\xaa\x91\x4c\x18\x72\x18\x96\x9e\xe6\x8a\xc1\xa8\x9d\xf7\x35\x6f\xd1\x30\x54\x0f\xc8\xd4\x2e\x85\x0a\xb7\xef\x72\x37\x6f\x24\x67\xe5\x98\xb0\xdb\xc1\xa5\x3f\x61\x4d\x36\xf2\x1a\xcd\x15\x05\xd4\xa4\xc9\x8c\xd7\x2d\x21\xc1\x40\x89\x5d\xf6\x17\xca\x59\x45\xac\xc2\x70\x8c\x77\x3a\x27\x13\xac\x10\x98\x9c\x12\xea\x2a\x05\x3c\x84\x68\x02\xa9\x56\x64\x33\xf2\xdd\xbf\xcd\xc9\xe4\x07\xa9\x96\xac\x9a\xc4\x68\xc2\xf4\xd4\xd2\xd4\x92\x55\x3a\x5f\x5c\xb5\xc2\x5a\x02\x57\xac\x69\x2c\x8a\x04\x7c\xc4\xef\x08\x5b\x59\xba\xb1\x16\x0b\x7a\xf8\xd6\x25\x10\x07\x07\x86\xac\x98\x60\x7a\x03\x15\xd9\x81\xb1\xab\xbc\x83\x86\xd3\x12\x26\xa7\x56\xa5\x94\xc0\x75\xa2\x8d\x58\x06\xf0\xc1\xea\x26\x4c\x90\xe0\xb3\xda\x85\x07\xd0\x5e\x10\x70\x4d\xa4\x80\x83\xfb\x46\x88\xcf\x5a\x23\x6b\x6a\x58\x89\xfc\xe7\xb4\xfd\x90\xc9\x10\x44\x1e\xf2\x32\xe5\x3c\x93\x65\xc0\xcc\x06\x94\xd3\xde\x68\x19\x5b\x05\x9e\x59\x30\xd6\x14\x6d\x6b\x50\xe4\x50\x0a\xbe\xbb\x95\xce\x91\x27\x62\x6c\x64\x6a\x85\x3b\x25\x0d\xd5\xda\xda\xbb\x69\x1e\xcc\x75\x2d\x2a\x66\x85\xdf\x02\x05\xc2\xde\x43\xd3\x02\xe3\x51\x21\x1e\xeb\x4b\x2b\x38\xdf\x07\x4b\xf7\xe4\xae\x7b\x00\xc1\x4a\xb6\xa8\x57\xc0\xd6\x7e\xf3\x1a\x3e\xca\x32\x0f\xcd\xb3\x7a\x31\xf8\xf0\xe2\xe4\xf8\x19\x39\x72\xff\x16\xb3\x6b\x34\x44\x17\x7f\xf8\xaa\x76\x1a\xf5\xab\x13\xbd\xf0\x99\xad\x2c\x57\x57\x41\x03\xa2\x02\x51\x32\x34\xa3\x1f\x29\x15\xf3\x22\x5b\xe5\xd6\xec\x2c\xed\xd0\x08\xad\xaa\x18\xaa\xca\x01\x4d\xf5\x02\x7d\xf2\x09\x49\x6a\x3b\xa1\x22\xd7\x14\x15\x09\xf2\x5a\x2f\xc3\x42\x7e\xfd\x5b\x8e\x03\x2e\x77\x8f\x99\x8a\x0a\x2b\x0c\x7b\x1d\xf0\xb1\xe1\xac\x64\x96\xfd\x5c\x3e\x1e\x77\x70\xc5\x04\x0a\xc2\x0d\x5b\x6f\x08\x87\x2d\xf0\x68\x04\xbb\x6d\x62\xb4\x6e\x98\x8d\x9e\x74\x3a\xc9\x6e\x6c\x84\x14\xf6\xc5\x55\x37\xe2\xa7\x02\x8d\xec\x96\xdc\x06\x87\xb2\x25\x98\x6b\x00\x41\x16\xe9\x87\x60\xa2\xcf\x3f\xc8\xa5\x63\x86\x2b\x77\x72\x73\x1f\xdb\x5e\x38\x61\x53\x5a\x31\x1f\x0a\x24\x92\xc7\x61\xd5\x7a\x90\x8b\x7b\x88\xee\x12\x91\x5d\xed\x51\xd9\x28\x6c\x35\x32\x91\x02\xdd\x58\x07\x7c\xe9\xcd\xb7\x35\x08\x50\x69\x17\x99\x7a\xcc\x10\x95\xe8\xa7\xa6\x57\x56\x0c\xde\x92\xe3\x0c\x36\x48\xc9\x5b\x6d\xf6\x32\x95\x39\x1f\x81\xd8\x32\x25\xc5\xe3\xe2\x20\x5b\x24\x21\xa1\x0d\x7e\xb8\x17\x27\x46\x12\x26\x3e\x58\x4a\x89\xde\x65\x3e\x6e\x4b\x15\xb3\x44\xac\x87\xa2\xdc\x31\xa4\x96\x9c\xed\xc5\x9b\xb3\xd7\x2f\x2f\x2f\xce\x9e\xbf\xb4\x94\x74\xf1\xf6\xc5\xdf\xed\x17\x4e\x9f\x48\xab\x91\x9e\x76\x4d\x48\xdc\xd1\xbc\x06\x43\x47\x96\x86\x68\x8f\x41\x6f\xb8\x65\x28\x70\x6a\x34\x61\x61\x18\xb3\x29\x21\x62\x8f\x7f\x31\x8d\x54\xb2\x2e\x1f\x29\xb6\x63\xa9\xe3\xcf\xcf\xc9\x7b\x24\x8a\x35\x55\x4b\xba\x86\x79\x29\xb9\x95\x18\xda\x19\x12\x91\xa5\x63\xf9\xa3\x90\x84\x4b\xb1\x06\x45\x04\x94\xa0\x35\x55\x3b\xd2\x36\xb2\x1b\xb5\x69\x9b\x8a\x5a\x2f\xe1\x29\x1f\x72\xc5\x74\x29\xb7\xa0\x76\xf3\xd2\xba\x09\x19\x28\xc5\x71\x73\xb5\x3e\x76\xf3\xc6\xa7\x9e\xdb\x87\xde\xef\x1a\x18\x28\x25\x0b\xcf\x90\x92\x33\x7b\xa8\x38\xa1\xf7\xc2\x2c\xe8\x33\xe2\xed\xb0\x45\x28\x8f\xb1\x6c\x51\x31\x7d\xe5\x84\xab\x4b\x50\x2f\x32\x12\xf0\xdf\x24\x22\x60\x62\x6d\xed\x96\xfb\x52\xc2\xde\x79\x9f\xbb\x79\x6e\xd4\xab\xd2\xfb\x25\x21\x87\x99\x95\x60\xa0\x35\xbb\x67\x3f\xb8\xd0\xa4\x6c\x8d\x66\x15\x58\x9f\x92\x57\xc1\xee\xcd\x44\xa9\x5f\xd6\x67\x22\xfd\xe9\x67\xd9\x47\x54\x27\x58\xc1\x49\x43\xda\x1c\x6d\xc7\xaa\x4a\xb5\x1f\xf9\xb2\x87\x66\xa3\x64\xbb\x76\xf0\x2c\xa2\x52\xc2\x5d\x4d\x9f\x34\xd9\x6d\xa4\x36\x63\x5c\xaa\xa3\xa3\x77\xde\x3e\x3e\x3a\x2a\xba\xb9\x66\xbb\x67\x3b\x4d\x3f\xf5\xee\x69\xa4\xb8\xb7\xa3\xf1\x7e\xc8\x8e\xc4\x40\xac\x23\x96\x78\x38\xfd\x63\x68\x35\x46\x66\xff\xf2\xfe\xfd\x45\x72\x4f\x83\xf1\x9e\x54\x3d\xd3\x86\xc9\x47\x14\x62\xe7\x76\x7e\x4f\xd2\x34\x5a\x41\x83\xf5\x4a\xa1\x7e\xcd\xd3\x94\x1b\x19\x88\xbd\x06\xbd\x49\x4a\xcc\x12\x74\x49\x55\x26\xd6\x51\x7d\xb5\x66\x29\x5b\x51\x91\xf3\x0b\xa2\xa8\x58\x3f\x71\x29\x87\xe8\x18\x41\x6f\xcf\x03\xb2\xec\x79\x1e\x62\xdc\x69\x1e\xe3\x4e\xd3\x18\x78\x7a\x7e\xfe\xe2\x1d\xd1\xed\x52\x40\xac\x73\xec\x94\xb2\xa2\x49\x51\x42\x93\x05\x80\x1d\x8a\x1b\x25\x3f\xee\xc8\xe1\xe2\xd9\x49\x81\xff\x8e\xbf\x99\x3d\xfb\xfa\xcb\xe2\xd9\x1f\xf1\xc3\xb3\x2f\x67\xcf\xfe\x64\x3f\x7d\xe3\x3e\xfe\x31\xaf\x4c\xe8\x54\x42\xb8\xc3\xb8\x13\xa3\x3f\x48\xaf\xb5\xc0\xc5\x17\xd0\xd2\xf3\xb5\xd2\x0b\x7f\xb0\x05\x92\x65\xc1\xe4\xb1\x9b\x74\x51\x90\xef\x93\x40\x4a\x25\xbf\x29\x4a\xeb\x34\xb3\x75\xa3\x32\xd3\xd0\x12\x05\x96\x0d\x80\xb1\xbf\x78\xa2\x4d\xc5\x3f\x01\xf2\x0f\x92\xcb\x2b\x46\x1f\x91\x0d\x7e\x74\x2b\x04\x46\xf0\x21\x32\xdd\x2d\xce\x75\x48\x09\x8f\xfe\x48\xb7\x94\xd0\x35\x46\xe4\x2e\x01\xc8\xc6\x98\x46\x9f\x1e\x1f\x7b\x60\x0b\xa9\xd6\xc7\x0a\xb0\x00\xa8\x84\xe3\x8d\xa9\xf9\x31\x3e\xad\x0b\xfb\xf7\x53\x26\xfc\x92\xce\x4b\x50\x63\x44\xad\x45\xdd\xc5\xcb\xd7\x04\x44\x29\xad\xba\x79\x7e\x46\xec\x48\xb6\x62\xa5\x2f\xe3\x60\x1c\x48\x43\xcd\x66\x16\x21\xdd\x82\x62\xab\xa4\xef\xe3\xe3\xa0\x67\xb4\xc1\x76\x03\x0b\x3d\xfa\x48\x8b\x46\x49\x23\x4b\xc9\x31\x1a\x82\xc5\x3d\xda\x9b\x84\xad\x86\xb9\xd6\x7c\xee\xa6\x99\xd3\xd6\x6c\x40\x18\xbf\xac\x7b\x1c\x29\x2e\xd9\x05\xc7\x5b\xaa\x8e\x55\x2b\x8e\x35\x94\x0a\x8c\x3e\x4e\xe5\x66\x96\x90\xbd\x20\xa3\x65\x29\x5b\x61\xc2\xc7\x79\x49\x8b\x52\x99\x05\x32\x41\xa4\xa0\x0e\x5b\x79\x08\x1a\xc5\x44\xc9\x1a\xca\x47\x16\xd1\xbf\xc7\xcc\xa6\x1f\x73\xa8\xa7\x3e\x99\x8d\x11\xf3\x65\x28\x89\x67\x82\xd0\x01\x4c\x61\xf4\xc2\x4a\xa7\x50\xb9\xe3\x45\x72\x20\xcd\xa0\x4f\x1e\x17\xa1\xee\xc9\x8b\xb0\x87\x6f\x4b\xf1\xad\xde\x69\x03\xf5\x69\x4d\x35\xf6\x0b\x59\xc1\x85\xfe\xb0\xf8\x76\x43\xaf\x0d\x93\x73\x29\x38\x13\x50\xb8\x4f\x85\xde\x96\x7e\xf5\x52\x7c\xbb\xb2\x10\x58\x05\x28\x39\x14\xf6\x83\xfb\xf9\x66\xc4\x27\x2b\x74\x2c\xcf\xbc\x62\xda\x80\x2b\x94\xc5\xe4\x45\x49\xb5\x09\x35\x9e\xfa\xd6\xb2\x2a\xf8\x68\x40\x54\x50\x05\xf4\x94\x1b\x18\x11\xa9\x7e\x6d\xfd\x41\xe3\x6b\xd8\xf6\x4f\xd1\xfb\x4a\x3a\x9d\xf1\x8a\xd3\x75\xf0\x13\xc3\x92\xe4\x0a\x76\xa4\xd5\x74\x6d\x2d\x4b\x54\xa6\x8f\x7b\xac\x4e\x50\xdf\x8c\xf6\x91\x56\x98\xa5\xef\xbf\x58\x4b\x8b\x56\x95\xf2\x34\x9a\xea\x35\x02\xa5\xa2\x44\x8c\x4d\x2b\x4c\x58\x09\x81\xc9\xa5\xc5\xe4\xbf\x8f\x26\xce\xc4\x9f\x78\xbd\x37\x41\x70\x91\x31\x66\xc1\xce\x06\xa5\x71\x98\x8b\xdd\xa0\x23\x21\xc0\x60\x7a\x06\xf5\xe9\x8a\x96\x59\x63\xd2\x62\x72\x34\xe9\x55\x77\x52\xad\xaf\xa5\x1a\x13\x23\x42\x86\xf5\x8f\x3b\x61\x66\x71\xd4\x45\xe8\x8c\xf4\x8f\x06\x8d\xec\x56\x83\x5a\x10\xd9\xb8\xbe\x29\xd4\x89\xf7\xae\x6c\x1d\x60\x6f\x57\x0d\x99\x55\x66\x7e\xfd\xf5\x37\xbd\xed\x79\xba\x18\xbb\x3d\xff\xb8\xaf\xcb\x4f\xbe\x17\x96\x55\xe2\x61\x78\xda\xea\x56\x5c\xea\x3e\xbd\x64\x20\xd8\xbd\x8f\x5c\x1e\xe3\xa8\xc9\xf5\x1b\xc0\x6f\x77\xde\x9b\x09\xfb\x4e\xce\xfc\xeb\x06\x70\x67\x03\x5a\x28\x6b\xa1\xba\x01\x8a\x7e\xbc\xe1\x16\x66\x71\x67\x3e\xb6\xb1\xea\x2c\x1a\x8b\xb4\xaa\x18\x26\x9d\x78\x3c\x75\x3f\x95\x35\xaf\x2b\x6c\xc0\xaa\x98\xb8\xa7\xd1\xf1\x2f\xf8\xf7\xfc\xc3\xb6\x9e\x3b\xa3\xe6\xd7\x1f\x7f\x79\xed\x79\xb0\xdb\x4b\xe0\x17\x4b\xf1\xb6\x0f\xdb\xfa\xf1\xe2\x6c\x16\x8a\x6e\x7c\xcd\xf4\x9d\x36\x7c\xc4\x1a\xcd\xaa\x15\x7b\xbd\x7f\x4f\xda\x8d\xa8\x60\xd9\xae\xef\x4e\x58\x45\x93\x53\x41\x2d\x0d\xb8\x61\x6b\x5f\x9c\xe3\x63\x48\xfe\x4b\x4b\xb7\x0e\x5e\x6a\x0c\x2d\x37\xc9\x27\xfb\xf1\x97\xd7\x33\x02\xc5\xba\x98\xf9\x3a\x10\x2c\xca\x5e\x49\x75\x4d\x55\xe5\xf8\xae\x03\xd6\x5c\xb7\xba\x01\x71\x37\x7e\x2e\xdd\x73\x0e\xf3\x86\xaa\x35\x18\x3c\x12\x56\xd7\x50\x31\x6a\x80\xef\x42\x25\xa0\x89\x95\xd4\x9c\x6a\x6d\x4f\x94\x4b\x5a\xe1\x19\x24\xb1\xc4\xac\x0e\xb5\x9e\xd2\x88\xb5\xad\x85\x61\xb4\x2f\x41\xc4\x21\xfe\x9c\xac\x0e\xc0\xda\x9a\x40\x20\xac\x5f\x29\xcd\xe5\x7a\x20\x3a\xd8\x47\x82\xd7\x50\x63\xa4\x94\xa2\x42\xa3\xd4\x0d\x5a\x8d\x9a\xa0\xd5\x24\x32\xaf\x37\x2f\xb0\xa3\x14\xae\xf9\x8e\x70\xda\x0a\x3c\x22\x0b\x60\x02\xe5\xe8\xf4\xab\x93\x93\xaf\x3a\xc0\x7c\xaa\xac\xb0\x13\x87\xb1\x31\xef\x41\x6b\xe0\x60\x1e\x31\xcd\x16\x56\x48\x8c\x4b\xe3\x52\xfe\xbb\xc0\x4d\x3e\x3c\xfe\x53\x18\xc1\xc4\x40\x58\xca\xe7\xde\x9e\x34\x2b\x7f\x42\xea\xd9\xef\xdd\x45\x84\xbd\x5c\xae\x12\x2a\x2c\x31\x9b\x0d\x30\x15\x9d\xe7\xae\x1c\x3e\xdc\x8f\xf7\x4d\x3b\x65\xca\xa3\x6c\xb1\xe7\x37\xd4\xc2\x78\x30\x5c\xe7\x2d\x52\xb0\xa4\x55\x3a\x9e\x50\x03\x90\x1d\x53\x22\xb0\x6e\x52\x6b\x8c\x6b\x1e\x29\x6b\x8f\x96\x7a\x8e\xff\x2d\xe1\xa8\xa0\x04\xd1\xb6\xba\x21\x4f\x66\x35\x64\x98\x31\x84\xa7\x86\xab\x00\xb3\x28\x6b\x4a\x77\x15\xe4\x9d\x9f\x37\x2f\xb6\xcc\x27\x4d\x4d\x76\x55\xa5\x91\x28\xe6\xba\xa4\xd8\xae\x70\x88\x5d\x0e\xee\xc3\xdc\xc8\xf9\x6f\xa0\xe4\x94\xac\x80\x9a\x56\x81\x9e\x91\x65\x6b\x7c\x83\x74\xf8\x0e\x33\x03\x58\x41\x50\x03\xb5\xcb\xae\x5a\x9e\x4c\x47\x5f\x8e\xd0\x6a\xb8\x25\x56\xf8\xc4\x39\x26\xa0\x03\xf5\xc1\xfd\xe2\x69\x26\x23\x8e\x6c\x2a\xaf\x5a\x62\xf7\x89\xab\x55\x30\x12\x03\x49\x8b\x4d\x43\x8b\xec\xe1\xc2\x93\x6a\x51\xc1\xd6\x27\x64\x6f\x7b\x20\xfb\x61\x5a\xbc\xb3\x2c\x1b\x94\x6b\x00\xa4\x92\x65\x9b\x0a\x8d\xd0\x99\x94\x58\xec\x6e\xa9\x3f\xda\x23\x43\x18\xa8\xc1\x28\x56\x3e\x0c\x0a\xdc\x5c\x37\xe1\x20\xab\x45\x5a\x84\x0a\x06\x45\x16\x65\xd3\x86\x8f\x8f\xb9\x4f\x67\x20\xdc\xe5\xd2\x5c\x82\xd7\xea\xc8\xe8\x58\x44\x16\x81\xf6\x45\x08\x52\x61\x7b\x63\x03\xaa\xb4\x80\xac\xd1\x97\xb3\x86\x48\x76\x7b\xc8\x3e\x52\xa6\xa9\x7e\xee\x42\x56\x0f\xb1\xb9\x9a\x09\x64\x71\x18\xe3\xa6\x85\xfe\x4f\x11\xbb\x16\x2e\xe2\x2d\x28\xc9\xb7\x08\xc2\xcb\xda\x75\x62\x87\x95\xde\x37\xf5\x41\x1f\x68\x72\x74\x64\x25\xc9\xd1\x51\xa6\x07\x66\x41\x60\xe0\xcc\x7b\xb7\x73\x68\x14\x43\x50\x91\x4a\x5e\x63\xae\xc9\x4e\xe0\x04\x8b\x90\x26\x73\x6d\x92\x74\xad\xb2\xc6\x4f\xd4\xc5\x0f\x81\x39\xfa\x71\x1c\xe6\xce\x04\x69\x9b\x06\x14\x71\x29\x82\x68\x44\x0d\x20\xd1\x1b\xbf\x2a\x8a\x69\x62\x15\x1b\xe7\xc0\x07\x31\x18\x00\xdf\x50\x4d\xac\xe4\xb2\xf8\x28\x69\xe3\xa3\xdb\x38\xa3\x23\x2a\x9d\xaa\x7c\xb4\xa1\x9c\xbb\xe1\x0f\xc4\x1b\x0f\x56\xb2\xd6\x57\x6d\xb1\x74\xad\x94\xc2\x39\x8d\x9a\x6c\x24\xaf\x4e\x8f\x3a\x6d\xf1\xe8\x59\xc5\x4a\x0d\x3f\x87\xd7\xd0\x47\x28\xd8\xb3\x32\xde\x1b\x6a\xdf\x50\x01\x39\xf1\x11\xab\xd6\x3e\xa3\x96\xad\x6f\x4c\x3c\x8c\x11\xe1\x8d\x87\x2e\x36\x7d\xa8\x50\x07\xbb\xdd\xb5\xdf\x87\x21\x29\x57\x8f\xe5\x71\xce\x64\xc3\x5a\xdf\x68\x0b\xa9\x7d\x9b\xc0\x55\xde\xaf\x5a\xce\xe3\x44\x5d\xe3\x8d\x85\xba\x06\x57\x46\x8c\x95\xc7\x67\xaf\x5f\xbe\xfa\xfb\x4f\x6f\xce\xde\x9f\xff\xf2\xf2\xef\xcf\xdf\xbe\xf9\xe1\xfc\xcf\x3f\xbf\x3b\x7b\x7f\xfe\xf6\x8d\x7d\xe4\xc7\xcb\xb7\x6f\x88\x23\xa1\x22\xbb\x7f\x22\x4d\xef\xab\x6c\x5d\xc1\x8c\xb1\x27\xdf\xfa\xac\x33\xc2\xd1\x5d\x7f\xcf\x89\x76\x27\xec\x66\x8e\x66\xfb\x0d\x19\xe5\x21\x3a\x89\x45\xca\x4f\xdb\x4c\xef\x60\x61\x8c\xb6\xed\x82\x12\x4c\xf6\x0e\xda\x39\x98\xbd\xe3\xed\x9e\x57\x0e\xc0\x86\x0a\x01\x7c\xee\xa9\x6a\xa4\x47\xf7\xca\x5b\xe5\x7e\xb4\x8f\x84\x50\x4d\x7c\x21\x9e\x5c\x75\x1d\x26\x77\x98\x16\xf8\xd8\x33\x81\x45\xd0\x61\x02\x6f\xd6\x4b\xe5\x68\xc3\x91\xd2\xcf\xef\xce\xf5\x20\xa8\x4c\x5c\x7d\x36\xa0\x15\x68\xc3\x44\x2c\xc0\x7e\x78\x68\x83\xf1\xfb\xbb\x60\x76\x70\xdd\x4f\x40\x53\x18\xfc\x99\x78\x8a\x86\xff\x28\x44\x6d\xe1\x93\xb1\x84\x63\xf1\x79\x9d\x6a\x5c\xf7\xaa\xf5\x96\x40\x74\xbb\xb4\xc3\x97\xc8\x36\x83\x20\x67\x33\xed\xc3\x4b\x0e\xfd\xf5\x2f\x34\x35\x44\x2c\x95\xbc\x02\x95\xdd\x9c\x80\x9a\x67\xe2\x05\xd3\x64\x3a\xb0\xc7\x4f\x39\x91\x51\x3b\x6c\x94\xac\xda\x12\x1e\x72\x63\x1d\xf8\x57\x8c\x1b\x50\xfe\x90\xe6\x81\x36\x47\x97\xcc\xb9\xe1\xde\x10\x46\x80\x7a\xb5\xca\x1b\xa0\x15\x28\x32\x29\x61\xee\x15\xec\x86\x69\x23\xd5\x6e\x52\x90\x4b\x26\x4a\x2f\x48\xad\x4c\xc7\x56\x2c\x50\x0c\x4d\x1a\xee\x47\x76\x6c\x2d\xa8\xe5\xd6\xa9\x31\x4a\x56\xad\xc9\xae\x3d\xca\x14\xe9\x2c\x03\x2a\xd3\x2c\xe8\xdd\x0e\xb6\xd2\x31\xed\x62\x66\xd1\xc6\xa8\x5d\x04\x91\x0a\xf2\x2c\x70\x6b\x37\x33\x5d\x47\xb1\x3a\xb7\x62\x99\xde\x5d\xcf\x10\xf0\x15\xa4\x39\x9e\xd3\xa5\x63\xfc\x46\x01\x39\x29\x9e\x7d\x45\xdc\x5c\x6c\xc9\x38\x33\x3b\xb2\x62\x1f\x41\x93\xc3\x40\xe7\xd9\xe6\xbb\x5b\xd7\xdd\x8b\x30\x98\xb8\x9a\x2f\x99\xa8\x82\x92\xb9\xfd\x2a\x40\x0c\x6e\xf8\xc7\x87\x6a\xc3\x28\x4e\x88\x17\xa3\x24\x55\x74\xc9\xc4\xd5\xf7\x7e\x4c\xb0\x5a\x8a\xf7\xa8\x0f\x33\x25\x36\x88\x6b\xe7\x94\x69\x37\xef\x9a\x03\x4e\x5f\xdc\x56\x54\x36\x6e\x8a\x43\xf8\x58\x42\x73\xc3\x08\x86\xe6\xb6\x9b\x3a\xed\xc2\xc1\x3d\xbd\xb7\x89\xec\x2f\x12\x8b\xb6\x5d\x4a\x01\x63\x60\x27\xd8\x09\x99\x65\x92\x6a\x48\x5c\x4e\xfa\x31\x5b\x7d\x5f\xe3\x0a\xb7\x04\xaf\x86\x0e\xb9\x63\xa6\x5a\xa7\x57\x59\x2f\x37\x0b\x4c\x75\x4b\xc3\x2b\x69\x4f\x9e\x3b\xce\xc6\xfa\xf4\x50\x5c\x15\x6d\xf5\x23\xb7\xd3\xa3\x60\xcf\x23\xf7\x49\x81\x39\x2e\x2b\xc2\xd0\xb9\x11\xa5\xbf\x71\xf3\x20\x6f\x3b\xeb\x42\x73\xed\xcc\xcb\x40\x9e\x6e\xda\xa4\x86\x50\x14\xe0\x1a\x2e\xe5\x40\x16\x96\x83\x0f\x27\xee\xb9\x53\x2e\xcb\x2b\xc4\xbc\x01\x6e\x77\x5c\x9f\x2e\xa5\xd1\x93\x69\x51\x14\x8b\x82\xbc\x79\xfb\xfe\xe5\xa9\x93\x3f\x1e\x5f\x55\xa5\x9d\xb4\xa4\xd8\xcc\x52\x33\xd7\x66\x3a\x54\xc1\x18\x0b\x2c\x5d\xad\x46\xa7\x81\x57\x01\xad\x8e\xaf\x15\x8b\xd6\x5a\x4d\x1b\xed\xbb\x8b\x28\x5e\x1e\x17\xf7\xad\xc0\xda\x90\x2e\xc7\x1e\x05\x76\xd2\x3c\xfd\x55\x50\x2a\x45\x4d\x74\x6b\x04\xf2\x69\x77\x85\xde\x83\xd5\x74\xc6\x6b\xbd\x04\xa1\xeb\xaf\x73\x30\x74\x8a\xcc\x4a\xde\x56\x30\xaf\xec\xa9\x53\x63\xff\xe8\x34\xfd\xdc\x99\x96\x15\x0e\x7e\x57\x09\x11\xdc\x0d\xd7\xd3\x68\xb7\x42\x8d\x75\x38\x05\xe5\xbb\xdf\x7c\x70\xcc\xdb\x70\xa5\xac\x5c\x5d\x4c\x55\x75\xfb\x77\x62\xaf\x14\x4a\x37\x07\x55\xb2\xc9\x0a\x6c\xa6\xcc\x48\x7d\xb1\x47\xbf\xbe\xf1\x1a\xbd\xad\x05\x6a\x20\xff\x1d\xc2\xd7\x2f\xfe\x4c\xc9\x38\x7f\x39\x66\x0e\xcc\x4d\xe2\x76\xdf\x7b\xa9\x69\x33\xa6\xd4\xf5\x0d\xad\x21\xbb\x48\xce\x0d\xcc\x5a\x2e\x32\x12\xb2\xaa\xdf\xc9\x20\xbb\xb5\x82\xbc\x70\x4b\x23\x87\x4d\xfe\x3d\xa3\x5e\xbc\xc4\xe9\x3f\xe6\xf6\xa9\x49\xf1\x02\x1a\x05\x78\xc1\xe6\x69\xe8\xcf\x43\xc0\x27\x41\x2e\xe1\xd3\x93\x4e\xe1\x6c\xe7\xa7\x11\xbb\x18\xdc\xc4\x31\x07\xaa\x61\xa8\x0d\xe9\xb3\xf7\x34\x04\xaa\x09\xe5\xe9\x77\x24\x00\x77\x0d\x82\x3a\x20\xa0\xf3\xcb\x0c\xed\x3a\x98\x0e\x98\xb8\x48\xee\x6b\xda\x4c\x2c\xf3\x4e\x5e\xd9\x4d\x4d\xa6\x3d\x48\xdd\xb7\x9d\xfb\x67\xe8\x12\xf8\xfc\x0a\xc6\xb4\x90\xbe\xc2\x52\xcb\x41\xfc\xb0\x0a\x84\x61\xab\x9d\x6b\x11\x94\xae\xb5\xd3\x40\xb2\x39\x06\xd0\xe6\x7a\x7e\x7d\x03\xb0\x54\xeb\xe3\x0c\x8d\x03\x30\x62\x14\x6d\x34\x94\x59\xcc\xed\x01\x60\xed\x2b\x06\xbc\xb1\xeb\x8b\x94\x4f\x05\x41\x1b\xf6\x78\x29\x50\xfb\xe3\xd9\xc5\x39\x79\x71\xf9\xea\xf6\x46\x43\x2c\xd5\x8b\x0d\x5f\x9d\xb4\x92\x8f\xac\x85\xa9\xac\x06\xec\x57\x45\xe7\x6d\x4f\xd6\x98\x7a\xc4\xde\xc1\xb7\xd7\xe9\x0a\x4b\x10\xda\x27\x20\x7c\x8b\x29\x6e\x00\xaa\xcc\x22\x59\x02\x97\xae\x6f\xba\x7f\x12\x4b\xc0\x34\x8d\x1f\x81\x59\x4e\x45\x85\x5e\x61\x08\x4e\x08\x69\x42\x56\x4d\x54\xbd\x7b\x98\xf3\x59\xa4\x8f\xbe\x69\xf0\x56\x64\x5c\xfa\x49\xc7\x9f\x9c\x99\x3c\xcf\xf6\x79\x8f\x9a\x50\xaf\x35\x72\x24\xb9\x92\xa8\x80\x40\xd5\x29\xa5\xf0\x6b\xdd\xeb\xfe\xe6\x6c\x19\x8f\xfb\xfd\x15\x62\xa9\x46\xb5\x7c\xc4\xb2\xeb\x8b\x17\xdf\xdf\x61\x2f\x5f\xc8\xea\x05\xd3\xaa\xc5\x41\xdf\xb7\xd5\x1a\x4c\x92\xb8\x21\xda\x7f\xde\xbd\x26\xfa\x69\x53\x47\xcd\xc4\x9c\x6e\x29\xe3\x76\x9e\x91\x95\x71\x29\x0b\x82\x82\x71\x68\xdf\xc8\xa6\x58\x3d\xac\x8d\x97\xac\x71\x15\x7f\x49\x92\x75\xf3\xb7\x0c\x5d\x86\xe2\x3c\xf5\x80\xbb\x58\x3f\x15\x84\x2e\xb5\xe4\xad\x49\xcb\x29\xd7\xef\xee\x73\x6f\xc5\x5b\xe7\x49\xa0\x02\x5c\x74\xb6\xe1\x8b\x4d\x6b\xfa\x71\xde\x8a\xec\x5b\xbf\x44\xbc\xc5\xa2\x9f\x19\xca\x1e\x7e\x60\x4c\x04\x77\x58\x3c\x30\x12\xb2\x12\x9e\x67\x0b\xc2\xf6\x11\x61\x6d\x42\xae\x65\xe8\x6b\x98\xf6\xb0\xd6\xc7\x90\xc3\x5b\x77\x8a\x7d\xac\x45\x6e\xf4\x7c\xf8\x78\x1a\xa0\x57\xc2\x83\x89\x9b\xa5\x35\xc4\xdc\x67\xc4\x6d\x56\xa4\x47\xb5\x66\x6b\xd1\xbf\x79\x2a\x4d\x22\x7b\x3f\x15\xe4\x5c\x90\x92\xfa\x9c\x45\x7c\x8e\x69\x82\x0e\x9f\x58\xcf\x92\x5b\xe1\x50\xe9\x52\xc3\x56\x2e\xa0\x32\xc1\x22\x38\x77\x00\x61\x74\x41\x30\x00\xe2\x0b\x2a\x30\xf0\xe4\x1d\x49\xa7\x83\x57\x2d\x27\xfe\x62\x4f\xf8\x68\x74\xba\x66\x59\xc1\x81\x26\x42\xc6\x8b\x5f\xfc\xbd\xca\x84\xfa\x0b\x53\x06\xee\x57\xee\x40\xed\x92\x5c\x52\x24\x8c\x76\xee\x25\xf1\x97\x5d\x6a\xbc\x2d\x66\x46\xb4\x0f\xb9\xb9\x65\x2d\x19\xd6\x4b\x40\x7f\x21\xd5\xab\xb1\xda\x92\x98\x82\x35\xd3\x46\xed\x9e\x76\x37\x9e\x3b\x8f\xb9\xdf\xed\x98\x46\xb9\xbd\x13\x3c\x84\xba\x31\xbb\x69\xc2\x68\x8c\x21\x0d\x50\xc6\xbd\x5d\xd8\xbd\xd6\xbc\x0a\x0c\x94\xd9\x4d\x5c\x79\x33\x31\x5b\x0d\x50\x56\xe0\xc4\x60\xc7\x1c\xb2\x64\xb6\x86\xef\x3a\xc7\x2f\x05\xdf\x65\x17\x5e\x34\x4a\xd6\x60\x36\xd0\xde\xbb\xf9\xf4\x3e\x71\xa7\x8b\xb8\x4a\x68\x4d\xcd\x1b\xd2\xd2\xaf\xf3\x10\xe4\xcc\x92\x09\x9e\x77\x82\x0e\xd6\xa1\x91\x75\xff\xf5\x1a\xd8\x98\xba\xb8\x0c\xed\xa2\x28\xb7\xfc\xa7\xd7\x52\x30\x23\xd5\x22\x99\x67\xa9\x66\xd5\xe1\x39\x94\x2c\x79\xc1\x56\x2a\xda\xf4\xc3\x4d\xb3\x7e\xbc\x29\xdb\xd6\x5b\xef\xf8\xbb\xcc\xa5\x2b\xf2\xf0\x89\x6a\xdf\xc6\xe9\x86\xbd\x66\xa5\x92\x17\x3e\x57\xf9\xda\x3d\x56\x90\xbf\x9e\xbd\x7b\x73\xfe\xe6\xcf\xfe\x26\x7a\xb4\xc2\xb3\x0b\x82\x6e\xda\x43\xba\x3e\x0f\x63\xe9\xbe\xce\x7a\xcd\xcc\xa6\x5d\x16\xa5\xac\x8f\x4b\xa9\x40\xea\xe3\x74\xc6\xf3\x10\x9f\xf8\x75\x00\xf4\xbf\x05\x99\x12\xe7\xc7\x22\x6e\x16\x02\x81\xcb\x58\x75\x00\x55\x41\xfe\x4b\xb6\x88\x2c\xac\xe5\x09\xad\x48\x75\x00\xd1\xc8\xd0\xa2\x12\x65\xd2\x1e\x0d\xc4\x4b\xaa\x98\xd9\xc8\xd6\xdc\x8e\xd1\xbd\xd1\x6c\xf8\x45\x3c\x4f\x3a\xac\x35\xb6\x8b\x22\xdb\xec\x4d\x8d\x14\x7f\xfa\xfa\xeb\x3f\x2d\xf0\xed\x47\xee\x42\x70\x47\xfc\xff\xe9\x2e\x34\x1e\xbc\xfc\xda\x9f\xcd\xe8\xbe\x03\x7a\x0b\xe1\xd9\x6d\x06\x81\xd3\x2b\x5d\xbe\x65\xe9\xfb\xbb\x00\x37\x43\xe0\xa6\xda\x6f\x66\xd9\x27\xc5\xd8\x3f\x94\x09\xbd\x96\xf3\xb9\xeb\xb1\x7b\x4c\xcf\xa1\xe5\x9c\x5c\xe2\x2a\x9e\x66\xb5\xcb\x4c\xd8\xe5\x89\x5b\x3e\x5e\x68\x2d\xab\x59\xf2\xc3\xb3\xd0\x0d\xc6\x8b\x8d\x62\xb0\xed\xdf\x33\xee\x14\xb1\x73\xce\x45\xbc\xca\x2d\x6a\x66\xc7\x36\xf9\x52\x7d\x9b\x8d\xd4\x54\xb4\xa8\x75\xa4\xc2\x2b\x26\xd1\xe8\xd9\xc9\xf6\x20\x2b\x13\x71\x32\x30\xef\x2c\xc1\x8a\xac\x6c\xc1\x04\x51\x58\x3a\x6c\x6a\x91\x99\xbc\xe1\x95\x17\x2e\x4a\xe9\xef\xd9\x73\x70\x65\xb6\x1a\x82\x8b\x1b\x1b\x73\x99\xc0\xce\x8a\xa0\x74\x99\xfd\x7d\xc1\x44\x0d\x60\x75\x8a\xd6\x6d\x1d\xa2\x08\x7d\x3c\x32\x5f\x6e\xd4\x28\x4c\x40\x60\xe3\xd7\x4e\xb6\xd9\x66\xbb\x77\x6d\x0e\x40\x61\x37\x85\x41\x15\xdc\xd7\xcc\x81\x4d\x45\x94\x27\x29\xc5\xf0\xa4\x8d\x29\x77\x5a\xa3\xaf\xcf\xef\x11\x9f\xc0\x8b\xf2\x65\xe8\xa3\xf6\x7e\x33\xa2\x93\xc3\xca\x10\x34\xb3\x52\xb6\xb7\x63\x14\x19\x7a\x05\x22\xd9\x44\x83\x64\x95\xce\xa3\x63\x11\x7f\x66\x89\x5b\xaf\xaf\x3a\x1a\x5d\x71\xb1\x3d\x2e\xb6\x56\x9a\xd3\x4e\x56\x7b\xef\x1a\x20\x8b\x6e\x13\x6f\x25\xcb\x2b\x50\x6e\xe2\x0f\x5a\x8a\x4c\x2c\xf9\xeb\xe8\x1f\xcf\x73\xf2\xea\x61\xaf\x85\xdc\x64\xbf\x85\x26\x87\x9b\xd8\xef\x49\xd3\x68\x44\xc4\x1d\x66\xf7\xfe\x7e\xdd\x59\x1d\x2a\xc0\x96\x4d\x57\xdc\xe9\x33\xe9\xad\x86\x54\x07\x88\xd9\xc4\x11\x4a\xe3\xd6\x73\x78\x67\x27\xb9\xeb\x35\x3c\xa6\x67\x0a\x26\x13\xde\x67\x4d\x87\x0a\x49\x9f\xf2\xe1\x8c\xed\xca\x1d\x73\x19\x0a\xa2\xa0\x13\xd0\xe4\x7a\xee\xde\x64\x36\xb6\xa4\xce\x1e\xc4\xfb\x57\x97\x24\x1b\x85\x23\x66\x84\xb3\x2b\x20\x0b\xa8\xd6\xb0\x98\x91\x45\x43\xb5\xf6\xf7\xd1\xb8\xda\x7c\x05\x20\x4a\xb5\x6b\xcc\xa2\x5b\x78\x9b\x0e\x68\xbf\xf4\x36\x6b\x96\xbc\xa1\x00\xd7\x6e\x20\xeb\xf1\xbc\xc7\x06\xfa\xfd\xda\xd8\x4b\xf9\xc0\x90\x8d\x4b\xf3\x0c\x41\x74\x05\xbb\x47\x83\xca\xdf\x02\xf1\x69\x28\x43\x55\x2d\x15\x33\xbb\xdf\x05\x83\x59\x41\xdd\xa7\xc1\x9d\x57\xe4\x75\x2e\xb1\x80\xf4\xb6\xad\x60\x21\x62\xa5\x55\x48\x57\xd2\xce\xb3\xfe\xdb\x15\xb3\xf0\x66\x73\x16\xc4\xa5\xb6\x9d\x9b\x1a\x69\xbc\xc3\x1d\x18\xc3\xb2\x8e\x6b\xea\x11\xf0\x4b\x57\x9d\x0a\x07\xbc\xd6\x13\x59\x54\xb9\xc6\x20\x66\x10\x53\xee\x25\x2d\x04\x6f\x26\x88\xd9\x14\x0d\xa5\xe5\xf4\x52\x0a\x01\x3e\xe6\xb9\x0a\x4b\x01\xaf\xe2\x7b\x5b\x82\xd9\x3a\x4b\x02\x40\x91\x9a\xee\x62\x4c\x2c\x14\xce\xf7\x10\x45\x45\x15\xdf\x80\x60\x45\x09\x5a\x22\x5b\xca\x59\x15\x6e\x39\x62\x62\x8d\x80\x6c\xac\x8b\x15\x6a\x2a\xf0\xb1\x43\xff\xa9\x10\xe1\xc5\x8f\x85\xde\x96\xd3\x99\x6f\xa8\xf4\x19\x01\x26\x56\x8a\x6a\xa3\xda\x12\xf5\x85\xbf\x72\x10\xaa\x6e\xcf\x76\xbf\x94\xc6\x5d\x32\xf2\xd0\x64\xc6\x84\xc3\xe7\xdc\x8a\xaf\x5c\x22\x8e\xbf\xef\xb7\x23\x80\xfd\x8d\xbf\x15\x50\x1e\xde\xb3\xeb\x0f\xcc\x28\xba\x5a\xb1\x32\x54\xd6\x60\xb5\x98\x95\x97\x2f\x9c\xa2\x70\xb2\xf2\x1d\x84\xfa\x7a\xff\xf8\xe7\xef\xb7\xe7\x5c\xde\xdf\x81\xbb\x55\x35\x77\xfb\xfb\x6e\x8d\x34\xa5\xbb\xcc\xa2\x57\x1a\x42\x4a\x49\xaf\xbb\xdb\x4f\x9c\xe2\x92\xce\xaf\x76\x1e\xab\xcb\x9b\x1d\x4a\xd5\x49\xb6\x4e\xbb\xef\xac\x8d\x54\x77\xa3\x33\xc4\xf6\xdf\x7a\x9b\x75\x8a\xd0\xfe\x3d\xe2\x29\xf3\xe0\x6f\x83\xeb\xb5\xec\x3d\x69\x03\xe2\x61\x42\xaa\x58\x85\x83\xb1\xd4\x70\x7c\xd6\x71\x0b\x09\x46\x1f\xd6\xd8\x7b\x2f\x70\x2f\x74\x73\x6b\xf1\x5f\xa4\xa1\xce\x1b\xc0\xa8\x26\x6f\x64\x05\x17\x76\xa2\x30\xf5\x1f\x42\xdf\xd1\x63\xc5\x20\xdc\x02\xc3\xa6\x66\x17\x4d\x21\xf2\x9d\x27\x75\x7d\x5a\x5d\x5e\xc7\x79\x64\xac\x67\x44\x5c\x26\x51\x17\x4b\xd1\x44\xe5\x2e\x51\xb5\x0e\x46\xcc\x6b\x59\x7e\x3e\xbb\x38\x27\x35\x15\x74\x0d\xae\x85\x75\x0f\xbc\x1b\x22\x7a\xff\xf4\x14\xf9\xa9\x75\x6a\xba\xdc\xc0\x68\x5f\xdb\x3d\x1c\x0a\x7c\x9c\x23\x61\xa8\xbf\x1b\x38\x1c\x4e\xff\x25\x74\x9d\x5b\x66\x46\xbd\x8e\xcd\xdd\x30\x63\x36\xd9\x8b\x40\xed\xb9\x32\x4d\x9a\x76\xc9\xdd\xb5\xea\xd9\x7d\x56\xdd\x25\x46\x46\x3f\x31\xd2\x99\xe6\xd7\xe9\xc2\xc8\xe1\x37\xfd\x75\x2e\x4b\x88\x73\x8d\x7d\xc1\xdc\xc0\x8e\x2c\x47\xcd\x43\xa9\x4b\xba\x28\xec\xa6\x4d\xfa\x22\x9e\x02\xbd\xf9\xe4\x29\x1a\x45\x4b\xb7\xe2\x63\x31\xf7\x7b\xb7\xc2\x18\xee\xf6\x80\x07\xa0\x72\x8d\xea\x33\xa0\x76\xa5\x30\x61\x96\x85\xf1\x17\xc6\x86\x30\x7c\xca\x7a\xfa\x77\x97\x0f\x37\xb1\x05\x82\xc6\xd9\x62\x08\x3b\xc9\x03\xaf\xe4\xa2\x7e\x23\x87\xfe\xea\x79\x4d\x8e\x8e\x7e\xa4\xb0\x06\x75\x74\x34\x2d\x06\x76\xf9\xff\x42\x82\xe1\xfb\x80\x4a\xde\x62\xd5\xd9\x0d\x85\xe6\x43\xf8\x1f\x8a\xcc\xdf\x23\x9a\x27\xb2\x12\xc8\xc0\x93\xa8\x21\x02\x53\xe8\xb8\x62\x45\x0d\x8d\x1c\x72\x63\x19\xdc\x74\xa0\x7b\x69\x24\x2c\xfe\x7a\x97\x48\x59\x1e\xac\x9c\x86\xa3\xcc\x1b\xa6\xd0\x1b\xef\xab\xd0\xb4\x6e\x38\xa8\xd1\xd5\x96\xce\x56\xb3\x43\x7c\x08\x29\x08\x86\x49\x29\x85\x36\x93\xa1\xb9\x1b\xaa\x68\x7d\xcf\xc9\x63\x9b\x0e\x0e\xce\x96\x79\x36\x99\x7e\xf1\x7f\x01\x00\x00\xff\xff\x40\xdd\x2d\x4e\xe9\x83\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xff\x6f\x1b\x37\x96\xf8\xef\xfd\x2b\x08\xed\x07\xb0\x65\x48\x63\xa7\x8b\x6e\xbb\xfe\x5c\xaf\x70\x93\xb4\xeb\xb6\x49\x7c\x71\xda\xc5\xa1\x57\xac\xa8\x99\x27\x89\x31\x87\x9c\x25\x39\x72\xd4\xc3\xfd\xef\x07\x3e\x7e\x9d\xd1\xd8\x1e\x27\x76\xe1\x05\x0e\xf9\x21\x96\x34\x24\x1f\x1f\xdf\xf7\x2f\x1c\xa3\x28\x33\xfa\xf4\xb3\x39\x11\xb4\x86\x53\x42\x57\x2b\x26\x98\xd9\x7d\x46\x48\xc3\xa9\x59\x49\x55\x9f\x92\x15\xe5\x1a\xec\x37\x4a\xae\x18\x07\x7d\xfa\x19\x21\x73\xf2\x63\xbb\x04\x25\xc0\x80\x76\x1f\x05\x35\x6c\x0b\xf8\xf7\x9b\x06\xc4\xe5\x86\xad\xcc\x67\x84\x54\xa0\x4b\xc5\x1a\xc3\xa4\x38\x25\x67\x9c\xcb\x6b\x4d\x4a\x29\xb4\x5d\x59\x30\xb1\x26\xd7\x1b\x56\x6e\x88\x90\x15\x68\x62\x36\x40\x98\x30\xb0\x56\xd4\x0e\x20\x8d\xac\x0e\xf5\x94\x50\x05\x04\x38\x5b\xb3\x25\x07\x62\x24\x59\x02\xd1\xe5\x06\xaa\x96\x43\x45\xa4\x98\x91\x25\xd5\xf8\x17\xe1\x74\x09\x5c\xdb\xbf\xec\x54\x76\xd2\x19\x91\x8a\x5c\x33\xb3\xc1\x89\xd5\xbc\x91\x55\xdc\x25\xa1\xa2\x22\x54\x18\x36\x0f\xdf\x0c\x4e\xd5\xc8\xca\x82\x46\x0d\x02\x42\xb9\x02\x5a\xed\x88\x6a\x05\xc2\x9f\xad\xa5\x0b\x72\x6e\x0e\x34\xa9\x98\xa6\x4b\x0b\xdb\x72\x47\x2a\x58\xd1\x96\x9b\xc2\xe1\xaf\x01\x65\x58\xc0\xa0\x43\x39\x08\x7c\xf6\x33\x42\x08\x31\xbb\x06\x4e\xc9\x52\x4a\x8e\x1f\x3b\xb8\x7b\x4e\x85\xdd\x78\x6b\xc1\x33\xd2\x0f\xb3\x9b\xf3\xab\x11\x4a\xf0\x34\x0b\x8b\x65\xf7\xa7\x26\x7a\x63\x41\x36\x1b\x66\x91\x5e\xd7\x76\x33\x0e\x88\x5d\x91\x81\xd0\xc8\x6a\x9e\x9d\xfc\xed\x70\x9c\xf1\x6b\xba\xb3\xd3\xcd\xb9\x2c\xa9\x01\x4d\xea\x96\x1b\xd6\x70\x20\x0a\x1a\xce\x4a\xaa\x89\x5c\xed\x1d\x25\x73\x68\xd2\xb4\x76\xb8\x22\x87\x1e\x33\xe4\x08\xe9\xeb\x68\xba\x07\x51\x7e\x30\x77\x82\xf5\x1a\xb6\xa0\x1e\x19\x2a\xfb\x44\x84\x68\xee\x08\x24\x03\xec\xe0\xd7\xdf\xb4\x51\x4c\xac\x0f\xf6\xc1\x7b\x01\x2b\x26\x40\x13\x4a\x34\x18\x0b\xc9\xa3\x11\xfc\x4d\x07\xfb\x89\xf0\x22\x13\x1c\xda\x69\xf9\x8e\x98\x8d\xd4\x40\x6a\x6a\xca\x8d\x65\x01\xbb\x34\xce\x4e\x34\x70\x28\x8d\x54\x33\xa2\x80\xa3\x40\xb0\xe0\xdb\xdf\xd7\x6c\x0b\x02\xc1\xd2\x0d\x2d\x61\xea\x18\xca\x6c\x60\x60\xfb\x7a\x23\x5b\x5e\xd9\x5d\xc7\xf3\xac\x90\x87\x6f\x25\x91\x7f\xbd\x0d\x0a\x69\x06\x37\x19\xb6\xb8\x6c\x19\xaf\x40\x75\x84\xb1\x51\xed\xc3\xc8\xe2\x77\x1b\x08\x0b\x38\x69\x41\x98\x76\x32\x52\x50\xce\x77\x51\xd0\x54\x60\x40\xd5\x4c\x00\xee\x72\x09\xda\x10\x2b\xbc\x0d\xac\x77\x48\x9a\x76\x0a\x14\xa4\xa5\x14\x2b\xb6\x6e\x15\x90\xf3\xb4\xe3\x1f\x99\xd1\x4f\x5a\xf6\x6d\x41\x2d\x25\xaa\xb7\xdb\x41\x78\xe9\xd6\xf4\x8f\x13\x2e\xd7\x6b\x2f\xfd\x1d\x06\x4a\x59\x37\x52\x80\x30\x5e\x55\xe8\xb6\x69\xa4\x32\x84\x19\x72\x08\xc5\xba\x20\x3f\x52\xc1\xae\x02\xbe\x1a\x59\x4d\xd3\x39\x97\x96\xe8\x1e\xef\x94\x9f\xdb\xe9\xfd\x19\x97\x5d\x4c\xa6\x33\xdb\x82\xd2\x4c\x0a\x94\x92\x67\x0d\x2d\xe3\xb8\x1f\xad\xa6\x33\xac\x06\x3c\x64\xa4\x7a\xa8\x08\x67\x4b\x45\x15\x03\x3d\x23\x6e\x56\x4f\xcb\x41\xf5\x3d\xe9\x33\xf7\x1b\x9a\xfb\x3d\x67\xa0\x38\x71\xb1\x0f\x8c\x45\x23\x9e\xd2\xfc\x6a\x1e\xd0\xe1\x47\x5b\xe0\x5a\x0d\x64\x25\x55\x5f\x9c\x5b\x73\x80\xc8\x2d\x28\xc5\x82\xb0\x0f\xea\x25\x0c\xb6\xc2\xc7\x2b\xa1\x8c\x6b\xc8\x85\xa7\x84\x8c\x46\xa4\x30\x94\x89\xc7\x94\x06\xcf\xc3\x12\x77\xd1\x4a\x3a\xd8\xa0\x53\x23\x74\xe4\x7a\x03\x0a\xf6\xf4\xda\x35\xe3\xdc\xa2\x1d\x31\x42\xb9\x96\x76\x8e\x2d\x62\x25\x4c\xeb\x1e\xb4\x58\xbc\x04\xb5\x65\xa5\x95\xcd\x5a\xcb\x92\x21\xbd\x79\x21\x1b\xd7\x79\xd2\xf4\x45\x5b\x23\xef\x5c\x7f\x32\xc9\x29\x12\xfe\xd9\x82\x36\xf3\xb2\x69\x47\x52\x63\xcd\x04\xab\xdb\x9a\xd0\x5a\xb6\x02\x15\xd8\xf3\x8b\x9f\x71\x1e\xa6\x1c\xfb\xf5\xe7\xae\xa1\x96\x6a\xf7\xd1\xd3\xbb\xe1\x83\x2b\x70\x56\xb3\x7b\xc1\x4e\x3f\x8c\x84\xdd\xcd\x7c\x3f\xc8\xf7\x26\xbf\x05\x72\xf8\xd0\x8c\x11\xfe\x83\xb4\x72\x1c\x08\x05\x27\x41\x19\xca\x28\xb9\x8a\xcc\x17\xe8\xb8\x6b\xb4\x28\x93\xad\xc6\x84\x19\xd8\x44\xce\x6a\x94\x54\x6c\xb5\x02\x05\xc2\xe0\x60\x0f\x31\xba\x16\x5d\xc6\x8b\x96\xeb\xe2\xab\x93\xaf\x4e\x16\xd3\xfe\xb2\x73\xfb\xe7\x18\x1c\xde\xba\xbc\x9d\x24\x8a\xba\xb1\x00\x6d\x8c\x69\xba\x00\x69\x87\x9a\xf9\xbd\xf1\xd1\x8a\x0a\x85\x8c\xf5\x19\xfd\x24\x0e\x8c\xee\xda\x4e\xf5\x6a\x6f\x3b\x07\x10\x73\x14\xdd\x0c\xcf\x47\x21\xea\x46\xb8\x10\x61\xf7\x03\x6e\x1f\x5d\x63\x21\x42\xf2\x67\x22\x5b\xcb\x8e\xf4\x5e\xa9\xfd\xb3\x22\x8b\x4c\x2c\x2f\x7a\x0e\x6a\x24\x17\x25\x97\xa0\xe7\x63\x25\xe9\x05\x3e\xee\x0c\xa4\xaa\xcf\x1c\x6e\xae\xe0\xa0\x0c\x51\x07\x3a\x5a\x8b\x69\x7f\xfd\x79\x43\xcd\x66\xc4\xa6\x2f\xa8\xd9\x58\x54\xd2\xb2\x04\x1d\x17\xc2\x29\xc8\x61\xd4\xb7\x8b\xe3\x0d\x50\x6e\x36\x8b\x69\x41\x5e\x4b\x03\xc1\x3a\x67\x3a\x4a\x70\x7b\x24\xd6\x8a\xf1\x96\x1b\x54\x52\x90\x7f\xb6\x54\x5d\xb5\xba\x63\x02\x69\x30\xc6\x9a\x7e\xcc\x78\xb5\x06\xda\xae\xe0\xb5\x78\xae\xf5\x56\x94\x71\x74\x1f\x24\xd1\x86\x2a\xd3\x95\x6c\x5b\x10\xa0\xf5\xdc\xfa\x2e\x8c\xf2\x79\x05\x9c\xee\xba\xbc\xf0\xe7\xcf\x07\xfc\xdc\xb6\x5e\x82\xb2\x62\x4d\x43\x29\x45\xa5\x09\x5d\x19\x50\x3d\xec\x6e\xa8\x76\x4b\x5a\xc6\x84\x95\x54\x10\x17\x0c\x27\x62\x15\x99\x5b\xdb\xf4\x65\xae\x87\xcc\xee\x58\xb6\xe6\xe3\x61\x72\xec\x90\x8e\xc3\x4e\xa8\x89\x6c\xad\x4e\x6d\x1a\x6e\xed\x07\xaf\xd7\xbb\xc0\x0d\x42\xd3\x80\x62\xb2\xba\x1b\x98\xbf\xc9\x6b\x22\x57\x06\xd0\x30\x6b\x40\x59\x43\x29\xc1\xf0\x31\x2b\xeb\x16\x49\x6b\x6e\x36\x0a\xf4\x46\xf2\x11\x40\xbc\xf2\xea\xb3\x94\x42\x43\xd9\xa2\x9f\xe8\xa7\x01\x9d\xe4\xa7\xc3\x8a\x74\x4e\xa0\xd0\xac\x02\x05\x55\x78\x70\xd5\x72\x8f\xc7\x0d\xdd\x5a\x32\xb2\xe4\x04\x55\x71\xff\x0d\xd8\x81\xad\x82\x4f\xdd\x80\x9f\xe6\x4e\xf8\x1d\x9c\x5d\xd8\x71\x4f\x50\xdd\x07\x7c\x05\xb4\x62\x7f\x28\x8b\xc4\x15\xef\xe4\x91\x04\xdb\x1f\xc8\x24\x3d\xf0\x86\xe1\x79\x24\x36\x19\xb5\xf6\xd3\x66\x94\x51\x5b\x78\xca\xac\xb2\xb7\x81\xe8\x1b\x2a\x74\x62\x1f\x23\x62\x7f\x80\x8e\xa1\xb2\x5a\x75\xd0\x27\x6c\xb5\x91\x35\xfb\x3d\x04\x87\xec\x16\x64\x8b\x54\xee\x08\x91\x95\x48\xd0\xea\xd8\xc2\xe8\xc3\x96\x99\x8a\xd4\x05\xf9\xfb\x86\x71\x20\x42\xaa\x1a\xc3\x4e\x54\x74\x54\xa8\x37\xda\x35\xa1\xa4\x91\x95\x47\x20\x75\x21\xe8\xb6\x71\x21\x09\x17\x88\x9f\x11\x2d\x6b\xc8\x96\xa5\xfa\x4a\xcf\x2c\x36\x37\x84\x6a\xb2\xa4\xa6\xdc\x90\xf7\x72\xa9\x67\x61\xd2\x30\x5b\x69\xd8\x16\x9d\x4c\x6a\x88\x6e\xa0\x64\x2b\x56\x92\x8d\x6c\x55\x74\x6f\x2b\xba\x8b\x69\x04\x9a\x96\x40\x79\x84\x1e\x06\x13\xad\x01\x5d\x90\xef\xa4\x72\x2b\xfa\xd5\x51\xe4\x74\xb1\x57\x53\x03\x8a\x51\x1e\x90\x96\xef\x96\xda\x7d\xa6\x63\x42\xc4\xff\x20\x97\x84\x09\x6d\x80\x56\x76\x29\x6a\x85\x96\xa8\xa8\xaa\x48\x05\x0d\x97\xbb\x1a\x84\x99\x59\xeb\x43\x2a\x0c\xe5\x49\xa2\xe9\xd6\x12\x8b\x96\xad\xb2\x5e\xf4\xf5\x06\xf6\x4d\x93\x4a\x82\xb3\x76\x04\x40\x15\x2d\x51\x4b\xbe\x50\x15\x79\x28\x22\x84\xb3\xac\xa4\x24\x2b\x25\x9d\x90\x58\x49\xce\xe5\xb5\xa5\xd6\x2c\xee\x85\x51\xeb\x2d\xe5\x2d\x22\x33\xf8\x03\x71\xf7\xa7\x64\x81\xa4\xb0\x98\x91\x85\xfd\xd6\xfe\x6f\xed\x2b\xf3\xfb\xa2\x40\xd3\x55\xb5\xdc\x73\x4c\xab\xed\xd4\x83\xa8\xa0\x3e\xba\x10\x21\x38\x25\xf3\x30\xf1\xa9\xdb\xab\x3b\x1f\x1d\x68\xf5\x5a\x31\x63\xe5\x1c\xd5\x0e\x18\xf8\xd0\x28\xd0\xda\x51\xdf\xcb\x62\x5d\xf8\xe1\xa7\x86\x95\x57\xdf\xb8\xc1\x5f\xff\xe5\xe4\xe4\xe4\x64\x51\xd8\xb9\x7b\xb0\x9e\x26\x84\xf6\xa6\x4b\x48\xf5\x5a\x26\x4a\xfa\x43\x2f\x05\x26\xfe\x8b\x09\x69\xa8\xf3\x01\x34\x18\x8b\xfd\x93\x69\x00\xc5\xce\x79\x6a\xe8\xf2\x9b\x10\xf0\xff\xfa\xe4\xf8\xf3\xff\xf7\xdf\x0d\x6f\xf5\xff\x1c\x0d\xfd\xf7\xcd\xc2\x92\xa6\x87\xee\xd4\x28\xb6\x5e\x83\xfa\xc6\x4e\xf3\xf5\x89\x7b\xe2\xe4\xf8\xf3\x5b\xc7\x17\x07\x4f\x39\x98\x12\xf0\x30\xd2\xff\x09\x74\x12\x86\x45\x09\x7c\xbd\x91\xbc\x1f\x9d\x5b\x65\x59\x22\x69\x39\x18\xc9\xab\x82\x92\x53\x05\x15\xb2\xef\x8e\xd4\xad\x36\x56\x36\x43\x4a\x15\xf5\x26\x67\xba\x86\x72\x43\x05\xd3\xb5\xdd\xfd\xb5\x54\x57\xa4\x94\x4a\x41\x69\x78\x67\x2f\x89\x59\x46\xec\xe6\xe0\x0c\xd1\x42\x89\x86\x86\x2a\x1f\x75\xd5\x26\xc8\x24\x17\x9d\xed\x87\x9d\x33\x76\x8e\xb2\xb9\x4a\xd2\xc1\x23\x23\x81\x19\x69\x39\x6e\xc9\x3a\xa6\x8e\x88\xac\x33\xf7\x21\xe6\x03\x96\xbb\x8c\x1d\x8b\xb3\x24\x29\xe3\x3a\xca\x8e\x4d\xd2\xd4\xae\x05\xd4\xfa\xc3\xee\x49\xc8\x82\xe4\x9e\xda\xc3\xd9\x78\xfe\x4d\xbf\x3b\xc9\x89\xcc\x30\x0f\xbf\xe5\xcb\xa4\x55\x0e\x99\x39\x38\xb0\x1a\x11\x34\x88\xe8\x85\x2d\xa4\x5a\x17\x14\xc3\xd8\x05\xc6\x6d\x8b\xab\xd3\x10\xbf\x45\x7e\xf6\x01\xec\xdd\xb4\xb8\x0c\xee\x5e\x5f\x94\x95\xad\x52\x20\x0c\xdf\x9d\x26\x19\xe0\x61\xb1\x6a\x27\xca\xae\x83\xec\x80\x57\x94\xf3\x25\x2d\xaf\xee\x64\x98\x9f\x35\x74\xe2\xc1\xee\x34\x59\xdd\x70\xb0\x02\xdd\x09\x69\x7f\xd2\x6e\x75\x02\xa2\x6a\x24\x13\x86\x1c\x86\xa5\xa7\xb9\x62\x30\x6a\xe7\x7d\xcd\x5b\x34\x0c\xd5\x03\x32\xb5\x4b\xa1\xc2\xed\xbb\xdc\xcd\x1b\xc9\x59\x39\x26\xec\x76\x70\xe9\x4f\x58\x93\x8d\xbc\x46\x73\x45\x01\x35\x69\x32\xe3\x75\x4b\x48\x30\x50\x62\x97\xfd\x85\x72\x56\x11\xab\x30\x1c\xe3\x9d\xce\xc9\x04\x2b\x04\x26\xa7\x84\xba\x4a\x01\x0f\x21\x9a\x40\xaa\x15\xd9\x8c\x7c\xf7\xff\xe7\x64\xf2\x9d\x54\x4b\x56\x4d\x62\x34\x61\x7a\x6a\x69\x6a\xc9\x2a\x9d\x2f\xae\x5a\x61\x2d\x81\x2b\xd6\x34\x16\x45\x02\x3e\xe0\x77\x84\xad\x2c\xdd\x58\x8b\x05\x3d\x7c\xeb\x12\x88\x83\x03\x43\x56\x4c\x30\xbd\x81\x8a\xec\xc0\xd8\x55\xde\x42\xc3\x69\x09\x93\x53\xab\x52\x4a\xe0\x3a\xd1\x46\x2c\x03\x78\x6f\x75\x13\x26\x48\xf0\x59\xed\xc2\x03\x68\x2f\x08\xb8\x26\x52\xc0\xc1\x7d\x23\xc4\x67\xad\x91\x35\x35\xac\x44\xfe\x73\xda\x7e\xc8\x64\x08\x22\x0f\x79\x99\x72\x9e\xc9\x32\x60\x66\x03\xca\x69\x6f\xb4\x8c\xad\x02\xcf\x2c\x18\x6b\x8a\xb6\x35\x28\x72\x28\x05\xdf\xdd\x4a\xe7\xc8\x13\x31\x36\x32\xb5\xc2\x9d\x92\x86\x6a\x6d\xed\xdd\x34\x0f\xe6\xba\x16\x15\xb3\xc2\x6f\x81\x02\x61\xef\xa1\x69\x81\xf1\xa8\x10\x8f\xf5\xa5\x15\x9c\xef\x83\xa5\x7b\x72\xd7\x3d\x80\x60\x25\x5b\xd4\x2b\x60\x6b\xbf\x79\x0d\x1f\x65\x99\x87\xe6\x59\xbd\x18\x7c\x78\x71\x72\xfc\x8c\x1c\xb9\x7f\x8b\xd9\x35\x1a\xa2\x8b\x3f\x7f\x51\x3b\x8d\xfa\xc5\x89\x5e\xf8\xcc\x56\x96\xab\xab\xa0\x01\x51\x81\x28\x19\x9a\xd1\x8f\x94\x8a\x79\x91\xad\x72\x6b\x76\x96\x76\x68\x84\x56\x55\x0c\x55\xe5\x80\xa6\x7a\x81\x3e\xf9\x84\x24\xb5\x9d\x50\x91\x6b\x8a\x8a\x04\x79\xad\x97\x61\x21\xbf\xfe\x96\xe3\x80\xcb\xdd\x63\xa6\xa2\xc2\x0a\xc3\x5e\x07\x7c\x68\x38\x2b\x99\x65\x3f\x97\x8f\xc7\x1d\x5c\x31\x81\x82\x70\xc3\xd6\x1b\xc2\x61\x0b\x3c\x1a\xc1\x6e\x9b\x18\xad\x1b\x66\xa3\x27\x9d\x4e\xb2\x1b\x1b\x21\x85\x7d\x71\xd5\x8d\xf8\xa9\x40\x23\xbb\x25\xb7\xc1\xa1\x6c\x09\xe6\x1a\x40\x90\x45\xfa\x21\x98\xe8\xf3\xf7\x72\xe9\x98\xe1\xca\x9d\xdc\xdc\xc7\xb6\x17\x4e\xd8\x94\x56\xcc\x87\x02\x89\xe4\x71\x58\xb5\x1e\xe4\xe2\x1e\xa2\xbb\x44\x64\x57\x7b\x54\x36\x0a\x5b\x8d\x4c\xa4\x40\x37\xd6\x01\x5f\x7a\xf3\x6d\x0d\x02\x54\xda\x45\xa6\x1e\x33\x44\x25\xfa\xa9\xe9\x95\x15\x83\xb7\xe4\x38\x83\x0d\x52\xf2\x56\x9b\xbd\x4c\x65\xce\x47\x20\xb6\x4c\x49\xf1\xb8\x38\xc8\x16\x49\x48\x68\x83\x1f\xee\xc5\x89\x91\x84\x89\xf7\x96\x52\xa2\x77\x99\x8f\xdb\x52\xc5\x2c\x11\xeb\xa1\x28\x77\x0c\xa9\x25\x67\x7b\xf1\xfa\xec\xd5\xcb\xcb\x8b\xb3\xe7\x2f\x2d\x25\x5d\xbc\x79\xf1\x0f\xfb\x85\xd3\x27\xd2\x6a\xa4\xa7\x5d\x13\x12\x77\x34\xaf\xc1\xd0\x91\xa5\x21\xda\x63\xd0\x1b\x6e\x19\x0a\x9c\x1a\x4d\x58\x18\xc6\x6c\x4a\x88\xd8\xe3\x5f\x4c\x23\x95\xac\xcb\x47\x8a\xed\x58\xea\xf8\xfe\x39\x79\x87\x44\xb1\xa6\x6a\x49\xd7\x30\x2f\x25\xb7\x12\x43\x3b\x43\x22\xb2\x74\x2c\x7f\x14\x92\x70\x29\xd6\xa0\x88\x80\x12\xb4\xa6\x6a\x47\xda\x46\x76\xa3\x36\x6d\x53\x51\xeb\x25\x3c\xe5\x43\xae\x98\x2e\xe5\x16\xd4\x6e\x5e\x5a\x37\x21\x03\xa5\x38\x6e\xae\xd6\xc7\x6e\xde\xf8\xd4\x73\xfb\xd0\xbb\x5d\x03\x03\xa5\x64\xe1\x19\x52\x72\x66\x0f\x15\x27\xf4\x5e\x98\x05\x7d\x46\xbc\x1d\xb6\x08\xe5\x31\x96\x2d\x2a\xa6\xaf\x9c\x70\x75\x09\xea\x45\x46\x02\xfe\x9b\x44\x04\x4c\xac\xad\xdd\x72\x5f\x4a\xd8\x3b\xef\x73\x37\xcf\x8d\x7a\x55\x7a\xbf\x24\xe4\x30\xb3\x12\x0c\xb4\x66\xf7\xec\x07\x17\x9a\x94\xad\xd1\xac\x02\xeb\x53\xf2\x2a\xd8\xbd\x99\x28\xf5\xcb\xfa\x4c\xa4\x3f\xfd\x2c\xfb\x88\xea\x04\x2b\x38\x69\x48\x9b\xa3\xed\x58\x55\xa9\xf6\x23\x5f\xf6\xd0\x6c\x94\x6c\xd7\x0e\x9e\x45\x54\x4a\xb8\xab\xe9\x93\x26\xbb\x8d\xd4\x66\x8c\x4b\x75\x74\xf4\xd6\xdb\xc7\x47\x47\x45\x37\xd7\x6c\xf7\x6c\xa7\xe9\xa7\xde\x3d\x8d\x14\xf7\x76\x34\xde\x0d\xd9\x91\x18\x88\x75\xc4\x12\x0f\xa7\x7f\x0c\xad\xc6\xc8\xec\xdf\xde\xbd\xbb\x48\xee\x69\x30\xde\x93\xaa\x67\xda\x30\xf9\x88\x42\xec\xdc\xce\xef\x49\x9a\x46\x2b\x68\xb0\x5e\x29\xd4\xaf\x79\x9a\x72\x23\x03\xb1\xd7\xa0\x37\x49\x89\x59\x82\x2e\xa9\xca\xc4\x3a\xaa\xaf\xd6\x2c\x65\x2b\x2a\x72\x7e\x41\x14\x15\xeb\x27\x2e\xe5\x10\x1d\x23\xe8\xed\x79\x40\x96\x3d\xcf\x43\x8c\x3b\xcd\x63\xdc\x69\x1a\x03\x4f\xcf\xcf\x5f\xbc\x25\xba\x5d\x0a\x88\x75\x8e\x9d\x52\x56\x34\x29\x4a\x68\xb2\x00\xb0\x43\x71\xa3\xe4\x87\x1d\x39\x5c\x3c\x3b\x29\xf0\xdf\xf1\x57\xb3\x67\x5f\x7e\x5e\x3c\xfb\x0b\x7e\x78\xf6\xf9\xec\xd9\x5f\xed\xa7\xaf\xdc\xc7\xbf\xe4\x95\x09\x9d\x4a\x08\x77\x18\x77\x62\xf4\x3b\xe9\xb5\x16\xb8\xf8\x02\x5a\x7a\xbe\x56\x7a\xe1\x0f\xb6\x40\xb2\x2c\x98\x3c\x76\x93\x2e\x0a\xf2\x6d\x12\x48\xa9\xe4\x37\x45\x69\x9d\x66\xb6\x6e\x54\x66\x1a\x5a\xa2\xc0\xb2\x01\x30\xf6\x17\x4f\xb4\xa9\xf8\x27\x40\xfe\x5e\x72\x79\xc5\xe8\x23\xb2\xc1\x0f\x6e\x85\xc0\x08\x3e\x44\xa6\xbb\xc5\xb9\x0e\x29\xe1\xd1\x1f\xe8\x96\x12\xba\xc6\x88\xdc\x25\x00\xd9\x18\xd3\xe8\xd3\xe3\x63\x0f\x6c\x21\xd5\xfa\x58\x01\x16\x00\x95\x70\xbc\x31\x35\x3f\xc6\xa7\x75\x61\xff\x7e\xca\x84\x5f\xd2\x79\x09\x6a\x8c\xa8\xb5\xa8\xbb\x78\xf9\x8a\x80\x28\xa5\x55\x37\xcf\xcf\x88\x1d\xc9\x56\xac\xf4\x65\x1c\x8c\x03\x69\xa8\xd9\xcc\x22\xa4\x5b\x50\x6c\x95\xf4\x7d\x7c\x1c\xf4\x8c\x36\xd8\x6e\x60\xa1\x47\x1f\x69\xd1\x28\x69\x64\x29\x39\x46\x43\xb0\xb8\x47\x7b\x93\xb0\xd5\x30\xd7\x9a\xcf\xdd\x34\x73\xda\x9a\x0d\x08\xe3\x97\x75\x8f\x23\xc5\x25\xbb\xe0\x78\x4b\xd5\xb1\x6a\xc5\xb1\x86\x52\x81\xd1\xc7\xa9\xdc\xcc\x12\xb2\x17\x64\xb4\x2c\x65\x2b\x4c\xf8\x38\x2f\x69\x51\x2a\xb3\x40\x26\x88\x14\xd4\x61\x2b\x0f\x41\xa3\x98\x28\x59\x43\xf9\xc8\x22\xfa\x77\x98\xd9\xf4\x63\x0e\xf5\xd4\x27\xb3\x31\x62\xbe\x0c\x25\xf1\x4c\x10\x3a\x80\x29\x8c\x5e\x58\xe9\x14\x2a\x77\xbc\x48\x0e\xa4\x19\xf4\xc9\xe3\x22\xd4\x3d\x79\x11\xf6\xf0\x75\x29\xbe\xd6\x3b\x6d\xa0\x3e\xad\xa9\xc6\x7e\x21\x2b\xb8\xd0\x1f\x16\x5f\x6f\xe8\xb5\x61\x72\x2e\x05\x67\x02\x0a\xf7\xa9\xd0\xdb\xd2\xaf\x5e\x8a\xaf\x57\x16\x02\xab\x00\x25\x87\xc2\x7e\x70\x3f\xdf\x8c\xf8\x64\x85\x8e\xe5\x99\x9f\x98\x36\xe0\x0a\x65\x31\x79\x51\x52\x6d\x42\x8d\xa7\xbe\xb5\xac\x0a\x3e\x18\x10\x15\x54\x01\x3d\xe5\x06\x46\x44\xaa\x5f\x59\x7f\xd0\xf8\x1a\xb6\xfd\x53\xf4\xbe\x92\x4e\x67\xbc\xe2\x74\x1d\xfc\xc4\xb0\x24\xb9\x82\x1d\x69\x35\x5d\x5b\xcb\x12\x95\xe9\xe3\x1e\xab\x13\xd4\x37\xa3\x7d\xa4\x15\x66\xe9\xfb\x6f\xd6\xd2\xa2\x55\xa5\x3c\x8d\xa6\x7a\x8d\x40\xa9\x28\x11\x63\xd3\x0a\x13\x56\x42\x60\x72\x69\x31\xf9\xaf\xa3\x89\x33\xf1\x27\x5e\xef\x4d\x10\x5c\x64\x8c\x59\xb0\xb3\x41\x69\x1c\xe6\x62\x37\xe8\x48\x08\x30\x98\x9e\x41\x7d\xba\xa2\x65\xd6\x98\xb4\x98\x1c\x4d\x7a\xd5\x9d\x54\xeb\x6b\xa9\xc6\xc4\x88\x90\x61\xfd\xe3\x4e\x98\x59\x1c\x75\x11\x3a\x23\xfd\xa3\x41\x23\xbb\xd5\xa0\x16\x44\x36\xae\x6f\x0a\x75\xe2\xbd\x2b\x5b\x07\xd8\xdb\x55\x43\x66\x95\x99\x5f\x7e\xf9\x55\x6f\x7b\x9e\x2e\xc6\x6e\xcf\x3f\xee\xeb\xf2\x93\xef\x85\x65\x95\x78\x18\x9e\xb6\xba\x15\x97\xba\x4f\x2f\x19\x08\x76\xef\x23\x97\xc7\x38\x6a\x72\xfd\x06\xf0\xdb\x9d\xf7\x66\xc2\xbe\x93\x33\xff\xbe\x01\xdc\xd9\x80\x16\xca\x5a\xa8\x6e\x80\xa2\x1f\x6f\xb8\x85\x59\xdc\x99\x8f\x6d\xac\x3a\x8b\xc6\x22\xad\x2a\x86\x49\x27\x1e\x4f\xdd\x4f\x65\xcd\xeb\x0a\x1b\xb0\x2a\x26\xee\x69\x74\xfc\x09\xff\x9e\xbf\xdf\xd6\x73\x67\xd4\xfc\xfa\xc3\x2f\xaf\x3c\x0f\x76\x7b\x09\xfc\x62\x29\xde\xf6\x7e\x5b\x3f\x5e\x9c\xcd\x42\xd1\x8d\xaf\x99\xbe\xd3\x86\x8f\x58\xa3\x59\xb5\x62\xaf\xf7\xef\x49\xbb\x11\x15\x2c\xdb\xf5\xdd\x09\xab\x68\x72\x2a\xa8\xa5\x01\x37\x6c\xed\x8b\x73\x7c\x0c\xc9\x7f\x69\xe9\xd6\xc1\x4b\x8d\xa1\xe5\x26\xf9\x64\x3f\xfc\xf2\x6a\x46\xa0\x58\x17\x33\x5f\x07\x82\x45\xd9\x2b\xa9\xae\xa9\xaa\x1c\xdf\x75\xc0\x9a\xeb\x56\x37\x20\xee\xc6\xcf\xa5\x7b\xce\x61\xde\x50\xb5\x06\x83\x47\xc2\xea\x1a\x2a\x46\x0d\xf0\x5d\xa8\x04\x34\xb1\x92\x9a\x53\xad\xed\x89\x72\x49\x2b\x3c\x83\x24\x96\x98\xd5\xa1\xd6\x53\x1a\xb1\xb6\xb5\x30\x8c\xf6\x25\x88\x38\xc4\x9f\x93\xd5\x01\x58\x5b\x13\x08\x84\xf5\x2b\xa5\xb9\x5c\x0f\x44\x07\xfb\x48\xf0\x1a\x6a\x8c\x94\x52\x54\x68\x94\xba\x41\xab\x51\x13\xb4\x9a\x44\xe6\xf5\xe6\x05\x76\x94\xc2\x35\xdf\x11\x4e\x5b\x81\x47\x64\x01\x4c\xa0\x1c\x9d\x7e\x71\x72\xf2\x45\x07\x98\x8f\x95\x15\x76\xe2\x30\x36\xe6\x3d\x68\x0d\x1c\xcc\x23\xa6\xd9\xc2\x0a\x89\x71\x69\x5c\xca\x7f\x17\xb8\xc9\x87\xc7\x7f\x0c\x23\x98\x18\x08\x4b\xf9\xdc\xdb\x93\x66\xe5\x8f\x48\x3d\xfb\xbd\xbb\x88\xb0\x97\xcb\x55\x42\x85\x25\x66\xb3\x01\xa6\xa2\xf3\xdc\x95\xc3\x87\xfb\xf1\xbe\x69\xa7\x4c\x79\x94\x2d\xf6\xfc\x86\x5a\x18\x0f\x86\xeb\xbc\x45\x0a\x96\xb4\x4a\xc7\x13\x6a\x00\xb2\x63\x4a\x04\xd6\x4d\x6a\x8d\x71\xcd\x23\x65\xed\xd1\x52\xcf\xf1\xbf\x25\x1c\x15\x94\x20\xda\x56\x37\xe4\xc9\xac\x86\x0c\x33\x86\xf0\xd4\x70\x15\x60\x16\x65\x4d\xe9\xae\x82\xbc\xf5\xf3\xe6\xc5\x96\xf9\xa4\xa9\xc9\xae\xaa\x34\x12\xc5\x5c\x97\x14\xdb\x15\x0e\xb1\xcb\xc1\x7d\x98\x1b\x39\xff\x1d\x94\x9c\x92\x15\x50\xd3\x2a\xd0\x33\xb2\x6c\x8d\x6f\x90\x0e\xdf\x61\x66\x00\x2b\x08\x6a\xa0\x76\xd9\x55\xcb\x93\xe9\xe8\xcb\x11\x5a\x0d\xb7\xc4\x0a\x9f\x38\xc7\x04\x74\xa0\x3e\xb8\x5f\x3c\xcd\x64\xc4\x91\x4d\xe5\x55\x4b\xec\x3e\x71\xb5\x0a\x46\x62\x20\x69\xb1\x69\x68\x91\x3d\x5c\x78\x52\x2d\x2a\xd8\xfa\x84\xec\x6d\x0f\x64\x3f\x4c\x8b\xb7\x96\x65\x83\x72\x0d\x80\x54\xb2\x6c\x53\xa1\x11\x3a\x93\x12\x8b\xdd\x2d\xf5\x47\x7b\x64\x08\x03\x35\x18\xc5\xca\x87\x41\x81\x9b\xeb\x26\x1c\x64\xb5\x48\x8b\x50\xc1\xa0\xc8\xa2\x6c\xda\xf0\xf1\x31\xf7\xe9\x0c\x84\xbb\x5c\x9a\x4b\xf0\x5a\x1d\x19\x1d\x8b\xc8\x22\xd0\xbe\x08\x41\x2a\x6c\x6f\x6c\x40\x95\x16\x90\x35\xfa\x72\xd6\x10\xc9\x6e\x0f\xd9\x47\xca\x34\xd5\xcf\x5d\xc8\xea\x21\x36\x57\x33\x81\x2c\x0e\x63\xdc\xb4\xd0\xff\x29\x62\xd7\xc2\x45\xbc\x05\x25\xf9\x16\x41\x78\x59\xbb\x4e\xec\xb0\xd2\xfb\xa6\x3e\xe8\x03\x4d\x8e\x8e\xac\x24\x39\x3a\xca\xf4\xc0\x2c\x08\x0c\x9c\x79\xef\x76\x0e\x8d\x62\x08\x2a\x52\xc9\x6b\xcc\x35\xd9\x09\x9c\x60\x11\xd2\x64\xae\x4d\x92\xae\x55\xd6\xf8\x89\xba\xf8\x21\x30\x47\x3f\x8c\xc3\xdc\x99\x20\x6d\xd3\x80\x22\x2e\x45\x10\x8d\xa8\x01\x24\x7a\xe3\x57\x45\x31\x4d\xac\x62\xe3\x1c\xf8\x20\x06\x03\xe0\x1b\xaa\x89\x95\x5c\x16\x1f\x25\x6d\x7c\x74\x1b\x67\x74\x44\xa5\x53\x95\x8f\x36\x94\x73\x37\xfc\x81\x78\xe3\xc1\x4a\xd6\xfa\xaa\x2d\x96\xae\x95\x52\x38\xa7\x51\x93\x8d\xe4\xd5\xe9\x51\xa7\x2d\x1e\x3d\xab\x58\xa9\xe1\xe7\xf0\x1a\xfa\x08\x05\x7b\x56\xc6\x7b\x43\xed\x1b\x2a\x20\x27\x3e\x62\xd5\xda\x27\xd4\xb2\xf5\x8d\x89\x87\x31\x22\xbc\xf1\xd0\xc5\xa6\x0f\x15\xea\x60\xb7\xbb\xf6\xfb\x30\x24\xe5\xea\xb1\x3c\xce\x99\x6c\x58\xeb\x1b\x6d\x21\xb5\x6f\x13\xb8\xca\xfb\x55\xcb\x79\x9c\xa8\x6b\xbc\xb1\x50\xd7\xe0\xca\x88\xb1\xf2\xf8\xec\xd5\xcb\x9f\xfe\xf1\xe3\xeb\xb3\x77\xe7\xbf\xbc\xfc\xc7\xf3\x37\xaf\xbf\x3b\xff\xfe\xe7\xb7\x67\xef\xce\xdf\xbc\xb6\x8f\xfc\x70\xf9\xe6\x35\x71\x24\x54\x64\xf7\x4f\xa4\xe9\x7d\x95\xad\x2b\x98\x31\xf6\xe4\x5b\x9f\x75\x46\x38\xba\xeb\xef\x39\xd1\xee\x84\xdd\xcc\xd1\x6c\xbf\x21\xa3\x3c\x44\x27\xb1\x48\xf9\x69\x9b\xe9\x1d\x2c\x8c\xd1\xb6\x5d\x50\x82\xc9\xde\x41\x3b\x07\xb3\x77\xbc\xdd\xf3\xca\x01\xd8\x50\x21\x80\xcf\x3d\x55\x8d\xf4\xe8\x7e\xf2\x56\xb9\x1f\xed\x23\x21\x54\x13\x5f\x88\x27\x57\x5d\x87\xc9\x1d\xa6\x05\x3e\xf6\x4c\x60\x11\x74\x98\xc0\x9b\xf5\x52\x39\xda\x70\xa4\xf4\xf3\xdb\x73\x3d\x08\x2a\x13\x57\x9f\x0c\x68\x05\xda\x30\x11\x0b\xb0\x1f\x1e\xda\x60\xfc\xfe\x21\x98\x1d\x5c\xf7\x23\xd0\x14\x06\x7f\x22\x9e\xa2\xe1\x3f\x0a\x51\x5b\xf8\x68\x2c\xe1\x58\x7c\x5e\xa7\x1a\xd7\xbd\x6a\xbd\x25\x10\xdd\x2e\xed\xf0\x25\xb2\xcd\x20\xc8\xd9\x4c\xfb\xf0\x92\x43\x7f\xfd\x0b\x4d\x0d\x11\x4b\x25\xaf\x40\x65\x37\x27\xa0\xe6\x99\x78\xc1\x34\x99\x0e\xec\xf1\x63\x4e\x64\xd4\x0e\x1b\x25\xab\xb6\x84\x87\xdc\x58\x07\xfe\x15\xe3\x06\x94\x3f\xa4\x79\xa0\xcd\xd1\x25\x73\x6e\xb8\x37\x84\x11\xa0\x5e\xad\xf2\x06\x68\x05\x8a\x4c\x4a\x98\x7b\x05\xbb\x61\xda\x48\xb5\x9b\x14\xe4\x92\x89\xd2\x0b\x52\x2b\xd3\xb1\x15\x0b\x14\x43\x93\x86\xfb\x91\x1d\x5b\x0b\x6a\xb9\x75\x6a\x8c\x92\x55\x6b\xb2\x6b\x8f\x32\x45\x3a\xcb\x80\xca\x34\x0b\x7a\xb7\x83\xad\x74\x4c\xbb\x98\x59\xb4\x31\x6a\x17\x41\xa4\x82\x3c\x0b\xdc\xda\xcd\x4c\xd7\x51\xac\xce\xad\x58\xa6\x77\xd7\x33\x04\x7c\x05\x69\x8e\xe7\x74\xe9\x18\xbf\x51\x40\x4e\x8a\x67\x5f\x10\x37\x17\x5b\x32\xce\xcc\x8e\xac\xd8\x07\xd0\xe4\x30\xd0\x79\xb6\xf9\xee\xd6\x75\xf7\x22\x0c\x26\xae\xe6\x4b\x26\xaa\xa0\x64\x6e\xbf\x0a\x10\x83\x1b\xfe\xf1\xa1\xda\x30\x8a\x13\xe2\xc5\x28\x49\x15\x5d\x32\x71\xf5\xad\x1f\x13\xac\x96\xe2\x1d\xea\xc3\x4c\x89\x0d\xe2\xda\x39\x65\xda\xcd\xbb\xe6\x80\xd3\x17\xb7\x15\x95\x8d\x9b\xe2\x10\x3e\x94\xd0\xdc\x30\x82\xa1\xb9\xed\xa6\x4e\xbb\x70\x70\x4f\xef\x6d\x22\xfb\x8b\xc4\xa2\x6d\x97\x52\xc0\x18\xd8\x09\x76\x42\x66\x99\xa4\x1a\x12\x97\x93\x7e\xcc\x56\xdf\x57\xb8\xc2\x2d\xc1\xab\xa1\x43\xee\x98\xa9\xd6\xe9\x55\xd6\xcb\xcd\x02\x53\xdd\xd2\xf0\x4a\xda\x93\xe7\x8e\xb3\xb1\x3e\x3d\x14\x57\x45\x5b\xfd\xc8\xed\xf4\x28\xd8\xf3\xc8\x7d\x52\x60\x8e\xcb\x8a\x30\x74\x6e\x44\xe9\x6f\xdc\x3c\xc8\xdb\xce\xba\xd0\x5c\x3b\xf3\x32\x90\xa7\x9b\x36\xa9\x21\x14\x05\xb8\x86\x4b\x39\x90\x85\xe5\xe0\xc3\x89\x7b\xee\x94\xcb\xf2\x0a\x31\x6f\x80\xdb\x1d\xd7\xa7\x4b\x69\xf4\x64\x5a\x14\xc5\xa2\x20\xaf\xdf\xbc\x7b\x79\xea\xe4\x8f\xc7\x57\x55\x69\x27\x2d\x29\x36\xb3\xd4\xcc\xb5\x99\x0e\x55\x30\xc6\x02\x4b\x57\xab\xd1\x69\xe0\x55\x40\xab\xe3\x6b\xc5\xa2\xb5\x56\xd3\x46\xfb\xee\x22\x8a\x97\xc7\xc5\x7d\x2b\xb0\x36\xa4\xcb\xb1\x47\x81\x9d\x34\x4f\x7f\x15\x94\x4a\x51\x13\xdd\x1a\x81\x7c\xda\x5d\xa1\xf7\x60\x35\x9d\xf1\x5a\x2f\x41\xe8\xfa\xeb\x1c\x0c\x9d\x22\xb3\x92\xb7\x15\xcc\x2b\x7b\xea\xd4\xd8\x3f\x3a\x4d\x3f\x77\xa6\x65\x85\x83\xdf\x55\x42\x04\x77\xc3\xf5\x34\xda\xad\x50\x63\x1d\x4e\x41\xf9\xee\x77\x1f\x1c\xf3\x36\x5c\x29\x2b\x57\x17\x53\x55\xdd\xfe\x9d\xd8\x2b\x85\xd2\xcd\x41\x95\x6c\xb2\x02\x9b\x29\x33\x52\x5f\xec\xd1\xaf\x6f\xbc\x46\x6f\x6b\x81\x1a\xc8\x7f\x87\xf0\xf5\x8b\x3f\x53\x32\xce\x5f\x8e\x99\x03\x73\x93\xb8\xdd\xf7\x5e\x6a\xda\x8c\x29\x75\x7d\x4d\x6b\xc8\x2e\x92\x73\x03\xb3\x96\x8b\x8c\x84\xac\xea\x77\x32\xc8\x6e\xad\x20\x2f\xdc\xd2\xc8\x61\x93\x7f\xcb\xa8\x17\x2f\x71\xfa\xf7\xb9\x7d\x6a\x52\xbc\x80\x46\x01\x5e\xb0\x79\x1a\xfa\xf3\x10\xf0\x49\x90\x4b\xf8\xf4\xa4\x53\x38\xdb\xf9\x69\xc4\x2e\x06\x37\x71\xcc\x81\x6a\x18\x6a\x43\xfa\xe4\x3d\x0d\x81\x6a\x42\x79\xfa\x1d\x09\xc0\x5d\x83\xa0\x0e\x08\xe8\xfc\x32\x43\xbb\x0e\xa6\x03\x26\x2e\x92\xfb\x8a\x36\x13\xcb\xbc\x93\x9f\xec\xa6\x26\xd3\x1e\xa4\xee\xdb\xce\xfd\x33\x74\x09\x7c\x7e\x05\x63\x5a\x48\x7f\xc2\x52\xcb\x41\xfc\xb0\x0a\x84\x61\xab\x9d\x6b\x11\x94\xae\xb5\xd3\x40\xb2\x39\x06\xd0\xe6\x7a\x7e\x7d\x03\xb0\x54\xeb\xe3\x0c\x8d\x03\x30\x62\x14\x6d\x34\x94\x59\xcc\xed\x01\x60\xed\x2b\x06\xbc\xb1\xeb\xb3\x94\x4f\x05\x41\x1b\xf6\x78\x29\x50\xfb\xe3\xd9\xc5\x39\x79\x71\xf9\xd3\xed\x8d\x86\x58\xaa\x17\x1b\xbe\x3a\x69\x25\x1f\x59\x0b\x53\x59\x0d\xd8\xaf\x8a\xce\xdb\x9e\xac\x31\xf5\x88\xbd\x83\x6f\xae\xd3\x15\x96\x20\xb4\x4f\x40\xf8\x16\x53\xdc\x00\x54\x99\x45\xb2\x04\x2e\x5d\xdf\x74\xff\x24\x96\x80\x69\x1a\x3f\x02\xb3\x9c\x8a\x0a\xbd\xc2\x10\x9c\x10\xd2\x84\xac\x9a\xa8\x7a\xf7\x30\xe7\xb3\x48\x1f\x7d\xd3\xe0\xad\xc8\xb8\xf4\x93\x8e\x3f\x39\x33\x79\x9e\xed\xf3\x1e\x35\xa1\x5e\x6b\xe4\x48\x72\x25\x51\x01\x81\xaa\x53\x4a\xe1\xd7\xba\xd7\xfd\xcd\xd9\x32\x1e\xf7\xfb\x2b\xc4\x52\x8d\x6a\xf9\x88\x65\xd7\x17\x2f\xbe\xbd\xc3\x5e\xbe\x90\xd5\x0b\xa6\x55\x8b\x83\xbe\x6d\xab\x35\x98\x24\x71\x43\xb4\xff\xbc\x7b\x4d\xf4\xd3\xa6\x8e\x9a\x89\x39\xdd\x52\xc6\xed\x3c\x23\x2b\xe3\x52\x16\x04\x05\xe3\xd0\xbe\x91\x4d\xb1\x7a\x58\x1b\x2f\x59\xe3\x2a\xfe\x92\x24\xeb\xe6\x6f\x19\xba\x0c\xc5\x79\xea\x01\x77\xb1\x7e\x2a\x08\x5d\x6a\xc9\x5b\x93\x96\x53\xae\xdf\xdd\xe7\xde\x8a\x37\xce\x93\x40\x05\xb8\xe8\x6c\xc3\x17\x9b\xd6\xf4\xc3\xbc\x15\xd9\xb7\x7e\x89\x78\x8b\x45\x3f\x33\x94\x3d\xfc\xc0\x98\x08\xee\xb0\x78\x60\x24\x64\x25\x3c\xcf\x16\x84\xed\x23\xc2\xda\x84\x5c\xcb\xd0\xd7\x30\xed\x61\xad\x8f\x21\x87\xb7\xee\x14\xfb\x58\x8b\xdc\xe8\xf9\xf0\xf1\x34\x40\xaf\x84\x07\x13\x37\x4b\x6b\x88\xb9\xcf\x88\xdb\xac\x48\x8f\x6a\xcd\xd6\xa2\x7f\xf3\x54\x9a\x44\xf6\x7e\x2a\xc8\xb9\x20\x25\xf5\x39\x8b\xf8\x1c\xd3\x04\x1d\x3e\xb1\x9e\x25\xb7\xc2\xa1\xd2\xa5\x86\xad\x5c\x40\x65\x82\x45\x70\xee\x00\xc2\xe8\x82\x60\x00\xc4\x17\x54\x60\xe0\xc9\x3b\x92\x4e\x07\xaf\x5a\x4e\xfc\xc5\x9e\xf0\xc1\xe8\x74\xcd\xb2\x82\x03\x4d\x84\x8c\x17\xbf\xf8\x7b\x95\x09\xf5\x17\xa6\x0c\xdc\xaf\xdc\x81\xda\x25\xb9\xa4\x48\x18\xed\xdc\x4b\xe2\x2f\xbb\xd4\x78\x5b\xcc\x8c\x68\x1f\x72\x73\xcb\x5a\x32\xac\x97\x80\xfe\x42\xaa\x57\x63\xb5\x25\x31\x05\x6b\xa6\x8d\xda\x3d\xed\x6e\x3c\x77\x1e\x73\xbf\xdb\x31\x8d\x72\x7b\x27\x78\x08\x75\x63\x76\xd3\x84\xd1\x18\x43\x1a\xa0\x8c\x7b\xbb\xb0\x7b\xad\x79\x15\x18\x28\xb3\x9b\xb8\xf2\x66\x62\xb6\x1a\xa0\xac\xc0\x89\xc1\x8e\x39\x64\xc9\x6c\x0d\xdf\x75\x8e\x5f\x0a\xbe\xcb\x2e\xbc\x68\x94\xac\xc1\x6c\xa0\xbd\x77\xf3\xe9\x7d\xe2\x4e\x17\x71\x95\xd0\x9a\x9a\x37\xa4\xa5\x5f\xe7\x21\xc8\x99\x25\x13\x3c\xef\x04\x1d\xac\x43\x23\xeb\xfe\xeb\x35\xb0\x31\x75\x71\x19\xda\x45\x51\x6e\xf9\x4f\xaf\xa4\x60\x46\xaa\x45\x32\xcf\x52\xcd\xaa\xc3\x73\x28\x59\xf2\x82\xad\x54\xb4\xe9\x87\x9b\x66\xfd\x78\x53\xb6\xad\x37\xde\xf1\x77\x99\x4b\x57\xe4\xe1\x13\xd5\xbe\x8d\xd3\x0d\x7b\xc5\x4a\x25\x2f\x7c\xae\xf2\x95\x7b\xac\x20\x7f\x3f\x7b\xfb\xfa\xfc\xf5\xf7\xfe\x26\x7a\xb4\xc2\xb3\x0b\x82\x6e\xda\x43\xba\x3e\x0f\x63\xe9\xbe\xce\x7a\xcd\xcc\xa6\x5d\x16\xa5\xac\x8f\x4b\xa9\x40\xea\xe3\x74\xc6\xf3\x10\x9f\xf8\x75\x00\xf4\xdf\x82\x4c\x89\xf3\x63\x11\x37\x0b\x81\xc0\x65\xac\x3a\x80\xaa\x20\xff\x29\x5b\x44\x16\xd6\xf2\x84\x56\xa4\x3a\x80\x68\x64\x68\x51\x89\x32\x69\x8f\x06\xe2\x25\x55\xcc\x6c\x64\x6b\x6e\xc7\xe8\xde\x68\x36\xfc\x22\x9e\x27\x1d\xd6\x1a\xdb\x45\x91\x6d\xf6\xa6\x46\x8a\xbf\x7e\xf9\xe5\x5f\x17\xf8\xf6\x23\x77\x21\xb8\x23\xfe\xff\x70\x17\x1a\x0f\x5e\x7e\xed\xcf\x66\x74\xdf\x01\xbd\x85\xf0\xec\x36\x83\xc0\xe9\x95\x2e\xdf\xb2\xf4\xfd\x5d\x80\x9b\x21\x70\x53\xed\x37\xb3\xec\x93\x62\xec\x1f\xca\x84\x5e\xcb\xf9\xdc\xf5\xd8\x3d\xa6\xe7\xd0\x72\x4e\x2e\x71\x15\x4f\xb3\xda\x65\x26\xec\xf2\xc4\x2d\x1f\x2f\xb4\x96\xd5\x2c\xf9\xe1\x59\xe8\x06\xe3\xc5\x46\x31\xd8\xf6\xef\x19\x77\x8a\xd8\x39\xe7\x22\x5e\xe5\x16\x35\xb3\x63\x9b\x7c\xa9\xbe\xcd\x46\x6a\x2a\x5a\xd4\x3a\x52\xe1\x15\x93\x68\xf4\xec\x64\x7b\x90\x95\x89\x38\x19\x98\x77\x96\x60\x45\x56\xb6\x60\x82\x28\x2c\x1d\x36\xb5\xc8\x4c\xde\xf0\xca\x0b\x17\xa5\xf4\xf7\xec\x39\xb8\x32\x5b\x0d\xc1\xc5\x8d\x8d\xb9\x4c\x60\x67\x45\x50\xba\xcc\xfe\xbe\x60\xa2\x06\xb0\x3a\x45\xeb\xb6\x0e\x51\x84\x3e\x1e\x99\x2f\x37\x6a\x14\x26\x20\xb0\xf1\x6b\x27\xdb\x6c\xb3\xdd\xbb\x36\x07\xa0\xb0\x9b\xc2\xa0\x0a\xee\x6b\xe6\xc0\xa6\x22\xca\x93\x94\x62\x78\xd2\xc6\x94\x3b\xad\xd1\xd7\xe7\xf7\x88\x4f\xe0\x45\xf9\x32\xf4\x51\x7b\xbf\x19\xd1\xc9\x61\x65\x08\x9a\x59\x29\xdb\xdb\x31\x8a\x0c\xbd\x02\x91\x6c\xa2\x41\xb2\x4a\xe7\xd1\xb1\x88\x3f\xb1\xc4\xad\xd7\x57\x1d\x8d\xae\xb8\xd8\x1e\x17\x5b\x2b\xcd\x69\x27\xab\xbd\x77\x0d\x90\x45\xb7\x89\xb7\x92\xe5\x15\x28\x37\xf1\x7b\x2d\x45\x26\x96\xfc\x75\xf4\x8f\xe7\x39\x79\xf5\xb0\xd7\x42\x6e\xb2\xdf\x42\x93\xc3\x4d\xec\xf7\xa4\x69\x34\x22\xe2\x0e\xb3\x7b\x7f\xbf\xee\xac\x0e\x15\x60\xcb\xa6\x2b\xee\xf4\x99\xf4\x56\x43\xaa\x03\xc4\x6c\xe2\x08\xa5\x71\xeb\x39\xbc\xb5\x93\xdc\xf5\x1a\x1e\xd3\x33\x05\x93\x09\xef\xb3\xa6\x43\x85\xa4\x4f\xf9\x70\xc6\x76\xe5\x8e\xb9\x0c\x05\x51\xd0\x09\x68\x72\x3d\x77\x6f\x32\x1b\x5b\x52\x67\x0f\xe2\xdd\x4f\x97\x24\x1b\x85\x23\x66\x84\xb3\x2b\x20\x0b\xa8\xd6\xb0\x98\x91\x45\x43\xb5\xf6\xf7\xd1\xb8\xda\x7c\x05\x20\x4a\xb5\x6b\xcc\xa2\x5b\x78\x9b\x0e\x68\xbf\xf4\x36\x6b\x96\xbc\xa1\x00\xd7\x6e\x20\xeb\xf1\xbc\xc7\x06\xfa\xfd\xda\xd8\x4b\xf9\xc0\x90\x8d\x4b\xf3\x0c\x41\x74\x05\xbb\x47\x83\xca\xdf\x02\xf1\x71\x28\x43\x55\x2d\x15\x33\xbb\x3f\x04\x83\x59\x41\xdd\xc7\xc1\x9d\x57\xe4\x75\x2e\xb1\x80\xf4\xb6\xad\x60\x21\x62\xa5\x55\x48\x57\xd2\xce\xb3\xfe\xdb\x15\xb3\xf0\x66\x73\x16\xc4\xa5\xb6\x9d\x9b\x1a\x69\xbc\xc3\x1d\x18\xc3\xb2\x8e\x6b\xea\x11\xf0\x4b\x57\x9d\x0a\x07\xbc\xd6\x13\x59\x54\xb9\xc6\x20\x66\x10\x53\xee\x25\x2d\x04\x6f\x26\x88\xd9\x14\x0d\xa5\xe5\xf4\x52\x0a\x01\x3e\xe6\xb9\x0a\x4b\x01\xaf\xe2\x7b\x5b\x82\xd9\x3a\x4b\x02\x40\x91\x9a\xee\x62\x4c\x2c\x14\xce\xf7\x10\x45\x45\x15\xdf\x80\x60\x45\x09\x5a\x22\x5b\xca\x59\x15\x6e\x39\x62\x62\x8d\x80\x6c\xac\x8b\x15\x6a\x2a\xf0\xb1\x43\xff\xa9\x10\xe1\xc5\x8f\x85\xde\x96\xd3\x99\x6f\xa8\xf4\x19\x01\x26\x56\x8a\x6a\xa3\xda\x12\xf5\x85\xbf\x72\x10\xaa\x6e\xcf\x76\xbf\x94\xc6\x5d\x32\xf2\xd0\x64\xc6\x84\xc3\xe7\xdc\x8a\xaf\x5c\x22\x8e\xbf\xef\xb7\x23\x80\xfd\x8d\xbf\x15\x50\x1e\xde\xb3\xeb\x0f\xcc\x28\xba\x5a\xb1\x32\x54\xd6\x60\xb5\x98\x95\x97\x2f\x9c\xa2\x70\xb2\xf2\x2d\x84\xfa\x7a\xff\xf8\xa7\xef\xb7\xef\x5c\xa6\x72\xb6\x47\x0b\x5f\x85\xa6\xbf\x50\xd6\xd6\xc9\x07\xb5\xda\x52\xb9\x53\xdd\x02\xab\xf2\xa5\x75\xe0\xb7\x4c\x33\x29\xa0\xca\x5a\xf1\x44\xfc\xe0\x27\xc2\x0b\x17\x13\x54\xa7\x43\x31\x9c\xab\xaf\xf4\xbc\xb7\x55\x7d\x6c\x99\xe1\x4f\xbd\x6f\xc9\x99\x2f\x36\xf1\xf5\x9c\xa9\xc9\x06\x93\x2d\xb0\x95\x7c\xeb\x02\x57\xce\xc6\xd6\xed\xf2\xbd\x07\xb7\xdc\x50\xb1\x86\x27\x1d\x3a\xe9\xa3\xe0\x9e\xe5\xb4\xf7\x39\x10\x14\x8f\x56\x5a\xfc\x78\xfe\xfa\x45\xf1\xcb\xcb\xb7\x97\xe7\x6f\x5e\x17\xdf\xbf\x7d\xf3\xf3\xc5\xf1\xeb\xb3\x57\x2f\x7f\x3d\x8e\x97\x3f\xfe\xd6\xa7\xc6\xfb\x53\xe1\xad\x86\x62\xb7\xdb\xf4\xd6\xb8\x67\xba\x59\x2f\xc6\x48\x42\x80\x33\x59\x99\xee\x2e\x1e\x67\x46\x49\x17\xe5\x71\xf1\x13\x97\xc5\x3d\x94\xaa\x93\xfa\x9f\x76\xdf\xa0\x1c\x65\xe0\x8d\xae\x39\xdb\x7f\x07\x73\xd6\xb7\x44\xfb\xb7\xda\xa7\x3c\x98\xbf\x9b\xb0\xd7\x40\xfa\xa4\xcd\xd9\x87\x09\xf0\x63\x4d\x18\x46\xf6\xc3\xf1\x09\x80\x2a\xa4\xbb\x7d\x90\x6d\xef\x2d\xd5\xbd\x40\xe2\xad\xa5\xa8\x91\x86\x3a\xef\xa3\xa3\x9a\xbc\x96\x15\x5c\xd8\x89\xc2\xd4\x7f\x0e\x5d\x70\x8f\x15\x11\x73\x0b\x0c\x3b\x3e\x5d\x34\x85\x3c\x4c\x5e\x62\xe0\x8b\x3c\xe4\x75\x9c\x47\xc6\xea\x5a\xc4\x65\x52\xbc\xb1\x30\x52\x54\xee\x4a\x5f\x2b\xae\x63\x96\xd5\x6a\x97\xb3\x8b\x73\x52\x53\x41\xd7\xe0\x1a\xaa\xf7\xc0\xbb\x21\xbe\xfc\x2f\x4f\x91\x1f\x5b\x35\xa9\xcb\x0d\x8c\x8e\xfc\xb8\x87\x43\xb9\x99\xd3\x8d\x86\xfa\x9b\xaa\xc3\xe1\xf4\x5f\x89\xd8\xb9\xf3\x68\xd4\xcb\x01\xdd\x7d\x47\x66\x93\xbd\x96\xd6\x9e\x2b\xd3\xa4\x69\x97\xdc\x5d\xf2\x9f\xdd\xae\xd6\x5d\x62\x64\x2c\x1e\xe3\xee\x69\x7e\x9d\xae\x2f\x1d\x7e\xef\x64\xe7\xea\x8e\x38\xd7\xd8\xd7\x1d\x0e\xec\xc8\x72\xd4\x3c\x14\x5e\x75\x14\xfb\xe0\x26\x7d\x49\x59\x81\xb1\xa5\x14\xb7\x30\x8a\x96\x8f\x67\x25\xa1\x5f\xe5\x56\x18\xc3\xdd\x1e\xf0\x00\x54\x6e\xdf\xf9\x7c\xbc\x5d\x29\x4c\x98\xe5\x04\xfd\xf5\xc5\x21\x29\x94\x72\xf0\xfe\x4d\xfa\xc3\x2d\x95\x81\xa0\x71\xb6\x98\x50\x49\xf2\xc0\x2b\xb9\xa8\xdf\xc8\xa1\x7f\x11\x82\x26\x47\x47\x3f\x50\x58\x83\x3a\x3a\x9a\x16\x03\xbb\xfc\x3f\x21\xc1\xf0\xed\x54\x25\x6f\xd1\x04\xbd\xa1\xed\x61\x08\xff\x43\xc6\xdd\x3d\x62\xcb\x22\x2b\xc8\x0d\x3c\x89\x1a\x22\x30\x85\x8e\x2b\x56\xd4\xd0\xc8\x21\x37\x16\x65\x4e\x07\x7a\xe9\x46\xc2\xe2\x2f\x1b\x8a\x94\xe5\xc1\xca\x69\x38\xca\xbc\x61\x0a\xbd\xf1\xf6\x14\x4d\xeb\x86\x83\x1a\x5d\xfb\xeb\x6c\x35\x3b\xc4\x07\x34\x83\x60\x98\x94\x52\x68\x33\x19\x9a\xbb\xa1\x8a\xd6\xf7\x9c\x3c\x36\x8d\xe1\xe0\x6c\x99\x67\x93\xe9\x67\xff\x1b\x00\x00\xff\xff\xe1\x66\x56\xf0\x77\x86\x00\x00"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/pkg/util/bindings/api.go b/pkg/util/bindings/api.go index f5debd3aef..14f09b8a54 100644 --- a/pkg/util/bindings/api.go +++ b/pkg/util/bindings/api.go @@ -20,6 +20,7 @@ package bindings import ( "context" + "fmt" v1 "github.com/apache/camel-k/pkg/apis/camel/v1" "github.com/apache/camel-k/pkg/apis/camel/v1alpha1" @@ -47,7 +48,7 @@ type BindingProvider interface { // ID returns the name of the binding provider ID() string // Translate does the actual mapping - Translate(ctx BindingContext, endpointType v1alpha1.EndpointType, endpoint v1alpha1.Endpoint) (*Binding, error) + Translate(ctx BindingContext, endpointContext EndpointContext, endpoint v1alpha1.Endpoint) (*Binding, error) // Order returns the relative order of execution of the binding provider Order() int } @@ -58,3 +59,16 @@ type BindingContext struct { Namespace string Profile v1.TraitProfile } + +type EndpointContext struct { + Type v1alpha1.EndpointType + Position *int +} + +func (c EndpointContext) GenerateID() string { + id := string(c.Type) + if c.Position != nil { + id = fmt.Sprintf("%s-%d", id, *c.Position) + } + return id +} diff --git a/pkg/util/bindings/bindings_test.go b/pkg/util/bindings/bindings_test.go index 084309aa66..b1859cb327 100644 --- a/pkg/util/bindings/bindings_test.go +++ b/pkg/util/bindings/bindings_test.go @@ -52,6 +52,17 @@ func TestBindings(t *testing.T) { }, uri: "knative:endpoint/myservice?apiVersion=serving.knative.dev%2Fv1&kind=Service", }, + { + endpointType: v1alpha1.EndpointTypeAction, + endpoint: v1alpha1.Endpoint{ + Ref: &corev1.ObjectReference{ + Kind: "Service", + APIVersion: "serving.knative.dev/v1", + Name: "myservice", + }, + }, + uri: "knative:endpoint/myservice?apiVersion=serving.knative.dev%2Fv1&kind=Service", + }, { endpointType: v1alpha1.EndpointTypeSink, endpoint: v1alpha1.Endpoint{ @@ -211,7 +222,9 @@ func TestBindings(t *testing.T) { Profile: profile, } - binding, err := Translate(bindingContext, tc.endpointType, tc.endpoint) + binding, err := Translate(bindingContext, EndpointContext{ + Type: tc.endpointType, + }, tc.endpoint) assert.NoError(t, err) assert.NotNil(t, binding) assert.Equal(t, tc.uri, binding.URI) diff --git a/pkg/util/bindings/camel_uri.go b/pkg/util/bindings/camel_uri.go index a264ff7949..8cac3c677f 100644 --- a/pkg/util/bindings/camel_uri.go +++ b/pkg/util/bindings/camel_uri.go @@ -30,7 +30,7 @@ func (k CamelURIBindingProvider) ID() string { return "camel-uri" } -func (k CamelURIBindingProvider) Translate(ctx BindingContext, endpointType v1alpha1.EndpointType, e v1alpha1.Endpoint) (*Binding, error) { +func (k CamelURIBindingProvider) Translate(ctx BindingContext, endpointCtx EndpointContext, e v1alpha1.Endpoint) (*Binding, error) { if e.URI == nil { // works only on uris return nil, nil diff --git a/pkg/util/bindings/catalog.go b/pkg/util/bindings/catalog.go index dbe3f74f9b..b12b504c18 100644 --- a/pkg/util/bindings/catalog.go +++ b/pkg/util/bindings/catalog.go @@ -37,13 +37,13 @@ func RegisterBindingProvider(bp BindingProvider) { } // Translate execute all chained binding providers, returning the first success or the first error -func Translate(ctx BindingContext, endpointType v1alpha1.EndpointType, endpoint v1alpha1.Endpoint) (*Binding, error) { +func Translate(ctx BindingContext, endpointCtx EndpointContext, endpoint v1alpha1.Endpoint) (*Binding, error) { if err := validateEndpoint(ctx, endpoint); err != nil { return nil, err } for _, bp := range bindingProviders { - b, err := bp.Translate(ctx, endpointType, endpoint) + b, err := bp.Translate(ctx, endpointCtx, endpoint) if b != nil || err != nil { return b, err } diff --git a/pkg/util/bindings/kamelet.go b/pkg/util/bindings/kamelet.go index ca832520a4..9d3f596e7c 100644 --- a/pkg/util/bindings/kamelet.go +++ b/pkg/util/bindings/kamelet.go @@ -32,7 +32,7 @@ func (k KameletBindingProvider) ID() string { return "kamelet" } -func (k KameletBindingProvider) Translate(ctx BindingContext, endpointType v1alpha1.EndpointType, e v1alpha1.Endpoint) (*Binding, error) { +func (k KameletBindingProvider) Translate(ctx BindingContext, endpointCtx EndpointContext, e v1alpha1.Endpoint) (*Binding, error) { if e.Ref == nil { // works only on refs return nil, nil @@ -55,8 +55,7 @@ func (k KameletBindingProvider) Translate(ctx BindingContext, endpointType v1alp if idPresent { delete(props, v1alpha1.KameletIDProperty) } else { - // Let's use literal "source" or "sink" as ID for the Kamelet - id = string(endpointType) + id = endpointCtx.GenerateID() } kameletURI = fmt.Sprintf("%s/%s", kameletURI, url.PathEscape(id)) diff --git a/pkg/util/bindings/knative_ref.go b/pkg/util/bindings/knative_ref.go index 79193ffe2c..dd32999afb 100644 --- a/pkg/util/bindings/knative_ref.go +++ b/pkg/util/bindings/knative_ref.go @@ -36,7 +36,7 @@ func (k KnativeRefBindingProvider) ID() string { return "knative-ref" } -func (k KnativeRefBindingProvider) Translate(ctx BindingContext, endpointType v1alpha1.EndpointType, e v1alpha1.Endpoint) (*Binding, error) { +func (k KnativeRefBindingProvider) Translate(ctx BindingContext, endpointCtx EndpointContext, e v1alpha1.Endpoint) (*Binding, error) { if e.Ref == nil { // works only on refs return nil, nil @@ -77,7 +77,7 @@ func (k KnativeRefBindingProvider) Translate(ctx BindingContext, endpointType v1 delete(props, "type") serviceURI = fmt.Sprintf("knative:%s/%s", *serviceType, eventType) } else { - if endpointType == v1alpha1.EndpointTypeSink { + if endpointCtx.Type == v1alpha1.EndpointTypeSink || endpointCtx.Type == v1alpha1.EndpointTypeAction { // Allowing no event type, but it can fail. See https://github.com/apache/camel-k-runtime/issues/536 serviceURI = fmt.Sprintf("knative:%s", *serviceType) } else { diff --git a/pkg/util/bindings/knative_uri.go b/pkg/util/bindings/knative_uri.go index e5a1415e49..f1a12004d1 100644 --- a/pkg/util/bindings/knative_uri.go +++ b/pkg/util/bindings/knative_uri.go @@ -35,7 +35,7 @@ func (k KnativeURIBindingProvider) ID() string { return "knative-uri" } -func (k KnativeURIBindingProvider) Translate(ctx BindingContext, endpointType v1alpha1.EndpointType, e v1alpha1.Endpoint) (*Binding, error) { +func (k KnativeURIBindingProvider) Translate(ctx BindingContext, endpointCtx EndpointContext, e v1alpha1.Endpoint) (*Binding, error) { if e.URI == nil { // works only on uris return nil, nil @@ -48,7 +48,7 @@ func (k KnativeURIBindingProvider) Translate(ctx BindingContext, endpointType v1 // only translates http/https uri to Knative calls return nil, nil } - if endpointType == v1alpha1.EndpointTypeSource { + if endpointCtx.Type == v1alpha1.EndpointTypeSource { // HTTP/HTTPS uri are translated to Knative endpoints only when used as sinks return nil, nil }