add fallback for master when leases are not available
diff --git a/addons/master/master.go b/addons/master/master.go
index 7f00b35..f3f01d1 100644
--- a/addons/master/master.go
+++ b/addons/master/master.go
@@ -18,6 +18,7 @@
 package master
 
 import (
+	"errors"
 	"fmt"
 	"strings"
 
@@ -49,7 +50,12 @@
 	// It's enabled by default.
 	IncludeDelegateDependencies *bool `property:"include-delegate-dependencies" json:"includeDelegateDependencies,omitempty"`
 	// Name of the configmap that will be used to store the lock. Defaults to "<integration-name>-lock".
-	Configmap *string `property:"configmap" json:"configmap,omitempty"`
+	// Deprecated: replaced by "resource-name".
+	DeprecatedConfigMap *string `property:"configmap" json:"configmap,omitempty"`
+	// Name of the configmap/lease resource that will be used to store the lock. Defaults to "<integration-name>-lock".
+	ResourceName *string `property:"resource-name" json:"resourceName,omitempty"`
+	// Type of Kubernetes resource to use for locking ("ConfigMap" or "Lease"). Defaults to "Lease".
+	ResourceType *string `property:"resource-type" json:"resourceType,omitempty"`
 	// Label that will be used to identify all pods contending the lock. Defaults to "camel.apache.org/integration".
 	LabelKey *string `property:"label-key" json:"labelKey,omitempty"`
 	// Label value that will be used to identify all pods contending the lock. Defaults to the integration name.
@@ -68,6 +74,11 @@
 	masterComponent = "master"
 )
 
+var (
+	leaseResourceType     = "Lease"
+	configMapResourceType = "ConfigMap"
+)
+
 func (t *masterTrait) Configure(e *trait.Environment) (bool, error) {
 	if t.Enabled != nil && !*t.Enabled {
 		return false, nil
@@ -77,6 +88,10 @@
 		return false, nil
 	}
 
+	if t.DeprecatedConfigMap != nil && t.ResourceName != nil {
+		return false, errors.New(`you cannot set both the "configmap" and "resource-name" properties on the "master" trait`)
+	}
+
 	if t.Auto == nil || *t.Auto {
 		// Check if the master component has been used
 		sources, err := kubernetes.ResolveIntegrationSources(t.Ctx, t.Client, e.Integration, e.Resources)
@@ -103,9 +118,28 @@
 			t.delegateDependencies = findAdditionalDependencies(e, meta)
 		}
 
-		if t.Configmap == nil {
+		if t.DeprecatedConfigMap != nil && t.ResourceName == nil {
+			t.ResourceName = t.DeprecatedConfigMap
+		}
+		if t.ResourceName == nil {
 			val := fmt.Sprintf("%s-lock", e.Integration.Name)
-			t.Configmap = &val
+			t.ResourceName = &val
+		}
+
+		if t.ResourceType == nil {
+			if t.DeprecatedConfigMap != nil {
+				t.ResourceType = &configMapResourceType
+			} else {
+				canUseLeases, err := t.canUseLeases(e)
+				if err != nil {
+					return false, err
+				}
+				if canUseLeases {
+					t.ResourceType = &leaseResourceType
+				} else {
+					t.ResourceType = &configMapResourceType
+				}
+			}
 		}
 
 		if t.LabelKey == nil {
@@ -147,7 +181,13 @@
 			ServiceAccount: serviceAccount,
 		}
 
-		role, err := loadResource(e, "master-role.tmpl", templateData)
+		roleSuffix := leaseResourceType
+		if t.ResourceType != nil {
+			roleSuffix = *t.ResourceType
+		}
+		roleSuffix = strings.ToLower(roleSuffix)
+
+		role, err := loadResource(e, fmt.Sprintf("master-role-%s.tmpl", roleSuffix), templateData)
 		if err != nil {
 			return err
 		}
@@ -163,9 +203,19 @@
 			v1.ConfigurationSpec{Type: "property", Value: "customizer.master.enabled=true"},
 		)
 
-		if t.Configmap != nil {
+		if t.ResourceName != nil || t.DeprecatedConfigMap != nil {
+			resourceName := t.ResourceName
+			if resourceName == nil {
+				resourceName = t.DeprecatedConfigMap
+			}
 			e.Integration.Status.Configuration = append(e.Integration.Status.Configuration,
-				v1.ConfigurationSpec{Type: "property", Value: fmt.Sprintf("customizer.master.configMapName=%s", *t.Configmap)},
+				v1.ConfigurationSpec{Type: "property", Value: fmt.Sprintf("customizer.master.kubernetesResourceName=%s", *resourceName)},
+			)
+		}
+
+		if t.ResourceType != nil {
+			e.Integration.Status.Configuration = append(e.Integration.Status.Configuration,
+				v1.ConfigurationSpec{Type: "property", Value: fmt.Sprintf("customizer.master.leaseResourceType=%s", *t.ResourceType)},
 			)
 		}
 
@@ -185,6 +235,10 @@
 	return nil
 }
 
+func (t *masterTrait) canUseLeases(e *trait.Environment) (bool, error) {
+	return kubernetes.CheckPermission(t.Ctx, t.Client, "coordination.k8s.io", "leases", e.Integration.Namespace, "", "create")
+}
+
 func findAdditionalDependencies(e *trait.Environment, meta metadata.IntegrationMetadata) (dependencies []string) {
 	for _, endpoint := range meta.FromURIs {
 		if uri.GetComponent(endpoint) == masterComponent {
diff --git a/deploy/addons/master/master-role-configmap.tmpl b/deploy/addons/master/master-role-configmap.tmpl
new file mode 100644
index 0000000..ac4ff90
--- /dev/null
+++ b/deploy/addons/master/master-role-configmap.tmpl
@@ -0,0 +1,27 @@
+kind: Role
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: {{ .Name }}
+  namespace: {{ .Namespace }}
+  labels:
+    app: "camel-k"
+rules:
+- apiGroups:
+  - ""
+  resources:
+  - configmaps
+  verbs:
+  - create
+  - get
+  - list
+  - patch
+  - update
+  - watch
+- apiGroups:
+  - ""
+  resources:
+  - pods
+  verbs:
+  - get
+  - list
+  - watch
diff --git a/deploy/addons/master/master-role.tmpl b/deploy/addons/master/master-role-lease.tmpl
similarity index 100%
rename from deploy/addons/master/master-role.tmpl
rename to deploy/addons/master/master-role-lease.tmpl
diff --git a/deploy/camel-catalog-1.6.0-SNAPSHOT.yaml b/deploy/camel-catalog-1.6.0-SNAPSHOT.yaml
index 1b1167c..b82ab62 100644
--- a/deploy/camel-catalog-1.6.0-SNAPSHOT.yaml
+++ b/deploy/camel-catalog-1.6.0-SNAPSHOT.yaml
@@ -20,9 +20,9 @@
 metadata:
   name: camel-catalog-1.6.0-snapshot
   labels:
-    camel.apache.org/catalog.loader.version: 3.7.0
-    camel.apache.org/runtime.version: 1.6.0-SNAPSHOT
     camel.apache.org/catalog.version: 3.7.0
+    camel.apache.org/runtime.version: 1.6.0-SNAPSHOT
+    camel.apache.org/catalog.loader.version: 3.7.0
     app: camel-k
 spec:
   runtime:
@@ -30,1996 +30,349 @@
     provider: quarkus
     applicationClass: io.quarkus.runner.GeneratedMain
     metadata:
-      camel.version: 3.7.0
       quarkus.version: 1.10.3.Final
+      camel.version: 3.7.0
       camel-quarkus.version: 1.5.0
     dependencies:
     - groupId: org.apache.camel.k
       artifactId: camel-k-runtime
     capabilities:
-      tracing:
+      master:
+        dependencies:
+        - groupId: org.apache.camel.k
+          artifactId: camel-k-master
+      circuit-breaker:
         dependencies:
         - groupId: org.apache.camel.quarkus
-          artifactId: camel-quarkus-opentracing
-      rest:
+          artifactId: camel-quarkus-microprofile-fault-tolerance
+      health:
         dependencies:
         - groupId: org.apache.camel.quarkus
-          artifactId: camel-quarkus-rest
+          artifactId: camel-quarkus-microprofile-health
+      platform-http:
+        dependencies:
         - groupId: org.apache.camel.quarkus
           artifactId: camel-quarkus-platform-http
       cron:
         dependencies:
         - groupId: org.apache.camel.k
           artifactId: camel-k-cron
-      platform-http:
+      rest:
         dependencies:
         - groupId: org.apache.camel.quarkus
+          artifactId: camel-quarkus-rest
+        - groupId: org.apache.camel.quarkus
           artifactId: camel-quarkus-platform-http
-      health:
+      tracing:
         dependencies:
         - groupId: org.apache.camel.quarkus
-          artifactId: camel-quarkus-microprofile-health
-      circuit-breaker:
-        dependencies:
-        - groupId: org.apache.camel.quarkus
-          artifactId: camel-quarkus-microprofile-fault-tolerance
-      master:
-        dependencies:
-        - groupId: org.apache.camel.k
-          artifactId: camel-k-master
+          artifactId: camel-quarkus-opentracing
   artifacts:
-    camel-quarkus-ipfs:
+    camel-quarkus-as2:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ipfs
+      artifactId: camel-quarkus-as2
       schemes:
-      - id: ipfs
+      - id: as2
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.ipfs.IPFSComponent
-    camel-quarkus-grpc:
+      - org.apache.camel.component.as2.AS2Component
+    camel-quarkus-atmos:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-grpc
-      schemes:
-      - id: grpc
-        http: true
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.grpc.GrpcComponent
-    camel-quarkus-servicenow:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-servicenow
+      artifactId: camel-quarkus-atmos
       schemes:
-      - id: servicenow
+      - id: atmos
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.servicenow.ServiceNowComponent
-    camel-quarkus-sap-netweaver:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-sap-netweaver
-      schemes:
-      - id: sap-netweaver
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.sap.netweaver.NetWeaverComponent
-    camel-quarkus-aws-sdb:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-sdb
-      schemes:
-      - id: aws-sdb
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.sdb.SdbComponent
-    camel-quarkus-hbase:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-hbase
-      schemes:
-      - id: hbase
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.hbase.HBaseComponent
-    camel-quarkus-yammer:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-yammer
-      schemes:
-      - id: yammer
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.yammer.YammerComponent
-    camel-quarkus-jgroups:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jgroups
-      schemes:
-      - id: jgroups
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jgroups.JGroupsComponent
-    camel-quarkus-dataformat:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-dataformat
-      schemes:
-      - id: dataformat
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.dataformat.DataFormatComponent
-    camel-quarkus-jing:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jing
-      schemes:
-      - id: jing
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.validator.jing.JingComponent
-    camel-quarkus-jaxb:
-      groupId: org.apache.camel.quarkus
-      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: scheduler
-        http: false
-        passive: false
-      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
-      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:
-      - jsonApi
-      javaTypes:
-      - org.apache.camel.component.jsonapi.JsonApiDataFormat
-    camel-quarkus-iota:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-iota
-      schemes:
-      - id: iota
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.iota.IOTAComponent
-    camel-quarkus-jt400:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jt400
-      schemes:
-      - id: jt400
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jt400.Jt400Component
-    camel-quarkus-aws2-sqs:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-sqs
-      schemes:
-      - id: aws2-sqs
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.sqs.Sqs2Component
-    camel-quarkus-stub:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-stub
-      schemes:
-      - id: stub
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.stub.StubComponent
-    camel-quarkus-pubnub:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-pubnub
-      schemes:
-      - id: pubnub
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.pubnub.PubNubComponent
-    camel-quarkus-aws-swf:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-swf
-      schemes:
-      - id: aws-swf
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.swf.SWFComponent
-    camel-quarkus-twitter:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-twitter
-      schemes:
-      - id: twitter-timeline
-        http: false
-        passive: false
-      - id: twitter-search
-        http: false
-        passive: false
-      - id: twitter-directmessage
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.twitter.timeline.TwitterTimelineComponent
-      - org.apache.camel.component.twitter.directmessage.TwitterDirectMessageComponent
-      - org.apache.camel.component.twitter.search.TwitterSearchComponent
-    camel-quarkus-aws2-kinesis:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-kinesis
-      schemes:
-      - id: aws2-kinesis-firehose
-        http: false
-        passive: false
-      - id: aws2-kinesis
-        http: false
-        passive: false
-      javaTypes:
-      - 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-ganglia
-      schemes:
-      - id: ganglia
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.ganglia.GangliaComponent
-    camel-quarkus-telegram:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-telegram
-      schemes:
-      - id: telegram
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.telegram.TelegramComponent
-    camel-quarkus-http:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-http
-      schemes:
-      - id: http
-        http: false
-        passive: false
-      - id: https
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.http.HttpComponent
-    camel-quarkus-jolt:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jolt
-      schemes:
-      - id: jolt
-        http: false
-        passive: false
-      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
-      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
-      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.elsql.ElsqlComponent
-    camel-quarkus-cbor:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-cbor
-      dataformats:
-      - cbor
-      javaTypes:
-      - org.apache.camel.component.cbor.CBORDataFormat
-    camel-quarkus-mybatis:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-mybatis
-      schemes:
-      - id: mybatis
-        http: false
-        passive: false
-      - id: mybatis-bean
-        http: false
-        passive: false
-      javaTypes:
-      - 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: file
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.file.FileComponent
-    camel-quarkus-robotframework:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-robotframework
-      schemes:
-      - id: robotframework
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.robotframework.RobotFrameworkComponent
-    camel-quarkus-file-watch:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-file-watch
-      schemes:
-      - id: file-watch
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.file.watch.FileWatchComponent
-    camel-quarkus-rest-openapi:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-rest-openapi
-      schemes:
-      - id: rest-openapi
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.rest.openapi.RestOpenApiComponent
-    camel-quarkus-jclouds:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jclouds
-      schemes:
-      - id: jclouds
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jclouds.JcloudsComponent
-    camel-quarkus-quickfix:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-quickfix
-      schemes:
-      - id: quickfix
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.quickfixj.QuickfixjComponent
-    camel-quarkus-solr:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-solr
-      schemes:
-      - id: solrCloud
-        http: false
-        passive: false
-      - id: solr
-        http: false
-        passive: false
-      - id: solrs
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.solr.SolrComponent
-    camel-quarkus-johnzon:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-johnzon
-      dataformats:
-      - json-johnzon
-      javaTypes:
-      - org.apache.camel.component.johnzon.JohnzonDataFormat
-    camel-quarkus-fop:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-fop
-      schemes:
-      - id: fop
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.fop.FopComponent
-    camel-quarkus-saga:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-saga
-      schemes:
-      - id: saga
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.saga.SagaComponent
-    camel-quarkus-beanstalk:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-beanstalk
-      schemes:
-      - id: beanstalk
-        http: false
-        passive: false
-      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
-      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: rest
-        http: true
-        passive: false
-      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: xmlsecurity-verify
-        http: false
-        passive: false
-      dataformats:
-      - secureXML
-      javaTypes:
-      - 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-azure
-      schemes:
-      - id: azure-queue
-        http: false
-        passive: false
-      - id: azure-blob
-        http: false
-        passive: false
-      javaTypes:
-      - 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-aws-translate
-      schemes:
-      - id: aws-translate
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.translate.TranslateComponent
-    camel-quarkus-chatscript:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-chatscript
-      schemes:
-      - id: chatscript
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.chatscript.ChatScriptComponent
-    camel-quarkus-rabbitmq:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-rabbitmq
-      schemes:
-      - id: rabbitmq
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.rabbitmq.RabbitMQComponent
-    camel-quarkus-reactive-streams:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-reactive-streams
-      schemes:
-      - id: reactive-streams
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.reactive.streams.ReactiveStreamsComponent
-    camel-quarkus-azure-storage-queue:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-azure-storage-queue
-      schemes:
-      - id: azure-storage-queue
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.azure.storage.queue.QueueComponent
-    camel-quarkus-cron:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-cron
-      schemes:
-      - id: cron
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.cron.CronComponent
-    camel-quarkus-mongodb-gridfs:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-mongodb-gridfs
-      schemes:
-      - id: mongodb-gridfs
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.mongodb.gridfs.GridFsComponent
-    camel-quarkus-ignite:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ignite
-      schemes:
-      - id: ignite-messaging
-        http: false
-        passive: false
-      - id: ignite-compute
-        http: false
-        passive: false
-      - id: ignite-cache
-        http: false
-        passive: false
-      - id: ignite-idgen
-        http: false
-        passive: false
-      - id: ignite-set
-        http: false
-        passive: false
-      - id: ignite-queue
-        http: false
-        passive: false
-      - id: ignite-events
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.ignite.cache.IgniteCacheComponent
-      - org.apache.camel.component.ignite.events.IgniteEventsComponent
-      - org.apache.camel.component.ignite.compute.IgniteComputeComponent
-      - 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
-    camel-quarkus-web3j:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-web3j
-      schemes:
-      - id: web3j
-        http: false
-        passive: false
-      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
-      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.ldif.LdifComponent
-    camel-quarkus-xml-jaxp:
-      groupId: org.apache.camel.quarkus
-      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: corda
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.corda.CordaComponent
-    camel-quarkus-github:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-github
-      schemes:
-      - id: github
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.github.GitHubComponent
-    camel-quarkus-aws2-eventbridge:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-eventbridge
-      schemes:
-      - id: aws2-eventbridge
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.eventbridge.EventbridgeComponent
-    camel-quarkus-xmpp:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-xmpp
-      schemes:
-      - id: xmpp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.xmpp.XmppComponent
-    camel-quarkus-aws-lambda:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-lambda
-      schemes:
-      - id: aws-lambda
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.lambda.LambdaComponent
-    camel-quarkus-minio:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-minio
-      schemes:
-      - id: minio
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.minio.MinioComponent
-    camel-quarkus-atlasmap:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-atlasmap
-      schemes:
-      - id: atlasmap
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.atlasmap.AtlasMapComponent
-    camel-quarkus-aws2-sts:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-sts
-      schemes:
-      - id: aws2-sts
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.sts.STS2Component
-    camel-quarkus-tarfile:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-tarfile
-      dataformats:
-      - tarfile
-      javaTypes:
-      - org.apache.camel.dataformat.tarfile.TarFileDataFormat
-    camel-quarkus-avro:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-avro
-      dataformats:
-      - avro
-      javaTypes:
-      - org.apache.camel.dataformat.avro.AvroDataFormat
-    camel-quarkus-msv:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-msv
-      schemes:
-      - id: msv
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.validator.msv.MsvComponent
-    camel-quarkus-spark:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-spark
-      schemes:
-      - id: spark
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.spark.SparkComponent
-    camel-quarkus-saxon:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-saxon
-      schemes:
-      - id: xquery
-        http: false
-        passive: false
-      languages:
-      - xquery
-      javaTypes:
-      - org.apache.camel.component.xquery.XQueryComponent
-      - org.apache.camel.language.xquery.XQueryLanguage
-    camel-quarkus-caffeine:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-caffeine
-      schemes:
-      - id: caffeine-loadcache
-        http: false
-        passive: false
-      - id: caffeine-cache
-        http: false
-        passive: false
-      javaTypes:
-      - 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-elasticsearch-rest
-      schemes:
-      - id: elasticsearch-rest
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.elasticsearch.ElasticsearchComponent
-    camel-quarkus-bean-validator:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-bean-validator
-      schemes:
-      - id: bean-validator
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.bean.validator.BeanValidatorComponent
-    camel-quarkus-jira:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jira
-      schemes:
-      - id: jira
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jira.JiraComponent
-    camel-quarkus-sql:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-sql
-      schemes:
-      - id: sql
-        http: false
-        passive: false
-      - id: sql-stored
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.sql.stored.SqlStoredComponent
-      - org.apache.camel.component.sql.SqlComponent
-    camel-quarkus-ehcache:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ehcache
-      schemes:
-      - id: ehcache
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.ehcache.EhcacheComponent
-    camel-quarkus-aws2-iam:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-iam
-      schemes:
-      - id: aws2-iam
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.iam.IAM2Component
-    camel-quarkus-velocity:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-velocity
-      schemes:
-      - id: velocity
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.velocity.VelocityComponent
-    camel-quarkus-core:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-core
-      languages:
-      - file
-      - header
-      - simple
-      - ref
-      - constant
-      - csimple
-      - exchangeProperty
-      - tokenize
-      javaTypes:
-      - 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
-      - org.apache.camel.language.ref.RefLanguage
-      - org.apache.camel.language.simple.FileLanguage
-    camel-quarkus-debezium-mysql:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-debezium-mysql
-      schemes:
-      - id: debezium-mysql
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.debezium.DebeziumMySqlComponent
-    camel-quarkus-jcr:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jcr
-      schemes:
-      - id: jcr
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jcr.JcrComponent
-    camel-quarkus-hdfs:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-hdfs
-      schemes:
-      - id: hdfs
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.hdfs.HdfsComponent
-    camel-quarkus-kudu:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-kudu
-      schemes:
-      - id: kudu
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.kudu.KuduComponent
-    camel-quarkus-jooq:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jooq
-      schemes:
-      - id: jooq
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jooq.JooqComponent
-    camel-quarkus-jsonpath:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jsonpath
-      languages:
-      - jsonpath
-      javaTypes:
-      - org.apache.camel.jsonpath.JsonPathLanguage
-    camel-quarkus-hl7:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-hl7
-      languages:
-      - hl7terser
-      dataformats:
-      - hl7
-      javaTypes:
-      - org.apache.camel.component.hl7.Hl7TerserLanguage
-      - org.apache.camel.component.hl7.HL7DataFormat
-    camel-quarkus-disruptor:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-disruptor
-      schemes:
-      - id: disruptor
-        http: false
-        passive: false
-      - id: disruptor-vm
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.disruptor.vm.DisruptorVmComponent
-      - org.apache.camel.component.disruptor.DisruptorComponent
-    camel-quarkus-graphql:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-graphql
-      schemes:
-      - id: graphql
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.graphql.GraphqlComponent
-    camel-quarkus-log:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-log
-      schemes:
-      - id: log
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.log.LogComponent
-    camel-quarkus-ahc:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ahc
-      schemes:
-      - id: ahc
-        http: true
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.ahc.AhcComponent
-    camel-quarkus-milo:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-milo
-      schemes:
-      - id: milo-server
-        http: false
-        passive: false
-      - id: milo-client
-        http: false
-        passive: false
-      javaTypes:
-      - 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-atomix
-      schemes:
-      - id: atomix-multimap
-        http: false
-        passive: false
-      - id: atomix-map
-        http: false
-        passive: false
-      - id: atomix-queue
-        http: false
-        passive: false
-      - id: atomix-set
-        http: false
-        passive: false
-      - id: atomix-messaging
-        http: false
-        passive: false
-      - id: atomix-value
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.atomix.client.queue.AtomixQueueComponent
-      - 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
-    camel-quarkus-fhir:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-fhir
-      schemes:
-      - id: fhir
-        http: false
-        passive: false
-      dataformats:
-      - fhirXml
-      - fhirJson
-      javaTypes:
-      - org.apache.camel.component.fhir.FhirXmlDataFormat
-      - org.apache.camel.component.fhir.FhirJsonDataFormat
-      - org.apache.camel.component.fhir.FhirComponent
-    camel-quarkus-csv:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-csv
-      dataformats:
-      - csv
-      javaTypes:
-      - org.apache.camel.dataformat.csv.CsvDataFormat
-    camel-quarkus-aws2-kms:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-kms
-      schemes:
-      - id: aws2-kms
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.kms.KMS2Component
-    camel-quarkus-lucene:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-lucene
-      schemes:
-      - id: lucene
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.lucene.LuceneComponent
-    camel-quarkus-splunk-hec:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-splunk-hec
-      schemes:
-      - id: splunk-hec
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.splunkhec.SplunkHECComponent
-    camel-quarkus-aws-ecs:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-ecs
-      schemes:
-      - id: aws-ecs
-        http: false
-        passive: false
-      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.jbpm.JBPMComponent
-    camel-quarkus-salesforce:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-salesforce
-      schemes:
-      - id: salesforce
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.salesforce.SalesforceComponent
-    camel-quarkus-jcache:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jcache
-      schemes:
-      - id: jcache
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jcache.JCacheComponent
-    camel-quarkus-vertx-websocket:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-vertx-websocket
-      schemes:
-      - id: vertx-websocket
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.vertx.websocket.VertxWebsocketComponent
-    camel-quarkus-google-calendar:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-google-calendar
-      schemes:
-      - id: google-calendar
-        http: false
-        passive: false
-      - id: google-calendar-stream
-        http: false
-        passive: false
-      javaTypes:
-      - 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-avro-rpc
-      schemes:
-      - id: avro
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.avro.AvroComponent
-    camel-quarkus-browse:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-browse
-      schemes:
-      - id: browse
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.browse.BrowseComponent
-    camel-quarkus-stream:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-stream
-      schemes:
-      - id: stream
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.stream.StreamComponent
-    camel-quarkus-kafka:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-kafka
-      schemes:
-      - id: kafka
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.kafka.KafkaComponent
-    camel-quarkus-xslt-saxon:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-xslt-saxon
-      schemes:
-      - id: xslt-saxon
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.xslt.saxon.XsltSaxonComponent
-    camel-quarkus-ssh:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ssh
-      schemes:
-      - id: ssh
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.ssh.SshComponent
-    camel-quarkus-tika:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-tika
-      schemes:
-      - id: tika
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.tika.TikaComponent
-    camel-quarkus-coap:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-coap
-      schemes:
-      - id: coaps
-        http: false
-        passive: false
-      - id: coap+tcp
-        http: false
-        passive: false
-      - id: coap
-        http: false
-        passive: false
-      - id: coaps+tcp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.coap.CoAPComponent
-    camel-quarkus-aws2-mq:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-mq
-      schemes:
-      - id: aws2-mq
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.mq.MQ2Component
-    camel-quarkus-beanio:
-      groupId: org.apache.camel.quarkus
-      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: scp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.scp.ScpComponent
-    camel-quarkus-irc:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-irc
-      schemes:
-      - id: irc
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.irc.IrcComponent
-    camel-quarkus-mllp:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-mllp
-      schemes:
-      - id: mllp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.mllp.MllpComponent
-    camel-quarkus-ahc-ws:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ahc-ws
-      schemes:
-      - id: ahc-wss
-        http: false
-        passive: false
-      - id: ahc-ws
-        http: true
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.ahc.ws.WsComponent
-    camel-quarkus-aws2-translate:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-translate
-      schemes:
-      - id: aws2-translate
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.translate.Translate2Component
-    camel-quarkus-vertx-http:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-vertx-http
-      schemes:
-      - id: vertx-http
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.vertx.http.VertxHttpComponent
-    camel-quarkus-wordpress:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-wordpress
-      schemes:
-      - id: wordpress
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.wordpress.WordpressComponent
-    camel-quarkus-box:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-box
-      schemes:
-      - id: box
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.box.BoxComponent
-    camel-quarkus-hazelcast:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-hazelcast
-      schemes:
-      - 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: hazelcast-list
-        http: false
-        passive: false
-      - id: hazelcast-queue
-        http: false
-        passive: false
-      - id: hazelcast-set
-        http: false
-        passive: false
-      - id: hazelcast-map
-        http: false
-        passive: false
-      - id: hazelcast-seda
-        http: false
-        passive: false
-      - id: hazelcast-multimap
-        http: false
-        passive: false
-      javaTypes:
-      - 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
-      - org.apache.camel.component.hazelcast.seda.HazelcastSedaComponent
-    camel-quarkus-aws2-ses:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-ses
-      schemes:
-      - id: aws2-ses
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.ses.Ses2Component
-    camel-quarkus-cmis:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-cmis
-      schemes:
-      - id: cmis
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.cmis.CMISComponent
-    camel-quarkus-google-pubsub:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-google-pubsub
-      schemes:
-      - id: google-pubsub
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.google.pubsub.GooglePubsubComponent
-    camel-quarkus-printer:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-printer
-      schemes:
-      - id: lpr
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.printer.PrinterComponent
-    camel-quarkus-jackson:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jackson
-      dataformats:
-      - json-jackson
-      javaTypes:
-      - org.apache.camel.component.jackson.JacksonDataFormat
-    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-ftp:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ftp
-      schemes:
-      - id: ftps
-        http: false
-        passive: false
-      - id: sftp
-        http: false
-        passive: false
-      - id: ftp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.file.remote.FtpsComponent
-      - org.apache.camel.component.file.remote.SftpComponent
-      - org.apache.camel.component.file.remote.FtpComponent
-    camel-quarkus-google-sheets:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-google-sheets
-      schemes:
-      - id: google-sheets-stream
-        http: false
-        passive: false
-      - id: google-sheets
-        http: false
-        passive: false
-      javaTypes:
-      - 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-stomp
-      schemes:
-      - id: stomp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.stomp.StompComponent
-    camel-quarkus-stringtemplate:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-stringtemplate
-      schemes:
-      - id: string-template
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.stringtemplate.StringTemplateComponent
-    camel-quarkus-aws2-lambda:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-lambda
-      schemes:
-      - id: aws2-lambda
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.lambda.Lambda2Component
-    camel-k-cron:
+      - org.apache.camel.component.atmos.AtmosComponent
+    camel-k-kamelet-reify:
       groupId: org.apache.camel.k
-      artifactId: camel-k-cron
+      artifactId: camel-k-kamelet-reify
       schemes:
-      - id: cron
+      - id: wrap
         http: false
         passive: false
-    camel-quarkus-pdf:
+    camel-quarkus-xchange:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-pdf
+      artifactId: camel-quarkus-xchange
       schemes:
-      - id: pdf
+      - id: xchange
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.pdf.PdfComponent
-    camel-quarkus-kubernetes:
+      - org.apache.camel.component.xchange.XChangeComponent
+    camel-quarkus-ldap:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-kubernetes
+      artifactId: camel-quarkus-ldap
       schemes:
-      - id: kubernetes-namespaces
-        http: false
-        passive: false
-      - id: kubernetes-nodes
-        http: false
-        passive: false
-      - 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
-      - id: openshift-builds
-        http: false
-        passive: false
-      - id: kubernetes-custom-resources
+      - id: ldap
         http: false
         passive: false
       javaTypes:
-      - 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
-      - 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
-    camel-quarkus-aws2-athena:
+      - org.apache.camel.component.ldap.LdapComponent
+    camel-quarkus-sjms2:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-athena
+      artifactId: camel-quarkus-sjms2
       schemes:
-      - id: aws2-athena
+      - id: sjms2
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.aws2.athena.Athena2Component
-    camel-quarkus-cm-sms:
+      - org.apache.camel.component.sjms2.Sjms2Component
+    camel-quarkus-zookeeper:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-cm-sms
+      artifactId: camel-quarkus-zookeeper
       schemes:
-      - id: cm-sms
+      - id: zookeeper
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.cm.CMComponent
-    camel-quarkus-crypto:
+      - org.apache.camel.component.zookeeper.ZooKeeperComponent
+    camel-quarkus-olingo4:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-crypto
+      artifactId: camel-quarkus-olingo4
       schemes:
-      - id: crypto
+      - id: olingo4
         http: false
         passive: false
-      dataformats:
-      - crypto
-      - pgp
       javaTypes:
-      - org.apache.camel.converter.crypto.CryptoDataFormat
-      - org.apache.camel.component.crypto.DigitalSignatureComponent
-      - org.apache.camel.converter.crypto.PGPDataFormat
-    camel-quarkus-nagios:
+      - org.apache.camel.component.olingo4.Olingo4Component
+    camel-quarkus-aws-sqs:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-nagios
+      artifactId: camel-quarkus-aws-sqs
       schemes:
-      - id: nagios
+      - id: aws-sqs
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.nagios.NagiosComponent
-    camel-quarkus-bonita:
+      - org.apache.camel.component.aws.sqs.SqsComponent
+    camel-quarkus-braintree:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-bonita
+      artifactId: camel-quarkus-braintree
       schemes:
-      - id: bonita
+      - id: braintree
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.bonita.BonitaComponent
-    camel-quarkus-djl:
+      - org.apache.camel.component.braintree.BraintreeComponent
+    camel-quarkus-zendesk:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-djl
+      artifactId: camel-quarkus-zendesk
       schemes:
-      - id: djl
+      - id: zendesk
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.djl.DJLComponent
-    camel-quarkus-mustache:
+      - org.apache.camel.component.zendesk.ZendeskComponent
+    camel-quarkus-twilio:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-mustache
+      artifactId: camel-quarkus-twilio
       schemes:
-      - id: mustache
+      - id: twilio
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.mustache.MustacheComponent
-    camel-quarkus-master:
+      - org.apache.camel.component.twilio.TwilioComponent
+    camel-quarkus-activemq:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-master
+      artifactId: camel-quarkus-activemq
       schemes:
-      - id: master
+      - id: activemq
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.master.MasterComponent
-    camel-k-master:
-      groupId: org.apache.camel.k
-      artifactId: camel-k-master
+      - org.apache.camel.component.activemq.ActiveMQComponent
+    camel-quarkus-nitrite:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-nitrite
       schemes:
-      - id: master
+      - id: nitrite
         http: false
         passive: false
-    camel-quarkus-aws2-ec2:
+      javaTypes:
+      - org.apache.camel.component.nitrite.NitriteComponent
+    camel-quarkus-seda:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-ec2
+      artifactId: camel-quarkus-seda
       schemes:
-      - id: aws2-ec2
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.ec2.AWS2EC2Component
-    camel-quarkus-snmp:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-snmp
-      schemes:
-      - id: snmp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.snmp.SnmpComponent
-    camel-quarkus-barcode:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-barcode
-      dataformats:
-      - barcode
-      javaTypes:
-      - org.apache.camel.dataformat.barcode.BarcodeDataFormat
-    camel-quarkus-openstack:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-openstack
-      schemes:
-      - id: openstack-glance
-        http: false
-        passive: false
-      - id: openstack-nova
-        http: false
-        passive: false
-      - id: openstack-cinder
-        http: false
-        passive: false
-      - id: openstack-keystone
-        http: false
-        passive: false
-      - id: openstack-neutron
-        http: false
-        passive: false
-      - id: openstack-swift
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.openstack.swift.SwiftComponent
-      - org.apache.camel.component.openstack.nova.NovaComponent
-      - 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
-    camel-quarkus-aws-kinesis:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-kinesis
-      schemes:
-      - id: aws-kinesis
-        http: false
-        passive: false
-      - id: aws-kinesis-firehose
-        http: false
-        passive: false
-      javaTypes:
-      - 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-git
-      schemes:
-      - id: git
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.git.GitComponent
-    camel-quarkus-servlet:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-servlet
-      schemes:
-      - id: servlet
-        http: true
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.servlet.ServletComponent
-    camel-quarkus-freemarker:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-freemarker
-      schemes:
-      - id: freemarker
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.freemarker.FreemarkerComponent
-    camel-quarkus-soap:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-soap
-      dataformats:
-      - soapjaxb
-      javaTypes:
-      - org.apache.camel.dataformat.soap.SoapJaxbDataFormat
-    camel-quarkus-arangodb:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-arangodb
-      schemes:
-      - id: arangodb
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.arangodb.ArangoDbComponent
-    camel-quarkus-google-mail:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-google-mail
-      schemes:
-      - id: google-mail
-        http: false
-        passive: false
-      - id: google-mail-stream
-        http: false
-        passive: false
-      javaTypes:
-      - 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-websocket-jsr356
-      schemes:
-      - id: websocket-jsr356
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.websocket.jsr356.JSR356WebSocketComponent
-    camel-quarkus-lumberjack:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-lumberjack
-      schemes:
-      - id: lumberjack
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.lumberjack.LumberjackComponent
-    camel-quarkus-json-validator:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-json-validator
-      schemes:
-      - id: json-validator
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jsonvalidator.JsonValidatorComponent
-    camel-quarkus-aws2-s3:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-s3
-      schemes:
-      - id: aws2-s3
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.s3.AWS2S3Component
-    camel-quarkus-dropbox:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-dropbox
-      schemes:
-      - id: dropbox
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.dropbox.DropboxComponent
-    camel-quarkus-google-bigquery:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-google-bigquery
-      schemes:
-      - id: google-bigquery
-        http: false
-        passive: false
-      - id: google-bigquery-sql
-        http: false
-        passive: false
-      javaTypes:
-      - 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-mail
-      schemes:
-      - id: pop3s
-        http: false
-        passive: false
-      - 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
-      dataformats:
-      - mime-multipart
-      javaTypes:
-      - 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-platform-http
-      schemes:
-      - id: platform-http
-        http: true
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.platform.http.PlatformHttpComponent
-    camel-quarkus-timer:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-timer
-      schemes:
-      - id: timer
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.timer.TimerComponent
-    camel-quarkus-digitalocean:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-digitalocean
-      schemes:
-      - id: digitalocean
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.digitalocean.DigitalOceanComponent
-    camel-quarkus-couchbase:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-couchbase
-      schemes:
-      - id: couchbase
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.couchbase.CouchbaseComponent
-    camel-quarkus-aws-sns:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-sns
-      schemes:
-      - id: aws-sns
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.sns.SnsComponent
-    camel-quarkus-slack:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-slack
-      schemes:
-      - id: slack
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.slack.SlackComponent
-    camel-quarkus-flatpack:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-flatpack
-      schemes:
-      - id: flatpack
-        http: false
-        passive: false
-      dataformats:
-      - flatpack
-      javaTypes:
-      - org.apache.camel.component.flatpack.FlatpackComponent
-      - org.apache.camel.dataformat.flatpack.FlatpackDataFormat
-    camel-quarkus-zipfile:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-zipfile
-      dataformats:
-      - zipfile
-      javaTypes:
-      - org.apache.camel.dataformat.zipfile.ZipFileDataFormat
-    camel-quarkus-aws2-ecs:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-ecs
-      schemes:
-      - id: aws2-ecs
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.ecs.ECS2Component
-    camel-quarkus-netty-http:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-netty-http
-      schemes:
-      - id: netty-http
-        http: true
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.netty.http.NettyHttpComponent
-    camel-quarkus-influxdb:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-influxdb
-      schemes:
-      - id: influxdb
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.influxdb.InfluxDbComponent
-    camel-k-kamelet:
-      groupId: org.apache.camel.k
-      artifactId: camel-k-kamelet
-      schemes:
-      - id: kamelet
+      - id: seda
         http: false
         passive: true
-    camel-quarkus-tagsoup:
+      javaTypes:
+      - org.apache.camel.component.seda.SedaComponent
+    camel-quarkus-aws-eks:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-tagsoup
+      artifactId: camel-quarkus-aws-eks
+      schemes:
+      - id: aws-eks
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.eks.EKSComponent
+    camel-quarkus-dozer:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-dozer
+      schemes:
+      - id: dozer
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.dozer.DozerComponent
+    camel-quarkus-splunk:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-splunk
+      schemes:
+      - id: splunk
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.splunk.SplunkComponent
+    camel-quarkus-google-drive:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-google-drive
+      schemes:
+      - id: google-drive
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.google.drive.GoogleDriveComponent
+    camel-quarkus-sjms:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-sjms
+      schemes:
+      - id: sjms
+        http: false
+        passive: false
+      - id: sjms-batch
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.sjms.batch.SjmsBatchComponent
+      - org.apache.camel.component.sjms.SjmsComponent
+    camel-quarkus-ical:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ical
       dataformats:
-      - tidyMarkup
+      - ical
       javaTypes:
-      - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat
-    camel-quarkus-protobuf:
+      - org.apache.camel.component.ical.ICalDataFormat
+    camel-quarkus-cassandraql:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-protobuf
+      artifactId: camel-quarkus-cassandraql
+      schemes:
+      - id: cql
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.cassandra.CassandraComponent
+    camel-quarkus-jgroups-raft:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jgroups-raft
+      schemes:
+      - id: jgroups-raft
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jgroups.raft.JGroupsRaftComponent
+    camel-quarkus-mongodb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-mongodb
+      schemes:
+      - id: mongodb
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.mongodb.MongoDbComponent
+    camel-quarkus-dns:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-dns
+      schemes:
+      - id: dns
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-chunk
+      schemes:
+      - id: chunk
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.chunk.ChunkComponent
+    camel-quarkus-cometd:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-cometd
+      schemes:
+      - id: cometds
+        http: false
+        passive: false
+      - id: cometd
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.cometd.CometdComponent
+    camel-quarkus-drill:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-drill
+      schemes:
+      - id: drill
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.drill.DrillComponent
+    camel-quarkus-soroush:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-soroush
+      schemes:
+      - id: soroush
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.soroushbot.component.SoroushBotComponent
+    camel-quarkus-atom:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-atom
+      schemes:
+      - id: atom
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.atom.AtomComponent
+    camel-quarkus-pgevent:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-pgevent
+      schemes:
+      - id: pgevent
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.pgevent.PgEventComponent
+    camel-quarkus-geocoder:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-geocoder
+      schemes:
+      - id: geocoder
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.geocoder.GeoCoderComponent
+    camel-quarkus-gson:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-gson
       dataformats:
-      - protobuf
+      - json-gson
       javaTypes:
-      - org.apache.camel.dataformat.protobuf.ProtobufDataFormat
-    camel-quarkus-azure-storage-blob:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-azure-storage-blob
-      schemes:
-      - id: azure-storage-blob
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.azure.storage.blob.BlobComponent
-    camel-quarkus-asterisk:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-asterisk
-      schemes:
-      - id: asterisk
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.asterisk.AsteriskComponent
-    camel-quarkus-microprofile-metrics:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-microprofile-metrics
-      schemes:
-      - id: microprofile-metrics
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent
-    camel-quarkus-nats:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-nats
-      schemes:
-      - id: nats
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.nats.NatsComponent
-    camel-quarkus-infinispan:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-infinispan
-      schemes:
-      - id: infinispan
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.infinispan.InfinispanComponent
-    camel-quarkus-base64:
-      groupId: org.apache.camel.quarkus
-      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: exec
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.exec.ExecComponent
+      - org.apache.camel.component.gson.GsonDataFormat
     camel-quarkus-rss:
       groupId: org.apache.camel.quarkus
       artifactId: camel-quarkus-rss
@@ -2030,415 +383,2426 @@
       dataformats:
       - rss
       javaTypes:
-      - org.apache.camel.component.rss.RssComponent
       - org.apache.camel.dataformat.rss.RssDataFormat
-    camel-quarkus-gson:
+      - org.apache.camel.component.rss.RssComponent
+    camel-quarkus-exec:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-gson
+      artifactId: camel-quarkus-exec
+      schemes:
+      - id: exec
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.exec.ExecComponent
+    camel-quarkus-base64:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-base64
       dataformats:
-      - json-gson
+      - base64
       javaTypes:
-      - org.apache.camel.component.gson.GsonDataFormat
-    camel-quarkus-geocoder:
+      - org.apache.camel.dataformat.base64.Base64DataFormat
+    camel-quarkus-infinispan:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-geocoder
+      artifactId: camel-quarkus-infinispan
       schemes:
-      - id: geocoder
+      - id: infinispan
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.geocoder.GeoCoderComponent
-    camel-quarkus-pgevent:
+      - org.apache.camel.component.infinispan.InfinispanComponent
+    camel-quarkus-nats:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-pgevent
+      artifactId: camel-quarkus-nats
       schemes:
-      - id: pgevent
+      - id: nats
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.pgevent.PgEventComponent
-    camel-quarkus-atom:
+      - org.apache.camel.component.nats.NatsComponent
+    camel-quarkus-microprofile-metrics:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-atom
+      artifactId: camel-quarkus-microprofile-metrics
       schemes:
-      - id: atom
+      - id: microprofile-metrics
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.atom.AtomComponent
-    camel-quarkus-soroush:
+      - org.apache.camel.component.microprofile.metrics.MicroProfileMetricsComponent
+    camel-quarkus-asterisk:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-soroush
+      artifactId: camel-quarkus-asterisk
       schemes:
-      - id: soroush
+      - id: asterisk
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.soroushbot.component.SoroushBotComponent
-    camel-quarkus-drill:
+      - org.apache.camel.component.asterisk.AsteriskComponent
+    camel-quarkus-azure-storage-blob:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-drill
+      artifactId: camel-quarkus-azure-storage-blob
       schemes:
-      - id: drill
+      - id: azure-storage-blob
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.drill.DrillComponent
-    camel-quarkus-cometd:
+      - org.apache.camel.component.azure.storage.blob.BlobComponent
+    camel-quarkus-protobuf:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-cometd
-      schemes:
-      - id: cometd
-        http: false
-        passive: false
-      - id: cometds
-        http: false
-        passive: false
+      artifactId: camel-quarkus-protobuf
+      dataformats:
+      - protobuf
       javaTypes:
-      - org.apache.camel.component.cometd.CometdComponent
-    camel-quarkus-chunk:
+      - org.apache.camel.dataformat.protobuf.ProtobufDataFormat
+    camel-quarkus-tagsoup:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-chunk
-      schemes:
-      - id: chunk
-        http: false
-        passive: false
+      artifactId: camel-quarkus-tagsoup
+      dataformats:
+      - tidyMarkup
       javaTypes:
-      - org.apache.camel.component.chunk.ChunkComponent
-    camel-k-webhook:
+      - org.apache.camel.dataformat.tagsoup.TidyMarkupDataFormat
+    camel-k-kamelet:
       groupId: org.apache.camel.k
-      artifactId: camel-k-webhook
+      artifactId: camel-k-kamelet
       schemes:
-      - id: webhook
+      - id: kamelet
+        http: false
+        passive: true
+    camel-quarkus-influxdb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-influxdb
+      schemes:
+      - id: influxdb
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.influxdb.InfluxDbComponent
+    camel-quarkus-netty-http:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-netty-http
+      schemes:
+      - id: netty-http
         http: true
-        passive: true
-    camel-quarkus-dns:
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.netty.http.NettyHttpComponent
+    camel-quarkus-aws2-ecs:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-dns
+      artifactId: camel-quarkus-aws2-ecs
       schemes:
-      - id: dns
+      - id: aws2-ecs
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.dns.DnsComponent
-    camel-quarkus-mongodb:
+      - org.apache.camel.component.aws2.ecs.ECS2Component
+    camel-quarkus-zipfile:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-mongodb
-      schemes:
-      - id: mongodb
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.mongodb.MongoDbComponent
-    camel-quarkus-jgroups-raft:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jgroups-raft
-      schemes:
-      - id: jgroups-raft
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jgroups.raft.JGroupsRaftComponent
-    camel-quarkus-cassandraql:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-cassandraql
-      schemes:
-      - id: cql
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.cassandra.CassandraComponent
-    camel-quarkus-ical:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ical
+      artifactId: camel-quarkus-zipfile
       dataformats:
-      - ical
+      - zipfile
       javaTypes:
-      - org.apache.camel.component.ical.ICalDataFormat
-    camel-quarkus-sjms:
+      - org.apache.camel.dataformat.zipfile.ZipFileDataFormat
+    camel-quarkus-flatpack:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-sjms
+      artifactId: camel-quarkus-flatpack
       schemes:
-      - id: sjms-batch
+      - id: flatpack
         http: false
         passive: false
-      - id: sjms
+      dataformats:
+      - flatpack
+      javaTypes:
+      - org.apache.camel.dataformat.flatpack.FlatpackDataFormat
+      - org.apache.camel.component.flatpack.FlatpackComponent
+    camel-quarkus-slack:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-slack
+      schemes:
+      - id: slack
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.sjms.SjmsComponent
-      - org.apache.camel.component.sjms.batch.SjmsBatchComponent
-    camel-quarkus-google-drive:
+      - org.apache.camel.component.slack.SlackComponent
+    camel-quarkus-aws-sns:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-google-drive
+      artifactId: camel-quarkus-aws-sns
       schemes:
-      - id: google-drive
+      - id: aws-sns
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.google.drive.GoogleDriveComponent
-    camel-quarkus-splunk:
+      - org.apache.camel.component.aws.sns.SnsComponent
+    camel-quarkus-couchbase:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-splunk
+      artifactId: camel-quarkus-couchbase
       schemes:
-      - id: splunk
+      - id: couchbase
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.splunk.SplunkComponent
-    camel-quarkus-dozer:
+      - org.apache.camel.component.couchbase.CouchbaseComponent
+    camel-quarkus-digitalocean:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-dozer
+      artifactId: camel-quarkus-digitalocean
       schemes:
-      - id: dozer
+      - id: digitalocean
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.dozer.DozerComponent
-    camel-quarkus-aws-eks:
+      - org.apache.camel.component.digitalocean.DigitalOceanComponent
+    camel-quarkus-timer:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-eks
+      artifactId: camel-quarkus-timer
       schemes:
-      - id: aws-eks
+      - id: timer
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.aws.eks.EKSComponent
-    camel-quarkus-seda:
+      - org.apache.camel.component.timer.TimerComponent
+    camel-quarkus-platform-http:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-seda
+      artifactId: camel-quarkus-platform-http
       schemes:
-      - id: seda
-        http: false
-        passive: true
+      - id: platform-http
+        http: true
+        passive: false
       javaTypes:
-      - org.apache.camel.component.seda.SedaComponent
-    camel-quarkus-nitrite:
+      - org.apache.camel.component.platform.http.PlatformHttpComponent
+    camel-quarkus-mail:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-nitrite
+      artifactId: camel-quarkus-mail
       schemes:
-      - id: nitrite
+      - id: smtp
+        http: false
+        passive: false
+      - id: pop3
+        http: false
+        passive: false
+      - id: smtps
+        http: false
+        passive: false
+      - id: pop3s
+        http: false
+        passive: false
+      - id: imap
+        http: false
+        passive: false
+      - id: imaps
+        http: false
+        passive: false
+      dataformats:
+      - mime-multipart
+      javaTypes:
+      - org.apache.camel.component.mail.MailComponent
+      - org.apache.camel.dataformat.mime.multipart.MimeMultipartDataFormat
+    camel-quarkus-google-bigquery:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-google-bigquery
+      schemes:
+      - id: google-bigquery-sql
+        http: false
+        passive: false
+      - id: google-bigquery
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.nitrite.NitriteComponent
-    camel-quarkus-activemq:
+      - org.apache.camel.component.google.bigquery.GoogleBigQueryComponent
+      - org.apache.camel.component.google.bigquery.sql.GoogleBigQuerySQLComponent
+    camel-quarkus-dropbox:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-activemq
+      artifactId: camel-quarkus-dropbox
       schemes:
-      - id: activemq
+      - id: dropbox
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.activemq.ActiveMQComponent
-    camel-quarkus-twilio:
+      - org.apache.camel.component.dropbox.DropboxComponent
+    camel-quarkus-aws2-s3:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-twilio
+      artifactId: camel-quarkus-aws2-s3
       schemes:
-      - id: twilio
+      - id: aws2-s3
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.twilio.TwilioComponent
-    camel-quarkus-zendesk:
+      - org.apache.camel.component.aws2.s3.AWS2S3Component
+    camel-quarkus-json-validator:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-zendesk
+      artifactId: camel-quarkus-json-validator
       schemes:
-      - id: zendesk
+      - id: json-validator
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.zendesk.ZendeskComponent
-    camel-quarkus-braintree:
+      - org.apache.camel.component.jsonvalidator.JsonValidatorComponent
+    camel-quarkus-lumberjack:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-braintree
+      artifactId: camel-quarkus-lumberjack
       schemes:
-      - id: braintree
+      - id: lumberjack
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.braintree.BraintreeComponent
-    camel-quarkus-aws-sqs:
+      - org.apache.camel.component.lumberjack.LumberjackComponent
+    camel-quarkus-websocket-jsr356:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-sqs
+      artifactId: camel-quarkus-websocket-jsr356
       schemes:
-      - id: aws-sqs
+      - id: websocket-jsr356
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.aws.sqs.SqsComponent
-    camel-quarkus-olingo4:
+      - org.apache.camel.websocket.jsr356.JSR356WebSocketComponent
+    camel-quarkus-google-mail:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-olingo4
+      artifactId: camel-quarkus-google-mail
       schemes:
-      - id: olingo4
+      - id: google-mail-stream
+        http: false
+        passive: false
+      - id: google-mail
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.olingo4.Olingo4Component
-    camel-quarkus-zookeeper:
+      - 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-zookeeper
+      artifactId: camel-quarkus-arangodb
       schemes:
-      - id: zookeeper
+      - id: arangodb
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.zookeeper.ZooKeeperComponent
-    camel-quarkus-sjms2:
+      - org.apache.camel.component.arangodb.ArangoDbComponent
+    camel-quarkus-soap:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-sjms2
+      artifactId: camel-quarkus-soap
+      dataformats:
+      - soapjaxb
+      javaTypes:
+      - org.apache.camel.dataformat.soap.SoapJaxbDataFormat
+    camel-quarkus-freemarker:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-freemarker
       schemes:
-      - id: sjms2
+      - id: freemarker
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.sjms2.Sjms2Component
-    camel-quarkus-ldap:
+      - org.apache.camel.component.freemarker.FreemarkerComponent
+    camel-quarkus-servlet:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ldap
+      artifactId: camel-quarkus-servlet
       schemes:
-      - id: ldap
+      - id: servlet
+        http: true
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.servlet.ServletComponent
+    camel-quarkus-git:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-git
+      schemes:
+      - id: git
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.ldap.LdapComponent
-    camel-quarkus-xchange:
+      - org.apache.camel.component.git.GitComponent
+    camel-quarkus-aws-kinesis:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-xchange
+      artifactId: camel-quarkus-aws-kinesis
       schemes:
-      - id: xchange
+      - id: aws-kinesis-firehose
+        http: false
+        passive: false
+      - id: aws-kinesis
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.xchange.XChangeComponent
-    camel-k-kamelet-reify:
+      - org.apache.camel.component.aws.kinesis.KinesisComponent
+      - org.apache.camel.component.aws.firehose.KinesisFirehoseComponent
+    camel-quarkus-openstack:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-openstack
+      schemes:
+      - id: openstack-neutron
+        http: false
+        passive: false
+      - id: openstack-keystone
+        http: false
+        passive: false
+      - id: openstack-cinder
+        http: false
+        passive: false
+      - id: openstack-nova
+        http: false
+        passive: false
+      - id: openstack-glance
+        http: false
+        passive: false
+      - id: openstack-swift
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-barcode
+      dataformats:
+      - barcode
+      javaTypes:
+      - org.apache.camel.dataformat.barcode.BarcodeDataFormat
+    camel-quarkus-snmp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-snmp
+      schemes:
+      - id: snmp
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.ec2.AWS2EC2Component
+    camel-k-master:
       groupId: org.apache.camel.k
-      artifactId: camel-k-kamelet-reify
+      artifactId: camel-k-master
       schemes:
-      - id: wrap
+      - id: master
         http: false
         passive: false
-    camel-quarkus-atmos:
+    camel-quarkus-master:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-atmos
+      artifactId: camel-quarkus-master
       schemes:
-      - id: atmos
+      - id: master
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.atmos.AtmosComponent
-    camel-quarkus-as2:
+      - org.apache.camel.component.master.MasterComponent
+    camel-quarkus-mustache:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-as2
+      artifactId: camel-quarkus-mustache
       schemes:
-      - id: as2
+      - id: mustache
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.as2.AS2Component
-    camel-quarkus-etcd:
+      - org.apache.camel.component.mustache.MustacheComponent
+    camel-quarkus-djl:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-etcd
+      artifactId: camel-quarkus-djl
       schemes:
-      - id: etcd-keys
-        http: false
-        passive: false
-      - id: etcd-stats
-        http: false
-        passive: false
-      - id: etcd-watch
+      - id: djl
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.etcd.EtcdStatsComponent
-      - org.apache.camel.component.etcd.EtcdKeysComponent
-      - org.apache.camel.component.etcd.EtcdWatchComponent
-    camel-quarkus-quartz:
+      - org.apache.camel.component.djl.DJLComponent
+    camel-quarkus-bonita:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-quartz
+      artifactId: camel-quarkus-bonita
       schemes:
-      - id: quartz
+      - id: bonita
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.quartz.QuartzComponent
-    camel-quarkus-pg-replication-slot:
+      - org.apache.camel.component.bonita.BonitaComponent
+    camel-quarkus-nagios:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-pg-replication-slot
+      artifactId: camel-quarkus-nagios
       schemes:
-      - id: pg-replication-slot
+      - id: nagios
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.pg.replication.slot.PgReplicationSlotComponent
-    camel-quarkus-jms:
+      - org.apache.camel.component.nagios.NagiosComponent
+    camel-quarkus-crypto:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jms
+      artifactId: camel-quarkus-crypto
       schemes:
-      - id: jms
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jms.JmsComponent
-    camel-quarkus-thrift:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-thrift
-      schemes:
-      - id: thrift
+      - id: crypto
         http: false
         passive: false
       dataformats:
-      - thrift
+      - pgp
+      - crypto
       javaTypes:
-      - org.apache.camel.component.thrift.ThriftComponent
-      - org.apache.camel.dataformat.thrift.ThriftDataFormat
-    camel-quarkus-sip:
+      - org.apache.camel.component.crypto.DigitalSignatureComponent
+      - org.apache.camel.converter.crypto.CryptoDataFormat
+      - org.apache.camel.converter.crypto.PGPDataFormat
+    camel-quarkus-cm-sms:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-sip
+      artifactId: camel-quarkus-cm-sms
       schemes:
-      - id: sip
-        http: false
-        passive: false
-      - id: sips
+      - id: cm-sms
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.sip.SipComponent
-    camel-quarkus-aws2-cw:
+      - org.apache.camel.component.cm.CMComponent
+    camel-quarkus-aws2-athena:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-cw
+      artifactId: camel-quarkus-aws2-athena
       schemes:
-      - id: aws2-cw
+      - id: aws2-athena
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.aws2.cw.Cw2Component
-    camel-quarkus-asn1:
+      - org.apache.camel.component.aws2.athena.Athena2Component
+    camel-quarkus-kubernetes:
       groupId: org.apache.camel.quarkus
-      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
+      artifactId: camel-quarkus-kubernetes
       schemes:
-      - id: schematron
+      - 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
+      - id: kubernetes-persistent-volumes-claims
+        http: false
+        passive: false
+      - id: kubernetes-deployments
+        http: false
+        passive: false
+      - id: kubernetes-hpa
+        http: false
+        passive: false
+      - id: kubernetes-nodes
+        http: false
+        passive: false
+      - id: kubernetes-namespaces
+        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
       javaTypes:
-      - org.apache.camel.component.schematron.SchematronComponent
-    camel-quarkus-language:
+      - 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
+      - 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
+    camel-quarkus-pdf:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-language
+      artifactId: camel-quarkus-pdf
       schemes:
-      - id: language
+      - id: pdf
+        http: false
+        passive: false
+      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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-lambda
+      schemes:
+      - id: aws2-lambda
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.stringtemplate.StringTemplateComponent
+    camel-quarkus-stomp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-stomp
+      schemes:
+      - id: stomp
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.stomp.StompComponent
+    camel-quarkus-google-sheets:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-google-sheets
+      schemes:
+      - id: google-sheets
+        http: false
+        passive: false
+      - id: google-sheets-stream
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.google.sheets.stream.GoogleSheetsStreamComponent
+      - org.apache.camel.component.google.sheets.GoogleSheetsComponent
+    camel-quarkus-ftp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ftp
+      schemes:
+      - id: sftp
+        http: false
+        passive: false
+      - id: ftps
+        http: false
+        passive: false
+      - id: ftp
+        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.language.LanguageComponent
+      - 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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-printer
+      schemes:
+      - id: lpr
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.printer.PrinterComponent
+    camel-quarkus-google-pubsub:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-google-pubsub
+      schemes:
+      - id: google-pubsub
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.google.pubsub.GooglePubsubComponent
+    camel-quarkus-cmis:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-cmis
+      schemes:
+      - id: cmis
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.cmis.CMISComponent
+    camel-quarkus-aws2-ses:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-ses
+      schemes:
+      - id: aws2-ses
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.ses.Ses2Component
+    camel-quarkus-hazelcast:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-hazelcast
+      schemes:
+      - id: hazelcast-replicatedmap
+        http: false
+        passive: false
+      - id: hazelcast-topic
+        http: false
+        passive: false
+      - id: hazelcast-multimap
+        http: false
+        passive: false
+      - id: hazelcast-seda
+        http: false
+        passive: false
+      - id: hazelcast-map
+        http: false
+        passive: false
+      - id: hazelcast-set
+        http: false
+        passive: false
+      - id: hazelcast-queue
+        http: false
+        passive: false
+      - id: hazelcast-list
+        http: false
+        passive: false
+      - id: hazelcast-instance
+        http: false
+        passive: false
+      - id: hazelcast-ringbuffer
+        http: false
+        passive: false
+      - id: hazelcast-atomicvalue
+        http: false
+        passive: false
+      javaTypes:
+      - 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
+      - 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
+    camel-quarkus-box:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-box
+      schemes:
+      - id: box
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.box.BoxComponent
+    camel-quarkus-wordpress:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-wordpress
+      schemes:
+      - id: wordpress
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.wordpress.WordpressComponent
+    camel-quarkus-vertx-http:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-vertx-http
+      schemes:
+      - id: vertx-http
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.vertx.http.VertxHttpComponent
+    camel-quarkus-aws2-translate:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-translate
+      schemes:
+      - id: aws2-translate
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.translate.Translate2Component
+    camel-quarkus-ahc-ws:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ahc-ws
+      schemes:
+      - id: ahc-ws
+        http: true
+        passive: false
+      - id: ahc-wss
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ahc.ws.WsComponent
+    camel-quarkus-mllp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-mllp
+      schemes:
+      - id: mllp
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.mllp.MllpComponent
+    camel-quarkus-irc:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-irc
+      schemes:
+      - id: irc
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.irc.IrcComponent
+    camel-quarkus-jsch:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jsch
+      schemes:
+      - id: scp
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.scp.ScpComponent
+    camel-quarkus-beanio:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-beanio
+      dataformats:
+      - beanio
+      javaTypes:
+      - org.apache.camel.dataformat.beanio.BeanIODataFormat
+    camel-quarkus-aws2-mq:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-mq
+      schemes:
+      - id: aws2-mq
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.mq.MQ2Component
+    camel-quarkus-coap:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-coap
+      schemes:
+      - id: coap
+        http: false
+        passive: false
+      - id: coap+tcp
+        http: false
+        passive: false
+      - id: coaps
+        http: false
+        passive: false
+      - id: coaps+tcp
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.coap.CoAPComponent
+    camel-quarkus-tika:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-tika
+      schemes:
+      - id: tika
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.tika.TikaComponent
+    camel-quarkus-ssh:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ssh
+      schemes:
+      - id: ssh
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ssh.SshComponent
+    camel-quarkus-xslt-saxon:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xslt-saxon
+      schemes:
+      - id: xslt-saxon
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.xslt.saxon.XsltSaxonComponent
+    camel-quarkus-kafka:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-kafka
+      schemes:
+      - id: kafka
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.kafka.KafkaComponent
+    camel-quarkus-stream:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-stream
+      schemes:
+      - id: stream
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.stream.StreamComponent
+    camel-quarkus-browse:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-browse
+      schemes:
+      - id: browse
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.browse.BrowseComponent
+    camel-quarkus-avro-rpc:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-avro-rpc
+      schemes:
+      - id: avro
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.avro.AvroComponent
+    camel-quarkus-google-calendar:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-google-calendar
+      schemes:
+      - id: google-calendar-stream
+        http: false
+        passive: false
+      - id: google-calendar
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.google.calendar.GoogleCalendarComponent
+      - org.apache.camel.component.google.calendar.stream.GoogleCalendarStreamComponent
+    camel-quarkus-vertx-websocket:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-vertx-websocket
+      schemes:
+      - id: vertx-websocket
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.vertx.websocket.VertxWebsocketComponent
+    camel-quarkus-jcache:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jcache
+      schemes:
+      - id: jcache
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jcache.JCacheComponent
+    camel-quarkus-salesforce:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-salesforce
+      schemes:
+      - id: salesforce
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.salesforce.SalesforceComponent
+    camel-quarkus-jbpm:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jbpm
+      schemes:
+      - id: jbpm
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jbpm.JBPMComponent
+    camel-quarkus-aws-ecs:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-ecs
+      schemes:
+      - id: aws-ecs
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.ecs.ECSComponent
+    camel-quarkus-splunk-hec:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-splunk-hec
+      schemes:
+      - id: splunk-hec
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.splunkhec.SplunkHECComponent
+    camel-quarkus-lucene:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-lucene
+      schemes:
+      - id: lucene
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.lucene.LuceneComponent
+    camel-quarkus-aws2-kms:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-kms
+      schemes:
+      - id: aws2-kms
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.kms.KMS2Component
+    camel-quarkus-csv:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-csv
+      dataformats:
+      - csv
+      javaTypes:
+      - org.apache.camel.dataformat.csv.CsvDataFormat
+    camel-quarkus-fhir:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-fhir
+      schemes:
+      - id: fhir
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-atomix
+      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
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-milo
+      schemes:
+      - id: milo-client
+        http: false
+        passive: false
+      - id: milo-server
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.milo.server.MiloServerComponent
+      - org.apache.camel.component.milo.client.MiloClientComponent
+    camel-quarkus-ahc:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ahc
+      schemes:
+      - id: ahc
+        http: true
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ahc.AhcComponent
+    camel-quarkus-log:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-log
+      schemes:
+      - id: log
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.graphql.GraphqlComponent
+    camel-quarkus-disruptor:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-disruptor
+      schemes:
+      - id: disruptor-vm
+        http: false
+        passive: false
+      - id: disruptor
+        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
+        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
+        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
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jcr.JcrComponent
+    camel-quarkus-debezium-mysql:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-debezium-mysql
+      schemes:
+      - id: debezium-mysql
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.debezium.DebeziumMySqlComponent
+    camel-quarkus-core:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-core
+      languages:
+      - header
+      - file
+      - tokenize
+      - exchangeProperty
+      - csimple
+      - constant
+      - ref
+      - simple
+      javaTypes:
+      - 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
+      - org.apache.camel.language.ref.RefLanguage
+      - org.apache.camel.language.tokenizer.TokenizeLanguage
+      - org.apache.camel.language.property.ExchangePropertyLanguage
+    camel-quarkus-velocity:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-velocity
+      schemes:
+      - id: velocity
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.velocity.VelocityComponent
+    camel-quarkus-aws2-iam:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-iam
+      schemes:
+      - id: aws2-iam
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.iam.IAM2Component
+    camel-quarkus-ehcache:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ehcache
+      schemes:
+      - id: ehcache
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ehcache.EhcacheComponent
+    camel-quarkus-sql:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-sql
+      schemes:
+      - id: sql-stored
+        http: false
+        passive: false
+      - id: sql
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.sql.SqlComponent
+      - org.apache.camel.component.sql.stored.SqlStoredComponent
+    camel-quarkus-jira:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jira
+      schemes:
+      - id: jira
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jira.JiraComponent
+    camel-quarkus-bean-validator:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-bean-validator
+      schemes:
+      - id: bean-validator
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.bean.validator.BeanValidatorComponent
+    camel-quarkus-elasticsearch-rest:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-elasticsearch-rest
+      schemes:
+      - id: elasticsearch-rest
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.elasticsearch.ElasticsearchComponent
+    camel-quarkus-caffeine:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-caffeine
+      schemes:
+      - id: caffeine-cache
+        http: false
+        passive: false
+      - id: caffeine-loadcache
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.caffeine.load.CaffeineLoadCacheComponent
+      - org.apache.camel.component.caffeine.cache.CaffeineCacheComponent
+    camel-quarkus-saxon:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-saxon
+      schemes:
+      - id: xquery
+        http: false
+        passive: false
+      languages:
+      - xquery
+      javaTypes:
+      - org.apache.camel.language.xquery.XQueryLanguage
+      - org.apache.camel.component.xquery.XQueryComponent
+    camel-quarkus-spark:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-spark
+      schemes:
+      - id: spark
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.spark.SparkComponent
+    camel-quarkus-msv:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-msv
+      schemes:
+      - id: msv
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.validator.msv.MsvComponent
+    camel-quarkus-avro:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-avro
+      dataformats:
+      - avro
+      javaTypes:
+      - org.apache.camel.dataformat.avro.AvroDataFormat
+    camel-quarkus-tarfile:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-tarfile
+      dataformats:
+      - tarfile
+      javaTypes:
+      - org.apache.camel.dataformat.tarfile.TarFileDataFormat
+    camel-quarkus-aws2-sts:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-sts
+      schemes:
+      - id: aws2-sts
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.sts.STS2Component
+    camel-quarkus-atlasmap:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-atlasmap
+      schemes:
+      - id: atlasmap
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.atlasmap.AtlasMapComponent
+    camel-quarkus-minio:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-minio
+      schemes:
+      - id: minio
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.minio.MinioComponent
+    camel-quarkus-aws-lambda:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-lambda
+      schemes:
+      - id: aws-lambda
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.lambda.LambdaComponent
+    camel-quarkus-xmpp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xmpp
+      schemes:
+      - id: xmpp
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.xmpp.XmppComponent
+    camel-quarkus-aws2-eventbridge:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-eventbridge
+      schemes:
+      - id: aws2-eventbridge
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.eventbridge.EventbridgeComponent
+    camel-quarkus-github:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-github
+      schemes:
+      - id: github
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.github.GitHubComponent
+    camel-quarkus-corda:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-corda
+      schemes:
+      - id: corda
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.corda.CordaComponent
+    camel-quarkus-xml-jaxp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xml-jaxp
+      languages:
+      - xtokenize
+      javaTypes:
+      - org.apache.camel.language.xtokenizer.XMLTokenizeLanguage
+    camel-quarkus-ldif:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ldif
+      schemes:
+      - id: ldif
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ldif.LdifComponent
+    camel-quarkus-aws-ec2:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-ec2
+      schemes:
+      - id: aws-ec2
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.ec2.EC2Component
+    camel-quarkus-web3j:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-web3j
+      schemes:
+      - id: web3j
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.web3j.Web3jComponent
+    camel-quarkus-ignite:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ignite
+      schemes:
+      - id: ignite-queue
+        http: false
+        passive: false
+      - id: ignite-set
+        http: false
+        passive: false
+      - id: ignite-idgen
+        http: false
+        passive: false
+      - id: ignite-cache
+        http: false
+        passive: false
+      - id: ignite-compute
+        http: false
+        passive: false
+      - id: ignite-messaging
+        http: false
+        passive: false
+      - id: ignite-events
+        http: false
+        passive: false
+      javaTypes:
+      - 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
+      - org.apache.camel.component.ignite.events.IgniteEventsComponent
+      - org.apache.camel.component.ignite.cache.IgniteCacheComponent
+    camel-quarkus-mongodb-gridfs:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-mongodb-gridfs
+      schemes:
+      - id: mongodb-gridfs
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.mongodb.gridfs.GridFsComponent
+    camel-quarkus-cron:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-cron
+      schemes:
+      - id: cron
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.cron.CronComponent
+    camel-quarkus-azure-storage-queue:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-azure-storage-queue
+      schemes:
+      - id: azure-storage-queue
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.azure.storage.queue.QueueComponent
+    camel-quarkus-reactive-streams:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-reactive-streams
+      schemes:
+      - id: reactive-streams
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.reactive.streams.ReactiveStreamsComponent
+    camel-quarkus-rabbitmq:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-rabbitmq
+      schemes:
+      - id: rabbitmq
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.rabbitmq.RabbitMQComponent
+    camel-quarkus-chatscript:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-chatscript
+      schemes:
+      - id: chatscript
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.chatscript.ChatScriptComponent
+    camel-quarkus-aws-translate:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-translate
+      schemes:
+      - id: aws-translate
+        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
+        http: false
+        passive: false
+      - id: azure-queue
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.azure.queue.QueueServiceComponent
+      - org.apache.camel.component.azure.blob.BlobServiceComponent
+    camel-quarkus-xmlsecurity:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xmlsecurity
+      schemes:
+      - id: xmlsecurity-verify
+        http: false
+        passive: false
+      - id: xmlsecurity-sign
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-rest
+      schemes:
+      - id: rest
+        http: true
+        passive: false
+      - id: rest-api
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.rest.RestComponent
+      - org.apache.camel.component.rest.RestApiComponent
+    camel-quarkus-xslt:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xslt
+      schemes:
+      - id: xslt
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.xslt.XsltComponent
+    camel-quarkus-beanstalk:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-beanstalk
+      schemes:
+      - id: beanstalk
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.beanstalk.BeanstalkComponent
+    camel-quarkus-saga:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-saga
+      schemes:
+      - id: saga
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.saga.SagaComponent
+    camel-quarkus-fop:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-fop
+      schemes:
+      - id: fop
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-solr
+      schemes:
+      - id: solrCloud
+        http: false
+        passive: false
+      - id: solrs
+        http: false
+        passive: false
+      - id: solr
+        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
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jclouds.JcloudsComponent
+    camel-quarkus-rest-openapi:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-rest-openapi
+      schemes:
+      - id: rest-openapi
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.rest.openapi.RestOpenApiComponent
+    camel-quarkus-file-watch:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-file-watch
+      schemes:
+      - id: file-watch
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.file.watch.FileWatchComponent
+    camel-quarkus-robotframework:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-robotframework
+      schemes:
+      - id: robotframework
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.robotframework.RobotFrameworkComponent
+    camel-quarkus-file:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-file
+      schemes:
+      - id: file
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.file.FileComponent
+    camel-quarkus-mybatis:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-mybatis
+      schemes:
+      - id: mybatis-bean
+        http: false
+        passive: false
+      - id: mybatis
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-elsql
+      schemes:
+      - id: elsql
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.elsql.ElsqlComponent
+    camel-quarkus-micrometer:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-micrometer
+      schemes:
+      - id: micrometer
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.micrometer.MicrometerComponent
+    camel-quarkus-netty:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-netty
+      schemes:
+      - id: netty
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.netty.NettyComponent
+    camel-quarkus-jolt:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jolt
+      schemes:
+      - id: jolt
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jolt.JoltComponent
+    camel-quarkus-http:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-http
+      schemes:
+      - id: https
+        http: false
+        passive: false
+      - id: http
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.http.HttpComponent
+    camel-quarkus-telegram:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-telegram
+      schemes:
+      - id: telegram
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.telegram.TelegramComponent
+    camel-quarkus-ganglia:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ganglia
+      schemes:
+      - id: ganglia
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ganglia.GangliaComponent
+    camel-quarkus-aws2-kinesis:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-kinesis
+      schemes:
+      - id: aws2-kinesis
+        http: false
+        passive: false
+      - id: aws2-kinesis-firehose
+        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
+        http: false
+        passive: false
+      - id: twitter-timeline
+        http: false
+        passive: false
+      - id: twitter-directmessage
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.swf.SWFComponent
+    camel-quarkus-pubnub:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-pubnub
+      schemes:
+      - id: pubnub
+        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
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.stub.StubComponent
+    camel-quarkus-aws2-sqs:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-sqs
+      schemes:
+      - id: aws2-sqs
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.sqs.Sqs2Component
+    camel-quarkus-jt400:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jt400
+      schemes:
+      - id: jt400
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jt400.Jt400Component
+    camel-quarkus-iota:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-iota
+      schemes:
+      - id: iota
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.iota.IOTAComponent
+    camel-quarkus-jsonapi:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jsonapi
+      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
+      javaTypes:
+      - org.apache.camel.component.aws2.eks.EKS2Component
+    camel-quarkus-weather:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-weather
+      schemes:
+      - id: weather
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.weather.WeatherComponent
+    camel-quarkus-scheduler:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-scheduler
+      schemes:
+      - id: scheduler
+        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
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.validator.jing.JingComponent
+    camel-quarkus-dataformat:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-dataformat
+      schemes:
+      - id: dataformat
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.dataformat.DataFormatComponent
+    camel-quarkus-jgroups:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jgroups
+      schemes:
+      - id: jgroups
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jgroups.JGroupsComponent
+    camel-quarkus-yammer:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-yammer
+      schemes:
+      - id: yammer
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.yammer.YammerComponent
+    camel-quarkus-hbase:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-hbase
+      schemes:
+      - id: hbase
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.hbase.HBaseComponent
+    camel-quarkus-aws-sdb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-sdb
+      schemes:
+      - id: aws-sdb
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.sdb.SdbComponent
+    camel-quarkus-sap-netweaver:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-sap-netweaver
+      schemes:
+      - id: sap-netweaver
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.sap.netweaver.NetWeaverComponent
+    camel-quarkus-servicenow:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-servicenow
+      schemes:
+      - id: servicenow
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.servicenow.ServiceNowComponent
+    camel-quarkus-grpc:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-grpc
+      schemes:
+      - id: grpc
+        http: true
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.grpc.GrpcComponent
+    camel-quarkus-ipfs:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ipfs
+      schemes:
+      - id: ipfs
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.ipfs.IPFSComponent
+    camel-quarkus-aws-kms:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-kms
+      schemes:
+      - id: aws-kms
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.kms.KMSComponent
+    camel-quarkus-stax:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-stax
+      schemes:
+      - id: stax
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.stax.StAXComponent
+    camel-quarkus-aws2-msk:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-msk
+      schemes:
+      - id: aws2-msk
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.msk.MSK2Component
+    camel-quarkus-debezium-sqlserver:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-debezium-sqlserver
+      schemes:
+      - id: debezium-sqlserver
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.debezium.DebeziumSqlserverComponent
+    camel-quarkus-snakeyaml:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-snakeyaml
+      dataformats:
+      - yaml-snakeyaml
+      javaTypes:
+      - org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat
+    camel-quarkus-fastjson:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-fastjson
+      dataformats:
+      - json-fastjson
+      javaTypes:
+      - org.apache.camel.component.fastjson.FastjsonDataFormat
+    camel-quarkus-xj:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xj
+      schemes:
+      - id: xj
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.xj.XJComponent
+    camel-quarkus-direct:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-direct
+      schemes:
+      - id: direct
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.direct.DirectComponent
+    camel-quarkus-bean:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-bean
+      schemes:
+      - id: bean
+        http: false
+        passive: true
+      - id: class
+        http: false
+        passive: true
+      languages:
+      - bean
+      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
+      schemes:
+      - id: aws-s3
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.s3.S3Component
+    camel-quarkus-grok:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-grok
+      dataformats:
+      - grok
+      javaTypes:
+      - org.apache.camel.component.grok.GrokDataFormat
+    camel-quarkus-couchdb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-couchdb
+      schemes:
+      - id: couchdb
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.couchdb.CouchDbComponent
+    camel-quarkus-workday:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-workday
+      schemes:
+      - id: workday
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-smpp
+      schemes:
+      - id: smpps
+        http: false
+        passive: false
+      - id: smpp
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws-iam
+      schemes:
+      - id: aws-iam
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws.iam.IAMComponent
+    camel-quarkus-debezium-postgres:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-debezium-postgres
+      schemes:
+      - id: debezium-postgres
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.debezium.DebeziumPostgresComponent
+    camel-quarkus-flink:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-flink
+      schemes:
+      - id: flink
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.flink.FlinkComponent
+    camel-quarkus-amqp:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-amqp
+      schemes:
+      - id: amqp
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.amqp.AMQPComponent
+    camel-quarkus-guava-eventbus:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-guava-eventbus
+      schemes:
+      - id: guava-eventbus
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.guava.eventbus.GuavaEventBusComponent
+    camel-quarkus-pulsar:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-pulsar
+      schemes:
+      - id: pulsar
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.pulsar.PulsarComponent
+    camel-quarkus-jpa:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jpa
+      schemes:
+      - id: jpa
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jpa.JpaComponent
+    camel-quarkus-aws2-ddb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-ddb
+      schemes:
+      - id: aws2-ddb
+        http: false
+        passive: false
+      - id: aws2-ddbstream
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.ddb.Ddb2Component
+      - org.apache.camel.component.aws2.ddbstream.Ddb2StreamComponent
+    camel-quarkus-mock:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-mock
+      schemes:
+      - id: mock
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.mock.MockComponent
+    camel-quarkus-iec60870:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-iec60870
+      schemes:
+      - id: iec60870-server
+        http: false
+        passive: false
+      - id: iec60870-client
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.iec60870.client.ClientComponent
+      - org.apache.camel.component.iec60870.server.ServerComponent
+    camel-quarkus-weka:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-weka
+      schemes:
+      - id: weka
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.weka.WekaComponent
+    camel-quarkus-controlbus:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-controlbus
+      schemes:
+      - id: controlbus
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.controlbus.ControlBusComponent
+    camel-quarkus-vertx:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-vertx
+      schemes:
+      - id: vertx
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.vertx.VertxComponent
+    camel-quarkus-jdbc:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jdbc
+      schemes:
+      - id: jdbc
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jdbc.JdbcComponent
+    camel-quarkus-consul:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-consul
+      schemes:
+      - id: consul
+        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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-facebook
+      schemes:
+      - id: facebook
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.facebook.FacebookComponent
+    camel-quarkus-xpath:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xpath
+      languages:
+      - xpath
+      javaTypes:
+      - org.apache.camel.language.xpath.XPathLanguage
+    camel-quarkus-nsq:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-nsq
+      schemes:
+      - id: nsq
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.nsq.NsqComponent
+    camel-quarkus-jsonb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jsonb
+      dataformats:
+      - json-jsonb
+      javaTypes:
+      - org.apache.camel.component.jsonb.JsonbDataFormat
+    camel-quarkus-aws2-sns:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-aws2-sns
+      schemes:
+      - id: aws2-sns
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.aws2.sns.Sns2Component
+    camel-quarkus-mvel:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-mvel
+      schemes:
+      - id: mvel
+        http: false
+        passive: false
+      languages:
+      - mvel
+      javaTypes:
+      - org.apache.camel.component.mvel.MvelComponent
+      - org.apache.camel.language.mvel.MvelLanguage
+    camel-quarkus-univocity-parsers:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-univocity-parsers
+      dataformats:
+      - univocity-csv
+      - univocity-tsv
+      - univocity-fixed
+      javaTypes:
+      - org.apache.camel.dataformat.univocity.UniVocityFixedWidthDataFormat
+      - org.apache.camel.dataformat.univocity.UniVocityCsvDataFormat
+      - org.apache.camel.dataformat.univocity.UniVocityTsvDataFormat
+    camel-quarkus-ref:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-ref
+      schemes:
+      - id: ref
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.ref.RefComponent
+    camel-quarkus-lzf:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-lzf
+      dataformats:
+      - lzf
+      javaTypes:
+      - org.apache.camel.dataformat.lzf.LZFDataFormat
+    camel-quarkus-paho:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-paho
+      schemes:
+      - id: paho
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.paho.PahoComponent
+    camel-quarkus-vm:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-vm
+      schemes:
+      - id: vm
+        http: false
+        passive: true
+      javaTypes:
+      - org.apache.camel.component.vm.VmComponent
+    camel-quarkus-bindy:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-bindy
+      dataformats:
+      - bindy-csv
+      - bindy-fixed
+      - bindy-kvp
+      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:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jslt
+      schemes:
+      - id: jslt
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.jslt.JsltComponent
+    camel-quarkus-apns:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-apns
+      schemes:
+      - id: apns
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.apns.ApnsComponent
+    camel-quarkus-optaplanner:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-optaplanner
+      schemes:
+      - id: optaplanner
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.optaplanner.OptaPlannerComponent
+    camel-quarkus-xstream:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-xstream
+      dataformats:
+      - json-xstream
+      - xstream
+      javaTypes:
+      - org.apache.camel.dataformat.xstream.XStreamDataFormat
+      - org.apache.camel.dataformat.xstream.JsonDataFormat
+    camel-quarkus-debezium-mongodb:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-debezium-mongodb
+      schemes:
+      - id: debezium-mongodb
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.debezium.DebeziumMongodbComponent
+    camel-quarkus-jacksonxml:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-jacksonxml
+      dataformats:
+      - jacksonxml
+      javaTypes:
+      - org.apache.camel.component.jacksonxml.JacksonXMLDataFormat
+    camel-quarkus-zookeeper-master:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-zookeeper-master
+      schemes:
+      - id: zookeeper-master
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.zookeepermaster.MasterComponent
     camel-k-knative:
       groupId: org.apache.camel.k
       artifactId: camel-k-knative
@@ -2454,494 +2818,109 @@
           dependencies:
           - groupId: org.apache.camel.k
             artifactId: camel-k-knative-consumer
-    camel-quarkus-zookeeper-master:
+    camel-quarkus-language:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-zookeeper-master
+      artifactId: camel-quarkus-language
       schemes:
-      - id: zookeeper-master
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.zookeepermaster.MasterComponent
-    camel-quarkus-jacksonxml:
-      groupId: org.apache.camel.quarkus
-      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: debezium-mongodb
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.debezium.DebeziumMongodbComponent
-    camel-quarkus-xstream:
-      groupId: org.apache.camel.quarkus
-      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: optaplanner
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.optaplanner.OptaPlannerComponent
-    camel-quarkus-apns:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-apns
-      schemes:
-      - id: apns
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.apns.ApnsComponent
-    camel-quarkus-jslt:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jslt
-      schemes:
-      - id: jslt
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jslt.JsltComponent
-    camel-quarkus-bindy:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-bindy
-      dataformats:
-      - bindy-kvp
-      - bindy-fixed
-      - bindy-csv
-      javaTypes:
-      - org.apache.camel.dataformat.bindy.fixed.BindyFixedLengthDataFormat
-      - org.apache.camel.dataformat.bindy.csv.BindyCsvDataFormat
-      - org.apache.camel.dataformat.bindy.kvp.BindyKeyValuePairDataFormat
-    camel-quarkus-vm:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-vm
-      schemes:
-      - id: vm
+      - id: language
         http: false
         passive: true
       javaTypes:
-      - org.apache.camel.component.vm.VmComponent
-    camel-quarkus-paho:
+      - org.apache.camel.component.language.LanguageComponent
+    camel-quarkus-schematron:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-paho
+      artifactId: camel-quarkus-schematron
       schemes:
-      - id: paho
+      - id: schematron
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.paho.PahoComponent
-    camel-quarkus-lzf:
+      - org.apache.camel.component.schematron.SchematronComponent
+    camel-quarkus-asn1:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-lzf
+      artifactId: camel-quarkus-asn1
       dataformats:
-      - lzf
+      - asn1
       javaTypes:
-      - org.apache.camel.dataformat.lzf.LZFDataFormat
-    camel-quarkus-ref:
+      - org.apache.camel.dataformat.asn1.ASN1DataFormat
+    camel-quarkus-aws2-cw:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-ref
+      artifactId: camel-quarkus-aws2-cw
       schemes:
-      - id: ref
+      - id: aws2-cw
         http: false
-        passive: true
+        passive: false
       javaTypes:
-      - org.apache.camel.component.ref.RefComponent
-    camel-quarkus-univocity-parsers:
+      - org.apache.camel.component.aws2.cw.Cw2Component
+    camel-quarkus-sip:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-univocity-parsers
+      artifactId: camel-quarkus-sip
+      schemes:
+      - id: sips
+        http: false
+        passive: false
+      - id: sip
+        http: false
+        passive: false
+      javaTypes:
+      - org.apache.camel.component.sip.SipComponent
+    camel-quarkus-thrift:
+      groupId: org.apache.camel.quarkus
+      artifactId: camel-quarkus-thrift
+      schemes:
+      - id: thrift
+        http: false
+        passive: false
       dataformats:
-      - univocity-tsv
-      - univocity-csv
-      - univocity-fixed
+      - thrift
       javaTypes:
-      - org.apache.camel.dataformat.univocity.UniVocityFixedWidthDataFormat
-      - org.apache.camel.dataformat.univocity.UniVocityTsvDataFormat
-      - org.apache.camel.dataformat.univocity.UniVocityCsvDataFormat
-    camel-quarkus-mvel:
+      - org.apache.camel.dataformat.thrift.ThriftDataFormat
+      - org.apache.camel.component.thrift.ThriftComponent
+    camel-quarkus-jms:
       groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-mvel
+      artifactId: camel-quarkus-jms
       schemes:
-      - id: mvel
-        http: false
-        passive: false
-      languages:
-      - mvel
-      javaTypes:
-      - org.apache.camel.language.mvel.MvelLanguage
-      - org.apache.camel.component.mvel.MvelComponent
-    camel-quarkus-aws2-sns:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-sns
-      schemes:
-      - id: aws2-sns
+      - id: jms
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.aws2.sns.Sns2Component
-    camel-quarkus-jsonb:
+      - org.apache.camel.component.jms.JmsComponent
+    camel-quarkus-pg-replication-slot:
       groupId: org.apache.camel.quarkus
-      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
+      artifactId: camel-quarkus-pg-replication-slot
       schemes:
-      - id: nsq
+      - id: pg-replication-slot
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.nsq.NsqComponent
-    camel-quarkus-xpath:
+      - org.apache.camel.component.pg.replication.slot.PgReplicationSlotComponent
+    camel-quarkus-quartz:
       groupId: org.apache.camel.quarkus
-      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
+      artifactId: camel-quarkus-quartz
       schemes:
-      - id: facebook
+      - id: quartz
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.facebook.FacebookComponent
-    camel-quarkus-ognl:
+      - org.apache.camel.component.quartz.QuartzComponent
+    camel-quarkus-etcd:
       groupId: org.apache.camel.quarkus
-      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
+      artifactId: camel-quarkus-etcd
       schemes:
-      - id: consul
+      - id: etcd-watch
+        http: false
+        passive: false
+      - id: etcd-stats
+        http: false
+        passive: false
+      - id: etcd-keys
         http: false
         passive: false
       javaTypes:
-      - org.apache.camel.component.consul.ConsulComponent
-    camel-quarkus-jdbc:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-jdbc
-      schemes:
-      - id: jdbc
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jdbc.JdbcComponent
-    camel-quarkus-vertx:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-vertx
-      schemes:
-      - id: vertx
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.vertx.VertxComponent
-    camel-quarkus-controlbus:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-controlbus
-      schemes:
-      - id: controlbus
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.controlbus.ControlBusComponent
-    camel-quarkus-weka:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-weka
-      schemes:
-      - id: weka
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.weka.WekaComponent
-    camel-quarkus-iec60870:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-iec60870
-      schemes:
-      - id: iec60870-client
-        http: false
-        passive: false
-      - id: iec60870-server
-        http: false
-        passive: false
-      javaTypes:
-      - 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-mock
-      schemes:
-      - id: mock
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.mock.MockComponent
-    camel-quarkus-aws2-ddb:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-ddb
-      schemes:
-      - id: aws2-ddbstream
-        http: false
-        passive: false
-      - id: aws2-ddb
-        http: false
-        passive: false
-      javaTypes:
-      - 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-jpa
-      schemes:
-      - id: jpa
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.jpa.JpaComponent
-    camel-quarkus-pulsar:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-pulsar
-      schemes:
-      - id: pulsar
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.pulsar.PulsarComponent
-    camel-quarkus-guava-eventbus:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-guava-eventbus
-      schemes:
-      - id: guava-eventbus
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.guava.eventbus.GuavaEventBusComponent
-    camel-quarkus-amqp:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-amqp
-      schemes:
-      - id: amqp
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.amqp.AMQPComponent
-    camel-quarkus-flink:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-flink
-      schemes:
-      - id: flink
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.flink.FlinkComponent
-    camel-quarkus-debezium-postgres:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-debezium-postgres
-      schemes:
-      - id: debezium-postgres
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.debezium.DebeziumPostgresComponent
-    camel-quarkus-aws-iam:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-iam
-      schemes:
-      - id: aws-iam
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.iam.IAMComponent
-    camel-quarkus-syslog:
-      groupId: org.apache.camel.quarkus
-      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: smpp
-        http: false
-        passive: false
-      - id: smpps
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.smpp.SmppComponent
-    camel-quarkus-zip-deflater:
-      groupId: org.apache.camel.quarkus
-      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: workday
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.workday.WorkdayComponent
-    camel-quarkus-couchdb:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-couchdb
-      schemes:
-      - id: couchdb
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.couchdb.CouchDbComponent
-    camel-quarkus-grok:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-grok
-      dataformats:
-      - grok
-      javaTypes:
-      - org.apache.camel.component.grok.GrokDataFormat
-    camel-quarkus-aws-s3:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-s3
-      schemes:
-      - id: aws-s3
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.s3.S3Component
-    camel-quarkus-bean:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-bean
-      schemes:
-      - id: bean
-        http: false
-        passive: true
-      - id: class
-        http: false
-        passive: true
-      languages:
-      - bean
-      javaTypes:
-      - org.apache.camel.component.beanclass.ClassComponent
-      - org.apache.camel.language.bean.BeanLanguage
-      - org.apache.camel.component.bean.BeanComponent
-    camel-quarkus-direct:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-direct
-      schemes:
-      - id: direct
-        http: false
-        passive: true
-      javaTypes:
-      - org.apache.camel.component.direct.DirectComponent
-    camel-quarkus-xj:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-xj
-      schemes:
-      - id: xj
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.xj.XJComponent
-    camel-quarkus-fastjson:
-      groupId: org.apache.camel.quarkus
-      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: debezium-sqlserver
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.debezium.DebeziumSqlserverComponent
-    camel-quarkus-aws2-msk:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws2-msk
-      schemes:
-      - id: aws2-msk
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws2.msk.MSK2Component
-    camel-quarkus-stax:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-stax
-      schemes:
-      - id: stax
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.stax.StAXComponent
-    camel-quarkus-aws-kms:
-      groupId: org.apache.camel.quarkus
-      artifactId: camel-quarkus-aws-kms
-      schemes:
-      - id: aws-kms
-        http: false
-        passive: false
-      javaTypes:
-      - org.apache.camel.component.aws.kms.KMSComponent
+      - org.apache.camel.component.etcd.EtcdKeysComponent
+      - org.apache.camel.component.etcd.EtcdStatsComponent
+      - org.apache.camel.component.etcd.EtcdWatchComponent
   loaders:
-    kts:
-      groupId: org.apache.camel.k
-      artifactId: camel-k-loader-kotlin
-      languages:
-      - kts
-      metadata:
-        native: "false"
-    js:
-      groupId: org.apache.camel.k
-      artifactId: camel-k-loader-js
-      languages:
-      - js
-      metadata:
-        native: "true"
-    xml:
-      groupId: org.apache.camel.k
-      artifactId: camel-k-loader-xml
-      languages:
-      - xml
-      metadata:
-        native: "true"
     java:
       groupId: org.apache.camel.k
       artifactId: camel-k-loader-java
@@ -2949,11 +2928,25 @@
       - java
       metadata:
         native: "false"
-    groovy:
+    xml:
       groupId: org.apache.camel.k
-      artifactId: camel-k-loader-groovy
+      artifactId: camel-k-loader-xml
       languages:
-      - groovy
+      - xml
+      metadata:
+        native: "true"
+    js:
+      groupId: org.apache.camel.k
+      artifactId: camel-k-loader-js
+      languages:
+      - js
+      metadata:
+        native: "true"
+    kts:
+      groupId: org.apache.camel.k
+      artifactId: camel-k-loader-kotlin
+      languages:
+      - kts
       metadata:
         native: "false"
     yaml:
@@ -2963,3 +2956,10 @@
       - yaml
       metadata:
         native: "true"
+    groovy:
+      groupId: org.apache.camel.k
+      artifactId: camel-k-loader-groovy
+      languages:
+      - groovy
+      metadata:
+        native: "false"
diff --git a/deploy/resources.go b/deploy/resources.go
index e9688a6..5cd86ad 100644
--- a/deploy/resources.go
+++ b/deploy/resources.go
@@ -53,8 +53,15 @@
 
 			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x3d\x4f\xc4\x30\x0c\x86\xf7\xfc\x0a\xab\x7b\x83\xd8\x50\x36\x58\xd8\x18\x8a\xc4\xee\xa6\x06\x4c\x93\x38\xca\x47\x07\xaa\xfe\x77\xd4\x16\xe9\x7a\xd2\xa9\x37\x26\x8f\x5e\xfb\xf1\x3b\x72\x18\x0c\x74\xe2\xe8\x85\xc3\xc0\xe1\x4b\x61\xe4\x0f\x4a\x99\x25\x18\x48\x3d\x5a\x8d\xb5\x7c\x4b\xe2\x5f\x2c\x2c\x41\x8f\x4f\x59\xb3\x3c\x4c\x8f\xca\x53\xc1\x01\x0b\x1a\x05\x10\xd0\x93\x81\x79\x06\xfd\x86\x9e\x60\x59\xfe\xff\x72\x44\x7b\x00\xdb\x73\xa7\x0e\x7b\x72\x79\xcd\x02\x60\x8c\x06\x1a\x8b\x9e\x5c\x3b\x36\x2a\xd7\xfe\x87\x6c\xd9\x60\x0b\xbb\xe1\x3b\xa5\x89\x2d\x3d\x5b\x2b\x35\x94\x2d\x75\x3e\xff\xe8\x74\x1d\x5e\x79\x12\x47\x1d\x7d\xae\x1b\x2e\x0d\xdc\x75\xbe\x75\x25\x46\x7e\x4d\x52\xe3\x49\x59\xea\x2f\x00\x00\xff\xff\xe6\x36\xce\x65\x65\x01\x00\x00"),
 		},
-		"/addons/master/master-role.tmpl": &vfsgen۰CompressedFileInfo{
-			name:             "master-role.tmpl",
+		"/addons/master/master-role-configmap.tmpl": &vfsgen۰CompressedFileInfo{
+			name:             "master-role-configmap.tmpl",
+			modTime:          time.Time{},
+			uncompressedSize: 342,
+
+			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8d\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\x85\xb5\xfd\x2e\xa2\x43\xf9\x01\x3a\x0a\x0a\x7a\x6f\x62\xee\xac\x4d\x62\xcb\x49\x0e\x89\xd3\xfd\x3b\x22\x7b\x2b\x21\x68\xa8\x3c\x7e\x33\xf6\x6c\x5c\xa2\x87\x57\x49\xe4\x50\xf9\x8d\xac\xb2\x14\x0f\xb6\x62\x58\xb0\xb7\xb3\x18\x7f\x62\x63\x29\xcb\xf6\x54\x17\x96\x87\xcb\xa3\xcb\xd4\x30\x62\x43\xef\x00\x0a\x66\xf2\x70\xbd\xc2\xf2\x82\x99\xe0\x76\xbb\xb3\xaa\x18\x7e\x18\x63\xdd\xdd\x84\x2b\xa5\xfa\x7d\x0b\x80\xaa\x1e\xa6\x80\x99\xd2\xbc\x4d\xce\x7a\xa2\xea\xdd\x0c\xa8\xfc\x6c\xd2\x75\xc4\x66\x98\x26\x07\x60\x54\xa5\x5b\xa0\x3b\x0b\x52\xde\xf9\x94\x51\xab\x03\xb8\x90\xad\x07\x37\xc2\x46\x43\x9e\xa8\x8d\x99\xb8\xee\x42\xb1\x85\xf3\x50\x5d\xe3\x91\xfa\x18\xf0\x5f\x9d\x2a\xf1\x57\xdb\x9f\x8a\xfd\xdb\x57\x00\x00\x00\xff\xff\xc4\x4d\x51\x51\x56\x01\x00\x00"),
+		},
+		"/addons/master/master-role-lease.tmpl": &vfsgen۰CompressedFileInfo{
+			name:             "master-role-lease.tmpl",
 			modTime:          time.Time{},
 			uncompressedSize: 389,
 
@@ -93,7 +100,7 @@
 			modTime:          time.Time{},
 			uncompressedSize: 89280,
 
-			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\x84\x88\xc2\x57\x44\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\x22\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\xf6\x33\x04\x5d\x10\x91\xb0\x7c\x11\xc5\xbc\x78\x12\x6c\xb1\x54\x11\xdf\xe6\x54\xc8\x25\x2b\xe0\xcd\xdb\xe8\x4e\x67\x63\x7a\x5e\x7e\x89\xb4\xb0\x86\xa7\xe2\xd1\x7f\xf8\xda\xe5\xa1\x91\x5d\x27\x85\x7f\x44\xdf\xa8\x90\x9a\xc9\x09\xfc\xfa\xe6\x6d\xf4\x5f\x9a\xe4\x17\x17\xf9\xcb\x7f\xff\xbf\xe8\x89\xaf\xa3\x8c\x3c\x45\x39\x57\xd1\x5a\xd2\x06\x32\x7d\x8c\x69\xa1\x22\x96\x47\x31\xcf\x8a\x94\x91\x3c\xa6\x75\xb6\x2a\x0e\x10\x99\x0f\xd0\x18\x7c\xa6\x08\xcb\x23\x62\xb2\x11\xf1\x79\x93\x2c\x22\xea\xcd\xdb\x37\x6f\x23\xf3\xb7\x54\xaa\xf8\xf3\x9f\xff\xdc\x6e\xb7\x40\xcc\xe7\x02\x17\x8b\x7f\x96\xb9\xfb\xe7\xf5\xe5\xf8\xc3\xcd\xf4\xc3\xc8\x7c\xf2\x9b\xb7\xd1\xbf\xf3\x94\x4a\x19\x09\xfa\xb0\x66\x82\x26\xd1\xec\x29\x22\x45\x91\xb2\x98\xcc\x52\x1a\xa5\x64\xab\x0b\xce\x94\x8e\x29\x74\x96\x47\x5b\xc1\x14\xcb\x17\xff\x88\xa4\x2b\xf5\x37\x6f\x5b\xa5\x53\x8b\xab\xfc\x3c\x26\x5b\x04\x3c\x8f\x48\x1e\xfd\x72\x3a\x8d\x2e\xa7\xbf\x44\x67\xa7\xd3\xcb\xe9\x3f\xde\xbc\x8d\xbe\x5f\xde\x7d\xfc\xfc\xef\xbb\xe8\xfb\xe9\xd7\xaf\xa7\x37\x77\x97\x1f\xa6\xd1\xe7\xaf\xd1\xf8\xf3\xcd\xfb\xcb\xbb\xcb\xcf\x37\xd3\xe8\xf3\x79\x74\x7a\xf3\x9f\xe8\xd3\xe5\xcd\xfb\x7f\x44\x94\xa9\x25\x15\x11\x7d\x2c\x84\xfe\x7e\x2e\x22\xa6\x05\x49\x13\x5d\xa6\x65\x05\x2a\x3f\x40\xd7\x0f\xfd\x5b\x16\x34\x66\x73\x16\x47\x29\xc9\x17\x6b\xb2\xa0\xd1\x82\x6f\xa8\xc8\x75\xf5\x28\xa8\xc8\x98\xd4\xc5\x29\x23\x92\x27\x6f\xde\x46\x29\xcb\x98\x32\xb5\x48\xee\x67\x4a\xb3\xf1\xd9\xb6\xde\x90\x82\xb9\xea\xf4\x67\x14\x93\x8c\xa6\xcd\xe2\xdb\xfc\xf6\x66\xc5\xf2\xe4\xcf\x68\xac\x63\xc6\x44\x91\x94\x2f\xde\x64\x54\x91\x84\x28\xf2\xe7\x9b\x28\xca\x49\x46\x5d\xc2\x51\x6c\xe3\x47\xbf\xc1\xef\xf0\xeb\x48\xe6\xa4\x90\x4b\xae\xde\x44\x51\x4a\x66\x34\x95\x9a\x3c\xda\xe7\xe1\x52\x41\xca\x49\x42\x05\x6c\xca\x8f\x79\x07\x7f\xc0\xaf\x87\x93\x88\x75\xae\x58\x46\x6b\x5a\xcb\x71\x7a\x73\x7a\x3b\xfd\xf8\xf9\x0e\xe7\x73\x80\x01\x29\x8a\x32\x0f\xab\x37\xba\xb0\xf4\xa7\x3a\x26\xf6\xab\x31\x4e\x85\xe0\x1b\x96\x50\xf1\x67\xf4\xb0\x26\x62\xb5\x96\x25\xa6\xae\xcd\xba\x18\xc7\x29\x91\xf2\xcf\x88\x71\x70\x04\x20\xd6\x79\x4e\x05\x5c\xd0\x9c\x0a\xa2\x68\x32\x21\x2c\x37\xa9\x9a\xa2\xad\x73\x71\xe0\x93\xa3\x92\x59\x53\x08\xbf\xfd\x0a\xef\xe0\x9c\xe5\x24\x6d\x26\x1f\x1d\xa0\xfc\x97\x83\x49\x68\x41\xf3\x84\xe6\x31\xa3\xae\x7c\x46\xd1\x42\xf0\x75\x71\x99\xfc\x19\x71\xb1\x28\x05\x68\xbf\x63\xe5\x60\x89\x50\x6c\x4e\x62\xa5\x89\x9c\xd8\x46\x4e\x5c\x4e\xf6\x05\x99\xb1\x94\xa9\x0a\x35\x8a\x94\x20\x31\xcb\x17\xe5\xcf\x43\xac\xbb\xd8\x37\xc5\xfb\xdc\x87\x38\x9a\x11\x2f\x68\xee\x58\x3a\x7a\x41\xa5\x7a\x2d\xee\x9a\x97\x77\xd0\x22\x25\x4a\x0f\x30\x23\xdd\xd5\x96\x05\x2c\x78\xfe\x92\x4c\xad\x50\xce\xab\x91\xc6\x77\x24\x2d\xf6\xaf\x25\xc8\x43\x79\x5e\x52\x92\xaa\xe5\x6b\x7d\x41\xc6\x62\xc1\x0b\xc1\xf5\xf8\x39\xb2\xac\x4b\xd9\x33\x11\xaf\x99\x1a\xcd\x04\x25\x2b\x2a\xfe\x57\x3e\x68\x4e\xd6\xa9\x1a\x29\x9e\x52\xa1\xc7\x72\x07\x90\x11\xa9\x5e\xf6\x41\x5d\xf5\xc2\x72\x78\x53\x47\x36\x7b\xf7\xea\x53\x59\x31\xaf\xf8\x1d\x9b\xf9\xe7\x33\xae\xd1\x1c\x91\x8c\x97\x34\xab\xf3\x32\x8a\x58\xf2\x67\xd4\x88\x77\xd3\x91\x68\x4e\x52\x49\xab\x77\x05\x91\x92\x6d\x68\xfb\xf5\x3d\xd9\x90\xbb\xa7\xa2\x09\xb6\xf7\x85\x7a\xb2\xc4\x73\x9a\x2b\xd0\x3c\xe0\xf2\xf6\x7c\x3a\x2e\x5f\x1d\xc8\xf6\x42\x14\xb1\xbf\x6c\x6b\x34\x2c\xdb\x8d\xf8\x32\xdb\x4a\xac\xbd\xe6\x5a\xb3\x80\x0b\x51\xc4\x58\xae\x25\x15\x1b\x3d\x47\xe1\x5b\x7f\x79\xaf\x31\x31\x09\xec\x51\x05\x2b\xfe\x9a\x13\x4c\x6d\xf0\x86\x6f\x51\xa1\x90\x62\x94\x53\xb5\xa5\x64\x53\x37\x48\x0f\x72\x69\xc2\xa2\xa2\x39\x40\x18\x4e\x3a\xa4\x80\x8a\x19\xdc\x50\xf5\xdd\x84\x30\xf9\x90\xad\x1c\xc9\x64\xe6\x4f\x32\x0e\x10\x93\x49\x9b\x24\x98\x34\xc8\x56\x82\x4c\x66\x30\x4d\x66\x98\x04\x96\x33\x22\xa9\xbf\xfc\x1b\x38\x2c\xf7\x4d\x82\x60\x79\x37\x4c\xe0\xe3\x19\x91\x14\xcb\xfb\x13\xc9\x32\x9f\xcd\xc2\xe2\x61\xb9\x6f\x51\x04\xcb\xbe\xe5\x02\xff\x31\x0f\x4c\x00\xf7\x26\xcf\x1e\xc7\x48\x07\x88\x89\xa0\x4d\x12\x4c\x06\x8e\x0d\x5c\x5d\x98\x27\x26\x05\xbd\xe0\xb1\x9a\x13\x7f\x82\xa8\x31\x31\x59\xec\x51\x75\x88\xa3\x31\xb0\xf6\x93\x46\xcd\x08\xde\x13\x45\xce\x4d\x10\xad\x19\x8d\xb5\x92\x87\x6a\x51\x2f\x83\x0e\xd7\x89\x3a\x3e\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\xf1\xdd\x8d\xf8\xe3\x72\x95\x6f\xa8\x50\x54\x80\x4e\x08\x57\xe4\x71\x56\x17\xeb\xa1\x69\x40\xbc\xa4\xc9\x3a\xf5\x3a\x05\x28\x21\xd1\xe1\x7f\x87\x28\xdc\xd0\x5f\x32\x82\x69\x19\xc2\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\x88\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\x3e\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\xa4\x58\x46\x53\x96\x0f\x58\xdf\xb7\x71\x24\x25\x22\x5e\xbe\x14\x25\x61\x82\xc6\x2a\xa3\x52\x92\x45\x70\x95\x83\x63\x0a\xa5\x08\xe0\xce\xbe\xb8\x73\xbf\xdb\x45\x76\x24\x58\x2b\x07\x25\xe2\x7b\xf3\x72\x62\x5f\x0e\x82\xb5\xe2\x2d\xf1\xa6\xe6\x57\xe7\x90\xb2\x62\x39\x95\xcc\xf7\xb0\xe2\x50\x3b\x87\x16\x47\x37\x9a\x33\x41\x97\x7c\x88\x06\x69\x1f\xec\x55\xc6\xaa\xf2\x83\xe1\x93\x65\x7a\xee\x7e\x9f\xf4\x2a\x39\x03\xe5\x3e\xbb\x44\x42\x87\xbf\x05\xc9\x17\x29\xf3\x38\xf7\x73\x80\x58\x41\xb5\x49\x82\x89\xd5\xb1\x81\x0b\xfb\x44\xfb\x42\x9a\xd2\x85\x20\x99\xc7\xce\xd0\x21\xa2\xbd\x61\x9b\x26\x5c\x97\xe3\xf8\xc0\x9d\x0b\xa0\x7a\xde\xc6\xae\xa9\x07\x35\x6f\xbd\x1d\x7a\x58\xcb\x5b\xc7\xf7\x6e\xa2\x9a\x3c\x78\xdb\xd4\xb0\xf0\x51\xa9\x02\x5d\x46\xf0\xd4\xa3\x4a\x50\xa3\xa1\x8b\x88\x3a\x3e\xdc\x1a\x82\xa7\x0a\xae\x78\x8a\xea\xfe\x72\xaa\xd4\x93\xbf\x7c\x1b\x38\x2c\xe3\x4d\x82\x60\x39\x37\x4c\xe0\x46\xff\xc7\xf2\x6e\x76\xb7\x33\xea\x75\x02\x55\x63\x62\x52\xd8\xa3\x0a\x26\x8a\x9a\x13\x4c\xaa\x20\x26\x14\x9a\xca\x87\xd4\x9f\x3c\x0c\x1c\x26\x8a\x26\x41\x30\x29\x18\x26\xf0\x41\xff\xc7\xf2\x1e\xcf\xb8\xc7\xaa\xa0\xd1\x1c\xd1\x41\xbd\x50\x23\xbe\x5f\x6e\x74\x42\x18\x9f\x7d\xfe\x8a\xaa\x83\xb2\xa7\x19\x51\x3e\xe7\x70\x0e\x10\xad\xd7\x2d\x92\xde\xa3\x81\x4b\x3e\x9a\x51\x92\x07\x6f\x18\x96\x17\x4c\x9e\xce\xf4\xf3\x8c\x92\xbc\xd7\x2c\x6d\x27\x3d\x56\xad\xe6\x2c\xf5\xb8\xeb\xaa\xd1\xb0\x32\x68\xc4\x07\x13\x9e\xe6\x01\xe7\x2c\x45\x77\x5c\x05\x9f\x71\x35\x17\x24\xa3\x5b\x2e\x56\xfe\x04\xd0\xc6\xc5\x44\x71\x90\x32\x98\x50\xda\xdc\xe0\xab\xfe\x79\x5e\xfe\xec\xaa\x1f\xa3\x2d\x51\xf1\xd2\x6f\x2d\xb1\x98\x5d\x75\xa5\x45\x15\xb6\xc6\x18\x4e\xa6\xde\x7c\xd7\x21\xb4\xf2\x50\xa9\x8c\x61\xa5\x57\x6d\x7d\x13\x15\xad\x38\xfb\x74\xe1\xaa\x0d\x95\x0a\x1c\x2f\xf8\x4a\xa5\xfa\x5c\xd0\xfc\xb4\x60\xe8\x64\x35\x4e\xf9\x3a\xf1\xb9\x97\x6f\x01\xd1\x29\x6b\x8b\x24\xdc\xac\xd5\xb2\x81\x2b\xfb\xc4\xa4\xf0\xb0\x66\xf1\x6a\xce\x1e\xfd\x89\xa1\x44\xc4\xe4\xb0\x43\x13\x4c\x10\x25\x9f\x7b\xf8\x52\x86\x50\x1d\x38\x4f\x7d\xee\xf8\xf2\x14\xdf\xec\xe5\xa9\x18\xeb\x02\x1a\x3a\xd4\x37\x18\x0c\x4a\x1b\xbc\x1e\x6a\x26\x30\xd5\xd9\x44\x17\x8d\xcb\xfc\x67\x6d\x15\xed\x63\xdd\x68\x00\xb1\x69\xe3\xbd\xe4\xf9\x0e\x5d\xdf\x75\xa1\x49\x0b\x57\xf6\x89\x4e\x22\xe7\xdc\xa3\x22\x61\xce\x51\x3d\x42\x1d\x1d\x6e\x14\xe2\x05\x9c\x73\x54\x0f\x20\xc9\xc2\xa3\x26\x4d\xa3\xa1\xed\xa8\x8e\x0f\x68\x2a\xb9\x20\x30\x25\x0b\x54\x7b\xa6\xa7\xdc\x52\x91\xd4\xe3\x3c\xad\x82\xc4\x04\xb0\x4b\x14\x4c\x0a\x15\x23\x38\x2b\x43\x98\x3c\x1e\xa5\x4f\x75\x90\x46\xc3\xa4\xd0\x88\x0f\x26\x00\xcd\x03\x7e\x48\x5c\x1d\xd4\x3c\xb8\xe2\x67\xba\xd5\x39\xcd\x1a\x34\xc5\xaa\xd3\xef\xa4\xf5\x6d\x8e\x6e\x66\x67\x7a\x56\xb6\x37\x23\x3b\x36\x21\x6e\xbd\xcf\xf9\xc6\xa3\xfa\xcd\xe2\x39\xb2\xf2\x00\x60\x23\xa3\xad\xf8\x63\x04\x51\x62\x80\x4d\x09\x17\xe6\x71\xed\xde\x1e\x6a\x37\x59\x2a\x69\xbc\x16\xcc\xa7\x56\xb1\x01\x8a\xb6\xa2\x9a\x6c\x24\xd9\x62\x80\x0a\x61\x1f\x67\x43\x05\x9b\x0f\x50\x58\x1e\x1c\xba\x0d\x2a\xfd\x31\xb9\xee\x51\x02\x0d\x6b\xce\xc6\x77\xc1\x8f\xc9\xf5\xd4\x85\x77\x06\xf0\xae\x6e\xa0\x09\x92\xa5\xdf\x74\xfe\xd8\xae\x4a\xb0\x1f\xc6\x94\x2d\xf2\x0e\xeb\xb3\x9f\x6b\xe1\x51\x05\x62\xe0\xb0\x9a\x60\x08\x46\x0f\x6b\xba\x1e\xbe\x79\x68\x20\x66\x29\x0f\x6f\xbc\xaf\x39\x81\xe6\x04\x67\x29\x9f\xb9\xc3\x1e\xfd\xb6\x0c\x0d\x84\xc9\x2f\x7c\xd1\xff\x0f\x82\xec\x1b\x3b\x28\x41\x72\x99\x12\xe5\xb3\x6c\x9a\xb0\x68\x19\x1d\x20\x0c\x6a\x4f\x51\x31\x83\xbb\x32\x84\x2a\x83\x97\x44\xc9\x58\xb0\xc2\xe3\x80\x58\x63\x62\x92\xd9\xa3\x0a\x26\x96\x9a\x13\x8c\x97\x44\x4d\x4d\x10\x9d\x1f\x90\xd9\x8c\xa9\xec\xc1\xe3\x1c\xc1\x21\xa2\xf3\x84\x36\x4d\x38\x55\x8c\xe3\x03\x5f\x4d\x60\xf2\x05\x9f\x2a\x91\x58\xb1\x0d\x1d\x49\x25\x28\xc9\x3c\x2a\x63\x76\x91\xf1\x29\xd4\x41\xda\x80\xda\x2a\xcb\x0f\x1c\x3f\xf8\xea\x5e\x4c\xed\xef\xce\x51\x60\x24\x15\x17\x64\xe1\x7a\x67\xcf\x63\x42\x1b\xbc\x7b\x84\x38\x44\x1e\xb8\x9f\x77\x2c\x9b\x9d\x35\xda\x0b\x09\x9f\xea\x85\xc6\x11\xeb\xc3\x3d\x4f\x1d\x1f\xae\xcf\x11\x3c\x87\xb1\xe0\x39\xba\x35\xcb\xf3\x05\x4f\x66\xa3\x85\x60\x89\xcf\x73\xbd\x6d\x5c\x4c\x14\x07\x29\xc3\xed\x46\x59\x6e\x60\xb9\xc1\x85\x60\xc9\x39\xda\x96\xd8\x22\x67\x3e\x87\x6d\x8b\x87\x09\xc4\x52\x8c\xac\x81\xda\xa0\x33\x3c\x2d\x1c\x9d\xf7\xf5\x90\x81\xbf\x8d\xa2\xb3\xfa\x42\x0c\x96\x2c\xe8\xe0\xb5\x82\xc3\x90\x74\xc0\x58\xdd\x42\x78\xd1\x64\xd5\x61\xd0\x0d\xcd\x55\xf8\x73\xe9\x86\x19\x18\xd1\xc3\xa5\xf9\x31\xd6\xe1\x5e\x33\x56\x07\x62\xbf\xd8\xa1\x7c\x30\x3f\x86\xc0\xb8\xca\x54\x7e\x8d\xfd\x35\x04\xc8\xf6\xca\x16\xe6\x40\xdf\x7c\x1c\x48\xd5\x44\x1c\xd0\xa4\xfc\x3d\x04\x4c\x52\xe5\x60\xa6\x54\x0d\x01\x30\xd5\xdb\x41\x5c\x26\x17\x14\xed\x77\xb7\x74\xf6\xee\xde\x5f\xaf\x62\xe0\xb0\x4e\xa5\x49\x10\xf0\x98\xd4\xec\xdd\x3d\x7c\xd7\xff\xbb\x16\x44\x34\x3e\xf1\xbb\x14\xa2\xf1\x49\xd7\x22\xa8\x26\x09\xba\xfc\xa1\xf1\x09\x7c\x18\xa3\x86\xa4\x69\xc2\x3c\x5a\xd3\x6b\x34\x2c\xef\x8d\xf8\x60\x19\xd7\x3c\xe0\x3a\x61\x73\x54\xd7\x9b\xa5\xa3\x7b\xf2\xe8\x71\xa7\xa3\x44\x74\x84\x07\x34\x71\x8f\x8a\xaf\x68\xce\x7e\xf6\xc9\x56\xa5\x8c\xab\x12\x0b\xf8\x31\xb9\xbe\x73\x3f\x10\xad\x5c\xcc\x45\xe2\x71\x57\xc3\xc0\xa1\xf3\xc8\x06\x41\xb8\x89\xa4\x66\x02\x63\xfd\x1f\xd5\xb1\x32\xb5\xf4\x79\x4c\xc6\xe2\x61\xb9\x6f\x51\x84\x33\x8d\x36\x5c\xe0\x82\xa9\x8f\x9d\xc7\x64\x4e\xec\xd4\x60\x26\xf4\x60\xe0\xd9\xaa\xbf\x81\xdc\xd1\xd3\x1d\xa2\x0d\x7c\x24\xb4\xe6\x07\x1f\xea\x30\xde\x19\x14\x5e\x3b\x82\x02\xdd\xf3\x6c\xc4\x87\xdb\xf8\xc9\x8a\x02\x7e\x64\x05\xba\xed\xa9\x07\xa2\x94\x64\x33\x9f\xdd\x44\x8d\xd9\x35\x04\xb6\xa8\x82\x8e\x82\x96\x13\x5c\x9b\x07\x6e\x1c\x9c\x33\xee\xd3\x2e\x38\x67\x1c\x5d\x6f\x36\x08\x02\x5a\x03\xe7\x8c\xc3\x44\xff\x47\x2b\x83\x4a\x89\xcc\x88\xc7\x76\x50\x22\xa2\x15\xa1\x4d\x13\xae\x1a\x38\x3e\x70\xaa\x03\x13\xd2\xd5\x2e\x4e\x46\x52\x79\x3f\x61\xab\x8e\x38\x61\x1b\x7e\x29\x67\x4f\xd8\x2a\x09\xd3\x3b\xfc\xdc\xbc\x22\xc2\xaf\x15\xab\x03\x74\x74\x07\x77\xcb\xda\x24\x3d\xf7\xca\x5c\x62\xb8\x23\xe2\x9c\xa5\x14\x35\x72\x21\x1b\xe1\xb1\xa5\x6b\x34\x2c\x5b\x8d\xf8\x9e\x79\xd2\x29\xe1\x74\x23\x38\x6e\xf7\x2d\x37\x1e\xbb\x2d\xb9\x41\x3b\xad\x2a\xfa\x15\x5c\xb9\x64\x72\x03\x13\xb9\x41\x8d\x77\x0a\xe2\xd3\xd2\xd8\xc0\x61\xf9\x6f\x12\x84\xb3\xdf\xd1\x4c\x60\xaa\xff\xe3\x86\x4b\x8f\x3e\x55\xc5\x06\x0e\x9d\xba\x3c\xac\xa9\x18\xb0\x33\x7e\x68\x31\xd4\x84\xea\x39\xb9\x31\x49\xe1\xc7\x17\xfd\x38\x42\x3d\x52\xaf\xa1\x9a\x09\xb1\xa5\x13\x99\xcf\x29\xcb\x3d\x76\x7d\x25\x22\xba\x80\x72\x34\xa3\x94\x93\xe4\x45\x4a\xce\x0a\x69\x20\x4a\xcf\x35\x99\xe3\xe6\xb4\x83\x63\xf7\xb3\xbf\x7e\xb0\x02\xd2\x02\xa8\x70\xae\x39\x49\x0e\x60\xb5\xe5\x4b\x53\x22\x15\x8b\xed\xc1\x67\xcf\x16\x4d\xfb\xd8\x58\x29\x3e\x4b\x1d\xf0\xa0\x53\x83\x23\x7c\x68\xfe\xea\xb2\xfe\x1b\x55\x3d\xad\x5f\x13\xc0\x1a\x17\x13\xd5\x41\xca\xa0\xc6\x80\x8d\x91\xe5\x8c\x92\xfc\x5b\xf9\x0b\xf7\x94\x26\x3c\xae\x8f\x34\x1a\x26\x93\x46\x7c\x38\x73\x7b\x26\x08\x5c\x31\x81\xae\x85\xbc\x9e\x08\xec\x38\x0f\x38\xe8\x34\x60\x95\xd4\xec\xe8\xd2\x01\x56\xe9\x3d\x87\xe4\x87\x14\x2c\x27\x98\x3e\xa4\x53\x13\xea\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\x02\xa8\x45\x04\xf7\x69\x4a\xa8\xd1\x9e\x9f\x98\x36\xd6\x9f\xa3\x68\x49\x49\x52\x1d\xd8\x1e\x45\x92\x65\x45\x23\x56\xd0\x79\x15\x8e\x79\x2e\x15\x69\xf4\x04\xf1\x0e\x31\x7d\x8c\x97\x24\x5f\xd0\x5b\xc1\x0b\x2a\x2a\x01\x8f\xa2\x97\xec\x0a\x38\x26\x30\x9e\x9a\x67\x6b\x4e\xdb\x91\xd2\x7d\x2f\x8c\x5d\xa0\x47\x5a\xc7\xb4\x37\x4f\x2b\x4d\xf8\x68\x1e\x3d\xd2\x15\x4e\x64\xf0\x61\x47\x86\x3d\x30\xea\xed\x93\x83\x7b\x27\x78\x62\x41\xe7\xf0\x95\xce\xfb\x8b\xe8\x9c\xa5\xd8\x1e\x4d\x42\x67\xf4\x27\x5b\x67\xa3\xec\xc9\xeb\x78\xdb\xc6\xc5\x9a\xfb\x41\xca\x60\x8d\xbe\xe4\x06\xef\x5d\x60\xf2\xd4\x31\x22\xde\xc7\x1e\xa7\xa6\xf7\x31\x3a\x1f\xad\xa3\x03\x9e\x74\x14\x70\x15\xa3\xf3\xcd\xa5\x57\xe3\xa7\x65\x87\xc9\xd3\xf2\x15\x0c\x9d\x34\x0f\xf8\x98\xcc\x51\xe3\xa6\xd5\x3a\x59\xfb\xcb\xb6\x46\xc3\xb2\xdd\x88\x0f\x96\x6d\xcd\x03\x3e\xad\x93\x35\x7e\x9a\x90\x7b\x34\xac\xd5\x68\x68\x0d\xaf\xe3\x03\xba\xa0\xe1\x0f\x70\xc5\xf9\x43\x97\x4f\xd6\x82\x28\x8f\x87\xdf\x4b\xc4\xe7\x07\xf6\x1d\x8a\x63\x72\x55\x26\x31\xbe\x58\x6f\x89\x5a\x22\x7d\xf9\x32\xfd\xc3\x63\xb3\x4d\xff\x78\x3e\x23\xcb\xf4\x0f\x45\x85\xa4\xa8\xa7\x91\x1a\xa1\x67\x63\x4d\xff\x80\x8f\xe9\x1f\x77\x86\x41\xf7\x80\xb7\x93\xf0\xfa\x0f\x54\x4f\x9d\x30\x29\xd6\x85\x57\x75\x43\x05\x89\x8e\x72\x3b\x44\xbd\x97\x99\x15\xc0\x68\x13\x7c\x81\x50\xf1\x82\x4d\x06\xef\xcb\x1f\xdf\xb2\x5e\x8b\xcd\x1a\xa4\x42\xc0\x0f\xa5\x91\x62\xe9\x73\x06\xe2\x00\xb1\x42\x69\x93\x84\xb3\x99\xb0\x6c\xe0\xc2\x3e\x51\x5b\x28\xee\xd1\x27\x7e\xca\x51\x97\xf8\x75\x74\x28\x87\xb2\x29\x5f\xc0\x35\x47\x9d\xe0\x93\xa5\xc7\x8b\x84\xc8\x12\xbd\x47\xa8\x8e\x0e\x75\x6e\x93\x2c\x63\x38\x5d\xa2\x97\x08\x65\x2c\xf5\xba\xc1\x9f\x76\xec\xef\xa7\xdc\xdc\x31\x34\xc4\xe7\x57\x03\x22\x4e\x59\xdd\xec\x03\x1a\x0a\xa4\x1c\x2c\x2b\x98\xb0\x94\x8f\x4d\xb0\x9f\x83\x24\x0d\x61\x33\x6c\x20\xa6\x26\x88\x9b\x1d\xf0\xcc\xa7\x37\x0f\x8b\x87\xd6\x43\x43\x31\xca\xd6\xa9\x62\x83\x2c\x0f\xda\x30\x2f\x46\x78\xd9\x89\x45\x8b\xf1\x02\x53\xf4\x32\x1f\x2f\x35\xf1\x77\x38\x1b\x92\xbe\xc2\xa9\x1a\xc3\xab\xac\xab\xd6\x7e\xfb\xd4\xbc\xeb\x6f\xbf\xdd\xc6\xb2\x26\x22\xfa\xcd\x9e\x8d\x48\x3f\x1c\x57\xbb\x4a\x30\xfd\xf3\x65\x88\x46\xb0\x0e\xee\x9b\x0e\xbf\x00\x4b\x52\xe5\x90\xfa\xda\x97\xef\xe4\xb2\x32\x7a\x77\xd9\x3c\x6c\xf4\xde\x6e\xa1\xf3\x25\xf3\x38\xfd\xd3\x68\x58\x6b\x6f\xc4\xbf\xf4\x24\xb7\x86\xfa\x91\xa5\xad\xdf\x7a\x5d\x30\xa8\x0a\xeb\xc4\x70\x6e\x11\xfb\x1d\xe6\xae\x52\x6a\xde\x03\x93\xa2\xba\x56\x9f\xb6\x24\x71\x65\x2c\x72\xd8\x1d\x62\x15\xdd\xd3\x2c\x26\x96\x1b\x18\xcb\x0d\x6e\xe2\x63\x5c\x41\xfb\x3c\xa4\x59\x22\xa2\xc3\x4b\x9b\x26\xec\x36\xc2\x2a\x93\xf0\x69\x82\x9b\x71\xa5\xeb\x98\xfa\x34\x65\xb0\x78\xe8\xd4\xb6\x49\x11\xce\xcc\xdf\x70\x81\x6b\xf3\xc0\x0d\x84\xd2\x75\xbe\x1a\x2d\xa9\xc7\xb9\x6e\x8d\x89\x09\x62\x8f\x2a\xa0\xbd\x90\xe6\xb4\xa4\x31\x4c\x4d\xe8\xe3\x87\x71\xf7\xb1\x17\xbf\x2d\x43\x03\x76\x34\x8c\x06\x49\xe0\x63\x2f\x12\x3e\x8c\xd1\x3b\x54\xef\x67\x85\xc7\xfd\x45\x8d\x86\xe5\xbd\x11\x1f\x4e\xef\x36\x2b\x32\xb8\x3a\xbb\x9d\xe0\x06\x63\x29\x95\x73\x2e\x62\x8f\x1d\x42\x8d\x89\xb6\x85\x5d\xaa\x80\xbe\xaf\x4a\x4e\x30\xad\x82\xf8\x1e\x83\xdf\x4d\xf7\xfb\xce\x3d\xf7\xfb\x57\xd9\x72\xb7\x5c\xe0\xaa\xd3\x7a\x6a\x43\x85\x7a\x1c\x6d\xe9\x4c\xf2\x78\x45\x3d\x9a\x4e\xed\x00\x63\x22\x39\x4c\x1a\x70\xfb\x59\xa8\x47\xa8\xd8\xc1\x37\xfd\xfb\x7b\xf9\x13\x55\x95\x71\xbe\x48\xe9\x28\x26\x29\xcd\x13\xe2\x71\x2a\xbb\x03\x8c\x09\xeb\x30\x69\xef\x35\xdb\x0e\x8c\xf3\x27\x11\x5a\xf4\x96\x2b\x94\x5c\x9d\x57\x09\xb8\x30\xaf\xc7\xee\xad\x75\x2d\xd1\x6b\x6d\xb2\x8b\xdb\x06\x44\x87\xc3\x8d\xe0\x23\xaf\x97\x6a\x97\x88\xe8\x80\x58\x1b\x85\x87\x1b\x0d\x4b\xf3\x71\xd4\x12\x50\xf0\xad\xcf\x3b\x82\x2d\x1e\x96\xf5\x16\x45\x28\xfd\xa7\x65\x02\x67\xe6\x81\x5f\x25\xa6\xeb\x9a\xc7\x01\xb1\xd9\x8c\x9e\xb9\x4e\xec\x35\x1a\x9a\x6b\x58\x87\x9a\xd2\xce\x6e\x29\x99\xaf\x3c\xda\x38\x1a\x38\x2c\xfb\x4d\x82\x70\xdb\xaf\x9a\x09\x7c\xd2\xff\xbb\x9c\x3e\xfa\xb6\xa3\xaf\x31\x31\x29\xec\x51\x85\x75\x03\x69\x38\x19\x67\x90\x53\x1d\x42\x1b\x84\xf4\xb8\x31\x2b\x25\xea\x8e\xbc\x8e\x0e\xd7\x0e\xe4\x12\xa6\x12\x35\x86\x56\xcc\x67\x03\xd0\x68\x58\x9e\x1b\xf1\xe1\x2e\x0f\x62\x2b\x02\x77\x0c\xaf\xfc\x31\xf7\x79\xe0\x4f\xa3\x61\xd9\xd6\xf1\x83\xef\x89\xd0\x89\xff\x8f\x8a\x07\x6b\xdb\x1b\x1f\x37\x28\xad\x1c\xc6\xfc\xb8\x42\x23\x05\x8c\xf9\xe9\x6d\xa7\x51\xac\x4f\x27\x6c\x0e\x10\x9d\xa1\xb4\x48\xc2\xaa\xb2\xb2\x07\x98\x7c\x41\x15\x59\x33\x4a\xbc\x1e\xcf\xb5\x78\x8e\xec\xa0\x7a\xb2\x45\xd1\x53\x43\x69\xd3\x9a\x63\x06\x97\x9f\x51\x3d\xe5\xbd\xf4\x79\x09\x84\x46\x43\xfb\xdb\x70\xb5\xb8\xea\x6f\xe3\x02\xa6\x31\x7a\xc4\x96\x09\x8f\x93\x6d\x26\xd0\x79\x76\x1d\x1d\xce\x3d\x92\x88\xe1\x52\xe0\x3b\xcf\x69\xea\xb1\xab\xd5\x68\x58\x9e\x1b\xf1\xe1\xf6\x8b\xd3\xb4\x80\x49\x9a\xe2\x67\xa9\x97\xf1\x68\xeb\x53\xd1\x68\xf0\xd0\x4e\xcb\x50\x0c\x1e\x67\x5a\x0c\x42\x5a\x2a\x6c\x25\x7c\xc7\x5d\x27\xea\xde\x37\x8c\xb7\xd6\x93\xa3\xdd\xb5\xee\x53\x86\x1d\x06\x0e\x38\x6c\xed\x38\x24\x21\xd4\xa3\xe7\xcb\x0f\x6b\x4c\x4c\x38\x7b\x54\x81\x75\x55\xe6\x46\x43\xa3\xa6\xea\xba\xd6\x70\xcb\x45\x52\x08\x2a\x3d\x36\xbb\x0a\x12\x93\xc8\x2e\x51\x38\xe7\x5e\x25\x23\xf8\x5e\x86\xd0\x89\x03\xf7\x68\x60\x32\xe3\xa8\x75\x49\x1d\x1d\xee\x20\x23\x7f\x84\x33\xfe\x88\xda\x90\x93\x9f\x34\x8d\x89\xcf\x53\xb0\x15\x24\x96\xfb\x8a\x68\xa4\x78\xc1\x06\x0c\xbb\xbb\x30\x82\x16\x29\x8b\x89\xa2\xc9\x0b\x0c\x6d\x6a\x38\x63\xbe\x10\x0f\xb4\x51\xd9\xfb\x36\x96\x2f\x66\xeb\xf9\x7c\xb8\x71\x57\x8d\xc5\xcc\x19\x9c\x21\x7b\x23\xbb\x48\x29\x1b\x72\xe2\x78\x17\xe5\x45\x46\x49\x35\xcc\x0b\xec\x92\x6a\x10\x2f\x25\x2f\xe9\x10\x5f\x43\x7b\x9f\x32\xd8\x68\xac\xa7\x11\x76\xc9\x11\x5a\x0d\x00\x3e\x96\xef\xbf\x36\x5f\xf7\xd2\x92\xd7\xd0\x92\xaa\x1a\xb0\xaf\x21\x50\x0d\x53\x56\xdd\x1a\xeb\xd2\xbd\x19\x08\x58\xd9\x4e\x55\x80\x13\xf7\x66\x20\x60\xdd\x50\x1b\x02\xac\xde\x0d\x04\x35\x1d\x5c\x8d\x77\xa7\x7f\x0e\x84\xd2\x4d\xb6\x46\xba\x66\xbb\xf7\x87\x1c\x0d\x64\xbb\xb7\x7c\x9d\xcd\x9a\x59\x3d\x6d\xbc\x1d\x08\x6c\x4d\xec\x2a\xc4\xfe\x56\x76\x8d\xd2\x6d\x15\xec\x0b\x2a\x6f\x42\x9a\xb5\x17\x77\xec\x65\x7d\x2b\x51\xef\x1e\x9d\xe8\x11\x1e\x9d\xe8\x2b\x79\x74\xa2\x12\xa6\x14\xbf\x34\x3e\xce\x7c\xde\x0d\xab\xd1\xb0\xec\x37\xe2\xc3\xf9\x1e\xc9\x98\x84\xf1\xe4\x12\xb5\xf5\x70\xdb\x9c\xc5\x7a\x26\xbd\x3a\x85\x6c\xc2\x62\x82\x38\x44\x18\x7a\x77\xd5\x32\x73\x7b\xa0\xb7\xe6\x07\x26\xa2\x42\xb0\xdc\xeb\x9d\xd8\x0e\x10\x13\x4b\x5a\x04\x3f\x6e\xe9\xbe\x02\x6e\xed\x13\x35\x02\x21\xf1\x4a\x7a\xbd\xd6\xcf\x02\x3a\x3a\xe4\x5a\xbf\x16\x5d\x4f\x0b\x0f\x9b\x16\xae\xec\x13\x55\x33\x06\x70\xf5\x72\x94\x97\x97\x9e\x0e\x5e\x06\x6f\xf7\xd6\xae\x5d\x8e\x72\xeb\x32\xf7\xa9\x31\x98\xe3\xaa\x82\xb9\x1a\xbe\xef\x21\xe7\x43\x14\x0c\x15\xdf\xd0\x2d\xcc\x38\xdc\x13\x34\xe3\x8a\xc2\xb9\x2a\xfa\x79\x72\x6f\x26\x9e\xce\x77\x95\x1a\xfd\x38\x1f\x31\x00\xc8\x25\xa5\x3e\xbd\x3a\xb6\x60\x8f\x18\x00\x2c\xe1\x60\x2b\x9b\x03\x58\xaf\x34\x98\x58\x66\x6e\x30\x99\x9a\x1f\x43\x2c\x73\x1c\x4c\xcb\xde\xc7\xa2\x75\x9b\x28\x48\xc5\x33\x8f\x0d\xd6\xc0\x61\x45\xd6\x24\x08\x68\xa0\xc1\xb3\x02\xa6\xfa\x7f\x87\x7d\x0a\xcb\x17\x8a\x66\x85\x5f\x45\x70\x1b\x17\x97\x86\xa6\x1c\xed\x90\x86\x34\x5c\x69\x7c\x18\x4c\xcd\xcf\x3b\xf7\xb3\x73\x9e\x1f\xc0\xa5\xf1\xc9\x71\x3e\x8d\x4f\x5e\xcf\xa9\xf1\x49\xdb\xab\xf1\xc1\x69\xff\xea\xc8\x9b\x84\x56\xcf\x8a\x60\x15\xe4\xf6\xa0\x9d\x99\x62\xe2\xf1\xfe\x81\x22\x41\xaf\x1f\xa8\xa3\xc3\x4d\x39\x93\x39\xdc\x26\xe8\xdd\x03\xab\xf5\x8c\x8a\x9c\x2a\x9f\xeb\xd1\x1a\x13\xcb\x7f\x4d\x35\xca\x49\x46\x65\x41\xe2\x21\xcb\xd3\x7d\x30\x9e\x78\xc1\x59\x16\x83\x95\x74\x0d\x94\x84\x16\x29\x7f\xca\x86\xdd\x8b\xb3\x87\x56\x50\x21\x99\x54\x34\x57\xa3\x0d\x4f\xd7\x19\x95\xa3\x38\x25\x6c\xc8\x09\x9f\x7d\x6c\x3e\xe4\x72\xfd\x3d\x98\x98\xe7\x73\xb6\x18\x65\x2f\x30\xaf\x41\x33\xec\x01\x54\xda\xcb\x29\xfd\x40\xc5\x62\xd0\xdc\xe7\xb9\x8f\x1a\x91\x38\xe6\xeb\x17\xd4\x16\x5e\xd0\x5c\x2e\xd9\x5c\x8d\x66\x6b\x96\x26\xae\x3c\x7c\x7c\xe1\xfd\x90\xab\x48\xf7\x50\x4a\x25\x32\xe3\xb9\xfe\x36\x25\x78\x9a\xd2\x21\xd7\xe9\x1f\x40\x96\x7c\x2d\x62\x2a\x47\x0f\x6b\xae\x06\x37\xde\x1d\x01\x7a\x69\x13\x6b\x3d\xbb\xaa\x3f\x30\x74\xbf\x5f\xb3\x06\x57\xad\xfe\x2e\xab\x15\x7c\xaa\xe2\xdc\x1d\xad\xa7\x2e\xa6\xd7\x2c\xba\xc1\xa1\xca\xd5\xdf\x46\xec\x0d\x06\x5f\xcb\x98\x2f\x3a\x62\x28\xfe\xb2\x68\x62\x7e\xbc\x3d\x1d\x0a\x54\x8f\x32\x0d\xbc\x9b\xea\xe5\x50\x58\xdd\x6f\x36\x00\x6f\x79\x32\x18\xaa\x31\x58\x34\x10\xdf\xd7\x6f\x87\x02\xdf\xf3\x59\x03\xf0\x8a\xcf\x86\x17\x76\xd5\x7a\xff\x6e\xb4\xde\x56\xa1\x57\x14\xe3\x9a\x60\x28\x3f\xdb\x72\xaa\x2a\xd6\xe0\x33\x36\x31\x55\x15\x1b\x5c\x7a\xd5\x00\xf3\xb7\x1b\x60\xfe\xb6\x23\x6a\xb3\x48\x2b\x9a\x6f\x96\x64\x6c\x28\x7a\xb1\xac\x7a\x15\x30\xbd\xca\xdf\xae\x5b\x86\xcf\xe5\xfb\x33\xfd\x7a\x6c\xdf\xfa\xcb\x0c\x9a\x8b\x81\x5c\xca\xe1\x73\xbf\x2b\x19\x0c\x69\xe6\x6c\xcd\x56\xa9\x7f\x0f\xff\x3e\x33\x26\xb7\x3e\xcf\xbc\x79\x49\x81\xed\x96\xd4\xf0\x1a\x6d\x8a\xf8\x6f\x3d\x3f\x6a\xd6\x66\xf3\x76\x42\x76\x95\x56\x07\x56\x7f\x44\x2d\x69\xee\x7b\x49\x69\x41\x3b\x97\x94\x2d\xb2\xb0\x4b\x4a\xcb\x0a\x4e\xcd\xa3\x63\x27\x69\x24\x7d\x9e\xac\xb7\x78\xe8\x42\xb3\x49\x11\x70\x3f\x09\xc6\xe8\x01\xda\x58\x3c\x15\xca\xa3\x11\xb2\xc5\xc3\x57\xd8\x0d\x8a\x97\xfa\xb0\x68\x81\x8d\xa2\x62\x51\xf4\x12\x53\xbe\xa1\x42\x51\x01\x16\x06\xc6\xe6\xd1\xcf\x07\x85\x4b\xfa\x9e\x2d\x98\x22\xe9\x94\x2d\x72\xa2\xd6\xe2\xb8\xdd\xe4\x1d\xf6\xb7\x17\xb7\xe8\x8e\x47\x4e\x16\x8c\x7b\xac\xa4\x16\x0f\x2b\xab\x16\x45\xb0\x4a\x6a\xb9\xc0\x8d\x79\xe0\x86\x6f\x39\x53\x1e\xbb\x2d\x8b\x87\x09\xa0\x45\x11\xd0\x02\x4e\x73\x81\x33\xf3\xc0\x04\x90\xdc\xfb\x74\xaa\x7b\x8f\x7b\xd2\xbd\x0f\xef\x3e\xf7\x3e\x85\xf7\x57\xd7\xa8\x99\xf9\x5a\x2a\xbf\xa7\xd9\x4b\x44\x2c\xef\x3b\x34\xe1\x4c\xce\x1d\x1f\x98\xb8\x00\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\x31\x9c\xd9\x27\x3a\x03\x31\x0b\x1a\x45\x62\x8f\xf7\x93\x55\x90\x58\xe9\x56\x44\xa3\x45\xfa\x12\xb3\xe2\x1a\x27\xe7\x9b\x97\x69\xf7\x0c\x4a\xcc\xf2\x64\xb8\xb9\x74\x8d\xb3\xa2\x4f\x52\xf1\x21\x3e\xa6\xf6\xf2\x45\xd7\x6a\xc0\x16\xd6\x3e\x90\xdc\xb2\x79\x70\xaf\x25\x15\x3b\x30\xec\x60\xaa\xff\xf7\x5f\x62\x1b\x04\x5d\xa2\x70\xc3\x37\xfd\x94\x84\x75\x7a\x5b\x96\x30\x36\x8f\x81\x18\x65\x39\xc2\x27\x17\x18\x9a\x17\x5b\x8a\x70\x63\x9f\x03\x51\x6c\x5b\x81\x8b\x74\xdf\x78\x79\x6f\x88\x19\xad\x58\x4e\xa5\x4f\x73\xca\x06\x68\xc7\xd0\xb5\x43\xd6\xff\x88\x5b\x0d\x31\x9a\x33\x41\x97\x5c\x06\x9f\xb9\x91\xad\x84\x92\x17\x7c\xb2\xcc\xcf\xdd\xef\x7e\x1e\x28\xb7\x12\xdc\xc7\x97\x38\x1d\x37\x81\x7b\x34\xf8\x61\xe8\xe9\x97\x3a\x3a\x9c\x41\x0e\x53\x70\xc1\x50\xff\x44\x92\x8a\x4d\xea\xd3\x89\x93\x03\x44\x67\x13\x2d\x92\x50\xa7\x26\x1d\x17\x98\xda\x27\x6a\xdd\x27\x28\xcd\x88\x58\xf9\x9c\xff\xd7\x98\x98\x28\xf6\xa8\xc2\x99\xde\x55\x9c\xe0\xbc\x0a\xa2\x35\xc3\xab\xb7\x07\x59\x3b\x54\x38\x38\xc9\xd2\xf1\xf7\xe4\x71\x36\x6c\x96\xa5\x53\xc3\x94\x93\xe2\x8a\x3c\xce\x70\x37\x9f\x82\xe4\x0b\x9e\x78\x34\xec\x2e\x11\xd1\x6e\xb8\x4d\x13\xae\xdf\x74\x7c\xe0\xd4\x04\xde\xa3\x56\xdc\xce\x36\x30\x23\xcc\xa7\x27\xff\x1a\x14\xed\xfc\xf6\xc8\x86\x9a\x36\x6a\x88\xd7\x75\x45\xa6\x39\xb6\xcd\x12\x27\x84\xa5\xc3\x5d\x90\x19\xbc\x1a\x08\x3d\xab\x5b\xba\x9c\x1b\xdd\x4b\xf1\xee\x5f\xbf\x7b\x3c\xb2\xbb\x83\x8c\x15\xde\x33\xb4\x9e\xe5\x5e\x7b\xdb\xb3\x5c\xe0\x6a\xfa\xf5\xdd\xbf\x7e\xff\x4e\x67\xd3\x4e\xaf\x7b\xa9\x39\xbe\x74\xef\x75\x29\x55\x63\x62\xb2\xd9\xa3\x0a\xe8\xd1\xb6\xe4\x04\xd7\x55\xb0\xeb\x16\x9d\x10\x76\xfd\x6d\x5c\x4c\x38\x07\x29\xc3\x39\xb4\x94\x3c\xaf\xcd\xfc\xaf\x24\x3f\xee\x06\x57\x7b\x0e\xeb\x9d\xef\xc3\x5f\xef\x3a\xa6\xe9\x0d\x92\xc0\x47\xbf\xde\x19\xfd\xd2\xf4\x1d\xaa\x0a\x17\xbc\xf0\x7a\x10\xde\x01\x62\x42\x68\x93\x84\x53\x8b\x5b\x36\xf0\xde\x3e\x8f\x18\x21\x67\x6c\x61\xae\x02\xf7\x3e\x4a\x96\xc0\x47\x8c\x94\x3b\xa4\x43\x47\xcb\x12\x66\xf4\x0a\xd7\xf7\xb9\xe1\xad\x64\x69\x6e\xb4\xb5\xc3\xdc\x19\x5b\x98\x4b\xd5\xa7\x5f\xae\x87\x0c\x98\x15\x62\x1b\x0d\xd7\xee\xfb\x9c\xe4\x74\xcd\x6e\x0a\x5e\xbc\x1b\x7e\x84\x27\x7b\xc1\xf9\x1f\xcd\xf9\x25\x8c\x87\xa6\x65\x2f\xb1\x26\x1d\x76\x46\xfe\xe0\x32\x22\x63\x19\xb5\xe7\xee\x0b\x22\xd4\xb0\xc5\x84\xc6\x80\x0a\x03\x26\x2c\xa3\x93\xf2\x57\xbf\xdd\x6b\x33\xb3\xeb\x9a\xd3\x15\x29\x51\x9a\xb3\x67\xb7\x34\x2d\x58\xb4\xb2\x1e\x20\x0c\xb5\x26\x2f\x79\x59\xf7\x34\xb7\xee\x57\x97\x87\x1a\xc5\x32\x9f\x2b\x73\x03\x87\x49\xa4\x49\x10\xd0\xe3\x62\x46\x05\xdc\xe9\xff\xe8\x40\x6c\x2d\x1f\x78\x4c\x89\xc7\xd3\xa6\x4d\x54\x74\x48\xde\xa7\x0b\x78\x91\x5d\xcd\xab\x34\xf8\xf8\xac\x7f\xe0\x2e\x29\xd7\xf1\x72\x46\x7c\xfa\x23\xae\x20\x31\xc1\xec\x12\x85\x33\x31\x2a\x19\xc1\xb8\x0c\x75\xe9\x9a\x65\xee\x59\xcf\x2c\xf3\x4e\x1d\x73\x4d\x12\x54\x27\x2c\x73\x09\xd3\x1c\x55\xe1\xca\xd4\xeb\xaa\xcf\xc0\x61\xb9\x6f\x12\x84\xdb\x1b\xd5\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\x25\x86\x73\x17\x38\x62\x7e\xd9\x18\xfa\xf7\x92\xa3\xba\xc4\x9f\xac\x98\xb3\xd4\x63\xd7\xe3\x00\x31\xe9\xb4\x49\x7a\xce\x6c\x5c\x62\xf8\x8b\x15\xe7\x2c\xc5\x37\xa3\x9d\xd1\x83\x6f\x27\x28\xdd\xd7\xbe\x9c\xbc\xd2\xbd\x2f\x27\xe5\xc5\x2f\xa8\x9d\x45\x4e\x95\x7a\xf2\x3c\x35\xab\x31\x31\x51\xec\x51\x85\x9a\x94\x19\x46\x76\x46\x76\xa3\x83\x5d\xd3\x31\x96\xcf\xd3\xf5\xa3\x4f\x15\x7a\x89\x88\x89\x63\x87\x26\x9c\x73\x56\xc7\x07\x2e\x4d\xe0\xb0\x0a\x7d\x35\x5a\xe9\xe7\x31\xfb\x66\x98\xd1\x94\x03\xc1\xb2\xdd\x26\x39\xd6\x1b\xc6\xce\x84\x97\x2c\x24\x5f\x7b\xac\xc0\x0e\x10\xeb\xa7\x14\x4b\x9e\x26\x9a\xba\x8f\xc9\x70\xa3\xab\x72\x2c\xe0\xae\xc2\x41\x7b\xab\x42\x70\xc5\x67\x6b\x9f\x67\x83\x1d\x22\x96\xc9\x1d\x9a\x9e\x59\x2c\x53\xc3\xad\x0b\xe0\xfd\xf1\xcf\xb5\xa0\x23\xa9\xb8\x20\x0b\x3a\x9a\xa5\xdc\xe7\x16\xd6\x1e\x36\xda\x47\x3f\x47\x1d\xae\xb7\xd6\x1c\xc1\x71\x04\xcd\x11\xce\xd2\xdd\x23\x52\x3b\x59\x92\x8a\x0a\x26\x3d\x4e\x85\x4a\x44\x54\x34\x6d\x9a\x70\x02\x71\x7c\xe0\xd4\x05\xf0\x5b\x8c\x63\xc1\x0b\xc1\xf5\xd0\x3f\xca\xa8\x12\xcc\xe7\xa8\x7e\x08\x1d\x13\x11\x42\x1f\xce\x06\xb6\xc1\x13\x1c\x4f\x98\xe8\x97\xb7\xf6\xe5\xc4\xbe\x43\x27\x02\xc4\xa7\x33\x18\x8d\x86\x0e\xfe\x24\xbc\xbb\x16\xcd\x03\x6e\xc8\xee\xa9\xab\xbd\xa1\x99\xe5\x4c\x16\x3e\xb5\x0f\x35\x66\xc7\x80\xdf\xa6\x0a\x39\xe4\x3b\x4e\x7a\xd0\x77\x41\xdc\x0a\x55\xd2\xdf\xff\xc7\xa7\x11\xaa\xc6\xc3\x46\x9a\x16\x45\x6f\x13\x54\x9d\x16\xce\xcc\x03\x1d\x63\xe8\xa3\xcf\x5b\x2f\x35\x1a\x56\xc0\x8d\xf8\x60\x45\xab\x79\xc0\x87\x47\x8a\x3a\xdb\x17\x3e\x7d\x5f\x0b\xdc\xeb\xb5\x18\xe2\xef\xfa\x60\x95\xa8\x91\xfa\x89\x44\x48\x09\x5f\x77\x5d\x60\x77\xd5\x21\x97\x08\xad\x3d\x0b\xaf\x0e\xf1\x16\xc7\x78\xc3\x5b\x0c\x75\x85\xa7\x13\xc2\x45\x97\x13\xbc\x05\xe5\x31\x4f\x7c\xea\x9e\x4b\x44\xac\x8a\xec\xd0\x84\xdb\x9f\x73\x7c\xe0\x82\xf2\x31\xdf\x33\xcb\xdd\x99\x0e\x2f\xe8\x86\xe6\x1e\xed\x04\x1d\x20\x26\x88\x36\x49\x38\x1f\x3c\x96\x0d\xdc\x2e\x3e\xe8\x27\x3a\xab\x54\xdc\xe3\xcd\x6f\x1a\x0d\x9d\x4d\xd6\xf1\xe1\x66\x92\x8a\x67\xe6\x3e\x76\xdc\x14\x50\xf0\xb5\xd7\x5b\xbe\x2c\x20\x96\xf9\x36\x49\x38\xcd\xaa\x65\x33\xe3\xaa\xf1\x72\x6a\x5f\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\x3b\xb9\x74\xea\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\x7e\x7c\x25\xbb\x07\xc4\x76\xfa\x19\x22\x25\xc9\x13\x41\x1e\x3c\x0e\x7c\x0d\x50\xb4\x0b\x0b\x6f\xb1\x56\x7d\x09\x8c\xcb\x10\xaa\x1b\x89\x89\x47\x31\x68\x34\x6c\xc1\xd3\x88\xef\xa9\xde\x88\x49\x0a\x97\x63\x92\xa2\x6b\x1d\x79\xef\xd3\x43\x8b\x46\x43\x67\x77\xf7\x99\x1c\xcd\x88\x8a\x07\x4c\xf0\x6a\x84\xe0\x93\xc3\xfb\x4c\xc2\xf4\xbe\xa7\x23\x29\x93\xca\xe4\xcd\xa4\x3d\xd3\xa1\x23\xac\x4c\x13\xa1\xbf\xd6\x5b\x09\x34\x51\xb1\x92\x38\x40\x17\xda\x22\xd4\xf0\x72\xc6\x9b\xef\x75\x18\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\x7b\xad\x9e\x39\x99\x79\xac\x3b\xea\xc1\x17\x2f\x98\xab\x78\xba\x6e\xe0\xc9\x99\x12\xcc\xa7\xf3\x72\x07\x88\xe5\xbd\x4d\x12\x6e\xd7\xc5\xb2\x81\x1b\xfb\x44\x6b\x7f\xac\xd8\x86\x7a\xbd\xc5\xd9\x21\xa2\xf5\xbf\x4d\x13\xae\x01\x38\x3e\x70\x6a\x02\x93\x2f\xa8\x09\xf0\x96\xa5\x3e\x6f\x73\xb6\x78\x98\x18\x5a\x14\xe1\xac\x80\x0d\x17\xb8\x33\x0f\x4c\x00\x3f\x69\x9e\x50\x9f\xdb\xd9\x0e\x10\x13\x41\x9b\x24\x98\x0c\x1c\x1b\xf8\xcb\x3e\xd1\x8d\x37\x41\x58\xae\x04\xf5\xe9\x00\xa6\x84\xc4\x24\xb1\x4b\x14\xce\x57\x59\xc9\x08\xce\xca\x50\xa7\xb9\xef\x83\x6f\x73\xdf\x87\x6e\x73\xdf\x87\xd7\x31\xf7\x7d\x90\x30\x7d\x40\xb5\x16\x3c\x65\xf9\x82\x7b\xdc\x8b\x75\x80\x98\x04\xda\x24\xe1\xdc\xb7\x58\x36\xf0\xd9\x3e\xd1\xde\x81\xf3\x15\xa5\x85\xcf\x79\x62\x05\x89\xf6\x10\x3b\x44\xe1\xfa\x88\x92\x11\xfc\xc5\xf9\x27\x13\x42\x67\x4d\xf7\x99\xf4\xe8\x24\xcc\xc0\xa1\xf3\xa6\x06\x41\xd0\xd5\xe8\x89\x59\x52\xa2\x16\xab\x69\xe2\xd3\x6f\x83\x46\xc3\x72\xde\x88\x0f\x77\xd2\x39\x21\x05\x5c\x27\xbb\xb7\x3f\xb6\x3f\xf4\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\x6f\x7c\xbf\xf5\xcf\x79\x03\x40\xaa\x41\xa6\x78\x0d\x84\xed\x30\x35\x67\x4f\x43\x27\x15\x27\xf0\x41\xc5\xc9\x54\xed\x59\xf4\x1d\x9b\xf4\x13\x7d\x1a\x98\xf2\x7b\x97\x8e\x53\x3f\xd5\x4f\x7f\x65\x6f\xf1\xb0\xd2\x6f\x51\x04\x13\xbb\xe5\x02\x5f\xcc\x03\xb7\x9f\x69\xdd\xab\x22\x53\xee\xd5\x96\x66\x0f\x1c\x13\xcd\xf3\xe4\x01\x6d\x6c\x9a\x17\x53\x80\x66\x09\xb7\x8b\xc6\x4d\x14\xd3\x14\x37\xb6\xf0\xba\x3b\xd1\xb1\x39\xf1\x0a\x3b\x0b\xf7\x99\x84\xab\xdd\x7d\x85\x1d\x15\xc5\x52\x30\x9f\x7b\x90\x16\x0f\xcb\x77\x8b\xe2\xa5\xe6\x89\x2d\xb0\x9e\x4a\x11\x93\x14\xee\xcc\xa3\x9f\x9d\x62\x2b\x29\xbe\xdf\xc5\x7c\x7a\x37\x63\xb8\xfb\x5c\x36\xd8\xb1\x82\x64\x43\xfc\x2a\xf4\x5c\x58\xb0\x02\xa6\x0c\x9d\x5d\x9b\x73\x79\xf1\xd6\xab\xa2\x41\x03\xa2\x73\x96\x16\x49\xd8\xa3\x80\xf1\x16\xc6\x5b\x74\xee\x42\x64\xfe\x9b\xcf\xe9\x5a\xfe\x1b\xd6\x7a\x1a\xf1\x3d\xad\xbd\x75\x4a\x38\x9d\xde\xfc\x86\xd7\x7e\x2d\x70\xa2\x8e\xba\xf0\xf1\xe8\x46\x50\x61\xa2\x6d\x61\x97\x2a\x5c\xb5\xae\x38\xc1\xb4\x0a\xa2\x2b\x67\x92\x2f\xd6\xc4\xe7\x1a\xb2\x44\xc4\x04\xb2\x43\x13\x6a\xdf\xa5\x64\x03\xd7\x2e\xf0\xcc\x32\x32\x27\xea\xa8\x7d\x68\x74\x01\x69\x41\xb0\x5c\xb7\x49\x8e\x3f\xda\x1a\x45\x85\xe0\xc9\x3a\xae\x55\x5d\xa6\x0d\xd1\x82\xe6\x09\xcd\x63\x56\xf3\xb1\xbc\xba\x33\xd0\x99\x8d\x51\xc9\xb1\x4a\x10\xf3\x5c\xae\xb3\xd7\xfc\x84\x92\xe3\x81\x5a\x5b\xa9\xc6\xbc\x5f\x61\xb0\x8b\x8c\x95\xe7\x33\xb4\xe1\x15\x82\x9d\xf7\x1b\x54\x93\x3e\x7b\xeb\xfd\x63\xe6\xd1\x66\xa7\xc6\xc4\x3a\xf3\x3d\xaa\x41\xd7\xf6\x3f\x66\x69\x79\x73\xff\x8f\xc9\x35\xda\xbb\x27\x74\x46\x7f\xb2\x75\xe6\xdf\xa6\x6f\x17\x19\xab\x12\xcf\xd0\x86\xb3\x29\x70\xfc\xe0\xbd\x0b\x4c\x2c\x5f\x54\x6b\x68\xfd\x78\x7a\xd4\x1a\xb6\x5c\x91\x1e\xac\x0e\x6d\x12\x77\x92\xa5\xfd\xb2\xe7\x98\xef\x12\x1b\x1f\x87\xc7\x78\xa8\x3a\x90\xf4\x87\xf5\x5f\xda\x71\x3f\x81\x22\x45\x4a\xf2\xdc\x67\x27\xd3\x00\xc5\x2a\xd3\x3e\x59\x40\xb7\xf9\x15\x2b\xf8\x5c\x28\x72\x6b\xc3\xe8\xe4\xb0\xf0\xea\x73\xa7\xe8\x70\xb8\x53\xbc\x82\xb7\x9d\x22\x97\x70\x5a\xe0\x26\xc3\xf7\x32\xf5\x69\x24\x2b\x53\xdc\x38\xb6\x8e\x0f\xe8\x33\x34\x55\x70\x25\x53\x54\x17\x31\x63\x79\xe2\xd1\x19\xa4\x81\xc3\x3a\x0c\x43\x30\x5a\x6d\x8a\x9d\x37\x73\xf6\x48\x93\x9d\x77\xb1\xdc\x0c\xeb\x43\x4c\x72\x30\x90\x70\xa6\xc3\xe7\x3a\x78\x4d\xf3\x85\x5a\xf6\xec\x53\x2c\x54\x2c\x37\x16\x68\x2c\x37\x83\x00\x56\x9b\xc2\x02\x7c\xa2\x4f\xdf\x48\xba\xa6\xb7\x84\x09\xb4\x83\xda\x78\xec\xc8\x37\xe8\xd1\xac\xcd\x91\x07\xb3\x06\x4f\xd7\x37\x19\x7c\x43\xcf\x64\x15\x64\xe9\xd1\x1e\x46\xa3\x61\xf9\x6d\xc4\x87\xd3\x11\x92\x25\x87\x5b\xb2\x44\xed\x60\xd2\x9f\x1e\x7d\x7c\xa4\x3f\x51\xf7\x1e\x75\x74\xcf\xb6\x94\xfe\x9c\xc3\xf5\x5f\xe7\x68\x5d\x15\xd4\x63\x46\x04\x9d\x63\xa5\x57\x47\x87\xaa\xae\x82\xce\xe1\x2b\x9d\x63\x25\xb7\xce\xd9\x86\xc7\x4c\x3d\x8d\x0a\x22\x24\x15\x1e\x07\xcc\x3d\x68\xac\x54\x6b\x62\x55\xf5\x95\xcd\xb7\xf1\xc1\xb7\xcd\xbe\xb6\x67\x6d\xa8\x40\xe0\xdf\x39\xfb\x66\x42\xa6\x6f\xfd\xce\x92\xde\x5d\xeb\x01\xac\xbb\xde\xdd\xeb\x01\x90\xfd\x3e\xba\x2d\xe1\x6c\x43\x7d\xfa\xcf\xdd\x50\xf4\xa8\x47\x23\xbe\x47\x6f\x53\x6a\x38\x1a\x60\x0d\xa0\x63\x0a\xad\xd2\x91\xe8\x74\x30\xd9\xd0\xf4\xba\xad\x9c\xc1\x4f\x19\x95\x89\xba\xbd\x8b\x7b\xf6\xd0\x78\x72\x84\x8b\xc6\x93\x57\xf2\xd1\x78\x52\x3a\x69\x44\xb5\xa9\x7a\xcd\xe3\x71\x59\x6a\xe0\xb0\x46\x6f\xd6\x58\x4d\xaa\xfe\xae\xe4\x67\x66\x79\x85\xdf\x2e\x92\x4b\x8f\xc6\xba\xb9\x44\xed\x74\xeb\xe8\x70\xb6\xca\xf2\x01\x6e\xe4\x03\xba\x80\x2e\x88\xf2\x78\x30\xdc\xc0\x3d\xdf\x9e\x9b\xd1\xbd\x1a\xb4\x49\x08\x3f\x6e\x89\x5a\xb6\x9a\x74\x9b\xfb\x9c\xc4\x74\x76\xd4\x01\xd5\x63\xf3\x53\x22\x62\x05\xb9\x43\x13\xee\x06\x20\xc7\x07\xce\x5d\x00\xb5\xab\x5c\xe4\x1e\x3b\x7c\x8d\xf6\x7c\xa9\x36\x62\x7b\x15\xaa\x4e\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\xe2\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\x0e\x9e\xad\x51\x55\xd5\x96\xae\x3c\x9e\xa3\xd2\x68\x98\x1c\x1a\xf1\xc1\x2a\x83\xe6\x01\xdf\xe9\x0a\x3f\xa2\x4c\xe3\xdf\x7f\xfd\xbf\x7f\xfc\xea\x2f\xeb\x25\x22\x96\xfd\x92\x66\x14\xa7\x6c\x90\x03\x9f\x1d\x18\x49\xc5\x26\xbc\xde\xb7\x64\x07\x96\x9d\xb9\x38\xb0\xe7\x5d\xa5\x15\x84\xcd\x38\x8c\xcd\x03\xf7\xba\xe0\xd3\x5d\xb7\x46\x43\x17\x56\xfc\x58\x37\xdd\x83\x5b\xa6\x66\x01\x13\x8e\x3b\x2a\x37\xeb\x91\xc4\xeb\x2d\x7c\x0e\xb1\x73\x15\x94\x24\xb3\xa1\xb7\xc5\xb5\x51\x5e\x65\x2d\x55\x7d\x2d\xbc\x4f\x66\x27\x03\xee\x98\x2b\x51\x4c\x7a\x74\x9e\x50\x78\xec\x1f\xef\x0b\xb4\x7b\xac\xa3\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\xd3\xb8\x7c\xeb\x98\x3b\x90\xec\xc1\xa3\xad\xa0\x46\x43\x7b\xa9\x3a\x3e\x5c\xdf\x92\x3d\x14\x70\x3a\xf9\x72\x8b\xdf\x26\xc1\x7c\x3a\x5e\x30\x70\x58\xc6\x9b\x04\xe1\x16\xc1\x9a\x09\x9c\xeb\xff\xa8\xd3\x85\xd2\x76\xa1\xe0\x52\x2d\x04\xf5\xd8\x3a\xf6\xa0\x31\x99\x3c\x47\xfc\x7a\x46\x14\xb7\x8e\x71\xd7\x31\x54\xe6\xd3\x8a\xc2\x01\x76\x0c\xe6\x0d\x92\xa0\xc7\x50\x19\xc9\xe0\xf2\x74\x82\x1e\x38\x7c\x92\x29\x5f\x78\xb4\xa5\x34\x78\x8e\xec\xf0\x85\xc9\x4d\x8a\x9e\x86\x91\x26\x29\x4c\xcd\x03\x37\x13\xcd\x0a\x9f\x56\xd2\x59\x81\x9b\x49\xd7\xf1\x03\x2e\xaf\x2b\x5e\xc1\x50\x3a\x2b\x0a\x98\x66\x05\x6a\x2a\xfd\x93\x15\xa3\x84\xce\x53\xe2\xd7\x16\xaf\x81\x8a\x55\x8b\x9f\xac\xd8\x21\x1b\x45\x8b\xfd\x97\x3d\xb7\xb0\xca\xd4\x70\xf1\x93\x15\xef\xdd\x8f\x9e\xbb\x4e\x15\xc6\x5f\xcf\x42\xec\x2c\xb2\xb9\x58\x25\xc4\xa3\xa1\x85\x03\xc4\xaa\x60\x9b\x24\xdc\xda\xdd\xb2\x81\xef\xf6\xd9\x79\xc3\x99\xcf\x95\x92\x03\xc4\xa4\xd0\x26\x09\x7b\xb7\x59\x32\xb3\x37\x9b\x75\xdc\x55\x2e\x7c\x6a\xe5\x35\x1a\xd6\x88\x1a\xf1\x3d\x67\x98\x82\xaf\xe0\x42\x70\xfc\xde\x28\xe3\x41\xc1\xef\x05\xc3\xdd\xf7\x0b\xbf\xce\xf5\xc2\x20\xdf\x01\x7e\xb3\xf0\xcc\xeb\x45\x86\xb3\x8e\x0b\x0c\x67\x47\x5f\x5c\xd8\x50\x78\xb8\x46\x90\x92\x63\x7d\xb5\x37\xd2\x1e\xd8\xde\x68\x7c\x43\x4f\x67\x20\x94\xe4\xe6\x2b\x60\xac\xff\x1f\xb1\xee\xaf\xb6\x46\x74\x52\x38\xa3\x24\xef\xb3\x81\x5d\x25\xc2\x2f\xa4\x14\x34\xf6\x68\xf5\x67\xf1\xd0\x39\x70\x93\x22\x94\xda\xca\x32\x81\xf7\xe6\x81\x6e\x78\xde\x7b\xdc\xed\xbc\xc7\xf2\x5d\xc5\x86\x73\x2c\x70\x0f\x3f\xae\xd0\x25\x20\x91\xea\xde\xab\x5b\xff\x12\x11\xeb\x7e\xcd\x66\xfd\x0e\x61\xdf\xad\x4e\x9b\x18\xce\x5d\x00\x9f\xe5\xe6\x64\x45\x9f\x88\xcf\x83\x01\x15\x24\x96\x4f\x1d\xbf\x47\xd9\x73\x46\x5a\xa6\x86\xa9\x0e\xfd\xe7\xf4\xd8\x93\x01\xf2\x21\xb5\x6a\xee\x00\x0b\xdb\x0a\xfb\xa8\x95\xed\x2e\xf5\xeb\x2d\x6d\xa7\x25\xe7\x4e\x55\x75\xe6\xf5\x22\x29\x87\xd8\x31\x60\x37\x69\xc2\x2a\x99\x33\xb9\x82\xc9\xf4\x13\xaa\x1e\x96\x8a\x78\xdc\x4e\xd5\x68\xe8\x4a\xb0\x8e\x0f\xb7\x98\x53\xe4\x11\xa6\xea\xf4\x47\x97\x66\x63\xe5\xf3\xe8\xb9\x03\xec\x9a\xac\xad\xc2\x1f\x41\xd7\xb3\xb5\x55\x26\xe1\xd3\xa4\xe5\x80\x32\xe5\x24\xa9\x8c\x33\x57\xc7\xdc\x79\x85\x9d\x04\xb4\x68\xa3\x15\x57\x29\xcb\x9f\x9f\x22\xad\x2a\x17\x1b\x19\x55\x44\x77\x96\x7f\x56\x59\x75\x07\x12\xa3\x5f\x4c\x56\x7f\x31\xef\xef\xfd\x7c\xd6\xbd\x7c\xfe\x93\xee\x8f\xf8\x22\x3d\xdb\xb0\x1f\x74\xd4\xa9\xb2\x23\xbe\xa8\x3e\x23\x76\xc8\xfa\xa9\x8a\x3c\xea\x9b\x74\x75\xf0\x23\x26\xb2\x21\x88\xa0\xea\xd8\xe3\x0a\x6f\x21\x38\xdf\xbc\xd0\x45\x91\xfb\x32\x0b\xf5\xfc\xb7\xb5\xe2\x8f\xfb\xba\xe3\xe6\x01\x47\x7c\x5b\x63\x4c\x3f\xf0\x65\x8d\xd8\xce\xc2\xfc\xff\x01\x00\x00\xff\xff\x13\x6d\x1a\x31\xc0\x5c\x01\x00"),
+			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x4f\x77\xdb\x38\xb2\xef\x3e\x9f\x82\xa7\xb3\xb9\xf7\xbc\x51\x4d\x77\x72\xa7\xfb\x9d\x7e\x2b\x5b\x89\x13\x3b\xb6\xe3\x44\x9e\x24\xd3\x9b\x3e\x10\x09\x49\xb0\x48\x82\x06\x20\xd9\xce\xa7\x7f\x07\x7f\x48\x82\xb2\x5c\x14\x69\xc0\xd7\x0b\x93\x22\x0a\xbf\x22\x0a\x20\x50\x00\x0a\x55\xaf\x93\x49\xb8\xbf\x57\xaf\x93\x73\x96\xd2\x52\xd2\x2c\x51\x3c\x51\x2b\x9a\x1c\x55\x24\x5d\xd1\x64\xc6\x17\xea\x8e\x08\x9a\x9c\xf0\x4d\x99\x11\xc5\x78\x99\xfc\xd7\xd1\xec\xe4\xbf\x93\x4d\x99\x51\x91\xf0\x92\x26\x5c\x24\x05\x17\xf4\xd5\xeb\x24\xe5\xa5\x12\x6c\xbe\x51\x5c\x24\xb9\x05\x4c\xc8\x52\x50\x5a\xd0\x52\x49\x48\x92\x19\xa5\x06\xfd\xf2\xf3\xf5\xe9\xf4\x7d\xb2\x60\x39\x4d\x32\x26\x6d\x26\x9a\x25\x77\x4c\xad\x5e\xbd\x4e\xd4\x8a\xc9\xe4\x8e\x8b\x75\xb2\xe0\x22\x21\x59\xc6\x34\x63\x92\x27\xac\x5c\x70\x51\xd8\xd7\x10\x74\x49\x44\xc6\xca\x65\x92\xf2\xea\x41\xb0\xe5\x4a\x25\xfc\xae\xa4\x42\xae\x58\x05\xaf\x5e\x27\xd7\xba\x18\xb3\x93\xfa\x4d\xa4\x85\x35\x3c\x15\x4f\xfe\xc3\x37\xae\x0c\x5e\x71\x9d\x14\xfe\x91\x7c\xa3\x42\x6a\x26\x6f\xe0\xd7\x57\xaf\x93\xff\xd2\x24\xbf\xb8\xc4\x5f\xfe\xfb\xff\x25\x0f\x7c\x93\x14\xe4\x21\x29\xb9\x4a\x36\x92\x7a\xc8\xf4\x3e\xa5\x95\x4a\x58\x99\xa4\xbc\xa8\x72\x46\xca\x94\xb6\xc5\x6a\x38\x40\x62\x5e\x40\x63\xf0\xb9\x22\xac\x4c\x88\x29\x46\xc2\x17\x3e\x59\x42\xd4\xab\xd7\xaf\x5e\x27\xe6\x6f\xa5\x54\xf5\xe7\x3f\xff\x79\x77\x77\x07\xc4\xbc\x2e\x70\xb1\xfc\x67\x5d\xba\x7f\x9e\x9f\x4e\xdf\x5f\xce\xde\x4f\xcc\x2b\xbf\x7a\x9d\xfc\xbb\xcc\xa9\x94\x89\xa0\xb7\x1b\x26\x68\x96\xcc\x1f\x12\x52\x55\x39\x4b\xc9\x3c\xa7\x49\x4e\xee\x74\xc5\x99\xda\x31\x95\xce\xca\xe4\x4e\x30\xc5\xca\xe5\x3f\x12\xe9\x6a\xfd\xd5\xeb\x4e\xed\xb4\xe2\xaa\x5f\x8f\xc9\x0e\x01\x2f\x13\x52\x26\xbf\x1c\xcd\x92\xd3\xd9\x2f\xc9\xf1\xd1\xec\x74\xf6\x8f\x57\xaf\x93\xef\xa7\xd7\x1f\x3f\xff\xfb\x3a\xf9\x7e\xf4\xf5\xeb\xd1\xe5\xf5\xe9\xfb\x59\xf2\xf9\x6b\x32\xfd\x7c\xf9\xee\xf4\xfa\xf4\xf3\xe5\x2c\xf9\x7c\x92\x1c\x5d\xfe\x27\xf9\x74\x7a\xf9\xee\x1f\x09\x65\x6a\x45\x45\x42\xef\x2b\xa1\xdf\x9f\x8b\x84\x69\x41\xd2\x4c\xd7\x69\xdd\x80\xea\x17\xd0\xed\x43\xff\x96\x15\x4d\xd9\x82\xa5\x49\x4e\xca\xe5\x86\x2c\x69\xb2\xe4\x5b\x2a\x4a\xdd\x3c\x2a\x2a\x0a\x26\x75\x75\xca\x84\x94\xd9\xab\xd7\x49\xce\x0a\xa6\x4c\x2b\x92\x8f\x0b\xa5\xd9\x84\xfc\xb6\x5e\x91\x8a\xb9\xe6\xf4\x67\x92\x92\x82\xe6\x7e\xf5\x6d\x7f\x7b\xb5\x66\x65\xf6\x67\x32\xd5\x29\x53\xa2\x48\xce\x97\xaf\x0a\xaa\x48\x46\x14\xf9\xf3\x55\x92\x94\xa4\xa0\x2e\xe3\x24\xb5\xe9\x93\xdf\xe0\x77\xf8\x75\x22\x4b\x52\xc9\x15\x57\xaf\x92\x24\x27\x73\x9a\x4b\x4d\x9e\x3c\xe6\xe1\x72\xc1\xb6\x7e\x8b\xb7\xf0\x07\xfc\xba\x9f\x56\x6c\x4a\xc5\x0a\xda\xd2\x5a\x56\xb3\xcb\xa3\xab\xd9\xc7\xcf\xd7\x38\x83\x9c\x93\x8c\x8a\x7d\x7c\x48\x55\xd5\x65\x58\xbf\xd2\x95\xa5\x5f\xd5\xf1\xb2\x6f\x8d\x31\xac\x04\xdf\xb2\x8c\x8a\x3f\x93\xdb\x0d\x11\xeb\x8d\xac\x31\x75\x6b\xd6\xd5\x38\xcd\x89\x94\x7f\x26\x8c\x83\x23\x00\xb1\x29\x4b\x2a\xe0\x03\x2d\xa9\x20\x8a\x66\x17\x84\x95\x26\x97\x2f\x5a\xfd\x57\x67\xf0\xf8\xff\xf6\x2b\xbc\x85\x13\x56\x92\xdc\xd1\xd8\x02\xef\x29\x96\x4b\x9a\xec\x01\xf9\x97\x23\xc9\x68\x45\xcb\x8c\x96\x29\xa3\xae\x7e\x26\xc9\x52\xf0\x4d\x75\x9a\xfd\x99\x70\xb1\xac\xe5\x68\x79\xac\x1d\x2c\x11\x8a\x2d\x48\xaa\x34\x91\x13\xdb\xc4\x89\xcb\x55\x41\x45\xe6\x2c\x67\xaa\x41\x4d\x92\x82\x48\x45\x45\xfd\x6b\x1f\xe7\x43\xb9\x3f\xf5\x06\x96\x43\x5d\x72\x26\xd2\x0d\x53\x93\xb9\xa0\x64\xfd\x3c\xbe\x7e\xad\x3e\xc5\xdd\xd1\x4c\x0a\x96\x0a\x5e\x09\xae\x7b\xdb\xc9\x82\x6c\x72\x35\x51\x3c\xa7\x42\x77\xb4\x0e\x60\x45\x49\xae\x56\xff\x2b\x2f\x64\x59\xbb\x7c\x55\x4e\x94\x1e\xaf\x26\xa6\xe7\x7e\xa1\xd7\xe9\x30\xad\xab\x4a\xf0\x32\x66\xbb\xd0\xf8\x8e\x44\x50\xa9\x5e\xaa\xa8\x9a\xd7\x8b\xc8\x4f\x09\x92\xb2\x72\xf9\x52\xe5\xe2\x15\x2d\x1d\xcb\x57\x2d\x9d\xdf\xbb\x37\xa4\x44\xbe\xa9\xf9\x1f\xca\xfb\x69\xbe\x44\xbe\x71\x34\x32\x5d\xd1\xa2\x2d\xda\x24\x61\xd9\x9f\x49\x9b\xec\x74\x91\x64\x41\x72\x49\x9b\x67\x15\x91\x92\x6d\x69\xf7\xf1\x0d\xd9\x92\xeb\x87\xca\xc7\x7a\xf4\x7e\x5a\x53\xe2\x25\x2d\x15\x10\xf9\x06\x8e\x66\x6f\xa6\xf5\x83\x7d\x25\x56\x05\x97\x01\xcb\xac\xe1\xd0\x52\x7b\x04\xf1\xca\xad\x99\xc0\x91\xfe\xbf\xaf\xec\xeb\xc9\x5a\x5f\xa9\x9a\x08\xca\x16\x0f\xfd\xa5\xc7\x86\x91\x0e\x14\x56\xf2\x3b\x41\xaa\xa1\x05\xef\x0a\xf7\x3e\x5d\x91\x72\x49\xc3\xd5\x96\x03\xc4\xde\xba\x4b\x12\xad\xc6\x1c\x1b\xf8\x31\x35\x57\xac\xc5\xe6\x19\xa9\xc2\x89\x40\xa3\x61\xe5\xf7\xd2\xa3\x15\x5e\xf3\x80\xf3\x8c\x54\x58\xb1\xe5\x4d\x11\xb2\x73\x32\x70\x58\xc1\x7d\x82\x68\x25\x37\x4c\x60\xa6\xff\x63\x65\xff\xc9\xf9\x9a\xd2\xaa\xd5\x8a\x9e\x5f\xfe\x06\x12\x93\xc1\x2e\x51\x34\x39\x34\x8c\xe0\x2f\xce\x3f\x99\x3b\x4c\x1e\x3c\x67\xe5\x92\xff\x4f\x38\x69\x38\x40\x4c\x16\x5d\x92\x68\x92\x70\x6c\xe0\xb3\xbd\xa2\x43\xd7\x9d\x9c\xc8\xdb\x90\x83\x97\x05\x44\x87\xaf\x0e\x49\xbc\x01\xec\x4e\x82\xbc\x95\x30\xbb\xdd\x3b\x80\xd5\x2f\x3c\x17\x84\x95\x4a\xd0\x80\x43\x42\x03\x89\x49\x61\x97\x28\x9a\x1c\x1a\x46\x70\x5c\xdf\xa1\xfd\x84\xd6\x22\xe5\x3a\x60\x2f\x61\x01\xd1\x3e\xa2\x43\x12\xaf\x87\xb0\x6c\xe0\x2f\x7b\xc5\xa4\xa0\xee\x58\xce\x78\x38\x21\x58\x3c\x4c\x06\x1d\x8a\x68\x22\xb0\x5c\xe0\xda\x5c\xd0\x8e\x21\x55\x6c\x4b\x8b\xdb\x80\x3d\x83\x43\x44\xbb\x86\x2e\x4d\xbc\xbe\xc1\xf1\x81\x23\x73\x73\xf1\x05\x13\x45\xc9\x94\x60\x2a\x60\xff\xe0\x00\x31\x41\x74\x49\xa2\xc9\xc1\xb1\x81\x4b\x7b\x45\x75\x27\x9a\x91\x80\xaa\x13\xcd\x08\xaa\x39\xb5\xe9\x3d\x85\x57\x62\x33\x52\x6f\xa2\x19\x81\x19\xcd\x48\xdf\xf8\x48\xd7\x81\xc7\x47\xba\xee\x1d\x1f\x5b\x92\xa8\xe3\x23\x5d\x4b\x78\xff\x69\x86\x49\x20\xe3\x3f\x43\xea\x8c\x06\x0e\x2b\xbd\x4f\x10\xad\xec\x86\x09\xbc\xd3\xff\xd1\x36\x5f\xe5\x9b\x32\xe0\x50\x68\xf1\xd0\x76\xef\x53\xc4\x9b\x32\x18\x2e\x30\x33\x17\x4c\x00\x4b\xce\x97\x39\x9d\x64\x42\x33\x0c\x26\x06\x1f\x15\x13\xc6\x1e\xba\x68\x22\xb1\xbc\xc0\xf0\x82\x0f\xe6\xc7\x3b\x7d\xdf\x37\x9d\x0c\x3b\x9b\xec\x9b\x4c\x0e\x97\x42\x9b\x77\x32\x27\x2a\x5d\x45\x6f\x5a\x37\x85\x04\xc3\xc9\x4c\x49\x8f\xf5\x5d\x57\x86\x87\x00\xe8\xac\x98\xe4\x59\x4a\xf2\x70\x92\xd7\x68\x8e\x28\x23\x8a\xd8\xfd\x5c\x5f\xfa\x6d\xfa\x30\x61\xe8\x8c\x70\x3a\x25\xf9\x3b\xa2\xc8\x89\x81\xdd\x53\x98\x94\x48\x49\xca\x4c\x90\xdb\x80\x65\xf2\x40\xb1\x46\x95\x36\xc9\xd1\x5a\x44\xf3\x26\x30\xad\xef\xb0\xaa\xbd\x31\x65\x97\x13\x41\x16\x2a\x9c\x38\x7c\x54\x4c\x1e\x7b\xe8\xa2\x09\xc6\xf1\x02\xcd\x0b\xce\x3e\x98\x1f\x5f\xc9\x42\x61\xd2\x29\x78\xb9\xe4\xd9\x3c\x9c\x60\x1c\x20\x26\x93\x2e\x49\x34\x71\x38\x36\x70\xa1\xaf\xef\xe6\xa8\x4e\x52\x06\xec\x77\xb3\x12\xed\x76\xdb\xe4\x78\xda\x48\x29\xe1\x5d\xf9\xc4\x32\xfb\x1d\x9d\xaf\x38\x3f\x40\x09\xc1\x16\xd8\x1d\x08\x56\xce\x2e\x49\x5d\x56\x4f\xbb\xde\xa7\x73\xef\xf4\x39\xab\xa0\xda\x92\x81\x43\x3b\xaf\xd5\x0b\xe8\x4a\x86\x09\x4c\x57\x3d\x9a\x52\xca\x0b\xaa\xb2\x80\x85\x37\x78\x68\xe9\x0d\xc5\x68\x95\xa0\xc3\x20\x9e\xf4\x0c\x17\x98\x9a\x0b\xfa\x49\x0b\x96\x07\x1c\xfe\x0c\x1c\xfa\x59\x7b\x04\xf1\x3e\x6c\xcd\x04\xde\xe9\xff\xa8\x1e\xc9\x05\xdf\xc8\x55\x40\x55\xd2\x02\xa2\xda\x64\x87\x24\x9e\x3a\x68\xd9\xcc\xb9\xf2\x1e\xce\xec\xc3\x63\x8e\x0e\x75\x44\xf1\x22\xe4\xa6\x2a\x2f\x30\x79\x78\xe9\x11\xb7\x54\x79\x01\x47\x8a\x17\x58\xb1\xab\x25\xdd\xd2\x32\xa0\xea\xe3\x00\xb1\xc2\x77\x49\xa2\x95\xdf\xb1\x81\xab\xe5\x7b\x7d\x45\x27\x9e\x94\xa7\x3c\x0b\xb9\xf0\x50\x23\x62\x72\xd8\xa1\x89\x37\xd9\x74\x7c\xe0\x03\xe5\x53\x7d\x83\x8a\x42\xb6\x96\x32\x01\xc4\x20\x1b\xbb\x98\xbd\x73\x9d\x1b\xc9\x4b\x9f\x68\x60\xc1\x24\x2f\xe1\x83\xe4\x25\x3a\xe1\x11\x32\xa0\xfa\x26\x24\xaa\xbe\xb5\xc9\x03\x6a\x73\xaf\x64\x5a\xa4\x43\x64\xd2\x42\x80\x90\x12\xbe\x4a\xb9\x23\x92\x1e\x49\xba\x4c\x58\xc3\xa0\xf7\xd6\x66\x31\x8c\x1c\x35\x1a\x26\x48\x2f\x3d\xda\x77\xa1\x79\xc0\xfb\x7b\x9a\xa2\x1b\x76\x44\xd2\xdf\x03\xee\xdb\x5a\x3c\xac\xe6\x3b\x14\x03\x2b\xdf\xe6\x85\x63\x73\x41\xbf\x0a\x56\x2e\x58\xc9\x64\x45\x02\x7e\xed\x2d\x26\x56\xb5\x8f\xa8\xa2\x55\x70\xcb\x09\x4e\x9b\x5b\x74\xef\xc5\xab\x88\x00\x1b\x2f\x44\xa1\x9d\x85\x97\x1e\x6f\xcb\x85\x28\x09\x97\x44\xa1\x9f\x76\xc7\x80\xb3\xa0\x4a\xb0\x34\xa0\x18\xf6\xa1\x63\x62\x41\xe8\xe3\xad\x06\x78\x3c\xc1\xf1\x84\x0b\xfd\xf0\xca\x3e\xbc\xb0\xcf\x50\x0d\x52\x2a\x2a\x58\xc8\xbd\xec\x1a\x11\xd5\x24\xbb\x34\x11\x0d\x13\x2d\x1f\x38\x72\x37\xa8\x28\x7e\x6e\x04\x9d\x48\xc5\x05\x59\xd2\xc9\x3c\xe7\x01\x97\x90\x1e\x63\xa3\xe2\x79\x8a\x3a\x9e\xa0\x34\x47\x70\x1c\x41\x73\x84\xe3\x9c\xa3\x0b\x4c\x95\xe0\x8a\xcf\x37\x8b\x80\x5a\xb8\x43\xc4\xc6\x99\x1d\x9a\x81\x23\x4d\x9d\x1b\xae\xdc\x0d\x3a\xda\x28\xb2\x94\x7c\x13\xd0\x08\xd0\x01\x62\xe5\x53\x2c\x7b\xb8\xd0\xd4\xd5\xb8\x12\x3a\x16\x70\xdd\xe0\xec\x2d\x62\x63\x4f\x1a\xc4\x28\x15\x6b\xcb\x5d\x92\x43\x37\xaa\x1f\x0d\xd1\xf9\xe6\x3e\xe4\x92\x6e\x8d\xd8\x33\xe4\xfb\x34\x31\x07\x7c\xc3\x47\x0f\xf7\xf9\xe6\x1e\x5f\xd6\x2d\xa9\x52\x0f\x9d\x93\x09\x01\x86\xfc\x06\x13\x1d\xf8\x77\xa9\xf0\xf5\xcf\x67\x8c\xfe\x9a\x11\x68\x6c\xb8\xd4\xb7\x1f\x95\x42\x2d\x56\xc9\x9d\x7c\x33\xa1\x21\x07\xff\x1a\x11\xed\xa3\xbb\x34\x31\x4d\x10\xde\x00\x4d\x25\xbc\x9f\xe2\x16\xf6\x3f\x59\xa5\xc7\xfc\x80\x46\x69\x16\x10\xeb\xad\xba\x24\x03\xbb\x2a\x97\x19\xfe\x62\xd5\x09\xcb\x29\xda\x15\x2f\x72\xa2\x2a\x92\x06\x54\x53\x6a\x44\xac\x8e\x77\x68\x9e\x3b\x3b\xde\x81\x1b\x28\xae\x3a\x37\x9c\xb8\x9b\x61\x93\xe5\x47\xd9\xd1\xd5\xd6\x3c\xa8\xac\x0d\x1c\x26\x68\x9f\x20\xde\x3a\xab\x66\x02\xb3\xbc\xa7\xec\xc6\xf4\x36\xe4\xe6\x99\x03\xec\xe9\x4c\x3c\x92\xb8\xe6\xbe\xa5\x84\xd9\xfe\x8d\xb4\x76\x5f\x65\x93\xae\xf4\xa4\x3c\xe4\x56\x8d\x83\xc4\xa4\xb0\x4b\x14\x71\xc7\xc5\x31\x82\x69\x7d\x87\xee\xbb\xb0\x25\x53\x24\xe7\x29\x0d\xb9\xee\xe0\xa3\x62\x52\xd9\x43\x17\x6f\x33\xc6\xe3\x05\xef\xec\x8f\xcf\xfa\x07\x6a\x07\xcc\x8a\x90\x8b\xd0\x06\x0e\x13\x88\x4f\x10\xcf\x08\x58\x33\x81\x6b\xfd\x1f\x9d\x04\xed\x3b\x2b\x1a\x60\x26\xb4\xe7\x34\xe3\xfe\x5d\x89\x3d\x84\xb1\xf4\xb2\x9a\x97\x55\xcd\xae\xdc\xaf\x3e\xed\xac\x20\x2c\xe0\x9e\xa5\x46\x43\x07\x92\xe2\x91\x18\x0e\xde\xed\xad\x78\xf5\x76\x6c\x5e\xcd\x77\xf4\x36\xb3\x66\x3c\x3a\x33\x2b\xc6\x1c\x1c\x6b\xf3\x86\x5a\xfa\x2f\x58\x41\x27\xc5\x26\x57\xac\x22\x42\x8d\x6a\x60\xba\x72\xe1\x82\xb0\xfc\x00\x63\x38\x4f\x31\xd2\x9c\xa1\xe1\x0c\x17\xac\xa0\x17\xf5\x2f\x54\xa9\x74\xb6\x93\x73\xb6\xbc\xdd\x50\x71\xc0\xf9\xcc\x81\xc6\x9b\x35\x30\xd6\x60\x77\x48\x27\x72\x8c\xb1\xd9\x5e\xa8\xd8\x3d\xa4\xb3\x06\xad\xd9\x39\x83\xd0\x63\xb6\xfc\xa2\x7f\x0e\xb2\x67\xdc\x85\x92\xb7\xf9\x0e\xdc\xec\xcb\x39\x6e\x19\xc1\xab\x39\xbf\x0f\x69\x1b\x61\x00\xd1\x71\xb9\x43\x12\xd1\x3e\xc2\xb0\x81\x77\xf6\xda\x3b\x11\x96\x6f\x03\xcf\x83\xe5\xdb\x1e\xcd\xd5\x23\x89\x3b\x0b\x96\x6f\xe1\xe8\xfb\xec\xcd\xec\x2d\x6a\x1b\x29\x79\x39\xd9\x92\x9c\x65\x44\xf1\x80\x6a\x49\x17\x17\x13\xc9\x5e\xca\x78\x16\x92\x92\x97\x0d\x33\x38\x93\xbc\xfc\x56\xff\x42\x4f\x37\x6f\x8a\x39\x15\x37\x41\xa7\x79\x2d\x26\x26\x9e\x47\x54\xf1\xce\x3b\x37\x9c\xe0\xbc\xb9\xc5\x84\x72\x47\xe7\x92\xa7\x6b\xaa\x26\x37\x52\xbc\xfd\xd7\xef\xe1\x44\xb3\x8b\x8c\x09\xe8\x09\xda\xc0\x62\x6a\xb8\x80\xe5\x02\x67\xb3\xaf\x6f\xff\xf5\xfb\x77\x3a\x9f\x99\xc7\x07\x1c\x79\x08\xab\xda\x79\xa0\x07\x0c\x98\x9a\x6c\x22\x95\xa0\x64\x84\x49\xd2\x23\xa4\x17\x1a\x2b\x8d\x82\x63\x07\xb6\x03\xd5\x9c\xfd\x10\xb6\xdc\x1e\xd2\xcc\x3c\x40\xc7\x06\x41\x02\x5b\x45\xd7\x88\xe8\xe8\xd0\xa5\x89\x37\x3c\x38\x3e\x70\x64\x6e\xf0\x25\x74\xc9\x43\x3a\x76\xd0\x68\x98\x5e\xac\xd3\x6f\xc8\xfd\x7c\x40\xb9\x3c\xdd\x56\xe7\x86\x19\x27\xd5\x19\xb9\x9f\xe3\x2b\xa4\x82\xd2\x82\x88\x75\xc8\xa9\x78\x8b\x89\x55\xf2\x23\xaa\x68\xd5\xdc\x72\x82\x93\xe6\x16\x3f\x90\x29\xb6\x07\x6d\x72\x1d\x5c\xdb\x16\x10\x9d\x82\x76\x48\x62\x4d\xc6\x1d\x17\x98\xd9\x2b\xda\x5b\xb3\x80\x02\x58\x32\xb4\xf0\x6d\x72\xbc\xbe\x94\x29\xf8\xc0\x70\xb3\xd8\x3b\x39\x59\xb3\x92\x4a\x16\x78\x19\xd7\x81\xf6\x28\xc4\x35\xd9\x64\xc1\x04\x5d\xf1\x31\xeb\x99\x8f\xb0\x5e\x40\xc1\x06\xc7\x0a\x3e\xd9\xeb\xa0\xe1\x49\xe7\xaf\x8b\x5b\x03\x9c\xb8\xdf\xa8\x8b\x91\x8a\x96\x52\x05\x55\x43\x1b\x48\xac\x9a\x1a\xa2\x49\x49\x37\xaa\x75\x84\x36\xb8\x8e\x5a\xa0\x35\x7d\x90\x8a\x97\xa3\x6b\xbb\x45\x4a\x59\x39\xca\xc2\xf6\x51\xd1\xf8\xf6\xc0\x13\xe2\x18\xca\x32\xf7\x9c\xf4\x3d\x03\x47\xde\xb1\xf8\x07\xc6\x1a\x76\xe0\xea\x15\x2e\xed\x75\x50\x6b\x6e\x51\xea\x4a\x85\x4f\xee\x66\x24\x8e\xad\x52\x98\x9a\xcb\x48\x0c\x5d\x9d\x70\xc9\xb7\x64\x64\x7e\x53\x01\x30\xd3\xff\x47\x22\xd8\xa6\x00\x1f\xcc\x05\x37\x40\x15\x29\xcf\x42\xfa\x8b\xb1\x80\x98\xa6\xd5\x25\x19\x6c\x83\x6a\x32\xc3\xb1\xbd\xa2\xaa\x96\x2c\x8b\x90\x0a\x64\x59\xa0\x4b\xfc\x5e\x7a\xbc\xad\xd1\xb2\xa8\x60\x56\x16\x87\xd8\x59\x84\xf4\x5c\xe8\x10\x7b\xc6\x53\x9f\x26\xb6\x9d\xc5\x1b\xb3\xc4\xf4\x7e\xba\xd7\xd4\xa2\x76\xa5\xfa\x3c\xa3\xa9\x8e\x3b\xd6\xfd\xc6\xa4\x3e\xc5\x48\x27\x7e\x87\xbe\xe9\xe1\x3b\x2f\x71\xde\x7a\xf8\x26\x81\xe6\x02\x17\xe6\x82\x6e\x3c\x6d\x74\x9f\xb5\x0a\xd8\x07\xd5\x88\xa8\x10\xba\x34\xf1\xc4\xe0\xf8\xc0\x85\xbb\x41\x97\xc7\x6f\x42\x1e\x1b\xbc\xc1\x0f\x0d\xde\xc4\x3f\x32\x78\x93\xc3\xbb\x33\x74\x43\x60\xce\x4b\xa6\x02\xfa\xe2\xb1\x78\x58\xb9\x3b\x14\xf1\x1c\x95\x19\x2e\x70\x6c\x2e\xf8\xa1\x80\x25\x0b\xe9\x70\xd5\xe2\x61\x02\xe8\x50\x44\x3c\x1a\xa0\xb9\xc0\xa5\xb9\xa0\x46\x2c\xe2\xa1\x52\x01\xbd\x93\x59\x3c\x4c\x00\x1d\x8a\xe7\x6e\xa7\x56\xcb\xaa\xb9\xef\x00\x0f\xb4\x74\x31\x59\x6b\x53\x8e\x19\x5b\x96\x44\x6d\xc4\x61\x4a\x6c\xb9\xa5\x42\x77\xb5\x0e\x63\x6a\x2e\x87\x19\x9d\xed\x64\xbd\xfa\x70\x85\x7b\xf7\x28\x26\x32\xa4\x9b\x18\x8b\x87\xd6\x95\x4f\x11\xcf\xce\xa8\x80\xe9\x45\xaf\x4a\x45\xd4\x8a\x96\x01\xfb\x2a\x0f\xb4\x57\xb1\xea\x90\xc5\xd5\xad\x2c\x2b\x38\x32\x17\xd4\x92\x75\xbd\x99\x53\x51\x52\x45\x03\x36\x89\x16\x13\x93\x89\x99\xe9\xac\xd8\x42\x4d\xe6\x1b\x96\x67\x93\x94\x97\x0b\xb6\x1c\x6d\x9b\xd1\x32\x35\x0b\x87\x2c\xa5\x13\x92\xa6\x7c\x53\x8e\x39\x42\xb5\x07\x32\x15\x34\x10\x92\x79\xb9\x10\x50\x15\x15\x92\x49\x45\x4b\x35\xd9\xf2\x7c\x53\x04\x01\xb5\xd5\x30\x19\x67\xad\xf2\xf8\x15\xf9\x78\x8f\x10\x68\x49\x27\x69\x4e\xd8\x78\x07\x54\x1e\x76\x46\xab\x9c\x3f\x98\xf0\x3b\x01\xd0\x56\xd5\xe8\x55\x20\x0f\xa5\xe4\x59\x90\xca\x2c\x49\x41\x65\x45\xc2\x34\xb7\x74\x23\x15\x2f\x26\x82\x4a\xbe\x11\xcf\x80\xdc\xf9\xf0\x43\xbc\x5a\xf3\x4e\x93\xdb\x0d\x1f\xa3\x19\xee\x41\x6c\x22\xa7\x4c\x4c\xcc\x26\x9e\xe7\x54\x84\x78\xd7\x9b\xf8\x27\xcc\x5a\x6e\xd0\x7e\x39\x7f\xbb\x2f\xe7\x6f\xfb\xe5\xc0\xa7\x86\xe8\xaa\xa1\xf9\x66\x49\xa6\x86\x62\xd0\xba\x95\xc7\xd2\xb6\x93\xa6\x4a\x3c\x46\x53\x93\xf2\xb5\x4e\x19\xcb\xc0\xab\x9b\xbf\xbd\xba\xf1\x18\x7d\x6d\x29\xa6\x2d\xc1\x58\x7e\x37\x7c\xee\x61\x9f\xed\x1e\xd5\x3b\x1c\xc8\xeb\x6a\x3c\xc0\x77\xed\xd3\xb1\xc0\xba\x9b\xf5\x2b\x94\x67\xa3\xa1\xda\x2e\xc3\x03\xbc\x6c\x1e\x8e\x85\x5d\x55\xc4\xc3\xfb\x78\x75\x34\xbe\xf2\x5d\xeb\xf9\xdb\x7c\xea\x9d\x4a\x77\x29\x5f\x74\xc2\x58\x7c\x37\x3e\xff\x5d\x2b\x0f\x1e\x83\x99\x4d\x3a\x72\x29\xa3\xbf\x0f\x33\xc2\xfe\xad\x47\x58\xff\xdb\x30\x4f\x2f\x48\x35\x0c\xb7\xe9\x4c\xc1\x76\xa6\xf0\xb9\x7e\x70\x6c\x7e\x8f\x17\x83\x51\x78\x3a\xa5\x37\x4f\x46\xb7\x2b\x3d\xa4\xf9\x4d\x4a\xff\x7e\x66\x25\xed\xa9\x9c\xf1\x9f\xd0\xa3\x8e\x12\xed\x21\x9f\x51\x47\x7f\x3b\x4d\x77\xa7\xaa\x6c\x03\x40\xe7\xd9\x55\x16\xf2\x04\x70\xb6\xc0\xd4\xf3\x36\x39\x9e\xff\x9d\x6c\x01\x57\xd9\x62\xff\xea\xaf\x1f\x90\x69\xdc\xda\xaf\x17\x72\xe9\x89\x35\x84\xe1\x3b\x91\x7b\x66\x7f\x39\x29\xe6\x21\x5d\x51\x7b\xa0\xbd\x53\xca\x0e\x59\xdc\x29\xa5\x65\x05\xe7\xe6\x82\x4e\x29\xa5\x12\xac\x5c\x2a\x5a\x54\x39\x09\xe9\xa6\xbc\x8b\x8b\xc9\xc6\x52\x4e\x76\x48\xe3\xed\xe8\x74\x5e\x0c\x66\xe6\xe7\xb5\xfb\x89\x4b\x8a\x07\xdd\xdd\xd2\x70\xb8\x5c\xf8\x0b\xec\x6f\x69\x26\x30\xd3\xff\x0f\xb0\x6b\x94\x2b\x4a\x43\xba\x54\xe9\xc0\x62\xb2\xd8\x47\x38\xd6\xac\xd1\x82\x8c\x36\x91\x1c\x65\xdf\x68\x79\x76\xcd\x13\x67\xe6\xd9\x3e\x03\xc5\x41\x98\x3e\x18\x56\x85\x8b\x90\xc7\xb0\x16\xf8\xe1\x2b\xb9\x18\x7f\xd8\x68\xf1\x8c\xf3\x42\xa3\xd8\x0e\xb4\xb4\x63\x39\x05\x41\x0b\xae\xfb\x8e\xc5\xee\x09\xaf\x01\x99\x4f\xd4\x40\xe5\x71\x27\x33\x56\xd7\x11\xac\xfc\x0f\x32\xf0\x1f\x68\xdb\x3f\x3a\xfa\x42\x6b\xd6\x7f\x90\x49\xff\x0d\x49\xd7\x41\xfd\xe0\x39\x40\x47\xf7\xb4\x2b\xbc\x2e\xdd\xc0\xe3\x0b\x36\x2f\x9c\xd9\x2b\xba\x4d\x50\x09\x56\x06\xdd\xd3\x76\x80\x58\x5d\xe7\x55\xf4\x1d\x6d\xf7\x16\x70\x65\xaf\x07\x0c\x50\xd5\x66\x2e\x37\x01\x4d\xb9\x3b\xb0\x07\x0c\x50\x1d\xc2\xd8\x83\x8a\x65\xe6\x06\x80\x2b\xf3\x03\xdd\xf7\x2b\x42\x1a\x7d\x6a\x34\x54\x5f\x2f\xe2\x9b\x66\x6a\x1e\x30\xbd\x38\x45\x43\x90\xd8\x73\x58\x21\x77\x4c\x6a\xc4\x5e\x85\x5f\x8e\x59\x76\x1d\x73\xfc\x8b\x4a\x98\x51\x3c\x82\xdf\x8a\xfc\xa4\x79\x4a\x64\x40\x8b\xe7\x06\x12\x13\x44\x43\xd4\x2c\xd2\xd2\xec\x19\x07\x73\x5b\x38\xc5\x2b\x36\xc2\xa7\xe4\x2e\x8c\x39\x1e\x1b\xe4\x85\x0e\x8f\x3a\x84\xbe\x4f\x98\x57\x19\x61\x4e\xba\x0b\x72\xbb\xa1\x9b\xd1\xc6\xad\x2d\x4c\xce\x64\x80\x97\x61\xa5\x54\xcf\x31\xb6\xf5\x9a\x21\x2b\x97\xf3\xcd\x62\x31\xde\x8c\xb8\xc5\x22\x8a\x17\x2c\xdd\x92\x7c\x8c\xa0\x86\x7d\xe8\x0d\x53\x30\x0d\x1f\x3e\xd6\xbf\xaf\xf5\xcf\x41\x8a\x64\x0b\xd5\xca\xa2\xc5\xfb\xda\x3c\x1b\x09\x5a\x7f\x51\x2d\xe4\x85\x7b\x32\x12\xb0\xae\xfb\x16\xf0\xd4\x3d\x19\x09\x28\xa9\x6a\xb1\x66\xbb\x67\x44\x0e\x97\x9e\xdf\xa1\x79\x02\xf4\x1f\x8f\x7e\xc3\x8c\xf8\xaf\xb8\x1b\x67\xec\xf0\xca\xe8\xd4\xc3\xe8\xf7\x31\x7d\x41\x0b\xf4\x45\xff\x1c\x09\x65\xbf\x99\xd2\x1c\x3b\x6d\x11\x8f\xbc\xa7\x23\x81\x75\x47\xd3\x02\x9e\x33\x89\x9e\x84\x09\x7a\x28\xbe\xe7\x40\xfc\x0b\x1c\x86\x9f\xf3\x7b\x38\xc6\x0f\xc1\xdf\x71\x91\x55\x82\x86\x74\x9f\xdd\x40\x62\xa5\xdf\x25\x8a\x26\x83\x86\x11\x7c\xaf\xef\xd0\x49\x32\x15\xea\x3e\xb0\x7b\x9a\x16\x13\x9d\x26\xef\x52\x45\x13\x89\xe1\x64\xdd\xd2\x7c\xd3\xb7\x07\x79\x0c\x54\x82\x94\x32\xec\x6a\x70\x17\xb7\x57\x71\xde\xa5\x8c\xab\x3e\x37\xdc\xe0\xba\xbe\xc3\x23\xf6\xaf\xd2\xc9\x5d\xc8\xf9\x84\xc1\x43\x85\xe2\x53\x1c\x7e\x70\xd2\xcf\x1c\x7f\x26\xb2\x4a\xe1\x4e\xc2\x77\xdc\x35\x75\x9e\x07\xfc\xda\x34\x1a\x26\x36\x2f\x3d\x9e\xb9\x79\x9e\x57\x70\x91\xe7\xe8\x67\xc5\x44\x40\x5f\xfb\x4c\xa0\xae\xf6\xdb\xe4\x78\x7e\x59\x45\x0a\xa7\x02\xf5\xb3\x7f\x23\xd3\x80\x21\x69\x34\x1a\x56\x66\x99\xc6\xdf\x28\x49\x2b\x98\xa5\x68\x2d\xcf\x29\x29\x43\x86\x7d\xb6\x78\x8e\x6c\xff\xc1\x2e\x9f\x62\xe8\xb9\x2e\x93\x17\x8e\x29\x29\x4f\x3f\xa3\xab\x8b\xa6\x4b\x0e\x1a\xcc\xd9\x02\xf6\x0e\x03\x2f\x10\xca\x59\xf7\xff\xc5\x2d\x5c\x7c\x41\x7b\xfc\x34\xa8\x63\x84\xb4\x75\x8c\xf0\x84\xb7\xc7\xf1\x6b\x00\x3a\xef\xff\x51\x63\x3e\x87\x36\xff\x33\xa2\x82\x91\x4a\x8e\xe3\x7e\x58\xb5\x91\x0a\xa6\xfc\xe8\x0a\xf7\xb9\xb8\x0e\xb8\xbd\xaf\xd1\xb0\xaa\xf2\xd2\x23\x3a\x5c\x5c\x13\xb8\x66\x6b\xf4\x54\x8b\x0c\x1a\x01\xac\x27\xfa\xd7\x0b\x44\xfe\x92\x2b\x98\xc9\x15\x56\xe2\x7b\x99\xab\x89\x24\xf7\x21\xf7\x75\x5a\x4c\xac\xfc\x8f\xa8\xa2\x89\x41\x73\x02\xc3\x09\x7e\xc8\x5c\xcd\xf4\x1d\x7a\x3e\x80\x2c\x42\xb6\x7e\x03\x87\x49\xc2\x27\x88\x67\x1f\xab\x99\xc0\x27\xfd\xbf\xc7\x90\x85\x92\x80\x31\xdf\x3a\xf6\x01\x4f\x19\xae\xbc\x80\x05\x81\xb3\x19\xe8\x77\x64\x34\x17\xfc\x2e\xa4\x67\x62\x8b\x87\x09\xa0\x43\x11\x6b\xaf\xd7\x32\x81\x63\x73\x41\xa7\x65\x5b\xc1\x27\xa2\x0a\xa8\x69\xd7\x88\xa8\xa2\xb2\x15\x23\x4e\xb6\x0d\xd4\x52\xb6\x82\xc3\xd1\x56\xf0\x03\x76\x40\x53\x92\xd3\x32\x23\x21\x63\xdf\x75\x81\x31\x61\xec\x90\x86\x71\x43\xb6\xc3\x38\xf6\xae\x6a\xcd\xce\xed\xab\x4e\xdd\xcf\x31\x16\x3a\x0d\x54\xc7\xee\xa7\x46\xec\xff\xa2\xed\x3a\x51\xe3\x8f\x2e\xf4\x32\x55\x03\x8c\x55\xe9\x7e\xd2\xc8\x0b\x56\xad\x0b\x3e\xb3\x6a\xf5\xbd\xfe\x89\xce\x38\xd3\xb0\x67\xda\x2d\x1e\x26\x9a\x0e\x45\x3c\x37\x96\x86\x0b\x9c\x4d\xfb\xce\xb2\x4b\x92\x53\xb9\xe0\x22\x0d\x69\xc5\xd9\x60\xa2\x03\xe1\x2e\x55\xbc\xc1\xb0\xe1\x04\xb3\xe6\x16\x6d\x15\xf3\x2a\xa0\x4e\xa0\xd1\xd0\x16\xd1\xa6\xc7\x6b\x0f\xf3\xaa\x80\xb3\xe3\xab\xbe\xe3\xb3\xc1\x03\xbf\x1c\x10\xf7\xe5\x85\xc2\xbe\xd4\x51\x5f\xd0\xaf\xa1\xca\x37\xe5\x7a\xb2\x0a\x19\xe5\xb2\xc5\x44\xbf\x86\x5d\xaa\x78\x5f\x83\xe1\xb4\xa2\x29\xcc\xcc\xdd\xc7\xf7\x53\xdc\xb3\x6d\x4a\xcb\x80\x9d\x83\xc5\xc3\x44\xd1\xa1\x88\xe8\xcd\x56\x73\x81\x73\x73\xe9\xdd\xdd\x58\x87\x3c\x4f\x5f\x23\xf6\x7c\x17\x3e\x4d\xdc\xb5\xac\x75\x21\xe1\xd3\x05\x1e\x0f\x29\x95\xdb\x80\x8b\x59\x72\xeb\x68\xf6\xae\x50\xb6\xc9\x03\x97\x27\x53\xb9\x85\xa9\xdc\xe2\x9e\x3d\x57\x2c\xa4\x4f\xcf\x15\xc3\xbd\x79\xb6\xe9\xcf\x8e\x77\xb4\x62\xe2\xac\x35\x0c\xb5\x0f\x7e\x14\xf9\xa8\x7a\xd7\x79\xe1\xc4\x21\x0e\x0c\x7d\x54\x67\xfd\x51\xe4\x23\x73\xf6\x05\x61\x67\x01\xb7\xd9\x2d\x1e\xfa\xad\x19\x8a\x49\x41\xa5\x24\x4b\x56\x2e\xc7\x4e\x3d\x1c\xce\x33\xec\xa8\x1c\xc2\xb3\x8c\xa8\xea\xd2\x8c\x5f\x0e\xae\x11\x9e\x69\xe4\xe6\x60\x5e\xc4\xd0\xc9\xf2\x82\x34\x67\x66\x7b\xad\xae\x49\x13\xfa\x9e\xdd\x5f\xd4\xbf\x87\xf9\xe0\xec\x60\x4a\xaa\x1c\xda\x50\xdb\x9f\x2e\x8e\x11\x87\x43\xfa\xa6\xef\x9f\x81\xd5\x18\x4d\xb9\x62\xea\x9f\x43\xcd\x75\x76\x10\x5b\xb0\x67\xe1\x58\xd3\x1f\x8b\xb4\xc7\xee\x67\x67\x47\x96\xe5\x01\x37\xc0\x34\x1a\xf6\xb5\xeb\xf4\x89\x7d\xcd\xb1\x2d\xdb\x40\x48\x2a\xb6\x2f\xe0\x9f\x8d\xe5\x1c\x2c\x2b\xb8\x60\x39\x9f\x99\xdb\x41\x35\x63\x20\x5c\xbd\x68\x88\xa9\xb9\xed\xb1\x55\x08\x6a\xa8\x80\x76\xbe\xab\x5d\x8d\x37\xb4\x6f\x67\xb2\x4a\xe1\x68\x85\x6e\x3c\xe7\x7c\x19\x50\xc3\xe5\x4b\x54\xbd\xe5\x07\x0e\x30\xa3\x17\x3f\x73\xbe\x84\x73\xbe\x44\xd7\xfd\x04\xa9\x56\xb7\x21\xc3\x0d\x58\x40\xac\xe0\x5d\x92\x78\x2b\x72\x96\x0d\x7c\xb0\x57\x3c\x12\x9d\x14\x9b\x2a\xe8\x89\xa7\x06\x12\x93\x44\x43\x34\xd9\x8e\x5e\xe7\xdc\x65\x14\x31\x88\x9d\x63\x04\xef\xea\xbb\x41\xdd\x4f\x9b\x7f\x5b\xb4\x10\xdf\xd0\x35\xcc\x55\xfe\x47\xc0\x13\x07\xf9\x1f\x8e\x26\x27\xe5\x72\x43\x96\x7e\xc1\x57\xf9\x1f\x8a\x0a\xd9\x74\xe4\x7b\x35\xef\x16\x61\xa0\xf9\x75\xfe\x07\x7c\x3c\xff\x63\x98\x92\x6c\x32\xe5\x7f\x5c\x9b\xb7\x3a\x77\x6f\xbc\x47\x46\x37\x92\x97\x15\x51\x41\x0d\x66\x2c\xe2\xd3\xd2\xda\xa1\x38\x44\x1a\x75\x16\x13\x4b\xe7\x8a\xa8\x15\x56\x24\xce\x03\x1a\x8c\x68\x34\xec\x2b\xf4\xd2\xe3\xad\xbb\x71\x7e\x0b\x67\x9c\xdf\xe2\x0e\xda\xb2\x4d\xc0\xfd\xd7\x4d\xb6\xc1\x8a\xed\xa5\x47\xf4\x4e\x94\x6d\xe0\xd3\x26\xdb\xa0\x1f\x79\xb6\x08\xb8\xa8\xa2\xd1\xb0\x62\x7b\xe9\xf1\x8e\x5b\x64\x0b\x09\x1f\xb3\x05\x6a\xcd\x78\x93\x86\x0c\xa3\x95\xe2\xb1\xb3\xd2\xf8\x01\xb3\x52\x01\x67\x29\x3a\xa3\xcf\xe8\x9c\xfe\x64\x9b\x62\x52\x3c\xc8\x90\x3a\x47\x17\x17\x1d\x70\xf7\x51\xc6\x1b\x31\x1d\x37\x78\xe7\x6e\x2e\x1e\x66\xb8\x22\x92\x72\x11\x34\x3a\xb0\xa0\xc8\x88\x47\x49\x1b\x0d\x61\x92\x78\x01\xc7\x27\x89\xe2\x6b\x5a\xb2\x9f\xed\x03\x7a\x9f\xae\x48\xb9\xa4\x57\x82\x57\x54\xa8\x87\x26\x21\x95\xac\xa8\xbc\x9c\x29\x37\xa7\x6b\xda\x11\x4e\xd0\x45\x73\xdf\xa1\x3d\x44\x96\xf5\x6b\x83\x7d\x59\xf8\x68\x2e\x9d\x91\x03\xcf\x67\x39\xc2\xcc\x5c\x06\xe4\xab\x8b\x01\x53\x77\x33\x24\xaf\x63\x3a\x1d\xcc\xd5\x65\x3c\x61\x83\x72\x09\xba\x80\xaf\x74\x31\x20\x47\x5d\xbd\x02\xae\xdd\xdd\x80\xcc\x95\x6b\x02\xf0\x7e\xa7\x4d\x20\x03\xfa\x96\xe6\x3c\x65\x2a\x60\x2c\xd0\x1a\x11\xfb\xda\x77\x68\x22\x6e\x3b\x5b\x3e\xf0\xcd\xdd\xf4\x6e\x23\xb0\x90\xb6\x46\x35\x22\x26\x8a\x1d\x9a\xb8\xdb\x08\x8c\x14\x70\x7a\x74\x81\x6e\x23\xd0\x55\xe0\x1d\x77\x07\x88\x09\xa1\x4b\x12\x4d\x06\x8e\x0d\xbc\xb7\x57\x74\x9f\x31\xe4\x30\xd8\x33\xf6\xc9\xdb\x7c\x22\x15\x17\x34\x1b\x3b\xd5\x7c\x81\x21\x53\xde\xe6\xf0\x68\x8c\x3c\x20\x8f\x2d\x98\xce\x3a\x33\x77\xa8\xe2\xc5\x44\x40\x33\x47\x8d\x86\xaa\x5e\x6d\x7a\x3c\xdd\x8b\x09\x02\x67\x4c\xa0\x26\x8e\x73\x4a\xa2\x44\x70\xed\xe2\x62\xa2\xd8\x4b\x19\xef\x50\x23\x25\xa5\xe7\xeb\xe5\x98\x92\xc3\x42\xb8\xd2\x9c\x48\xc5\x52\x49\x89\x48\x57\x13\x41\x43\x3a\x3d\x78\x8c\x8d\xf6\x57\x4f\x51\xc7\xeb\xba\x7c\x8e\xf0\xde\xff\x85\xaa\xad\x64\xb1\xa0\x2c\xa4\x75\x40\x8d\x88\x89\xa7\xa6\x99\x8c\xec\xd5\x77\x50\x72\x4e\xb2\x17\x19\x1f\x6a\x8e\xa0\x39\xc2\xd4\xfd\x3a\xe7\x24\xdb\x63\xa5\x75\x28\x96\x1d\x72\x6a\xb0\x03\xcc\xbd\x82\x9a\xbe\xf7\x5b\xbd\x8f\x8c\x9d\xbe\x67\xde\xd2\x81\x1a\x34\x89\xb0\x39\xe1\x87\x09\x7d\xde\xaf\xf1\x7a\x96\xf4\x7e\x46\xdc\x6e\x88\x88\x80\x21\xf7\x0c\x1c\x3a\xa6\x7b\x04\x11\x0d\x85\x88\x58\xc3\x4c\xff\x47\x77\xef\x42\x1a\x86\x14\x8d\xe5\xc7\xfe\xbd\xbb\x26\x39\x9e\x52\xdf\x8c\x1c\x85\xdc\xc2\x85\xdc\xf6\x59\x8f\x87\xb5\x1c\x77\x44\x7b\x97\xa1\xbd\xf4\x81\x76\x31\x8d\x2d\x38\x6a\x19\xa3\x88\x58\xb0\x3c\x60\x6f\xee\x00\xb1\x32\x75\x49\x06\x16\xcb\x65\x86\x6b\x22\xf4\xdc\xb9\xff\x3c\xa2\x0c\xe9\x87\xb2\x46\xec\x9d\x7f\xc9\x31\xde\x27\xc7\x78\x74\x52\x12\x66\xd7\xb8\x19\x17\x51\x39\x91\x45\xc8\x83\x89\x35\x22\x2a\x86\x2e\x4d\x44\x33\x10\xcb\x07\x8e\xf4\xcd\x23\x13\x86\x5d\x43\x81\xa0\x07\x6f\x0d\x1c\xda\x79\x79\x04\x11\xed\x05\x4a\xc6\xe1\x42\xff\xef\x33\xf5\x8d\xe0\xd5\xf8\x30\xa7\xc6\x2f\xe7\xd3\xb8\xeb\xd2\x18\x3d\x18\x58\x54\x01\xbf\x09\x8d\x86\xaa\x45\x6d\x7a\xbc\x63\x80\x45\x55\xc1\x8f\xa2\x3a\x20\x08\xe5\x96\x96\x6a\x2e\x58\xb6\x0c\xed\xbc\xc3\x43\xee\xed\x25\x1f\xd3\x46\x0e\x4e\xd9\xf2\x83\xf7\xed\x7d\x4f\xe8\xef\x55\x50\x47\x91\x06\x0f\x93\x4c\x87\x22\x9e\xc9\x84\xe1\x02\x1f\x98\xfa\xd8\xe3\x0d\x92\x8b\x90\x3d\x86\x81\x43\xa7\x7a\x1e\x41\xbc\x79\x99\x66\x02\x53\xfd\x1f\xef\x21\xf2\xc9\x0d\xb9\x0f\xda\x4b\x58\x44\x64\xce\xb3\xb3\x21\x33\x6c\xda\xd3\x2e\xf7\xff\xb8\x38\xdf\xbb\xe2\xdf\x7d\x9f\x3c\x63\x01\x83\x0f\x68\x34\xac\x6e\xbd\xf4\x78\x46\xfe\x19\x5b\xc0\x79\xc6\xf6\x06\x20\xe8\x9e\x52\x09\x1b\x87\xf7\x80\x30\xbc\x2f\x14\x85\xd7\x04\xe1\x7d\x22\x00\x6f\xfd\xc2\x77\x74\xfe\xf6\x26\x5c\xf9\x0d\x1c\x56\x7a\x9f\x20\x9e\x63\x2f\xcd\x04\xbe\xeb\xff\xa8\x97\x9d\x65\xc9\x42\x3a\xad\xb2\x78\x58\xe9\x2d\xc5\xf3\x8c\xbc\x1d\xc6\x33\x4c\xcd\x1d\x82\x1e\xf2\x46\x07\xeb\x77\x18\xcf\x5a\x87\xab\x31\x78\x51\x6d\xc6\xb8\xee\xea\xa0\x3c\xdb\x84\xdf\xe1\x18\xdd\x20\xfa\xa4\xcd\x32\x03\x53\x05\x70\x6a\x7e\x9c\x66\x1f\xe8\xb0\xd8\xfa\x0e\x44\x52\xe5\x20\x86\x9a\xa7\x3b\x80\xd6\x66\xde\xc2\x8c\xb3\x99\x77\x60\xd6\xfc\xdb\x02\x0d\x77\xfb\xe8\x40\x5c\x93\x70\x30\x53\xfb\x6b\x0c\x90\xad\x4d\x87\x63\x54\xbd\x61\x3e\xf4\xeb\xf7\x31\x89\xee\x6d\xfa\x16\x5a\x0b\x5e\x2e\x79\x36\x9f\x2c\x05\x0b\x6a\xe6\xd4\xc5\x45\xa7\x9b\xfb\x28\xe3\xcd\x3b\x2d\x37\xb0\xdc\xe0\x83\x60\xd9\x49\x4f\x40\xe1\x90\x0b\xd1\x31\x02\x01\x0d\x0f\x0e\xcc\x4b\x98\x0a\xdc\xd9\x0a\xf9\xb9\x11\xd4\xec\xc7\x92\xa5\x1b\x03\x02\x2a\x1e\x8f\xc1\x51\x25\xe4\x49\xf2\x78\x0a\x89\x66\x09\x8e\xa5\xeb\x26\x7a\xcf\x87\x08\x4a\x52\xc5\xb6\xd4\x79\x86\x08\xf8\x35\xed\x22\x63\xd2\x7a\x82\x36\x9a\xa8\x6a\x7e\xce\x0f\x84\x84\xaf\xee\x81\x75\x01\x81\x7e\x5c\x82\xcc\xe7\x4c\x85\xf4\xbe\x56\x23\xa2\x12\xea\xd2\xc4\x93\x8c\xe3\x03\x5f\xcd\xcd\xc5\x17\xb4\x9f\x59\x11\x25\x53\xc1\xaa\x80\xdb\xb9\x2d\x26\xda\xe7\xec\x52\xc5\xeb\x79\x1a\x4e\x30\x5d\x11\x35\x33\xb7\x7d\x53\x9e\x38\x0e\x5b\x0f\xf6\xd7\xfa\xa2\xee\x5a\xf7\x79\x6b\xed\xed\xa5\x03\xf7\xcb\xfd\x3d\xf1\x3c\x1f\x13\x37\xd6\x47\x78\xc1\x3e\xdc\xeb\xbb\x5d\x5c\xc6\x61\xc7\x05\x0d\x88\x2e\x31\x1c\xe7\x7c\xbe\x17\xe2\xd1\x6a\x89\xa4\xe9\x46\x04\x35\x27\xf4\x40\xb1\xfa\xf1\xc8\x26\x5b\x2a\xd8\x62\xc4\x96\xf6\x63\x24\xc9\x96\x23\x94\x92\xbd\xdb\x68\x06\x93\xfe\xb8\x38\x1f\x55\xa3\xde\x4b\xc1\x8f\x22\x9f\xb1\x65\x39\xf0\x8c\xe1\x0e\xc2\x37\x2d\x23\x76\x10\x86\xb7\x9d\xd7\x01\xb9\x38\x9f\xb9\x7b\x74\x5b\x6f\x29\x38\xdf\x06\x6c\x10\x16\xcf\x91\xed\x59\x91\xeb\xa4\x0f\x5a\x8e\xb3\x39\xe1\x83\xb9\x20\xab\x70\x61\x2d\x8f\xfa\x6c\x8d\xf6\x58\x17\x1d\xea\x22\x5a\x67\x9d\x90\x8a\xc5\x57\x84\xa4\x82\xaf\x74\xd7\x33\xff\xa1\xb9\x8e\x2a\xd6\xe7\x11\x32\x60\x7f\x22\x73\x54\xdc\x5e\x7a\x5c\xff\x8f\x3f\x64\x8e\x47\x32\xa0\xa4\x94\x8a\xe4\x01\xad\x56\x1a\x48\x4c\x00\xbb\x44\x51\xcd\x00\x0d\x23\x63\x01\x68\xee\x70\xc3\xa8\x65\xc0\x8d\x0d\x8d\x86\x49\xc1\x4b\x8f\xe8\xf5\x6a\x49\x60\x46\x96\xe8\xa6\xc6\x82\x87\x8c\xef\xc8\xd1\x4d\xcf\x36\x39\x5e\x9c\x45\x5e\xc1\x09\x47\x77\x3c\x6f\xf8\xaa\xfc\x19\x34\xac\x9f\x05\xc4\x46\x67\x1b\xd6\xaf\x43\x37\xf4\x18\xa1\xc9\x0b\x67\xf6\x8a\x8e\x88\x92\xe7\x01\xad\x7c\x35\x1a\xda\x92\x79\x2e\xa6\x39\xdf\x8c\x37\x2e\xe7\xb9\x18\xed\x3b\xda\x7b\xbb\x78\xdf\x11\xcf\x05\xcc\x74\x31\x91\x56\x75\xbb\x61\xe9\x7a\x11\xd2\x6d\x4d\x8d\x88\x09\x7f\x87\x26\x9a\x08\x6a\x3e\x37\xf0\xa5\xbe\xc3\x4f\x38\xea\x06\x11\x70\x99\xc6\x01\x62\xa2\xe8\x92\x44\x3c\xed\x68\xd8\xc0\x99\xbd\xe2\xab\x56\x52\x4d\x78\x45\x4b\x52\xb1\xb0\xfa\x5c\x8d\xda\xa7\xd7\xed\xd0\xc5\x55\xd0\x1c\x2f\xa3\x72\x7d\xae\x68\xd9\xa3\x76\x2d\x58\x4e\x27\x77\x44\x85\x0c\xf8\xd0\x62\xa2\xc3\xd0\x2e\x55\xdc\xa8\xbf\x86\x93\x39\xda\xf7\x5d\xdf\xa1\x2d\x86\xcf\xb9\x5a\x08\x52\xd0\x3b\x1e\xd2\x9c\xb8\x8b\x8b\xb6\x9a\x7d\x94\xf1\xda\x4d\x87\x1b\x7c\xd5\x3f\x4f\xea\x9f\x7d\x8d\x27\x6c\xb3\xe9\x6b\x30\x2f\xd2\x54\x74\x23\x41\xf7\x94\x1e\xe6\x44\x85\x0c\xc7\xea\x00\xb1\xc2\x3b\x12\xa3\xdc\x8f\x1d\xa5\xbb\x6c\xe2\x6d\x41\x59\x36\x70\xf1\x70\xac\xaf\xc3\x7c\x24\x75\xf3\xea\x29\x03\xba\xa8\x3c\x0f\x79\x92\x4a\xa3\x61\xea\xa3\x97\x3e\x70\x5d\x78\xce\x05\x4c\x8f\x3f\x7f\x45\x15\x46\x9a\x07\x3d\x8e\x68\xe0\xb0\x26\xe5\x13\x44\x3c\xd1\x24\x6f\x73\x78\xaf\xff\xe3\x36\xc0\xa9\xe0\x05\x0d\x1a\x06\xbb\xc5\x44\x3f\xac\x5d\xaa\x88\x26\xc1\x35\x27\xb8\x68\x6e\x31\xa1\x94\x54\x85\x5c\x63\x35\x70\x98\x28\x7c\x82\x68\x52\x30\x4c\xe0\x52\xff\xc7\xa7\x87\x21\x97\x83\x34\x1a\xaa\xb5\xf2\xf8\xcb\x41\x9a\x07\x9c\x71\x7c\x39\x28\x6c\x40\xc3\xbe\x50\x86\x3a\x7d\xf4\x9c\xef\x25\x22\x20\x9a\xd8\x87\x7d\x61\x0f\x15\xcd\xe9\x52\x84\x3c\xd1\x5f\x23\x62\xb2\xdb\xa1\x89\x17\x40\xc8\xf1\x81\x6b\x77\x83\x1a\x46\x93\x72\x99\xb3\x80\x0b\x68\x0e\x10\x13\x44\x97\x24\x9e\x6d\xb4\x65\x03\x1f\xec\xb5\xdf\x53\x34\x2b\xa9\x0c\xa9\xa4\xf9\xa8\x98\x3c\xf6\xd0\x0d\xdf\x45\xf4\x30\x26\x0b\x26\xe8\x8a\xcb\x97\xb1\xc6\x77\x4c\xe1\x93\xbd\xbe\x19\xb6\x99\xa8\x11\xea\xd7\xad\x21\x4e\xdc\x6f\xd4\xf2\x55\xdd\x31\x15\x74\xf0\x77\x80\xe8\x17\x6c\x49\x26\xf6\x7c\xf5\xd8\xaa\xaa\x51\x14\x2b\x68\xce\xc6\xf8\x4b\xef\xe2\x64\x4c\xd0\x54\x59\x2b\xc0\xe8\x55\xee\x98\x42\xfd\xf2\x70\x6d\x1f\x5c\xbb\xdf\x83\x6a\xbf\x06\x73\xa7\xd7\x1d\xd4\x6c\xcf\xe9\xf5\x03\x81\x3a\xa2\xa8\xf1\xde\x99\x87\xd6\x2a\xb2\xcf\x5f\xfc\x44\xde\x05\x34\xa4\x77\x80\x3d\xdf\xbe\x47\x12\xd5\x92\x42\xde\x2d\x60\xf6\xfd\x04\x93\x40\xb5\x99\x97\x21\x8f\xc9\x58\x3c\xac\xfc\x1d\x8a\x68\xc5\xb7\x5c\xe0\x6a\x33\xbf\xc4\x8f\xc9\x48\x15\xb2\xf8\x1a\x0d\x2b\xbc\x97\x1e\xcb\xa3\xac\x66\x01\x33\x85\x97\xda\x9e\x75\xbd\x0d\x7e\xc2\xf6\xf6\x80\x13\xb6\xb7\x2f\x74\xc2\xf6\x56\xc2\xec\x76\x77\x74\xda\xd1\xf9\xd5\xff\xfc\xfa\x6b\xc0\x29\x84\x86\x43\xe7\x10\x1e\x41\xbc\x49\x84\x66\x02\x67\xfa\x3f\x7a\x98\x82\xab\x80\x4a\xa0\x46\xc3\x4a\xee\xa5\xc7\xb3\xd1\xe7\x8a\xc0\xe9\xe7\xeb\x23\x3c\x6e\x31\x0f\xbb\xca\xef\x00\x1d\xdd\x93\x7b\x8a\x47\x0d\xc9\xc0\xda\xb4\xf0\xc6\x25\xeb\x51\xc5\xfa\xcf\xcd\xd3\x75\xe8\xaf\x9a\xae\xfb\xbf\xea\x96\x26\xf2\x49\xd0\xb5\x84\xf7\x9f\xf0\x73\xf3\x77\x94\xa8\x55\x48\x45\xd1\x01\x62\x42\xe8\x92\x44\x3c\x28\x65\xd8\xc0\x77\x7b\x45\x07\xb6\x74\x45\xb3\x4d\x1e\x52\x0e\x0d\x24\x3a\xc4\xed\x10\x45\x0c\xd8\xed\x18\xc1\xac\xbe\x43\x3f\x7c\x72\x1f\x70\xa0\xd7\x68\xe8\x27\xdf\xa6\x1f\x56\xaa\x72\x4b\x85\x56\x68\x75\x46\x38\x23\xf7\x73\xf4\x4b\xbf\x61\x65\x40\x2f\xf8\x37\xed\x29\xac\x27\xfc\xa3\x8d\x39\xa5\x35\xd6\x97\x8b\xe6\x06\x67\x8f\x4e\x33\x75\x5f\xb9\x15\x7a\x38\x31\xb4\x98\x98\x30\x1e\x51\xc5\x52\xe4\x3c\x6b\xcb\xb6\x2d\xa0\x2d\xdc\x88\x20\xe4\x5e\xbe\x05\x44\x9b\x46\x87\x24\x9e\x4e\x63\xd9\xc0\xd9\x07\x73\xc5\xa4\xf0\x40\x8a\x22\x64\xa7\x67\xf1\x30\x19\x74\x28\xa2\x89\xc0\x72\x81\xff\x98\x0b\xba\x3e\x3c\x27\x21\xa3\x04\x1b\x38\xac\xf8\x3e\x41\xbc\x55\x5e\xcd\x04\x3e\x1e\x93\x9e\x10\xc1\x7a\x72\x9d\x05\xec\xe7\x1d\x60\x8f\xfe\xe3\x91\xc4\x9d\xd0\x67\x73\x98\x65\xf8\x7c\x96\x54\x93\x92\xaa\x3b\x4a\xb6\x41\x87\x7e\x1f\x16\x1d\xfe\xf7\x10\x46\xb4\x9b\xac\xa0\x61\x06\x97\x54\x7d\x37\x77\xa8\x7c\xec\xe9\x85\x92\xdf\x05\x14\x4e\x83\x89\x4a\x66\x97\x2a\x9e\x58\x1a\x4e\xe0\x0e\x6b\x5c\xf2\x3b\x3c\xc4\x4c\xc8\xa8\xda\xcb\x9e\x88\xda\x5e\x7a\xac\x38\x42\x9a\x05\x7c\x10\x15\x1a\x49\x88\x55\x21\x4f\xfb\x6a\x34\xac\xd4\x5e\x7a\xbc\x19\x70\xb5\x90\x70\x7a\x75\x82\x06\x4e\xd5\xfd\x55\xe8\x18\x99\x07\x84\xc8\x7c\xa1\x08\x99\x75\x80\x4c\x7c\xcd\x8f\x04\xb4\xfe\xd4\x68\xe8\x77\xdf\xa6\xc7\xfb\xe2\x15\xb9\x87\x99\x3a\xfa\xd1\xbb\xe8\x57\xc8\x80\xd6\x6a\x35\x62\x4f\xd5\xfb\x34\x71\x97\x07\x0a\xb9\x86\x8b\xd9\x27\x74\x79\xa0\x09\x30\x21\x6f\x73\x1b\xad\x2d\xe0\x14\xe2\x11\x36\x3a\x95\x78\x8a\xfa\xe5\xc2\x5d\xcc\x6a\xce\xe8\xf7\x52\x92\x35\x7d\x20\x45\x48\x47\xe8\x35\xa4\xa3\xdc\x3b\x89\xd6\xe9\x8f\x28\x07\x7e\x18\x75\x6e\x98\xe9\xbb\xff\x1c\x5d\x9c\xe3\x11\x67\x89\x54\x37\x32\xe4\x99\x83\x1a\x11\x2b\xa8\x39\x74\xb0\x43\x38\xd0\x28\xd1\x65\x86\x13\x77\x83\x96\xf2\x3e\xa0\x07\xa1\x7b\xd4\x7d\xd0\x7d\x74\xdf\x41\xf7\x37\xf0\xe3\x0c\x8f\x1c\x27\x68\x1a\x72\x99\xc0\xe0\xa1\xdf\xb5\x4f\x11\x6d\x79\xc0\x30\x01\xbb\xd7\xd9\x77\x7c\x2c\x5c\xe9\x3d\xe3\xd2\x27\x0f\x8d\x0d\x2e\xb9\x3b\x84\x9f\x13\x79\xa0\x8a\xe0\xe5\xdd\x73\xf0\xd3\x7b\x87\xe1\x07\xd1\xcc\x5b\xc0\x54\xff\x1f\xb4\x23\x6d\x7c\xd9\x3f\x36\x46\xc5\x0f\x9a\x36\x99\x90\x43\xa6\x66\x7e\xf9\x36\xf0\x94\xf6\x6d\x9f\xb6\xd6\x50\xc4\x9d\xd0\xbe\x85\xd9\x5b\x7c\x66\xc2\x03\xea\x2b\x1a\x0d\xeb\x87\xbd\xf4\xa1\xf3\x0d\xbe\x86\x0f\x82\xaf\xd1\x6e\x37\xe5\x9b\x74\x15\x72\x75\xc2\x01\x62\x75\xd9\x25\x89\xe8\x98\xd1\xb0\x81\xa9\xbe\xbe\x43\x57\x28\xee\xb8\x58\x67\x24\xa0\xd1\xaa\x03\xc4\xa4\xd0\x25\x89\xb7\x3d\x63\xd9\xc0\x77\x7b\xc5\xa4\xf0\x93\x55\x93\x8c\x2e\x72\x12\xd4\xa4\xc9\x47\x45\x1b\xfa\x4f\x56\xed\xd0\x4d\x92\xc7\xcf\x06\xfa\xf8\xae\x73\xc3\x5f\xac\x7a\xe7\xee\x0f\x09\xa8\xb9\x0f\xe2\xc3\xcf\x27\x31\x76\x34\xc9\xa0\xde\x80\x65\x8f\x37\x60\x9d\x3e\xfe\x08\xe4\x0b\xb8\x12\xd6\x3c\x60\xd6\xe3\x4a\x58\x3e\xc8\xa0\x61\x94\x2d\x1e\xd6\xe0\x3a\x14\x03\x4b\x64\xb2\xc2\xcc\x5c\xfa\xf6\xbf\x83\x87\xed\x3a\x20\x6a\xd7\x0b\x05\xed\xaa\x63\x76\x1d\x34\xb7\xad\xb8\x54\x4b\x41\x03\xae\xf2\x3c\x82\x3e\x68\x66\xbb\x43\xfc\x72\x13\xdb\x2b\xc7\x18\x3d\x9b\x96\xb3\x32\xa0\x76\x61\xe0\x30\xa9\xf8\x04\xf1\x8e\xa7\x69\x26\x70\xa2\xff\xa3\x8b\x41\xc5\x6d\xc8\xc0\x02\xc5\x2d\x1e\x54\xa0\x4d\x8f\xf7\x89\x14\xb7\x15\x1c\x5d\x7c\xb9\x42\xf5\xc9\x0d\xd9\x12\xe7\xbf\x7c\x13\xf0\xeb\xe8\xe2\x62\xa2\xd8\x4b\x19\xcf\x24\x5e\x73\x83\x9a\x1b\x7c\xd0\x3f\x8d\x5b\xcd\xe3\x0d\xfa\x69\x54\x9b\x5c\x92\x80\x8a\x89\xc5\xc3\xe4\xd2\xa1\x88\x68\x17\xaa\xb9\xc0\x95\xb9\xa0\x9b\xe9\x55\xc8\x00\x74\x15\x1e\x7f\xae\x8a\x1f\x7e\xae\x22\x70\x56\xf5\x1f\x89\xc8\x02\x6f\x9e\x1a\xc4\x9e\xf1\xd3\xa7\x19\x77\x0c\x22\xcb\xe6\xd6\xf3\xe2\x0b\x0c\xc3\x6f\x20\xcb\xe6\xf0\x2e\x9b\x8f\x38\xf7\xd0\xbc\xa7\xc9\x6f\x9d\x43\xe2\x9e\x69\xd3\x80\xe3\x93\x46\xc3\xaa\xc2\x4b\x8f\xb5\x68\xa5\x59\xc0\x05\x4f\xd1\xa1\x89\xd1\xf4\xf7\x5f\xff\xef\x1f\x01\x0d\x73\x6b\x44\xac\xf4\x35\xcd\x64\xec\x4a\xfc\x0e\x4c\x9a\xb3\xb6\x69\xc4\xdb\xf1\x73\xec\xc0\xb2\x83\xa9\xb9\x0c\x73\x99\x5c\x43\xd8\x82\x9b\x2d\x63\x7c\x3f\xe0\x8e\xae\x03\x76\x8e\x1a\x0d\xab\x18\x2f\x3d\xa2\x5d\xe5\x9a\xc0\x77\xba\x46\x3b\xc8\x94\x97\x4a\xf0\x3c\xa8\xde\xd0\x62\x62\x22\x78\x44\x15\xeb\xfb\x6c\x19\xc1\xd4\xde\xf6\xe8\x09\x5b\x2a\x54\xc0\xbd\x54\x03\x87\x49\xc2\x27\x88\x18\x2c\x5a\xa8\x7b\xf8\xa6\xff\xa3\x2a\x42\x36\x0f\x68\x35\xa1\xd1\x50\x25\xa1\x4d\x8f\xa7\x25\x64\xf3\x14\xce\xb2\x39\x6a\x36\x91\xf2\x52\x6e\x02\x6e\x05\x5a\xbc\x9e\xe6\xdf\x52\x44\x5c\xc2\xd4\x5c\x4c\x34\xf9\x0d\xea\x88\x80\x2f\xcb\x80\xc5\xd7\x68\x8e\x68\xcf\x56\x86\x97\x3a\xc8\x83\xa5\xce\x07\x9f\x97\x65\x8e\x6c\x2c\x2c\x48\x4a\xe7\x3c\xe4\xfa\x7a\x8d\x88\x55\xe6\x0e\x4d\xbc\x79\xb0\xe3\x03\x27\xee\x06\xf5\x2c\x59\x11\x15\xd0\xbb\x91\x81\x7b\xba\x52\xfd\xe4\x61\x61\x82\x74\x46\xf8\x71\x45\xd4\x0a\xa9\xd7\x52\x06\x74\x26\x5e\x4a\xd4\x8f\x78\x9b\x1c\xcf\x1b\x84\xbc\x85\x4b\x79\xdb\x77\xa8\x27\xa4\x71\xbf\x86\x73\x54\x88\x93\x40\x8f\x6a\xf8\x99\x9e\xb9\x39\xd1\x83\x5b\xf9\xdb\xf3\x72\x65\xf0\x53\x7a\xe5\x01\xa7\xf4\xca\x17\x3a\xa5\x57\x4a\x98\x95\xf8\x29\xbd\x62\x4b\x03\xf6\xb7\x1a\x0d\x9d\x05\xb5\xe9\xcf\x0b\x82\xec\x01\x0d\x9c\x24\x6d\x69\x0e\x17\x5b\x7a\x48\x88\xfd\xa6\x6b\x68\x32\x21\x1d\xc3\xa6\x64\x5b\x9e\x32\xf5\x30\xa9\x88\x90\x54\x04\x6c\x58\x8f\xa0\xb1\xcf\xa7\x25\x4e\x9b\x20\xc1\xfe\x53\xb5\xf7\xe9\x82\xdd\xd3\x6c\x80\x40\xbd\x5d\xa5\x06\x04\xfe\x5d\xb2\x6f\xe6\xee\x44\xa3\x7d\x67\x99\x5a\x0d\xdc\xa1\xda\x83\x35\x95\xdb\xe7\x83\x5c\x3f\x02\xe9\x4a\x58\xd0\x80\xe7\xd4\x05\x45\xcf\xa8\xb7\xc9\xb1\x26\x1a\x82\x2e\xe0\x2b\x45\x63\xbd\xe5\x3f\x43\x46\xb8\xfb\xb9\xc0\x5a\x64\x9b\x3c\xb0\x65\xe5\x3f\x17\x70\xfe\xd7\x09\x5a\x73\x15\x59\x05\x8c\x5d\xab\xd1\xb0\xba\xf3\xd2\xe3\xad\xa2\x92\x15\x87\x2b\xb2\x42\xe3\xd6\x6e\x03\x6e\xc4\x6d\xd1\x3d\xb8\xed\x81\xeb\x7e\xa3\x5b\xeb\xb6\x80\x6f\xe8\x42\xdd\x9c\x95\x59\x40\x8b\x06\x03\x87\xb5\x57\x43\xd0\xe9\x3d\xed\x13\xbf\x8f\xac\x9f\xad\xb7\xd5\xb8\xb6\x6d\xb2\x43\x2a\xb7\x70\xac\xef\x86\xf7\x72\x16\xc0\xbc\x93\x85\x30\x9d\xee\x39\x2d\x97\x83\x7b\x5d\x0b\xb5\xde\x56\x16\xe8\x13\x7d\xf8\x46\xf2\x0d\xbd\x22\x0c\xb7\x0e\xb8\x09\xea\x32\xfe\xa6\xc7\x65\xfc\xcd\x0b\xb8\x8c\xd7\x3c\xe0\xac\xc7\x65\x3c\xa9\x82\x6a\x8d\x55\x8f\xc6\x58\xbd\x80\xb6\x58\x95\x12\x8e\xaa\x12\x5d\x8d\xe2\x95\x22\x55\x4e\xca\x32\xa4\x4d\x8d\x07\x8a\x09\xe1\x31\x59\x34\x59\x78\xac\xe0\x73\xa5\xc8\x95\xbd\xc7\x43\x27\x98\xcd\x86\x80\x53\xdc\xce\x86\xcb\xd3\xb3\xa4\x2e\xdd\x24\xe9\xfe\x1e\xd8\x23\xb9\xcc\xf0\xc3\x6e\x9d\x0c\xec\x43\xea\xdc\x67\x7d\xe6\xd1\x8d\xf5\x82\x8b\x94\x17\xc1\x88\xc2\x21\x63\x0d\xea\x09\xda\x97\x33\xa1\xb8\xb0\x7c\xf1\x43\xf5\xe9\x5a\xf2\xf2\x3e\xe4\xd1\x80\x16\x13\x6d\x5c\xbb\x54\x03\x7b\xd1\x26\x3b\x9c\xd9\xdb\x1f\x3d\x27\x03\x7e\x72\xbe\xa6\xb4\xa2\x62\x52\x10\x19\xd6\x68\x6f\x07\x19\x6b\x14\x4f\xd0\x46\x6b\x14\x0d\x3f\xcb\x0e\x2e\xcc\x65\x5f\x93\x58\x4f\xd6\x25\x51\x9a\x5d\xaf\x60\xd6\x4f\x8a\xa4\x01\xc1\x64\xd0\x25\x39\xfc\x08\x61\x92\x54\x82\x67\x9b\xb4\xad\x3b\xd3\xba\x68\x45\xcb\x8c\x96\x29\x6b\xf9\x24\xb5\x35\x70\x4f\x01\x7a\x8b\x31\xa9\x39\x36\x19\xcc\x2a\x73\xf1\x92\xaf\x50\x73\xdc\x37\xc5\x72\x6b\x05\x01\xe7\x59\xfe\xea\xc3\x53\xd1\xc4\xbb\x34\xb1\x94\xf6\x66\x69\xa4\x5e\x11\xe9\xf3\x96\x52\x10\x15\x34\xd0\x69\x8b\x89\x49\xe3\x11\x55\x54\x87\x29\x96\x93\xf1\x98\x62\x6f\x51\x2d\x52\x96\xbf\x05\xd4\x22\x65\xf9\x1b\xd6\xa3\x7b\xe9\x03\xd5\x02\x9d\x13\x8e\x66\x97\xbf\xf5\xaf\xa6\xa6\x01\x8f\x7d\x3b\x40\x54\x33\xee\x90\xc4\x5d\x4a\x4d\xef\x60\x7a\x87\x2e\xa4\x4a\x16\xd2\x52\x9a\xe1\x86\xd2\xec\x19\x76\xd2\x2c\xbe\x99\x34\xab\x60\xc6\x70\x9f\xc1\x2b\xc1\x16\x01\x27\x8f\x16\x0f\x93\x59\x87\xe2\xb9\x61\x06\x3b\x60\x03\x3f\x28\x9b\x17\xae\xcd\xe5\x10\x2d\xdb\x73\xcc\xe9\x67\x45\x55\xc7\x90\x47\xd0\x6f\xf0\xe3\xe7\x37\xf1\x8f\x9e\xdf\x14\x12\xce\xf0\x48\xbf\xd5\x72\x22\x68\x95\xb3\x94\x28\xc6\xcb\x89\xcc\x79\xc0\xd6\xb5\x07\x1c\x93\xc8\xd3\xe4\xf1\x16\x0d\x97\xe0\xb1\x04\xcd\x12\xae\x96\x5f\xdb\x47\xb3\x9c\xa3\x2d\x46\x5f\xd5\xcf\x70\x22\xb3\x78\x98\x94\x3a\x14\x11\x43\x36\x69\x2e\xf0\xc5\x5c\x30\x01\x50\x95\x66\xe1\x8a\xaf\xd1\xb0\xc2\xeb\xf4\xb1\xc1\x77\x3c\x04\xa9\x88\x1a\x3d\x12\x18\x84\x35\x7d\x88\xfe\xf9\x6a\x46\xf0\x5e\xa5\xd9\x27\xfa\x30\xec\xdc\x67\x93\x73\xa6\x0b\x3a\x2e\xeb\xa3\x70\x43\x39\x27\x59\xb3\x3f\xa7\x4b\xf2\xbc\x49\x95\x85\x9b\x68\x20\x47\xb5\x67\xbf\xd2\x4b\x2d\xa8\x22\x7a\x38\x68\x27\x23\x6e\x6a\x97\xfc\x62\x44\xfc\x8b\x79\x7e\xd0\xac\xff\x80\xd7\x6a\xe7\xf0\xfb\x6c\x25\x9a\x44\xe4\xa5\xf4\x1c\xc1\xbe\xd3\xcd\x01\x83\xca\x21\x92\x92\x88\x9c\xe4\x90\x17\x5a\xab\x30\x6f\xb4\xe6\x2a\x67\xe5\xd3\x6f\xb5\x56\x07\xbc\x96\x57\x79\x87\xb9\x73\x38\xe0\xc5\x3c\xd7\x0c\x7b\x5e\xcb\x4b\x3d\x48\x5c\x87\xc6\x08\x3e\xe0\xc5\x06\x85\x07\xee\x17\xda\xff\x0f\x00\x00\xff\xff\xad\xd3\x21\xaf\xc0\x5c\x01\x00"),
 		},
 		"/cr-example.yaml": &vfsgen۰CompressedFileInfo{
 			name:             "cr-example.yaml",
@@ -420,7 +427,8 @@
 	}
 	fs["/addons/master"].(*vfsgen۰DirInfo).entries = []os.FileInfo{
 		fs["/addons/master/master-role-binding.tmpl"].(os.FileInfo),
-		fs["/addons/master/master-role.tmpl"].(os.FileInfo),
+		fs["/addons/master/master-role-configmap.tmpl"].(os.FileInfo),
+		fs["/addons/master/master-role-lease.tmpl"].(os.FileInfo),
 	}
 	fs["/templates"].(*vfsgen۰DirInfo).entries = []os.FileInfo{
 		fs["/templates/groovy.tmpl"].(os.FileInfo),
diff --git a/deploy/traits.yaml b/deploy/traits.yaml
index 5f6dbd8..9f1e7cd 100755
--- a/deploy/traits.yaml
+++ b/deploy/traits.yaml
@@ -424,7 +424,13 @@
     description: When this flag is active, the operator analyzes the source code to add dependencies required by delegate endpoints.E.g. when using `master:lockname:timer`, then `camel:timer` is automatically added to the set of dependencies.It's enabled by default.
   - name: configmap
     type: string
-    description: Name of the configmap that will be used to store the lock. Defaults to "<integration-name>-lock".
+    description: 'Name of the configmap that will be used to store the lock. Defaults to "<integration-name>-lock".Deprecated: replaced by "resource-name".'
+  - name: resource-name
+    type: string
+    description: Name of the configmap/lease resource that will be used to store the lock. Defaults to "<integration-name>-lock".
+  - name: resource-type
+    type: string
+    description: Type of Kubernetes resource to use for locking ("ConfigMap" or "Lease"). Defaults to "Lease".
   - name: label-key
     type: string
     description: Label that will be used to identify all pods contending the lock. Defaults to "camel.apache.org/integration".
diff --git a/docs/modules/ROOT/assets/attachments/schema/integration-schema.json b/docs/modules/ROOT/assets/attachments/schema/integration-schema.json
index 7cfac05..227bd79 100644
--- a/docs/modules/ROOT/assets/attachments/schema/integration-schema.json
+++ b/docs/modules/ROOT/assets/attachments/schema/integration-schema.json
@@ -8549,7 +8549,6 @@
             "properties": {
               "configuration": {
                 "description": "TraitConfiguration --",
-                "format": "byte",
                 "type": "object"
               }
             },
diff --git a/docs/modules/ROOT/assets/attachments/schema/kamelet-schema.json b/docs/modules/ROOT/assets/attachments/schema/kamelet-schema.json
index d87e8ce..5403bf1 100644
--- a/docs/modules/ROOT/assets/attachments/schema/kamelet-schema.json
+++ b/docs/modules/ROOT/assets/attachments/schema/kamelet-schema.json
@@ -4409,7 +4409,6 @@
         },
         "flow": {
           "description": "Flow is an unstructured object representing a Camel Flow in YAML/JSON DSL",
-          "format": "byte",
           "maxProperties": 1,
           "properties": {
             "error-handler": {
diff --git a/docs/modules/traits/pages/master.adoc b/docs/modules/traits/pages/master.adoc
index ff8eb9d..ded352e 100755
--- a/docs/modules/traits/pages/master.adoc
+++ b/docs/modules/traits/pages/master.adoc
@@ -43,6 +43,15 @@
 | master.configmap
 | string
 | Name of the configmap that will be used to store the lock. Defaults to "<integration-name>-lock".
+Deprecated: replaced by "resource-name".
+
+| master.resource-name
+| string
+| Name of the configmap/lease resource that will be used to store the lock. Defaults to "<integration-name>-lock".
+
+| master.resource-type
+| string
+| Type of Kubernetes resource to use for locking ("ConfigMap" or "Lease"). Defaults to "Lease".
 
 | master.label-key
 | string
diff --git a/e2e/common/addons_test.go b/e2e/common/addons_test.go
index 938093d..749743e 100644
--- a/e2e/common/addons_test.go
+++ b/e2e/common/addons_test.go
@@ -22,27 +22,15 @@
 package common
 
 import (
-	"os"
 	"testing"
 	"time"
 
 	. "github.com/apache/camel-k/e2e/support"
-	"github.com/apache/camel-k/pkg/util/openshift"
 	. "github.com/onsi/gomega"
-	"github.com/stretchr/testify/assert"
 	v1 "k8s.io/api/core/v1"
 )
 
 func TestAddons(t *testing.T) {
-	forceMasterTest := os.Getenv("CAMEL_K_FORCE_MASTER_TEST") == "true"
-	if !forceMasterTest {
-		ocp, err := openshift.IsOpenShift(TestClient())
-		assert.Nil(t, err)
-		if ocp {
-			t.Skip("Prefer not to run on OpenShift to avoid giving more permissions to the user running tests")
-			return
-		}
-	}
 
 	WithNewTestNamespace(t, func(ns string) {
 		Expect(Kamel("install", "-n", ns).Execute()).Should(BeNil())
@@ -52,8 +40,6 @@
 			Expect(Kamel("run", "-n", ns, "files/Master.java").Execute()).Should(BeNil())
 			Eventually(IntegrationPodPhase(ns, "master"), TestTimeoutMedium).Should(Equal(v1.PodRunning))
 			Eventually(IntegrationLogs(ns, "master"), TestTimeoutShort).Should(ContainSubstring("Magicstring!"))
-			// TODO enable check on configmap or lease
-			//Eventually(ConfigMap(ns, "master-lock"), 30*time.Second).ShouldNot(BeNil())
 			Expect(Kamel("delete", "--all", "-n", ns).Execute()).Should(BeNil())
 		})
 
@@ -67,8 +53,6 @@
 				"-t", "owner.target-labels=leader-group").Execute()).Should(BeNil())
 			Eventually(IntegrationPodPhase(ns, "first"), TestTimeoutMedium).Should(Equal(v1.PodRunning))
 			Eventually(IntegrationLogs(ns, "first"), TestTimeoutShort).Should(ContainSubstring("Magicstring!"))
-			// TODO enable check on configmap or lease
-			//Eventually(ConfigMap(ns, "first-lock"), 30*time.Second).ShouldNot(BeNil())
 			// Start a second integration with the same lock (it should not start the route)
 			Expect(Kamel("run", "-n", ns, "files/Master.java",
 				"--name", "second",