diff --git a/internal/kafka/internal/api/admin/private/api/openapi.yaml b/internal/kafka/internal/api/admin/private/api/openapi.yaml index 8f4bfe439..45f0dcf15 100644 --- a/internal/kafka/internal/api/admin/private/api/openapi.yaml +++ b/internal/kafka/internal/api/admin/private/api/openapi.yaml @@ -43,6 +43,7 @@ paths: Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host + * admin_api_server_url * cloud_provider * cluster_id * created_at diff --git a/internal/kafka/internal/api/admin/private/api_default.go b/internal/kafka/internal/api/admin/private/api_default.go index aba852ac8..56ead7973 100644 --- a/internal/kafka/internal/api/admin/private/api_default.go +++ b/internal/kafka/internal/api/admin/private/api_default.go @@ -274,7 +274,7 @@ GetKafkas Returns a list of Kafkas * @param optional nil or *GetKafkasOpts - Optional Parameters: * @param "Page" (optional.String) - Page index * @param "Size" (optional.String) - Number of items in each page - * @param "OrderBy" (optional.String) - Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the `order by` clause of an SQL statement. Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host * cloud_provider * cluster_id * created_at * href * id * instance_type * multi_az * name * organisation_id * owner * reauthentication_enabled * region * status * updated_at * version For example, to return all Kafka instances ordered by their name, use the following syntax: ```sql name asc ``` To return all Kafka instances ordered by their name _and_ created date, use the following syntax: ```sql name asc, created_at asc ``` If the parameter isn't provided, or if the value is empty, then the results are ordered by name. + * @param "OrderBy" (optional.String) - Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the `order by` clause of an SQL statement. Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host * admin_api_server_url * cloud_provider * cluster_id * created_at * href * id * instance_type * multi_az * name * organisation_id * owner * reauthentication_enabled * region * status * updated_at * version For example, to return all Kafka instances ordered by their name, use the following syntax: ```sql name asc ``` To return all Kafka instances ordered by their name _and_ created date, use the following syntax: ```sql name asc, created_at asc ``` If the parameter isn't provided, or if the value is empty, then the results are ordered by name. * @param "Search" (optional.String) - Search criteria. The syntax of this parameter is similar to the syntax of the `where` clause of an SQL statement. Allowed fields in the search are `cloud_provider`, `name`, `owner`, `region`, and `status`. Allowed comparators are `<>`, `=`, or `LIKE`. Allowed joins are `AND` and `OR`. However, you can use a maximum of 10 joins in a search query. Examples: To return a Kafka instance with the name `my-kafka` and the region `aws`, use the following syntax: ``` name = my-kafka and cloud_provider = aws ```[p-] To return a Kafka instance with a name that starts with `my`, use the following syntax: ``` name like my%25 ``` If the parameter isn't provided, or if the value is empty, then all the Kafka instances that the user has permission to see are returned. Note. If the query is invalid, an error is returned. @return KafkaList */ diff --git a/internal/kafka/internal/api/dbapi/data_plane_kafka_status.go b/internal/kafka/internal/api/dbapi/data_plane_kafka_status.go index dda19dfd8..131498174 100644 --- a/internal/kafka/internal/api/dbapi/data_plane_kafka_status.go +++ b/internal/kafka/internal/api/dbapi/data_plane_kafka_status.go @@ -12,6 +12,7 @@ type DataPlaneKafkaStatus struct { KafkaVersion string StrimziVersion string KafkaIBPVersion string + AdminServerURI string } type DataPlaneKafkaStatusCondition struct { diff --git a/internal/kafka/internal/api/dbapi/kafka_request_types.go b/internal/kafka/internal/api/dbapi/kafka_request_types.go index 66289c06f..22ab00e1b 100644 --- a/internal/kafka/internal/api/dbapi/kafka_request_types.go +++ b/internal/kafka/internal/api/dbapi/kafka_request_types.go @@ -21,6 +21,7 @@ type KafkaRequest struct { Owner string `json:"owner" gorm:"index"` // TODO: ocm owner? OwnerAccountId string `json:"owner_account_id"` BootstrapServerHost string `json:"bootstrap_server_host"` + AdminApiServerURL string `json:"admin_api_server_url"` OrganisationId string `json:"organisation_id" gorm:"index"` FailedReason string `json:"failed_reason"` // PlacementId field should be updated every time when a KafkaRequest is assigned to an OSD cluster (even if it's the same one again) diff --git a/internal/kafka/internal/api/private/api/openapi.yaml b/internal/kafka/internal/api/private/api/openapi.yaml index 503f060bb..e1b07525e 100644 --- a/internal/kafka/internal/api/private/api/openapi.yaml +++ b/internal/kafka/internal/api/private/api/openapi.yaml @@ -441,6 +441,8 @@ components: $ref: '#/components/schemas/DataPlaneKafkaStatus_routes' nullable: true type: array + adminServerURI: + type: string type: object DataPlaneKafkaStatusUpdateRequest: additionalProperties: diff --git a/internal/kafka/internal/api/private/model_data_plane_kafka_status.go b/internal/kafka/internal/api/private/model_data_plane_kafka_status.go index 3b0766872..1ecdcca5f 100644 --- a/internal/kafka/internal/api/private/model_data_plane_kafka_status.go +++ b/internal/kafka/internal/api/private/model_data_plane_kafka_status.go @@ -16,5 +16,6 @@ type DataPlaneKafkaStatus struct { Capacity DataPlaneKafkaStatusCapacity `json:"capacity,omitempty"` Versions DataPlaneKafkaStatusVersions `json:"versions,omitempty"` // Routes created for a Kafka cluster - Routes *[]DataPlaneKafkaStatusRoutes `json:"routes,omitempty"` + Routes *[]DataPlaneKafkaStatusRoutes `json:"routes,omitempty"` + AdminServerURI string `json:"adminServerURI,omitempty"` } diff --git a/internal/kafka/internal/api/public/api/openapi.yaml b/internal/kafka/internal/api/public/api/openapi.yaml index c7e8412b0..591008ed9 100644 --- a/internal/kafka/internal/api/public/api/openapi.yaml +++ b/internal/kafka/internal/api/public/api/openapi.yaml @@ -304,6 +304,7 @@ paths: Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host + * admin_api_server_url * cloud_provider * cluster_id * created_at @@ -1206,6 +1207,7 @@ components: owner: api_kafka_service name: serviceapi bootstrap_server_host: serviceapi-1isy6rq3jki8q0otmjqfd3ocfrg.apps.mk-bttg0jn170hp.x5u8.s1.devshift.org + admin_api_server_url: https://admin-server-mk-e-e-e-e-c---{}ld{-}-n-vp--bltg.rhcloud.com created_at: 2020-10-05T12:51:24.053142Z updated_at: 2020-10-05T12:56:36.362208Z version: 2.6.0 @@ -1231,6 +1233,7 @@ components: owner: api_kafka_service name: serviceapi bootstrap_server_host: serviceapi-1isy6rq3jki8q0otmjqfd3ocfrg.apps.mk-bttg0jn170hp.x5u8.s1.devshift.org + admin_api_server_url: https://admin-server-mk-e-e-e-e-c---{}ld{-}-n-vp--bltg.rhcloud.com created_at: 2020-10-05T12:51:24.053142Z updated_at: 2020-10-05T12:56:36.362208Z failed_reason: a reason the Kafka request creation failed @@ -1563,6 +1566,7 @@ components: Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host + * admin_api_server_url * cloud_provider * cluster_id * created_at @@ -2033,6 +2037,11 @@ components: type: string bootstrap_server_host: type: string + admin_api_server_url: + description: The kafka admin server url to perform kafka admin operations + e.g acl management etc. The value will be available when the Kafka has + been fully provisioned i.e it reaches a 'ready' state + type: string created_at: format: date-time type: string diff --git a/internal/kafka/internal/api/public/api_default.go b/internal/kafka/internal/api/public/api_default.go index bb2cb2cac..f493c7166 100644 --- a/internal/kafka/internal/api/public/api_default.go +++ b/internal/kafka/internal/api/public/api_default.go @@ -872,7 +872,7 @@ GetKafkas Returns a list of Kafka requests * @param optional nil or *GetKafkasOpts - Optional Parameters: * @param "Page" (optional.String) - Page index * @param "Size" (optional.String) - Number of items in each page - * @param "OrderBy" (optional.String) - Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the `order by` clause of an SQL statement. Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host * cloud_provider * cluster_id * created_at * href * id * instance_type * multi_az * name * organisation_id * owner * reauthentication_enabled * region * status * updated_at * version For example, to return all Kafka instances ordered by their name, use the following syntax: ```sql name asc ``` To return all Kafka instances ordered by their name _and_ created date, use the following syntax: ```sql name asc, created_at asc ``` If the parameter isn't provided, or if the value is empty, then the results are ordered by name. + * @param "OrderBy" (optional.String) - Specifies the order by criteria. The syntax of this parameter is similar to the syntax of the `order by` clause of an SQL statement. Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host * admin_api_server_url * cloud_provider * cluster_id * created_at * href * id * instance_type * multi_az * name * organisation_id * owner * reauthentication_enabled * region * status * updated_at * version For example, to return all Kafka instances ordered by their name, use the following syntax: ```sql name asc ``` To return all Kafka instances ordered by their name _and_ created date, use the following syntax: ```sql name asc, created_at asc ``` If the parameter isn't provided, or if the value is empty, then the results are ordered by name. * @param "Search" (optional.String) - Search criteria. The syntax of this parameter is similar to the syntax of the `where` clause of an SQL statement. Allowed fields in the search are `cloud_provider`, `name`, `owner`, `region`, and `status`. Allowed comparators are `<>`, `=`, or `LIKE`. Allowed joins are `AND` and `OR`. However, you can use a maximum of 10 joins in a search query. Examples: To return a Kafka instance with the name `my-kafka` and the region `aws`, use the following syntax: ``` name = my-kafka and cloud_provider = aws ```[p-] To return a Kafka instance with a name that starts with `my`, use the following syntax: ``` name like my%25 ``` If the parameter isn't provided, or if the value is empty, then all the Kafka instances that the user has permission to see are returned. Note. If the query is invalid, an error is returned. @return KafkaRequestList */ diff --git a/internal/kafka/internal/api/public/model_kafka_request.go b/internal/kafka/internal/api/public/model_kafka_request.go index cecbaf474..75c66f2f1 100644 --- a/internal/kafka/internal/api/public/model_kafka_request.go +++ b/internal/kafka/internal/api/public/model_kafka_request.go @@ -24,10 +24,12 @@ type KafkaRequest struct { CloudProvider string `json:"cloud_provider,omitempty"` MultiAz bool `json:"multi_az"` // Values will be regions of specific cloud provider. For example: us-east-1 for AWS - Region string `json:"region,omitempty"` - Owner string `json:"owner,omitempty"` - Name string `json:"name,omitempty"` - BootstrapServerHost string `json:"bootstrap_server_host,omitempty"` + Region string `json:"region,omitempty"` + Owner string `json:"owner,omitempty"` + Name string `json:"name,omitempty"` + BootstrapServerHost string `json:"bootstrap_server_host,omitempty"` + // The kafka admin server url to perform kafka admin operations e.g acl management etc. The value will be available when the Kafka has been fully provisioned i.e it reaches a 'ready' state + AdminApiServerUrl string `json:"admin_api_server_url,omitempty"` CreatedAt time.Time `json:"created_at,omitempty"` ExpiresAt *time.Time `json:"expires_at,omitempty"` UpdatedAt time.Time `json:"updated_at,omitempty"` diff --git a/internal/kafka/internal/generated/bindata.go b/internal/kafka/internal/generated/bindata.go index e027c386d..e8e320a79 100644 --- a/internal/kafka/internal/generated/bindata.go +++ b/internal/kafka/internal/generated/bindata.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _kasFleetManagerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfb\x73\xdb\x36\xd6\xe8\xef\xf9\x2b\x70\xd5\xfb\x8d\xbe\xaf\xd7\x92\x28\x59\x7e\x44\xb3\xdd\x19\xc7\x76\x5a\xb7\x8d\x93\xf8\xd1\x34\xdb\xe9\xc8\x10\x09\x49\xb0\x49\x80\x06\x40\xdb\x4a\xef\xfe\xef\xdf\x00\xe0\x03\x24\x41\x8a\xb2\xe5\xc4\xee\xda\x3b\x3b\x8d\x24\x3c\xce\x39\x38\x38\x38\x2f\x1c\xd0\x10\x11\x18\xe2\x11\xd8\xec\x3a\x5d\x07\x7c\x07\x08\x42\x1e\x10\x73\xcc\x01\xe4\x60\x8a\x19\x17\xc0\xc7\x04\x01\x41\x01\xf4\x7d\x7a\x0b\x38\x0d\x10\x38\x3a\x38\xe4\xf2\xab\x2b\x42\x6f\x75\x6b\xd9\x81\x80\x78\x38\xe0\x51\x37\x0a\x10\x11\xdd\x57\xdf\x81\x3d\xdf\x07\x88\x78\x21\xc5\x44\x70\xe0\xa1\x29\x26\xc8\x03\x73\xc4\x10\xb8\xc5\xbe\x0f\x26\x08\x78\x98\xbb\xf4\x06\x31\x38\xf1\x11\x98\x2c\xe4\x4c\x20\xe2\x88\xf1\x2e\x38\x9a\x02\xa1\xda\xca\x09\x62\xe8\x28\xb8\x42\x28\xd4\x90\x64\x23\xb7\x42\x86\x6f\xa0\x40\xad\x0d\x00\x3d\x89\x03\x0a\x64\x53\x31\x47\xa0\x15\x40\x02\x67\xc8\xeb\x70\xc4\x6e\xb0\x8b\x78\x07\x86\xb8\x13\xb7\xef\x2e\x60\xe0\xb7\xc0\x14\xfb\xe8\x15\x26\x53\x3a\x7a\x05\x80\xc0\xc2\x47\x23\xf0\x0b\x9c\x5e\x41\x70\xaa\x3b\x81\xb7\x3e\x42\x02\xbc\x53\x43\xb1\x57\x00\xdc\x20\xc6\x31\x25\x23\xd0\xef\xee\x74\xfb\xaf\x00\xf0\x10\x77\x19\x0e\x85\xfa\xb2\xa6\xaf\xc6\xe5\x04\x71\x01\xf6\x3e\x1c\x49\x20\x35\x7c\x71\x1f\x4c\xb8\x80\xc4\x45\xbc\xfb\x4a\xc2\x8b\x18\x97\x20\x75\x40\xc4\xfc\x11\x98\x0b\x11\xf2\x51\xaf\x07\x43\xdc\x95\xd4\xe6\x73\x3c\x15\x5d\x97\x06\xaf\x00\x28\x40\xf0\x0e\x62\x02\xfe\x3b\x64\xd4\x8b\x5c\xf9\xcd\xff\x00\x3d\x9c\x7d\x30\x2e\xe0\x0c\x2d\x1b\xf2\x54\xc0\x19\x26\x33\xeb\x40\xa3\x5e\xcf\xa7\x2e\xf4\xe7\x94\x8b\xd1\xae\xe3\x38\xe5\xee\xe9\xef\x59\xcf\x5e\xb9\x95\x1b\x31\x86\x88\x00\x1e\x0d\x20\x26\xaf\x42\x28\xe6\x8a\x02\x12\xcc\xde\x95\x24\x11\x1f\x07\xb3\x40\xf4\x6e\xfa\x23\xd5\x7b\x86\x84\xfe\x07\x90\x0c\xc8\xa0\x1c\xe6\xc8\x1b\xc9\xef\x7f\xd3\x6b\xf4\x0e\x09\xe8\x41\x01\xe3\x56\x0c\xf1\x90\x12\x8e\x78\xd2\x0d\x80\xd6\xc0\x71\x5a\xd9\x47\x00\x5c\x4a\x04\x22\xc2\xfc\x0a\x00\x18\x86\x3e\x76\xd5\x04\xbd\x4b\x4e\x49\xfe\x57\x00\xb8\x3b\x47\x01\x2c\x7e\x0b\xc0\xff\x65\x68\x3a\x02\xed\xef\x7a\x2e\x0d\x42\x4a\x10\x11\xbc\xa7\xdb\xf2\x5e\x01\xc4\xb6\xd1\x39\x47\x96\xb8\x1d\x08\xf2\xb8\xf0\x28\x08\x20\x5b\x8c\xc0\x09\x12\x11\x23\x5c\x31\xfc\x4d\xb1\xad\x9d\x7c\x3d\xc4\x18\x65\xbc\xf7\x17\xf6\xfe\xbd\x94\x94\x87\xb2\xed\x9b\xc5\x91\xf7\x14\x89\xa8\x80\xab\x24\xdd\x8f\x48\x00\x85\xaa\x14\x2e\x29\x02\x56\xca\xa5\xcd\x70\xd2\x4c\xc0\x99\x81\x62\x47\xb7\xe0\xf1\x17\x21\x64\x30\x40\x22\xde\xa3\x49\x13\x0d\x69\x2b\x07\x69\xd6\xb2\x87\xbd\x56\xfd\x82\x34\x5b\x0b\xfe\x64\x17\xe2\x57\xcc\x45\xe5\x62\xc8\x1f\x01\x9d\x82\x90\x72\x8e\xa5\xc0\xcf\x11\xd4\xba\x28\x7e\xb1\x8b\x14\x9b\xb9\x6e\x15\x8b\x54\x41\x65\xfd\xb1\x19\xdb\x2b\x99\xfc\x54\xd9\x5e\x01\x77\x82\xae\x23\x94\x27\xb8\xfc\x43\x77\x30\x08\x7d\x13\xce\xe4\xcf\xec\xf5\x23\x12\x27\x31\x46\x87\xba\x43\xb9\xbd\x1d\x86\x64\xfc\x1c\x10\xf1\x18\x45\x58\x2a\xe7\xfc\x84\xc5\xfc\x2d\xc4\x3e\xf2\xf6\x19\x52\xb4\x39\x15\x50\x44\x7c\x1d\xb0\xd4\x8c\x5b\xc9\x9c\xfa\x04\x66\x7a\x00\x30\xa5\x11\xf1\x94\xcc\x38\xc8\x16\x7b\xe8\xf4\x9f\x88\x8c\xab\x5f\xe5\xa1\xd3\xbf\x2f\x15\xb3\xae\x95\x84\xda\x8b\xc4\x1c\x08\x7a\x85\x88\xd4\x66\x30\xb9\x81\x7e\x2a\x31\x15\x91\x36\x9f\x09\x91\x36\xef\x4f\xa4\xcd\x65\x44\x3a\xe7\x88\x01\x42\x05\x80\x91\x98\x53\x86\xbf\x68\xed\x15\xba\x2e\xe2\x5a\xb2\xc5\x0a\xa9\x49\xb8\xe1\x33\x21\xdc\xf0\xfe\x84\x1b\x2e\x23\xdc\x31\x2d\xec\xc4\x5b\x2c\xe6\x80\x87\xc8\xc5\x53\x8c\x3c\x70\x74\x00\xd0\x1d\xe6\x82\x67\x84\xdb\x7a\x32\xaa\x47\x3d\xe1\xb6\x1c\xe7\xbe\x84\xcb\xba\x56\x73\x1c\x41\x77\x21\x72\x05\xf2\x62\x4d\x86\xba\x4a\x9d\x4e\x75\x1e\xe4\x46\x0c\x8b\x85\x79\x56\xbe\x41\x90\x21\x36\x02\x7f\x80\x3f\xab\x0e\x61\x58\x58\x8e\x4c\x24\x7a\xc8\x47\x02\x59\x0f\x4f\xfd\x53\xf1\xfc\xb4\x6b\x4c\x98\x8c\xc0\x75\x84\xd8\xc2\x40\x8c\xc0\x00\x8d\x00\xe4\x0b\xe2\x56\xa1\xfb\x01\xb1\x29\x65\x81\xda\x4a\x50\x19\x39\x00\x13\x69\x88\xaa\x5e\x73\x46\x09\x8d\xb8\xb4\xae\x88\xb2\x56\xea\x96\x59\x2c\x42\x34\x02\x13\x4a\x7d\x04\x89\xf1\x8b\x44\x19\x33\xe4\x8d\x80\x60\x11\xaa\x55\x02\x06\x4f\x8f\x01\x8b\x23\x7d\x77\x4c\xc1\xbe\x06\xac\x8a\xa6\x07\x6a\xd9\x72\xb2\xfc\x79\xec\xac\xa1\xe3\x28\xd8\x31\x25\xf7\x17\x4d\xc5\x21\xaa\xcd\x31\x79\xe0\x29\x7c\x63\x65\xb3\xb8\xd5\x5e\x54\x85\x17\x55\xe1\x45\x55\xd0\xaa\x82\x96\x29\x0f\x50\x18\x72\x03\xfc\x87\xaa\x0d\x0f\x23\x62\x71\x80\xfb\xab\x10\x89\x72\xa0\x87\xab\x53\x0e\x9a\xe9\x1b\x21\x14\xee\x7c\x54\x1c\xfd\x3c\xf4\xa0\x40\xe9\xe0\x89\x53\x34\xe7\x9a\x69\xa6\xcd\xe4\x94\x92\x48\x0d\x5b\x36\xea\x15\xe8\x6f\xa8\x67\x8c\x95\xa7\x8a\x06\x87\xde\x12\xc4\x00\x9d\x02\xe5\x42\x78\x55\xc3\x35\xf5\x3c\x63\xe7\x98\xa5\xa6\xbe\x86\xa2\x64\xf0\xaf\xa0\xa3\xe4\xb9\xdd\x62\xfb\x6a\x02\x15\xad\xde\x67\xe5\xd3\xf8\x40\xf9\xe3\x3a\x35\x4a\x2a\x51\x8e\x8e\x6f\xa0\x97\x30\xd4\x33\x10\x2c\xef\x30\xe7\x98\xcc\x3e\x24\x6a\xf9\x03\x54\xa7\x8a\xa1\xda\xd5\x0a\xd1\x0a\x7a\xc2\xd3\xa5\xe0\x72\xed\x09\xac\xa4\x3e\x95\x34\xa2\xb2\xa2\x80\xb9\xa9\x2b\xf0\xa5\xba\xc2\x53\x26\xde\x5a\xb5\xaa\x92\x52\x64\xd7\x0f\xb4\x63\x4f\x69\x07\x8a\x5c\x86\x86\xf0\x2c\x68\xb6\x56\xdf\x4b\x49\x07\x5a\x49\x1d\x78\xca\x84\x5a\xa3\xaf\xa5\xec\xb6\x68\x14\xe6\xa9\x8b\x3f\xe8\x81\x42\xca\xed\xb1\x07\x97\xa1\x44\x53\x89\x7f\xfe\x9b\xb8\x4e\x96\xa9\x5a\x7a\x8b\x1a\x21\xce\xaf\xa7\x5f\x25\x0a\x04\x5c\xf8\x14\x7a\x79\x46\xab\x62\xb3\xf3\xd3\x13\x34\xc3\x65\xfe\x5e\xc2\x60\x49\xb7\x8a\x88\xc9\xe1\xf9\xbd\x46\x4d\xba\x55\x8d\x7a\x27\x89\x86\xc5\x29\xfe\x52\xad\x19\xd5\x4f\x50\x1e\xe1\x5e\x7a\xe8\x37\xf2\x95\x3d\x03\xe5\xb2\xa8\x15\xb9\x2e\x0a\x9f\xab\x3f\x2e\x09\xbe\x3d\x40\xa9\x2c\x0c\xf1\xe2\x8f\x7b\xf1\xc7\x25\x44\x5a\xb3\x3f\x2e\x1d\xf6\x1d\xbc\xdb\xf3\x7d\x7a\x8b\xbc\xa3\xd8\xeb\x70\x82\xa0\x3b\x47\xde\x03\xe6\x5b\x36\xa6\x15\x90\x33\xc4\x02\x7e\x4c\x45\x22\x03\x1e\x30\x7f\xc5\x50\xf5\xfe\xc8\x29\x65\x13\xec\x79\x88\x00\x84\xc5\x1c\x31\x30\x41\x2e\x8c\x38\x52\x4a\x43\x54\x36\x44\x2a\x9d\x96\x80\xe6\xfb\x06\xf0\x0e\x07\x51\x00\x48\x14\x4c\xb4\x3f\x25\x4d\x7a\x03\x62\x0e\x05\x70\x21\x01\x13\x14\xeb\x40\xca\x19\xa1\xb2\x0c\xd5\x9c\x73\xc8\xc1\x04\x21\x02\x98\xa6\x60\xb7\x5a\xfb\x7f\xba\xbc\xfb\x98\xd1\xd3\xb3\x39\x4a\xd4\x2c\xe4\xc9\xf3\x97\x46\xcc\x45\xc0\xa3\x88\x93\xb6\xd0\x2e\x50\x93\x66\xaf\x9f\x09\xcd\x5e\x1f\xc3\x00\xed\x53\x32\xf5\xb1\x2b\xee\x4f\x3f\xdb\x30\xd5\xc2\x52\xd2\x43\xb5\xcc\xf8\xce\x43\x42\x1b\x44\x98\x28\x6e\x76\xe3\x23\x4a\xf2\xb1\x62\xd3\x84\xe4\xd5\x26\xd6\x53\x25\xf2\xe3\x46\xa7\xf7\x08\x88\xaa\xcc\x49\x70\x3b\xc7\x7e\x42\x4b\x32\x53\x84\xcd\xf9\x95\xe3\x41\x57\x8c\x60\x2b\xf5\xa1\xec\xa4\x56\xcd\x8c\xac\x2f\x4b\xc4\x3b\x49\x3a\xcb\xf5\xe3\x36\x4b\x2d\xc9\x12\xe3\x2b\x81\xb8\xb2\x7f\x76\xaf\x1e\xa4\xaf\xca\x56\xa6\x06\x9b\xcf\xf6\xfb\x3b\xf9\x46\x8f\xb4\x6e\xf4\x51\x5a\xd7\x0f\x50\x61\x2d\xc3\xbc\xf8\x44\x1f\xe6\x12\x7d\xba\x78\x3f\xb1\x20\xf1\x8b\x6f\xaf\xc9\x49\x55\x97\xc6\xdd\xae\xf2\xef\x85\x70\x66\x2c\xd5\xd2\xe6\x1c\x7f\x59\xa5\x39\x65\x1e\x62\x6f\x16\xab\x4c\x80\x20\x73\xe7\xed\x0a\x9f\xa3\xeb\xd3\xc8\x1b\x87\x8c\xde\x60\x0f\x59\x52\xcc\x6b\x13\xaf\x79\x14\x86\x94\x49\x3e\x51\xc3\x80\x74\x98\x8a\xe3\x70\x5f\xb6\xfa\x50\x68\x74\xef\x63\xb1\x3d\x70\x9c\x76\x25\x13\x6b\x78\x91\xd7\x18\x58\xf0\x35\xb9\x3a\x47\x89\xfc\x49\xd9\x1e\x3a\xfd\x6a\xb4\x5e\x24\xbf\x26\xd2\x56\xdd\xda\xbf\x08\xb0\x6f\x20\xc0\x1a\x48\x17\x75\xb5\xa2\xc7\x94\x2b\xfa\xde\xa2\x26\xee\xae\xad\x2a\x54\xb9\xad\x9b\x88\x20\xed\x14\x7f\x2a\x82\x28\xc1\xec\x9b\xc9\x23\x4d\x8e\x17\x69\xf4\x22\x8d\xd2\xbf\xaf\x26\x8d\x96\x84\x4b\xf3\x8d\x1f\x4b\xf7\xb2\xc5\x4c\x3d\x14\x32\xe4\x42\x51\x08\x5f\x81\x34\x9c\x9a\xb8\x28\xc7\x62\x11\xa2\x2a\x1e\xf8\xff\x9d\x1c\xf9\xce\xe6\xc5\x5b\xbd\x2a\x5a\x2a\xb5\xf6\x29\xf6\x05\x62\x4a\xb4\x31\xc4\x23\x5f\x70\x30\x59\xbc\xca\xf5\x3e\x38\xfc\x70\x72\xb8\xbf\x77\x76\xf4\xfe\x18\x1c\xbf\x3f\x3b\xda\x3f\x54\xb0\x1b\x60\x64\x57\xa8\x53\xe8\xcd\x21\xaa\xa3\xb5\x5c\x30\x4c\x66\xc6\x0f\x59\xec\x6e\x0a\x7d\x6e\xe2\x67\x67\x1a\x0f\xdd\x20\x5f\x0a\xdd\x71\x0e\xa0\x22\xf7\xdc\x40\x3f\x42\x23\xd0\x4a\x9b\xb7\x72\x0d\x64\x4f\x0f\x32\xaf\xd9\x20\x49\xeb\xaa\xb8\x7a\x6e\x10\xde\xfb\x2b\x7f\x2a\xfd\x3b\xf9\x42\x8b\xdf\xf2\xd5\xbf\x86\xe7\x92\x65\x3d\x39\x80\xc4\x03\x92\xcb\x78\xbc\xae\xda\x69\x5d\x90\xfb\xb2\x91\x9e\xbc\xe2\xd0\x4a\x62\x03\x67\x72\xcc\x37\x8b\xdc\x19\xb6\x47\x62\xb9\xfd\xd0\x53\xac\xde\xcb\x54\x73\x8a\xad\x11\x71\xf0\x35\x45\xe1\x69\x82\x81\x42\x20\x47\xe3\x55\x7c\x57\xfb\x79\x9c\x68\x72\x8e\x27\x41\x90\x94\x50\xcf\x40\xdc\x0f\x1d\xe7\x9c\xa4\x00\xe7\x72\x06\xee\xe3\xe1\xaa\x1a\xcb\x16\xd5\x32\x1b\x27\xbc\xbd\x9e\xa9\x0b\xa3\xbd\xf8\xd8\x56\xf3\xb1\xbd\xb8\x8a\xee\xaf\xdb\x48\x85\x22\x84\x62\x5e\x52\x1a\xf2\x47\x90\xf5\xbc\x2d\x28\x1b\x2b\x9c\xd9\xb9\x15\x3a\x3a\x68\x68\x29\x35\x80\xb7\x24\xab\xd7\x0e\xed\x31\x0c\xd0\x32\x78\xb3\x23\xc3\x76\xd8\xc7\xae\xce\x31\x74\x5d\x1a\x11\x51\x36\x33\x57\x4d\x97\x73\x7d\x8c\x88\x18\xe7\xf6\x7e\xb5\x56\x74\x5f\xc4\xd3\x59\x52\xec\xe3\x10\x79\x8c\x87\x54\x0d\x27\x52\x25\x14\x0c\xa3\x1b\x54\x53\x76\xa0\x64\x8d\x7e\xbd\x03\x55\x83\xbc\xa7\x21\xae\xad\xf6\x50\x56\x27\xf2\xe8\xf2\x6a\x03\xf4\xa9\x8a\x93\x6f\x99\x9d\xd3\x1e\x3a\x9b\xcf\x84\x48\x4f\x2b\x10\x52\xb2\xdc\x9f\x2a\xe1\x9e\xc3\xfd\xf0\x62\xb5\x95\xa4\x57\x85\x55\x93\x17\x17\x95\x95\x5e\x60\xbd\x8c\x30\x13\xa5\x97\x27\x11\x9f\x16\xa4\x6a\x31\xe8\xfc\x15\x32\x8a\xf3\x68\x5b\x93\x4e\xab\xd8\x80\x37\xe4\xb1\x74\xe9\xad\x73\xdd\x3b\x3f\xf7\xa9\x9c\x2c\xcd\x77\x4d\xcc\x31\xf1\x6a\xaf\xbc\x73\xf2\xd3\x2e\xdb\x44\x45\xde\x8a\xb3\xd4\x5e\x4e\xb2\x97\x93\x6c\xe5\x93\xec\xd7\xa5\x6a\xd1\xcb\xc1\xb5\xbe\x83\xcb\x72\xc1\x26\xbf\xf5\x9b\x1d\x70\x96\xec\xb2\xc2\xfa\x35\xb4\x59\xec\x25\xc8\x1e\xe8\x3e\xff\x7b\x08\x74\xcb\x3c\x2b\x09\xf1\x37\x8b\xa3\xa5\x49\xce\x99\xe6\x51\x34\xc2\x56\xbd\xc3\xbe\x4c\xe9\x31\xee\x9a\x37\xe5\xad\xd4\x72\xaa\x86\x2d\x6d\xfb\x23\x12\xb6\x66\xb1\xb8\x2d\xd5\x42\xb4\x99\x9d\xe9\x65\xc8\x19\xbe\x91\x12\x3b\xe9\x6a\x96\xf7\x79\x14\xc6\x1c\x3e\x11\xe9\x56\x5b\x04\xe7\xe5\x48\xff\x7b\x1d\xe9\x0f\x20\xd2\x53\x37\x4e\xc1\x5f\xe0\xdf\x7f\xdf\x43\x5b\x0b\xa4\x07\x0b\xd7\xac\x76\x49\x95\x74\x6d\x7c\x7c\xf7\x18\xe2\x48\x8c\x5d\x86\x3c\x44\x04\x86\xbe\xe5\x62\xef\xcb\x89\x2e\x4f\xf4\x8e\xa2\xd4\x23\x1b\x67\x27\x72\x0e\x60\xac\xc6\x8b\x0c\x7f\x91\xe1\x2f\x32\xfc\x29\xc9\x70\x25\x06\xf2\xbb\x7a\x9f\x21\xaf\xaa\x96\x73\xb5\x82\xcc\x91\xe0\xc9\x0d\xac\x64\xbb\x83\x29\x65\xab\x8a\x75\x4e\x9b\x27\x46\x03\xce\x69\x16\xa1\xc2\x64\x4a\xab\x0c\x00\x4e\x8b\x19\xd0\x4b\x30\xfb\x9b\xa5\x3e\x1b\x04\x78\x49\x33\x7c\x49\x33\x54\x7f\x6b\x93\x55\xaf\x00\xf8\x4e\xfe\x1f\x9c\xcd\x11\x47\x00\xb2\xec\x52\x72\x67\x0a\x5d\x4c\x66\x80\x21\x5f\x5d\x1e\x4e\x9f\x08\x89\xfb\x2c\xa9\x08\xdf\x0b\x90\x60\xd8\xe5\x3d\x15\x25\x1e\x33\x48\x66\x68\x99\x50\xe0\x20\xee\x14\x9b\xd1\x38\x40\x1c\x31\x8c\x38\x50\xdd\x75\xc0\x59\xca\x20\x9d\x42\x95\xba\x16\x8a\x32\xe3\x9d\x1e\xe5\xcd\xe2\x44\x76\xfb\x68\x84\xa9\x1f\x3b\x67\xf9\xe7\xd3\xf7\xc7\x00\x32\x06\x17\x52\x8e\x7c\x60\x34\x40\x62\x8e\xa2\x0c\x31\x3a\xb9\x44\xae\xe0\x60\xca\x68\x00\xe8\x44\xca\x57\x28\x28\xc3\x51\xf0\x2d\xd8\x2e\x26\x54\x46\xa6\x97\x64\xe6\x17\x29\x93\xfe\x3d\xcd\x64\xe6\xca\xc6\x5e\xa4\x85\xc0\x0a\x5d\x30\x11\x72\x03\xfa\x2b\x74\xd1\xe9\x99\xbc\xbe\x26\x95\x45\x02\xae\x28\xfb\x74\x7a\xa8\x58\x5d\xe4\xe9\xbc\x4c\xf1\x22\xf4\x96\x09\x3d\x93\x50\x2f\x62\xef\x45\xec\xa5\x7f\xcf\x4c\xec\xdd\x43\x20\x4d\x91\x27\xa5\x47\x03\x7d\x0c\xfa\x7e\xba\x8b\x31\x01\xdc\x65\x30\x44\xea\x7d\xb9\x29\x65\x01\x14\xb1\x99\xa8\x83\x1d\x57\x3a\xb1\xdd\xb3\x89\xa8\x64\xca\x78\xf3\x7d\x25\xc9\xa4\x85\xa6\x81\x00\x34\xc5\x93\x40\x77\x22\xc6\x63\x19\x5b\xca\xa6\xbd\xd0\x87\xb8\x31\x43\x5a\x93\x18\xdb\xc3\x3a\xb0\x9f\x57\x55\x87\xaf\x59\xf1\xf6\x45\x22\x37\x91\xc8\xc3\x42\x10\xd0\x52\x0e\x12\x7b\xca\x1d\xa7\x0a\xb7\x3e\x0b\x0a\xad\xb5\xc0\xd3\xcb\x99\xf5\xb8\x67\xd6\xab\xec\x27\xd9\x33\xc6\x45\x0f\xf2\x5e\xe9\x80\x27\x68\x8a\x18\x22\x6e\x0a\xa6\x16\x93\x5a\x41\x4c\xa6\x67\xf2\xe4\x10\xd8\xc4\x13\x7b\x26\x5e\x56\xd9\x7a\x85\xc9\xf2\x46\x73\x89\x44\x5d\x23\xa9\x09\x8e\xd2\x73\x27\xce\xf3\x33\xa8\x20\x67\x31\x3e\x86\x70\x86\x8c\x8f\x1c\x7f\x31\x3f\x0a\x2a\xa0\x6f\x7c\xc6\x02\x05\x7c\x35\xc4\x1b\x61\x25\xa1\x28\x37\x92\xc6\xcd\xcc\xb8\xae\x20\x81\x5b\xde\x4a\xc1\xbc\xbc\x99\x42\xa5\xdc\x4c\x59\x01\xc6\xb7\xa5\x66\xc0\xca\x47\x09\xd7\x17\x98\x44\x6b\x41\x6a\x2b\x24\x63\x40\xdf\x7f\x3f\x5d\xc6\x96\xb5\xc3\xc5\x4b\x53\x26\x7f\xd5\x12\x00\xb5\xef\xbd\xd2\xce\xaa\xb8\xa6\x20\xf9\x06\x5a\xa4\x40\x65\xf3\x54\x4f\x1a\xe7\xb9\xdc\xda\x29\x7d\x18\xf2\x5e\x04\x91\x1d\x1f\x40\x05\xcb\x6a\x56\x2d\x7c\x65\xf3\x7a\x06\x50\xe8\x69\x08\xcd\xda\x58\x5f\x69\xf5\xcb\x1b\x5e\x37\x67\x08\x46\x62\x8e\x88\x88\xa5\xfc\x18\x11\xa9\x03\x7b\x85\x66\x41\xe4\x0b\x3c\x86\x5f\x1a\x50\x92\xab\x67\x14\x8b\xb4\xc9\x1d\x47\xad\xdf\xa0\x1f\x21\x3e\x02\x7f\xc0\xb8\xd8\xe4\x06\x08\x19\x0a\xa1\xe4\x85\x0d\x1d\x93\xe0\x98\x12\xf5\x89\x21\xe8\x2d\x36\xc0\x54\xbd\xd5\xb8\xa1\xae\x31\xc7\x3f\x6f\xe8\x58\x3f\x26\xb3\x3f\x41\xab\x29\x4b\xe6\xaf\x5b\xd5\x83\x99\x5c\x41\xd2\xf7\x3a\xa3\xb8\x8a\xbe\x87\x42\x9f\x2e\xba\xe0\x2d\x65\xc9\xb1\x05\xf6\x3e\x9d\x36\x86\x20\xa1\xa5\x9d\xdb\xca\x45\xb2\x41\x7c\xcb\xa9\x09\x49\xd3\xdb\xde\x46\x69\x8c\xb8\x76\xbd\x5b\x88\xf8\xe4\x10\x18\x81\x88\x77\x10\xe4\xa2\xd3\x57\x76\xcf\x2a\xf8\xa8\x17\x4f\x1a\x8b\x04\x75\x93\xaa\x69\xe3\x09\xa5\x82\x0b\x06\xc3\xb1\x7e\x4f\x7a\x3c\x37\x52\x26\x96\xf6\x8e\xb3\xae\xc7\xb0\xd4\x45\x5b\x46\x23\xe0\x41\x81\x3a\x02\x07\xa8\xe9\x90\xe8\x2e\xc4\x0c\xf1\x75\x0e\x09\x00\x89\x7c\x5f\x6e\xba\xd2\xd5\x39\x90\xbc\xb5\xb2\xce\xf9\xf4\x46\x1a\xaf\x28\xc9\x93\xa7\xcc\x9b\xb6\xaf\xbd\xad\xdf\xac\xd7\x78\x25\x56\xa9\x12\x64\xcd\x77\x99\xb2\xf1\xc7\x5c\x50\x06\x67\x68\x5c\x54\x29\x6a\x27\x9f\x30\x7a\xcb\x11\x1b\x47\xcc\x6f\xdc\x47\x4e\xd0\xe4\x58\xcc\x68\x33\x63\x88\xf3\xb1\x98\x33\x1a\xcd\xe6\x61\x24\xc6\x21\x62\x63\x8e\xdc\xc6\x43\xa0\x07\x8f\xa0\x54\xa8\x71\x00\xef\xc6\x2e\x25\x04\xa9\x57\x01\x2a\x8e\xcd\xa2\x5a\x25\xff\x64\xc7\x10\x32\x81\xef\xd1\xcf\x83\x02\x8e\x19\x92\x36\x8a\x5c\xde\x10\x31\x4c\x9b\x53\x2f\x0f\xf2\x18\x0a\x81\x82\x50\xf0\x7a\x02\x94\x41\xb1\x3e\x9a\x68\x3b\xa9\xeb\x2a\xb9\x97\x95\x80\xc7\xd6\x7a\xac\x60\x2b\xfd\x1b\xb4\x8a\x70\xe4\xe5\xbe\xd2\xbf\x41\xab\xdf\x2a\xf1\x6e\xf9\x5b\xad\x5f\x97\xbe\x96\xba\x52\x91\xbe\x0f\x29\x7e\xff\xb8\x2a\x5c\x81\xfc\xd9\x5f\xfd\x42\x98\x30\x6b\xf4\x0b\xaf\xf6\x7f\x25\x3d\xaf\x6e\xa5\xf7\x3e\x1c\xc5\x40\x15\x16\x48\xfe\x78\x53\x58\xb5\xb9\x06\xcb\xe2\x77\x6d\x15\xcc\x07\xdf\xaf\x90\x03\x1d\x3d\xb2\xee\x5d\x54\x27\xea\x66\xe8\x55\x75\x31\x59\xb6\xc8\xab\xd5\xf6\x4d\x25\x80\x5f\x8b\x39\xac\xcb\x68\x79\x4e\x24\x19\x39\x7f\x97\x4c\x0d\xa2\xb4\x32\x91\x95\xed\x06\x13\xea\x2d\x00\x47\xfa\x3a\x78\x4c\x30\xf0\xe1\xfd\xe9\x59\x3c\x86\xcd\xc2\x97\x07\xea\x2b\x13\xf5\xa5\x36\x7a\xb5\xb6\x5c\xaa\x27\x5e\xb8\x99\x7f\x3b\x47\x71\xc6\x85\x76\xcf\xb9\x7e\xc4\x85\xfc\x3e\x56\x50\x93\xc2\xed\xd8\x3c\x84\xad\xe2\xdb\xa6\x2f\x17\x52\xf1\x93\xca\x46\x5d\x70\x34\x05\x58\x00\xcc\xb3\x17\x9b\x36\x14\x10\xaa\x40\x50\x3a\x39\x9e\x11\xca\x64\x73\x09\xf8\xde\x87\x23\x00\x23\x41\x03\x28\x75\x07\xdf\x5f\xa8\xf2\xdd\x2c\xc0\x44\xd5\x9a\xc7\x3c\xee\xac\x42\x7c\x72\xac\x76\xe8\x43\xd2\x06\x50\x08\x86\x27\x91\x40\xad\x12\x06\x65\xf5\xa2\xb2\x76\x54\x51\xc9\xc9\x61\xd6\x96\xf0\x11\xa3\x10\x42\x8e\x96\x5d\x70\x24\x40\x10\x71\x01\x5c\x4a\x78\x9c\xe0\xe5\xd3\x5b\xc4\x3a\x2e\xe4\x08\x40\x3f\x9c\x43\x12\x05\x88\x49\xe5\x7f\x0e\x19\x74\x05\x62\x1c\x50\x06\xda\xed\x4e\xbb\xbd\x21\x6d\x35\x16\x5f\xec\x80\x44\xb7\x9f\x20\x61\xb6\xde\x50\x95\x79\x50\xf2\x16\x56\xd2\xaa\x34\xaa\x6e\xe7\x42\xa2\x9c\xb0\x13\x04\x7c\x4a\x66\xaa\x78\x15\x24\x60\x73\x60\x4c\xdf\x6d\x2f\x5b\xf0\xb2\xb9\x63\x29\x5e\xaf\xea\xea\xac\x8f\xc9\x9a\xa8\x8f\x39\x28\x3e\xcd\x91\x7a\xf0\x20\x53\x2a\x4a\x63\x48\x36\x8c\x87\x91\x34\x27\x54\x28\xfe\xe4\x48\xed\x59\xc9\x05\x1b\xb5\xdd\x29\x31\x50\x4b\x8b\x2a\x65\x16\x9e\xde\xe0\x00\xdd\x20\xb6\x00\x5b\x20\xc0\x24\x12\x88\x6b\xa6\xf6\xd0\x14\x46\xbe\x88\x59\x17\xf3\xa2\x69\x51\xc5\xa7\x15\xb6\x88\xe4\xf8\x4a\x52\xe8\xe0\x98\x6c\xa2\xe3\x50\x71\xfc\x8c\x4e\xc1\x3f\x72\x0a\xfd\x3f\xbb\xff\x88\x95\xde\x7f\xd6\x2d\xc7\x92\x62\x4c\x95\x07\xe9\x2a\x27\x62\xbe\x0e\xd8\x4a\xda\x49\x35\x78\x12\xba\x55\xf4\x95\x5a\x18\xd6\x7f\x36\xad\x5a\xfa\xaa\xbd\x64\x35\xac\xa7\x55\xfb\xb4\xae\x18\x58\x7b\xb5\xd3\x07\x57\x6f\xbf\xf6\x39\xc1\xd7\x92\xb3\x55\x56\xef\x14\xeb\x37\x42\x2c\xdb\x45\x4e\xb5\x5c\xe4\x78\x98\x87\x3e\x5c\x94\x4c\xce\xfc\x9c\x3f\x45\x01\x54\xfb\xd4\x53\x71\x62\x62\xad\x50\x53\x83\x76\xe5\xf4\xaa\x3c\x5a\xf5\xbc\xa5\xc2\xfe\xe9\xe8\xba\xae\x1a\xbc\x81\xd8\x4f\x42\xd7\xfa\xc8\x5a\x32\x7f\x03\x67\xb6\x95\x9f\x56\xe1\xa5\xd3\xb4\xa4\x62\xf9\xfb\x66\xbc\x73\x6a\x14\x65\x7c\x3c\x96\xc1\xdc\x46\xd5\x75\xf1\xcc\x81\x6e\x65\x30\xcb\x7d\xe7\x6b\xe6\x00\xc8\xcf\xfe\x2e\x7e\x46\x27\xee\x0b\xb2\xbe\x20\x44\x0c\x70\xe4\x52\xe2\x19\xfc\x23\xcf\xa5\xe6\x00\x96\x64\xed\x6a\xcc\xf1\x66\x21\x10\x57\x7e\xcb\x23\x81\x82\x6c\xf8\x46\x6e\x0a\x3b\x9e\xe8\x19\xa1\xb9\xd4\x97\x62\x47\x11\x06\xea\xba\x82\x64\x25\x39\x80\xa1\x41\xf0\x7b\x63\x58\x74\x74\x58\xfc\x2d\x45\x7f\x98\x1d\x38\xd9\x09\xc4\x2e\xb4\xa7\x46\xef\x6a\xe7\x53\x33\x42\x67\x7d\x1f\x93\xce\x65\xbf\x56\x0d\xa5\xd3\x6e\x40\x77\xbb\x37\x60\x45\x93\xab\xb9\xb7\xcc\x02\x1d\x8e\x02\x53\xaf\x4d\x7a\xaf\x63\x2b\xda\x08\x18\x20\xce\x6d\x1e\x5b\x3b\xdd\xe2\xd6\x6a\x82\x27\xc7\xa1\x98\x8c\x31\x19\xf3\x05\x71\xc7\x0c\xa9\xcc\x8b\x6a\x3e\x6d\xbd\xc3\xa4\xf4\x44\x5a\x47\xf6\x05\x49\xdf\x6e\xd9\x32\x2d\x12\x30\x6e\xaa\x96\x79\x0a\x5d\x41\xab\x8d\xfc\xd6\x49\xd6\x16\xe8\xb6\x0d\x09\xb8\x1c\x8c\x54\x7d\x1a\xc3\x2f\xe3\x80\x7a\x75\xda\x50\x52\x10\x65\x4f\xcf\x8d\x7d\x2c\x16\xe0\x5f\x94\x20\xa0\x3a\xea\xe7\xe1\xaa\x60\x49\x66\x8a\xcd\xa4\x90\x72\x8e\x25\xf8\x37\x3a\x7c\x06\x19\x02\x2d\x8e\xc9\xcc\x47\xad\x0d\xd0\x52\xae\x87\x96\x85\x01\x1a\xe8\x4f\xd6\x8d\xe5\xe3\x29\xe2\x21\x24\x63\xbd\x0f\x6a\xb0\x3c\x53\x95\x85\x03\x2c\xd2\x3e\x89\xaa\x79\x95\xc7\x0a\x93\x78\x53\x71\x65\x5d\xaa\x3a\xb3\xe9\x6b\xd5\xd2\x9e\x54\x9d\xd2\xe6\x44\x9a\x8b\x49\x1c\xab\xc1\x0e\xab\x34\x09\xaf\x23\x2a\xa0\x94\x12\x3c\x0a\x6a\xec\xe4\xf6\x47\xd9\x0e\x24\xed\xd2\x87\xfa\xee\xb7\xdf\xf5\xa4\xc5\x98\x92\x6d\x42\x55\xfb\x5a\x85\x6c\x57\x9b\xb1\xb0\x60\x2e\x0c\xa1\x8b\xc5\xa2\x01\xa2\x07\x52\x22\x4b\x2b\x18\xa5\x7e\x88\xa4\xf7\xba\xd0\x0f\xa0\x50\x49\xa5\xe3\x72\x90\xbd\x28\xed\x74\x43\xe0\xa3\x1b\xe4\xa7\x46\x8a\x9c\x05\xec\xeb\x97\x13\x5b\x5c\xc8\x55\x6d\x01\xca\x40\x2b\x64\xe8\x06\xa3\x5b\x1b\xab\x57\x5a\xe6\x65\x49\xb6\x62\xe6\xd3\x44\x76\x5e\x9e\x8f\x93\xc5\x3a\x31\x11\xdb\x43\xf5\x7d\xe9\xd1\x94\x6f\x15\x3d\x29\x01\xf2\xed\xc3\x27\x39\x90\x9e\x4b\xfc\x24\x07\x74\x2b\x5b\xe3\xec\x21\x8a\x6f\xba\xc2\x19\x18\x4f\x64\x7d\x2b\x8b\x68\x3f\xdd\xd5\xd5\x20\xb7\xca\xfb\xd7\xee\x0c\xc8\x17\x53\x4f\x05\x53\x93\x4c\xc2\xfc\x40\x47\xc4\x93\x5a\x0b\xd2\x17\xc1\xd5\xb9\x90\xd8\xe1\x9a\x11\xba\xe0\x53\xec\x53\x6d\xb7\x73\x80\xb5\xdb\xc0\xc7\xe4\xaa\x81\x69\x7e\x1f\x47\x55\x3c\xf9\x9a\xfc\x0c\x66\xb9\xe4\x42\x28\x66\x4a\x59\x32\x08\x08\x23\x16\x52\x6e\x3d\xf9\x0b\xd3\x36\x71\x85\x4d\x19\x46\xc4\xf3\x17\x16\xec\xf2\x30\x6c\x28\x20\x92\x6c\xa9\x0b\x78\xcb\x2f\x96\x43\xb0\xcc\x05\xdf\x4e\x7c\xf0\x16\x9c\x0d\xd7\xbb\x42\x5f\xe5\x6c\x61\x32\x03\x90\x80\xf7\xa7\x07\x69\x08\xa5\x0c\x44\xde\x27\x6e\x0b\xa3\x99\x29\x72\x06\x67\xdb\xd9\xf8\x20\xfb\x24\x49\x03\x93\xd0\x85\xfa\xb7\xfb\xed\x78\x5c\xc3\xdc\x6e\x3f\x3b\xe6\x8e\xe9\x67\x63\xea\x02\x97\x1d\x77\xc1\x6f\x98\xcd\x30\xc1\x70\xdd\xdc\x96\xbd\xeb\xb0\x16\x2e\xd3\x93\xa9\x88\x4d\xb1\x8e\x78\x66\x19\x55\xc7\x0b\x8a\xc1\x45\x75\xf9\xdd\x8a\x44\xc3\xd7\x67\xb8\xe1\xcf\x4e\x34\x56\x8d\x72\x77\x1d\xef\xcf\x14\x89\x71\x5f\x6b\x2a\x51\xaf\x9b\xec\x8b\xdb\x6c\xf5\x98\x0a\x88\xa5\xba\xb9\x8f\xa6\xda\x4d\xf8\xc8\x3e\x73\xfb\xd1\xa8\xf7\xe1\x7e\x0c\x8c\xd4\x30\xa4\x26\xdd\x6a\x28\x7e\xf4\x37\x55\x3c\x62\x34\x49\xb0\xd5\x7a\x7c\xae\xb2\x4a\x85\x2f\x3e\x2e\x8f\xb2\x97\x2f\x61\x2b\xcd\xcd\x77\x7b\xa7\x9d\xd3\xd3\xf7\x69\x4a\x82\x66\xa0\xfd\xd8\xe6\x51\xd7\xe6\x72\x81\xcc\xf6\x7d\x34\xb7\xf5\x25\xb8\x97\x73\xec\xf2\x98\xea\xd4\x52\x30\x43\x44\x5d\xe3\xf3\x40\x94\x08\xb5\x8a\x02\xfc\xc5\xbb\x2b\x2b\xe5\xba\xe6\xe7\x6e\x3c\x94\xd9\x6d\x3d\x23\xa6\xcf\x0c\x34\xcf\xa7\xd5\x3d\x38\x72\x59\xb9\x48\xd7\x9a\xd2\x83\x6b\x5f\xd9\xca\x52\x7a\x27\x8b\x6f\x97\x05\xbc\x7a\x0e\xa0\xb5\x3e\x59\xcb\xb2\x15\x0b\x77\x02\x0a\x3b\xd2\x9e\x08\x24\x68\x8c\x62\xb9\xa6\x51\xbb\x46\x8a\xac\x9e\x0b\xb4\x5a\xa6\x4a\xcd\x9e\xb1\x2b\x02\x76\x06\xcf\x4f\xb2\x67\x7e\x4e\x29\xb1\xda\x54\xa5\xe5\x5b\x61\xe9\x6c\x79\x9c\x76\x01\x6e\x5f\x42\x9e\x2d\x21\x2c\xfa\xf1\xd4\x61\x99\x1e\x4a\x98\xc4\x07\xee\xaa\xf1\xcf\xaa\xbc\xeb\x3c\x20\x96\xb9\x9b\x05\x05\x12\x77\x18\x43\xd0\x9d\xd7\x69\x4b\x53\x1f\xce\x00\xd6\xc7\xaf\xd4\x88\x6e\x4d\x5d\x3d\xc1\x32\x59\xc1\x3c\x11\x30\x29\xe8\x58\xf1\x64\xcd\xb4\xa8\x0a\xe9\x91\x7a\xaa\xc7\x4b\x82\xed\x49\xa4\x3d\x73\x6d\x5b\x63\xee\xca\xcb\xec\x6a\x57\x9a\x71\x36\x1a\xaa\x92\x44\x99\x00\x01\xaf\x94\x42\x98\x1c\xa3\x11\x63\x48\xfe\x37\x21\x41\xf6\xf0\x19\xf4\xb5\xc3\x97\xaf\xcb\xdd\x6c\xdb\xf6\xf6\x27\x0a\x3b\x45\xf2\x58\x64\x53\x3d\x67\xff\xc7\x9e\xf1\x95\xc7\x68\x1e\x00\xdd\xec\xab\xe8\x14\x0d\xa5\x70\xed\x2c\xd6\x43\x3b\x3f\x8d\x6a\xf2\xd0\x79\xee\x7d\xdc\x97\x97\xd7\xf2\xde\x82\xb6\x5d\x74\xcd\xaf\xe6\x0b\x7a\x6f\x7d\xa1\x01\x4c\x52\x2c\xa8\xda\x5f\x02\x06\xe1\x3a\x94\xbf\x5a\xca\x9a\xe0\x78\x79\x3f\x44\xe5\xa2\x95\x37\xfd\x5a\x12\xee\x62\x67\x6a\x79\xf4\xb2\x33\xd4\x92\x47\xbe\x42\xf5\xd7\x44\x4c\xad\xe0\x1a\x2d\xba\x56\x6a\xe9\xfa\x4d\xfd\xa8\x76\x54\x4d\x12\x56\xdd\xf3\xcc\x5d\xee\x06\x85\x2b\xdb\xdf\xe5\xaa\xe2\x25\x35\x45\x92\xea\x78\xdf\x69\xbe\xc8\x6a\x35\x56\xa8\xa7\xa7\xef\x41\xb1\x9a\xe3\x37\x3a\x0d\x96\xca\xc8\x56\x4e\x46\x1a\xe5\x3a\x1b\x5f\x7a\x9c\x40\x8e\x6c\xd7\xbd\xf2\x34\x91\xad\x40\xc4\xfc\xc6\x3b\x5d\x95\xfa\x58\xe9\x1a\xd9\xe5\xed\x55\x05\x3b\xda\x6e\xf1\x41\x1f\x7b\x63\xcc\x79\xd4\xd8\x24\xbb\x87\xb5\x93\x71\x4a\xa2\x28\xeb\x5e\x6a\x08\x6b\x5d\xbe\x75\x8a\x18\xeb\x04\x96\x0b\x2f\x7d\x32\x09\x4f\x77\x9c\x9f\xbc\xe8\x03\x1a\xfa\x8e\xa0\xbb\x97\xa7\xb3\xc1\xfe\xaf\x5f\xa6\x51\x03\x99\x54\x2b\x91\x4a\x20\x3c\x9a\x30\x7a\x26\x72\x2b\xa3\x44\x6c\x33\xa5\x9f\x57\x0c\x19\x6b\xd9\x54\x8e\x19\x97\x38\x04\x7a\x9e\xca\xd5\x82\xfe\x87\x0a\x42\x5b\x29\xa5\xd3\x40\xca\xe3\x37\x2e\xfe\x60\x4f\x01\xd2\xc3\xea\xe5\xcf\x4f\xd1\x10\xef\x54\x67\xb8\x5f\xb8\x3c\x9d\xb7\xdc\x5d\x67\x0f\x59\x7a\x7b\x34\x9a\xf8\xa8\xc6\x94\x50\x03\x9a\x7b\xba\x58\x76\xee\x11\x76\x75\x71\x8a\x6f\xb2\xaf\x4d\x20\xfe\xd3\x77\xb6\x49\x8b\x96\xc9\x0c\x6f\x75\x55\x34\x4c\xc9\x89\x7a\xbb\x3e\xcf\xf0\x06\x1a\xe6\x08\x4f\x4c\x1a\x3c\xed\x5d\xa7\xdc\x12\xe7\xaa\x40\x40\xc1\x6f\xd8\x90\x7c\xdf\x29\xff\x0b\xa1\xb7\xda\xdc\x53\xb7\x84\xe6\x08\x50\xe2\x2f\x8c\xf8\xcf\x14\x23\x5f\x87\xb7\x74\x31\x82\xb4\x7b\xc9\x46\xac\xe0\xd0\x8a\xfc\xb1\xbf\xd1\x8d\xab\x12\x0d\x96\xde\xab\x7a\x55\x2e\x45\x95\xed\x78\xfd\xd8\x70\x5a\xe7\xad\x74\xf9\x4d\xbf\xe3\xcc\x90\x4b\x59\x5a\x63\xbf\x50\x87\xcb\xb2\x14\x85\x07\x9d\x2d\x2f\x3d\x26\x55\x66\xf3\x70\x24\xdf\x1a\xc3\x98\xaf\x23\x97\xa0\xf3\x11\x99\x89\xb9\x52\xae\x71\xa0\x9c\x79\x31\x99\x14\x0f\xdd\xce\xb1\x3b\x97\x8b\xc1\x74\xad\x7c\x49\xee\x20\x57\x38\xd1\xfa\x04\xa5\x1d\xbf\xe2\x26\xb4\x6f\xc1\x34\xb0\xba\x95\x09\x0e\x9d\x3a\x3b\x02\xfd\xec\x2b\x9d\x1f\x3c\x02\xc3\xcd\x81\x13\x7f\x5b\x2e\x4a\x56\x24\x11\x48\xb7\x78\x3c\x7a\x52\x76\xb7\xb0\x96\xf1\xb7\x4d\x69\x98\xb4\x37\x92\x3b\xc1\x04\x89\x5b\x84\x88\x4e\xfc\x4e\xcb\x95\x3f\x2e\xc5\x36\x9d\x46\x24\xeb\x3b\xbb\x4e\x35\xcd\x8a\x24\x31\x68\x16\x8f\x1f\xd7\xf9\xcc\xd3\x2c\xfe\xb2\x09\xc9\x92\x8c\xe0\xc4\x72\x15\x14\x4c\x91\x70\xe7\x5d\xf0\x56\xfe\x27\x57\xea\x53\x39\x65\x51\x10\x8a\x45\x57\xf7\x43\x44\xa8\x3a\xec\x90\x65\x1b\x5f\x20\x46\x60\xd2\x47\xc1\x93\x6e\x72\x3b\x5d\xf3\x07\x6d\x45\x05\xb1\x52\xc4\x23\xa6\x72\x52\x0e\xd4\xac\x75\xa6\x69\x60\xd4\x60\xab\x25\xc0\x07\x38\x93\x4c\xe3\xa1\xbb\x12\x4b\x98\xd9\x04\x0d\xa4\x44\x79\xf9\x8a\x15\xd8\xe2\xa5\x4b\xd2\xd8\xcc\xac\x7b\x0d\xb4\x51\x29\xae\x16\xe8\xe3\x2c\x6f\x5d\xd2\x4b\xf2\x3a\x82\xee\xdc\x44\x7a\x8d\x68\x14\x6f\x07\xa4\x68\x38\x8e\x46\x84\x32\x0f\xb1\x37\x0b\xab\x73\xc3\xc8\x9a\x38\x8d\x73\xab\xe3\xb3\x52\x76\x02\x93\x05\x70\x19\x16\x88\x61\xa8\xd3\xca\xf9\x82\x08\x78\x97\xa6\xe0\xa4\xa2\x1e\x60\x6e\x00\x14\x60\x1f\x32\x9d\x38\x9f\xef\x82\xc0\x45\x32\xf0\x05\x70\x7d\x18\x71\xe5\xac\x80\x04\x9c\x7e\xfc\x55\x15\xd8\x42\x01\x22\x22\x3b\x77\x0e\x25\xdd\x74\x3d\xed\x38\x24\xa1\xfa\x6b\x0f\x28\x24\x8b\x64\xd8\x29\xf5\x7d\x7a\x8b\xc9\x0c\x5c\x5c\x19\xe5\x07\xf8\x85\x3e\xe5\xf9\x28\xcb\xee\xf8\xde\x5e\x7c\xc9\xf8\x3d\x5f\x1b\x20\xf7\x83\xca\x04\x30\xdf\xc9\xff\xde\x70\xab\x1a\x5f\xce\x19\x9a\x1a\x1f\x73\x1d\xec\x91\x8a\xef\xcb\xa5\xc8\xbe\x37\x63\x99\xf2\x23\x65\x33\x48\x30\x4f\x0a\xcf\x99\xbf\x48\x95\xc5\xf8\xbc\xb4\xfa\xd9\xf7\x71\x6c\xc6\xf8\x42\xa7\x5e\x1b\x5f\x64\x35\x9a\x8c\x2f\xe3\x7a\x49\x19\x3d\x8d\x62\x5b\x1b\xc6\xf9\x27\x45\x53\x5e\xdd\xe0\xe6\xda\x89\x39\xc2\x4c\xe1\xb7\x01\x24\x17\xe4\x17\x51\xf3\x8c\xb1\x68\x17\x17\x17\xfc\x3a\x2b\xcb\xa8\xbc\x5c\x90\xbb\xe6\xef\x59\xe3\xb3\xd5\x81\x00\x63\x48\xbc\x71\xea\x5e\x97\x78\x3f\x04\xae\x0d\x83\x2b\xaa\xe1\x3c\xd2\xbc\x6b\x6e\x22\xd2\x16\x89\xcb\xce\xdb\x90\x9a\x1e\x9e\x1a\x55\x1e\xa4\x12\x28\x05\xbc\xaa\xfc\x90\x2d\x9d\x8e\x29\x4a\x5b\x44\x0b\x7b\x03\x43\x09\x50\x37\x15\x1d\xa1\x4f\xbd\xbc\xb6\x5a\x16\x27\x05\x69\x01\x0c\x89\x92\x60\xd7\xaa\x10\x82\x5a\x4a\xc6\x03\x3c\x54\xd0\x71\xb1\x90\x4a\xa5\x3c\xc7\xb5\x38\x46\x90\xb9\x73\xbb\x10\xcb\x64\x98\x6a\x94\xc9\x2c\x83\x27\xea\x85\xd7\x12\xa1\xa5\xca\x31\xe4\x25\x56\x36\x67\x4e\x72\x81\x3d\xc9\x2b\x89\x75\xc1\x93\x90\xaf\x86\x5e\xad\xce\x45\x5e\xbc\x5c\x6c\x80\x0b\x49\x38\xf9\x5f\xb5\x8b\xe5\x3f\xf4\xde\xbc\xd0\xb5\x27\x2e\xf4\xc6\xbc\xc8\xc6\x96\xe6\x2a\x64\x50\x50\xa6\x17\xfc\xe2\x1f\xff\x94\xbd\x7e\xb8\x50\x2c\x73\xf1\xeb\xd1\x2f\x87\x17\x99\x0c\x4d\x7a\x5d\x52\x4c\xe2\xf6\x7b\xc7\x07\x17\x7a\xec\xf7\x27\x17\x5d\xf0\x13\xbd\x95\x9a\xff\x06\x58\xd0\x48\xc9\x59\x89\x25\x4c\xd4\x20\x89\x6f\xdf\x89\xbb\xab\x3a\x08\x31\x36\x6a\xed\x0d\x1a\x1f\xa6\xcc\x64\xdb\x8a\x65\xe3\x23\x7e\x75\x55\xb1\xd5\x45\xb0\xe8\x28\xc9\xad\xe1\x32\xc2\xe4\x2a\xa7\xb6\xe9\x66\xcc\xef\xc4\x1f\x40\x32\xaa\x2e\xe2\x91\x23\x3c\xf8\x01\xc0\x5b\x6e\x76\xfe\x23\xec\xfc\xd9\x1c\x74\xa8\xe7\x50\xe1\x72\x55\x6e\x24\x7e\x05\xe2\x22\x58\xdc\x13\x5c\x1f\x5f\x21\x10\x2c\xfe\x6b\xb0\xf5\x28\xf2\x42\x49\xc3\xb2\x15\xc8\x0d\x39\x02\x45\x1a\x56\x04\x73\xa8\x2e\x36\x06\x98\x73\x15\xdc\xa3\x80\x23\xfd\xda\x10\x8b\x4b\xb5\x1b\x4b\x7f\x4c\x05\xea\x26\x00\xea\xf3\x3a\x2b\xeb\x2d\xd9\x38\x2e\xcf\xac\x72\x08\x92\xde\xd5\x62\x29\xd6\xb7\x14\x9b\x55\x08\x1b\xbb\x60\xb1\xa8\x47\x39\xb9\x01\x8a\xe2\xac\x01\x8b\xb4\xee\x2b\xb4\x92\x4a\xf9\x2a\xbf\x29\x81\x29\x2e\x95\x6f\x8e\x29\xed\x6a\xf5\x6d\xfc\xa5\xfe\xf0\x36\xb6\x60\x7e\xfe\x94\x54\x3e\xd2\x13\xce\x85\x08\x5f\x15\x31\x3d\x3f\xcd\xdd\x9b\x48\x86\x2f\x38\x69\xe2\xfa\x33\xa0\x95\xd6\xc4\xcc\x1c\x87\x85\x82\x48\xa0\x65\x60\x9e\x2c\x48\x2b\x0e\xac\xc2\x10\x8b\xb4\x1c\xd8\xe1\xf9\x4a\x53\xa3\xa8\x73\x8b\xd6\x35\xf5\x5d\xe8\x63\x17\x8b\x53\xfc\x05\x3d\x32\xe6\x72\xd2\xb1\xe2\x93\xec\x27\x55\x3b\x46\x5d\x37\x23\x1e\x64\x5e\xf7\xae\x5f\x2e\x80\x55\x0f\x96\xf6\xeb\xe2\xd3\xcf\xdb\x27\x1f\x37\x7f\xfe\xe5\x68\xf7\xa3\xf3\xfe\x2c\xb8\xfc\xf8\xd6\xdb\xa4\xee\xdb\x93\x59\x36\x57\xec\x2d\x2e\x40\xb0\xb4\xd2\x58\xaf\xd1\xe0\xf1\xa5\x3b\xd0\x52\x25\x69\x9b\x52\x26\x2d\x5f\x55\x74\x7f\x55\x93\x5a\x7b\xd6\x40\x0b\x86\x78\x1c\x57\xa5\xd4\xcb\x5a\xb3\xdc\xd9\x4f\xf6\xa2\xa9\x66\xdb\x4e\x1f\xf3\xc5\x36\xbb\xde\xbc\xbc\xc2\xbb\xd7\x0e\x15\xc1\xe5\xf5\x54\xa2\x3b\x65\xb3\x2e\x0c\x43\xde\x0d\xae\x3a\x13\x21\x66\xce\x25\xe9\xef\x38\xf3\xb0\x7b\xb7\x15\xed\x76\x79\xbf\xeb\xa1\x1b\x3e\xc7\x53\xd1\xa5\xcc\x20\x8c\x91\x32\x01\x5a\x03\x67\xe0\x74\xfa\x4e\xc7\xd9\x3a\xeb\x0f\x46\x5b\xfd\xd1\x60\xd8\x75\xb6\x36\xfb\xc3\xc1\xbf\xb2\x1e\x46\x5d\xd3\x52\x8f\xed\xd1\xe6\x76\x77\x73\x7b\x30\x70\x76\x8d\x1e\x49\x01\x52\xd0\x1a\x74\xb7\xbb\x4e\xf6\x43\x3e\xe3\x0d\x24\x6c\x96\x91\xc3\xa8\xcd\x09\x5a\x52\x2c\xf0\x51\xaf\xe7\x52\xc2\xa9\x8f\xba\x0c\x79\x73\x28\xba\x2e\x0d\x7a\x46\xad\xfb\x4e\x4c\x2b\xde\xe3\x82\x21\x18\xf0\x8c\x4f\x2a\x09\xd7\xf3\x20\x9f\x4f\x28\x64\xc6\x0b\x27\x95\x3e\xce\x3c\x2f\x24\xa5\x40\xc1\x5d\xdf\x40\xab\xb2\x0a\x06\x68\x0d\xde\x19\xeb\x5d\x5d\x2e\xa3\xd0\xd0\x5e\x70\x02\xf4\x1d\xc3\xcb\x93\xaf\x91\x50\xfa\xcd\x5e\xac\x00\xb4\x3e\xf4\x87\x07\xad\x5c\xcb\xba\xf2\x01\xe9\xb0\xa6\x08\x78\xab\xea\xd2\xee\xc7\x59\x32\xa7\x6a\xaf\x3d\x2f\xb1\xa0\x2b\xeb\xbe\xc8\x85\xaf\x2a\x17\xf2\xe5\x8c\x41\x0b\xc6\x35\xea\x0d\x15\x2e\xc9\x94\x4e\x33\xb0\x8a\x0b\xb5\x4c\x84\x34\xd8\xc6\x8d\xaa\x82\xd5\xf0\xb1\x87\x6e\x90\x4f\x43\xc3\x3b\x91\xbb\x19\x05\xce\x18\x36\xde\x5b\x28\xa5\xb0\xfe\x61\xfc\x1b\x80\xbf\x72\x9f\xf4\x04\x77\xfd\x8d\xc2\xb7\xf9\x09\x5a\xfd\x56\xb1\x41\x9d\x08\xfa\xab\xa5\x6e\x6f\xb7\x46\x60\xb3\x3f\xdc\xda\x19\xec\x3a\xff\x2e\x76\xaf\x91\x4b\x0d\x7a\x57\x08\xab\x4d\xc7\x71\x8a\x4d\xab\xaa\xd5\x18\xd3\xf4\x9d\x9d\xcd\x9d\x61\x7f\xd7\x91\x7f\xa5\xb9\x2c\x52\xaf\xc9\x24\x79\xe9\x67\xeb\xb0\x4c\x08\x16\xfb\x14\x6a\x2a\x80\xd2\x9a\x19\xf5\x0f\x40\x8b\xcd\x29\x87\x57\xa5\x89\xcb\x25\x0b\xca\xe3\x94\xea\xa6\x80\xbf\x80\x41\xac\xe1\xee\xd6\xce\x76\x99\x4c\xb6\xf2\x24\xe5\xb1\x2d\x25\x45\xca\x8d\x2c\x05\x3f\x0a\x4c\x2c\xff\xd2\x52\x1c\xe5\x5f\x74\x69\x8e\xe2\x0f\x7f\x96\x11\xcd\x57\x4c\x00\x6d\x5d\xf6\x20\x9f\x91\x95\x43\x55\x3b\xe3\x6d\xb7\xe8\x2b\xf6\xaf\xad\x14\x40\x2b\x7f\x4a\xd9\x74\xe5\xdc\x77\x85\xcd\xb8\x17\xc0\x2f\x94\x80\x4f\x68\x92\x24\x64\x1a\x6d\xcb\xd2\xa7\x7c\x25\xbc\x01\xa8\xe6\x7d\xec\x14\x50\xcb\xa9\x53\x00\xed\xfc\x14\x1c\x42\x2e\x36\x80\x71\xbd\xb2\x0e\x36\x50\x77\x89\x11\xfc\x91\xda\x05\xad\x3f\xb3\x73\x23\xb9\xd7\x97\x63\x89\x92\x54\xcb\x4b\xed\x6c\x20\xeb\x4e\x2c\x5e\x5c\xd0\xd1\xe0\x42\xcb\xe2\x25\x01\xf0\x47\xeb\xae\xdf\xda\x00\xad\xbb\x81\x01\x1e\x30\x9e\x5e\xd7\xdf\xd6\xdd\x12\xa9\x58\x89\x98\x9a\xc1\xa2\x03\xc3\xb0\xc3\x0d\x12\xe6\x33\x15\x8b\x69\xc4\x53\xca\x40\xb0\x00\x30\x0c\x6d\x17\x88\x9a\x28\x4c\x25\xb5\x28\x3f\x44\x23\xfd\x28\xd1\x19\x74\x17\xde\xeb\x97\xb8\xfb\xc1\x88\x81\x5c\x72\x3d\x68\x9d\xee\x75\xfa\x03\xf9\xbf\xd2\xcf\xf1\x85\x34\x39\xa4\xfc\x47\x59\x5f\x92\x56\x69\x27\xe2\xe6\xae\x34\x32\xcb\x6b\x7f\x4f\x14\x91\x7e\xc7\x19\x76\x9c\x9d\xb3\xfe\xf6\x68\x30\x1c\x39\xfd\xff\xe7\x6c\x8d\x36\x63\x2b\xa4\x9c\xf0\xb8\x64\xcd\x21\x1f\x73\x4e\x0d\xcd\x2c\x49\x26\xcd\xec\x13\x7d\xa3\x5a\x2c\xba\x30\xc4\x86\x91\x92\xf5\x51\x79\x9f\x15\xed\x69\x88\x88\x56\xc7\x94\x5d\x13\x89\x79\x8f\x21\xe8\x07\xbc\xc7\xe6\x14\xf2\x5e\xc8\xa8\xa0\x2e\xf5\x7b\xb2\x21\xf6\x3a\xf1\x31\xd5\x73\x11\x13\xdc\xb4\x17\x92\x64\xd4\x35\xcf\xa3\x06\x36\x4c\x3b\x33\x2b\xf5\x7e\x53\xe9\x0c\x53\xcb\x86\x78\xb3\x38\xf2\xfe\xb3\x36\xc5\xd7\x62\xfa\xba\xac\xfb\x87\x90\xba\x9c\xd5\xfe\x42\xf2\x5c\x66\x5d\x29\xad\xb8\x82\xda\xe5\xec\xb8\xb1\x3a\xc3\xc7\xe3\x11\xc8\xac\x47\xc4\xc6\x13\x46\xaf\x10\x13\x34\xc4\x6e\x9c\x25\x31\x56\xaa\xa0\x54\xf6\xf2\xef\xbc\x01\xe5\xc7\x0d\xbe\xe0\x31\xa6\xe3\x38\xcc\x1b\x0f\x96\xb8\x4c\x8c\xb6\x6a\xc4\x11\x18\x27\x8a\x28\x1b\xd3\xe9\x94\x23\xc1\xcd\x9d\x5f\x48\xb7\xed\x18\x49\x77\xa0\xbf\xdd\xef\x6f\xef\x38\x03\xa9\xf4\x3b\xb9\xa3\x3a\x76\x4e\xef\x0e\xfb\x5b\xc3\x65\xbd\xb7\x2b\x7b\x6f\xed\xee\xee\x2e\xeb\xfd\xba\xb2\xf7\xce\xf6\x60\x60\xae\x8b\x25\x2d\xf4\xf9\xae\xcc\xd2\x55\x28\xad\xc0\xd0\x71\x0e\xd4\x73\x5c\xcb\x74\x50\x2d\x05\x9c\xcd\x92\x1c\x30\x5e\x48\x03\xf5\xdb\x5e\x45\x49\x78\x2f\x37\x88\x7a\xc7\x0e\xb4\x7e\xd9\x7b\xfb\xcb\xde\x69\xe7\xdd\x8f\xef\xce\x3a\xb9\xdf\x53\x0f\xc1\xe9\x82\xb8\x73\x46\x09\x8d\x38\x80\x6e\x92\x36\xa8\xea\xe6\x25\x6a\xaa\x0e\x4c\x41\x69\xe9\xfc\xa0\x0a\x6a\xa4\xc1\x24\x63\xd3\x9b\x6f\xdb\x81\x56\x1f\x7f\x3a\xc2\xc1\xf5\x8f\x2e\x3b\x88\x7e\xdd\xee\xc3\xf3\xbb\xa3\x7f\x5d\xbf\x39\xbb\x3e\x3e\x89\x25\xcf\xd0\x71\x12\xe7\xd6\x0b\x7d\xec\xf4\x39\xd2\x81\xb0\x06\x3b\x48\x0d\x39\x58\x03\x89\x06\xf5\x14\x1a\xd8\x08\xa4\x3d\x95\x40\x50\x89\x36\x47\xb9\x38\xef\x08\x9c\x93\xa4\x1e\xa6\xba\x49\x9c\x73\x41\xe9\x1c\xc8\x92\xfb\x6e\x04\xf2\x73\x8e\xc0\xb2\x29\xb2\xf4\x5c\x97\xfa\x51\x40\x74\x64\x54\x0e\x1e\x07\xf2\x40\x1b\x7b\xed\x6e\xe6\x96\x32\xdb\xa9\xe8\xf6\x28\xf6\x34\x6e\xc4\xd9\x25\x79\x67\x65\xf2\xad\xb6\x9a\xbb\xe0\xa3\x8e\x55\xea\xf5\x19\x01\xec\x81\x1f\x40\xdf\x24\x4e\x71\xb5\xfd\x4f\x07\x3f\x46\x8b\xc9\x11\x3b\x24\x77\x6c\x0f\x05\x3b\x83\xe1\xec\xfa\xea\x0a\x1f\xdc\xa4\xab\x6d\x60\xd1\x4c\x7d\x56\x23\x6f\x3a\x0f\x5f\x74\x73\x0c\xcb\xa2\x9b\x3f\xa7\x8b\x9e\x80\x98\xdf\x08\x95\x04\x70\x5f\xef\x3a\x73\x71\x33\xbb\x71\xc9\xeb\xab\xe9\x56\xdf\x73\x88\x63\xc3\xbc\x89\xd1\xae\xf1\x2e\xeb\x4d\xab\xe3\xdd\xaf\xc7\xbb\x6f\xc1\x5b\x03\xb8\x0e\xac\x97\xbc\xaa\x6d\xdd\xe1\x6b\x40\x7a\x50\x8f\xf4\xc0\x86\x74\xa0\x41\x55\xf9\xd2\x99\x6c\x1b\xa5\xcf\xc0\x3f\x84\xef\x8b\xcf\x3e\xdb\xf0\xde\x79\x38\xda\x3b\xb5\x58\xef\x58\x90\x3e\xcb\x8a\x8a\x20\x0f\x30\xc4\x69\xc4\x5c\x04\x3c\x8a\x54\xfe\x04\xba\x4b\xef\xdb\x0c\x9d\xa1\x3a\xea\x97\x44\x93\xbf\x1d\x2a\x71\x5c\x29\xc6\x40\xe5\x9b\x60\xef\x87\x76\x1f\xff\xb2\xe9\x45\xbf\x7d\x3e\xba\xb9\xd9\xfa\x7c\xf3\xab\xbf\xf8\xd2\x0f\x7e\x3c\xd9\xfc\x79\x71\x7d\xdc\xce\x1e\x0f\xaf\x39\xc2\x3e\xbf\xdf\x99\x0d\x66\xdb\x3f\x9d\x79\xe7\xbf\x9c\xc3\xc1\x15\xff\x69\x77\x70\xf5\xf1\x60\x73\x91\xd0\xa5\xf8\xea\xb9\xf5\x68\x5f\x03\x53\xf7\xeb\x99\xba\x6f\x63\xea\xec\x60\xba\x41\x0c\x4f\x17\xe0\xe7\x4f\x67\xda\xc6\x1f\x81\x93\xe4\x6a\x83\xb4\xac\x29\xc3\x5f\xe2\xab\xea\xea\xe5\xf9\x46\x94\xd9\x3c\x9f\x1f\xce\x6f\x83\xdf\xdf\x84\x9f\x3e\x4c\x8f\x06\xfe\x31\xba\x0a\xbd\xe1\xbf\x0e\x12\xca\x6c\x36\xa0\xcc\xf0\xe1\x84\x19\xd6\xd2\x65\x68\x23\x0b\x47\x0c\xb4\xa7\x94\x76\x26\x90\xb5\x13\x55\x27\xa1\x83\x3e\x84\xa1\xeb\xea\x67\x05\xd2\x4b\xf3\xdd\x1a\x11\xf0\x79\xf3\x1c\x1f\xce\xbf\x10\x83\x16\x97\xa1\x37\xfc\xbc\x9f\xd2\xe2\x1d\xbc\x8b\xd3\xcd\x92\x48\xd1\x89\x76\x4b\x36\x20\xd2\xd6\xc3\x89\xb4\x55\x4b\xa4\xad\xe5\x44\x9a\xc3\xb4\x28\x8b\x91\x00\x97\x15\x22\xdf\x06\x30\xce\xa6\xd3\xf1\x73\x29\x4b\x23\x82\x05\x5f\x4a\xb6\xab\x3b\x49\xb6\xdf\x3e\xa0\xa3\x01\x3d\x46\x97\xde\xe6\xef\x6f\x52\xaa\x9d\x21\x16\xf0\x63\x2a\xf6\xe2\x47\x83\x9b\xec\xb5\xc1\x1a\xf6\xda\xa0\x7e\xaf\x0d\xac\xa7\x66\xbc\x9f\x84\x84\x19\xcc\xe1\x0d\x8a\x1f\xc6\x42\x04\x24\x8f\x1e\x57\xd2\xe2\xea\xf7\xfd\x2f\x9f\x14\x09\x12\x5a\xfc\x7a\xf3\xf6\xf5\xe5\xbb\x8f\x9f\x13\x5a\xbc\x3e\x86\x01\xda\xa7\x64\xea\x63\xb7\x89\xd3\x77\x73\x7b\x0d\xda\xc3\x76\xbd\xf6\xb0\x5d\x25\x88\xd3\x72\xd8\x4a\x49\xc5\x1c\x40\x5f\x65\xd0\xa8\xf2\xdc\x95\x44\xd8\xbe\xfa\xec\x48\x86\xf8\x92\x51\xe3\x33\x9a\x7b\x9b\x87\xb1\x48\xc9\x1e\xf7\xaf\x43\xfc\xf5\xc3\xf1\x7e\x5d\x8b\xf6\x6b\xab\xa4\xcd\x2a\xb0\xa3\xfc\x74\x25\xc1\x89\x0e\x93\xb5\xdd\xfe\x3c\x9b\x4f\xdf\xbd\x9e\xfd\x78\xc2\x7f\xba\x39\xfc\x94\x62\xd9\xf8\xa8\xfd\x26\xb8\xea\x84\xc5\xe4\x21\x6e\x20\x4d\x42\x8e\xc4\x08\xbc\xdf\x7f\xd7\x39\xfc\xbd\xf3\x7a\x14\x47\xdb\xf5\xcb\xd9\x12\x93\xac\x0d\xba\x13\x9d\x5c\xf6\xc1\x9d\xb3\xe9\x13\xcf\x0f\xae\x9d\xeb\xa9\xbb\xc3\xb1\x80\x5b\xdc\xbf\xbc\xd9\x35\x7d\x17\xd2\xc8\x49\x18\x4a\xa2\xdd\x9f\x6d\x79\xbb\xbb\xd7\x8e\xcf\x5c\xef\x66\x38\xdb\x81\xfe\x64\x87\xfb\xd3\x19\xb9\xdc\xf4\xe6\x13\x7e\xf9\x5f\xff\xe7\xbf\x0f\x7f\x3f\x3b\xd9\x03\xdf\x6b\x1c\xbb\x8a\x28\x3f\x64\x25\x4b\x8d\xb1\x31\x07\xed\xa1\x33\x6c\x6f\x28\xec\xd5\xc7\xfd\x5f\xcf\x4f\xcf\x0e\x4f\x92\x03\xc4\x19\xb6\x55\x06\x64\xba\x8e\x66\xed\x53\xd9\xbe\x3f\xdb\xa2\x6c\xcb\xb9\xc1\x91\xb3\x43\x91\x5c\xa5\x39\xbb\x72\x07\xdb\xde\x6c\x2a\x2e\xfb\xd0\x6d\x9b\x6e\x9f\xa4\x66\x62\x7b\x19\x12\x86\x7a\xf2\x3f\x75\xa7\xf0\x19\xff\xc4\x16\xdb\x84\x5f\x4f\x06\xfc\x38\x78\x7b\xb9\x35\xf9\x3d\x3c\xd8\xd9\x87\xad\x57\xff\x1b\x00\x00\xff\xff\x40\x4c\xce\x3c\xc8\xf7\x00\x00") +var _kasFleetManagerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7f\x73\xdb\xb6\xb2\xe8\xff\xf9\x14\x78\xea\xbb\xa3\x7b\xfb\x2c\x89\x92\xe5\x1f\xd1\x9c\x9e\x19\xc7\x76\x5a\xb7\x89\x93\xd8\x4e\xd3\x9c\x4e\x47\x86\x48\x48\x42\x4c\x02\x0c\x00\xca\x56\xfa\xfa\xdd\xef\x00\xe0\x0f\x90\x04\x29\xca\x96\x13\xbb\xb5\xcf\x9c\x69\x24\x01\x8b\xdd\xc5\x62\xb1\xbb\x58\x2c\x68\x88\x08\x0c\xf1\x08\x6c\x77\x9d\xae\x03\xbe\x03\x04\x21\x0f\x88\x39\xe6\x00\x72\x30\xc5\x8c\x0b\xe0\x63\x82\x80\xa0\x00\xfa\x3e\xbd\x06\x9c\x06\x08\x9c\x1c\x1d\x73\xf9\xd5\x15\xa1\xd7\xba\xb5\xec\x40\x40\x0c\x0e\x78\xd4\x8d\x02\x44\x44\xf7\xd9\x77\xe0\xc0\xf7\x01\x22\x5e\x48\x31\x11\x1c\x78\x68\x8a\x09\xf2\xc0\x1c\x31\x04\xae\xb1\xef\x83\x09\x02\x1e\xe6\x2e\x5d\x20\x06\x27\x3e\x02\x93\xa5\x1c\x09\x44\x1c\x31\xde\x05\x27\x53\x20\x54\x5b\x39\x40\x8c\x1d\x05\x57\x08\x85\x1a\x93\x0c\x72\x2b\x64\x78\x01\x05\x6a\x6d\x01\xe8\x49\x1a\x50\x20\x9b\x8a\x39\x02\xad\x00\x12\x38\x43\x5e\x87\x23\xb6\xc0\x2e\xe2\x1d\x18\xe2\x4e\xdc\xbe\xbb\x84\x81\xdf\x02\x53\xec\xa3\x67\x98\x4c\xe9\xe8\x19\x00\x02\x0b\x1f\x8d\xc0\x2f\x70\x7a\x05\xc1\xb9\xee\x04\x5e\xfa\x08\x09\xf0\x5a\x81\x62\xcf\x00\x58\x20\xc6\x31\x25\x23\xd0\xef\xee\x75\xfb\xcf\x00\xf0\x10\x77\x19\x0e\x85\xfa\xb2\xa6\xaf\xa6\xe5\x0c\x71\x01\x0e\xde\x9e\x48\x24\x35\x7e\x71\x1f\x4c\xb8\x80\xc4\x45\xbc\xfb\x4c\xe2\x8b\x18\x97\x28\x75\x40\xc4\xfc\x11\x98\x0b\x11\xf2\x51\xaf\x07\x43\xdc\x95\xdc\xe6\x73\x3c\x15\x5d\x97\x06\xcf\x00\x28\x60\xf0\x1a\x62\x02\xfe\x3b\x64\xd4\x8b\x5c\xf9\xcd\xff\x00\x0d\xce\x0e\x8c\x0b\x38\x43\xab\x40\x9e\x0b\x38\xc3\x64\x66\x05\x34\xea\xf5\x7c\xea\x42\x7f\x4e\xb9\x18\xed\x3b\x8e\x53\xee\x9e\xfe\x9e\xf5\xec\x95\x5b\xb9\x11\x63\x88\x08\xe0\xd1\x00\x62\xf2\x2c\x84\x62\xae\x38\x20\xd1\xec\x5d\x49\x16\xf1\x71\x30\x0b\x44\x6f\xd1\x1f\xa9\xde\x33\x24\xf4\x3f\x80\x14\x40\x06\x25\x98\x13\x6f\x24\xbf\xff\x55\xcf\xd1\x6b\x24\xa0\x07\x05\x8c\x5b\x31\xc4\x43\x4a\x38\xe2\x49\x37\x00\x5a\x03\xc7\x69\x65\x1f\x01\x70\x29\x11\x88\x08\xf3\x2b\x00\x60\x18\xfa\xd8\x55\x03\xf4\x3e\x71\x4a\xf2\xbf\x02\xc0\xdd\x39\x0a\x60\xf1\x5b\x00\xfe\x2f\x43\xd3\x11\x68\x7f\xd7\x73\x69\x10\x52\x82\x88\xe0\x3d\xdd\x96\xf7\x0a\x28\xb6\x8d\xce\x39\xb6\xc4\xed\x40\x90\xa7\x85\x47\x41\x00\xd9\x72\x04\xce\x90\x88\x18\xe1\x4a\xe0\x17\xc5\xb6\x76\xf6\xf5\x10\x63\x94\xf1\xde\x9f\xd8\xfb\x6b\x25\x2b\x8f\x65\xdb\x17\xcb\x13\xef\x21\x32\x51\x21\x57\xc9\xba\x1f\x91\x00\x8a\x54\xa9\x5c\x52\x02\xac\x9c\x4b\x9b\xe1\xa4\x99\x80\x33\x83\xc4\x8e\x6e\xc1\xe3\x2f\x42\xc8\x60\x80\x44\xbc\x46\x93\x26\x1a\xd3\x56\x0e\xd3\xac\x65\x0f\x7b\xad\xfa\x09\x69\x36\x17\xfc\xc1\x4e\xc4\x2b\xcc\x45\xe5\x64\xc8\x1f\x01\x9d\x82\x90\x72\x8e\xa5\xc2\xcf\x31\xd4\x3a\x29\x7e\xb1\x8b\x54\x9b\xb9\x6e\x15\x93\x54\xc1\x65\xfd\xb1\x99\xd8\x2b\x9d\xfc\x50\xc5\x5e\x21\x77\x86\x3e\x47\x28\xcf\x70\xf9\x87\x6e\x60\x10\xfa\x26\x9e\xc9\x9f\xd9\xeb\x47\x24\xce\x62\x8a\x8e\x75\x87\x72\x7b\x3b\x0e\x09\xfc\x1c\x12\x31\x8c\x22\x2e\x95\x63\x7e\xc0\x62\xfe\x12\x62\x1f\x79\x87\x0c\x29\xde\x9c\x0b\x28\x22\xbe\x09\x5c\x6a\xe0\x56\x0a\xa7\xde\x81\x99\x06\x00\xa6\x34\x22\x9e\xd2\x19\x47\xd9\x64\x0f\x9d\xfe\x03\xd1\x71\xf5\xb3\x3c\x74\xfa\xb7\xe5\x62\xd6\xb5\x92\x51\x07\x91\x98\x03\x41\xaf\x10\x91\xd6\x0c\x26\x0b\xe8\xa7\x1a\x53\x31\x69\xfb\x91\x30\x69\xfb\xf6\x4c\xda\x5e\xc5\xa4\xf7\x1c\x31\x40\xa8\x00\x30\x12\x73\xca\xf0\x17\x6d\xbd\x42\xd7\x45\x5c\x6b\xb6\xd8\x20\x35\x19\x37\x7c\x24\x8c\x1b\xde\x9e\x71\xc3\x55\x8c\x3b\xa5\x85\x95\x78\x8d\xc5\x1c\xf0\x10\xb9\x78\x8a\x91\x07\x4e\x8e\x00\xba\xc1\x5c\xf0\x8c\x71\x3b\x0f\xc6\xf4\xa8\x67\xdc\x8e\xe3\xdc\x96\x71\x59\xd7\x6a\x89\x23\xe8\x26\x44\xae\x40\x5e\x6c\xc9\x50\x57\x99\xd3\xa9\xcd\x83\xdc\x88\x61\xb1\x34\xf7\xca\x17\x08\x32\xc4\x46\xe0\x77\xf0\x47\xd5\x26\x0c\x0b\xd3\x91\xa9\x44\x0f\xf9\x48\x20\xeb\xe6\xa9\x7f\x2a\xee\x9f\x76\x8b\x09\x93\x11\xf8\x1c\x21\xb6\x34\x08\x23\x30\x40\x23\x00\xf9\x92\xb8\x55\xe4\xbe\x45\x6c\x4a\x59\xa0\x96\x12\x54\x4e\x0e\xc0\x44\x3a\xa2\xaa\xd7\x9c\x51\x42\x23\x2e\xbd\x2b\xa2\xbc\x95\xba\x69\x16\xcb\x10\x8d\xc0\x84\x52\x1f\x41\x62\xfc\x22\x49\xc6\x0c\x79\x23\x20\x58\x84\x6a\x8d\x80\xc1\xc3\x13\xc0\x22\xa4\xef\x4e\x29\x38\xd4\x88\x55\xf1\xf4\x48\x4d\x5b\x4e\x97\x3f\x8e\x95\x35\x74\x1c\x85\x3b\xa6\xe4\xf6\xaa\xa9\x08\xa2\xda\x1d\x93\x1b\x9e\xa2\x37\x36\x36\x8b\x4b\xed\xc9\x54\x78\x32\x15\x9e\x4c\x05\x6d\x2a\x68\x9d\x72\x07\x83\x21\x07\xe0\x1f\x6a\x36\xdc\x8d\x89\x45\x00\xb7\x37\x21\x12\xe3\x40\x83\xab\x33\x0e\x9a\xd9\x1b\x21\x14\xee\x7c\x54\x84\xfe\x3e\xf4\xa0\x40\x29\xf0\x24\x28\x9a\x0b\xcd\x34\xb3\x66\x72\x46\x49\xa4\xc0\x96\x9d\x7a\x85\xfa\x0b\xea\x19\xb0\xf2\x5c\xd1\xe8\xd0\x6b\x82\x18\xa0\x53\xa0\x42\x08\xcf\x6a\xa4\xa6\x5e\x66\xec\x12\xb3\xd2\xd5\xd7\x58\x94\x1c\xfe\x35\x6c\x94\xbc\xb4\x5b\x7c\x5f\xcd\xa0\xa2\xd7\xfb\xa8\x62\x1a\x6f\x29\xbf\xdf\xa0\x46\xc9\x24\xca\xf1\xf1\x05\xf4\x12\x81\x7a\x04\x8a\xe5\x35\xe6\x1c\x93\xd9\xdb\xc4\x2c\xbf\x83\xe9\x54\x01\xaa\x5d\x6d\x10\xad\x61\x27\x3c\x5c\x0e\xae\xb6\x9e\xc0\x5a\xe6\x53\xc9\x22\x2a\x1b\x0a\x98\x9b\xb6\x02\x5f\x69\x2b\x3c\x64\xe6\x6d\xd4\xaa\x2a\x19\x45\x76\xfb\x40\x07\xf6\x94\x75\xa0\xd8\x65\x58\x08\x8f\x82\x67\x1b\x8d\xbd\x94\x6c\xa0\xb5\xcc\x81\x87\xcc\xa8\x0d\xc6\x5a\xca\x61\x8b\x46\xc7\x3c\x75\xe7\x0f\x1a\x50\x48\xb9\xfd\xec\xc1\x65\x28\xb1\x54\xe2\x9f\xff\x26\xa1\x93\x55\xa6\x96\x5e\xa2\xc6\x11\xe7\xd7\xb3\xaf\x12\x03\x02\x2e\x7d\x0a\xbd\xbc\xa0\x55\x89\xd9\xfb\xf3\x33\x34\xc3\x65\xf9\x5e\x21\x60\x49\xb7\x8a\x13\x93\xe3\xf7\xb7\x82\x9a\x74\xab\x82\x7a\x23\x99\x86\xc5\x39\xfe\x52\x6d\x19\xd5\x0f\x50\x86\x70\x2b\x3b\xf4\x1b\xc5\xca\x1e\x81\x71\x59\xb4\x8a\x5c\x17\x85\x8f\x35\x1e\x97\x1c\xbe\xdd\xc1\xa8\x2c\x80\x78\x8a\xc7\x3d\xc5\xe3\x12\x26\x6d\x38\x1e\x97\x82\x7d\x0d\x6f\x0e\x7c\x9f\x5e\x23\xef\x24\x8e\x3a\x9c\x21\xe8\xce\x91\x77\x87\xf1\x56\xc1\xb4\x22\x72\x81\x58\xc0\x4f\xa9\x48\x74\xc0\x1d\xc6\xaf\x00\x55\x1f\x8f\x9c\x52\x36\xc1\x9e\x87\x08\x40\x58\xcc\x11\x03\x13\xe4\xc2\x88\x23\x65\x34\x44\x65\x47\xa4\x32\x68\x09\x68\xbe\x6f\x00\x6f\x70\x10\x05\x80\x44\xc1\x44\xc7\x53\xd2\xa4\x37\x20\xe6\x50\x00\x17\x12\x30\x41\xb1\x0d\xa4\x82\x11\x2a\xcb\x50\x8d\x39\x87\x1c\x4c\x10\x22\x80\x69\x0e\x76\xab\xad\xff\x87\x2b\xbb\xf7\x79\x7a\x7a\x31\x47\x89\x99\x85\x3c\xb9\xff\xd2\x88\xb9\x08\x78\x14\x71\xd2\x16\x3a\x04\x6a\xf2\xec\xf9\x23\xe1\xd9\xf3\x53\x18\xa0\x43\x4a\xa6\x3e\x76\xc5\xed\xf9\x67\x03\x53\xad\x2c\x25\x3f\x54\xcb\x4c\xee\x3c\x24\xb4\x43\x84\x89\x92\x66\x37\xde\xa2\xa4\x1c\x2b\x31\x4d\x58\x5e\xed\x62\x3d\x54\x26\xdf\xef\xe9\xf4\x01\x01\x51\x95\x3b\x09\xae\xe7\xd8\x4f\x78\x49\x66\x8a\xb1\xb9\xb8\x72\x0c\x74\xcd\x13\x6c\x65\x3e\x94\x83\xd4\xaa\x99\x91\xf5\x65\x39\xf1\x4e\x92\xce\x72\xfd\xb8\xcd\x53\x4b\xb2\xc4\xf8\x5a\x28\xae\x1d\x9f\x3d\xa8\x47\xe9\xab\x8a\x95\x69\xc1\xe6\xb3\xfd\xfe\x4e\xb1\xd1\x13\x6d\x1b\xbd\x93\xde\xf5\x1d\x4c\x58\x0b\x98\xa7\x98\xe8\xdd\x42\xa2\x0f\x97\xee\x07\x76\x48\xfc\x14\xdb\x6b\xb2\x53\xd5\xa5\x71\xb7\xab\xe2\x7b\x21\x9c\x19\x53\xb5\xb2\x39\xc7\x5f\xd6\x69\x4e\x99\x87\xd8\x8b\xe5\x3a\x03\x20\xc8\xdc\x79\xbb\x22\xe6\xe8\xfa\x34\xf2\xc6\x21\xa3\x0b\xec\x21\x4b\x8a\x79\x6d\xe2\x35\x8f\xc2\x90\x32\x29\x27\x0a\x0c\x48\xc1\x54\x6c\x87\x87\xb2\xd5\xdb\x42\xa3\x5b\x6f\x8b\xed\x81\xe3\xb4\x2b\x85\x58\xe3\x8b\xbc\xc6\xc8\x82\xaf\x29\xd5\x39\x4e\xe4\x77\xca\xf6\xd0\xe9\x57\x93\xf5\xa4\xf9\x35\x93\x76\xea\xe6\xfe\x49\x81\x7d\x03\x05\xd6\x40\xbb\xa8\xab\x15\x3d\xa6\x42\xd1\xb7\x56\x35\x71\x77\xed\x55\xa1\xca\x65\xdd\x44\x05\xe9\xa0\xf8\x43\x51\x44\x09\x65\xdf\x4c\x1f\x69\x76\x3c\x69\xa3\x27\x6d\x94\xfe\x7d\x35\x6d\xb4\xe2\xb8\x34\xdf\xf8\xbe\x6c\x2f\xdb\x99\xa9\x87\x42\x86\x5c\x28\x0a\xc7\x57\x20\x3d\x4e\x4d\x42\x94\x63\xb1\x0c\x51\x95\x0c\xfc\xff\x4e\x8e\x7d\x17\xf3\xe2\xad\x5e\x75\x5a\x2a\xad\xf6\x29\xf6\x05\x62\x4a\xb5\x31\xc4\x23\x5f\x70\x30\x59\x3e\xcb\xf5\x3e\x3a\x7e\x7b\x76\x7c\x78\x70\x71\xf2\xe6\x14\x9c\xbe\xb9\x38\x39\x3c\x56\xb8\x1b\x68\x64\x57\xa8\x53\xec\x4d\x10\xd5\xa7\xb5\x5c\x30\x4c\x66\xc6\x0f\xd9\xd9\xdd\x14\xfa\xdc\xa4\xcf\x2e\x34\x1e\x5a\x20\x5f\x2a\xdd\x71\x0e\xa1\xa2\xf4\x2c\xa0\x1f\xa1\x11\x68\xa5\xcd\x5b\xb9\x06\xb2\xa7\x07\x99\xd7\x0c\x48\xd2\xba\xea\x5c\x3d\x07\x84\xf7\xfe\xcc\xef\x4a\x7f\x25\x5f\x68\xf5\x5b\xbe\xfa\xd7\x70\x5f\xb2\xcc\x27\x07\x90\x78\x40\x4a\x19\x8f\xe7\x55\x07\xad\x0b\x7a\x5f\x36\xd2\x83\x57\x6c\x5a\xc9\xd9\xc0\x85\x84\xf9\x62\x99\xdb\xc3\x0e\x48\xac\xb7\xef\xba\x8b\xd5\x47\x99\x6a\x76\xb1\x0d\x12\x0e\xbe\xa6\x2a\x3c\x4f\x28\x50\x04\xe4\x78\xbc\x4e\xec\xea\x30\x4f\x13\x4d\xf6\xf1\xe4\x10\x24\x65\xd4\x23\x50\xf7\x43\xc7\x79\x4f\x52\x84\x73\x39\x03\xb7\x89\x70\x55\xc1\xb2\x9d\x6a\x99\x8d\x13\xd9\xde\xcc\xd0\x05\x68\x4f\x31\xb6\xf5\x62\x6c\x4f\xa1\xa2\xdb\xdb\x36\xd2\xa0\x08\xa1\x98\x97\x8c\x86\xfc\x16\x64\xdd\x6f\x0b\xc6\xc6\x1a\x7b\x76\x6e\x86\x4e\x8e\x1a\x7a\x4a\x0d\xf0\x2d\xe9\xea\x8d\x63\x7b\x0a\x03\xb4\x0a\xdf\x6c\xcb\xb0\x6d\xf6\x71\xa8\x73\x0c\x5d\x97\x46\x44\x94\xdd\xcc\x75\xd3\xe5\x5c\x1f\x23\x22\xc6\xb9\xb5\x5f\x6d\x15\xdd\x96\xf0\x74\x94\x94\xfa\xf8\x88\x3c\xa6\x43\x9a\x86\x13\x69\x12\x0a\x86\xd1\x02\xd5\x94\x1d\x28\x79\xa3\x5f\x6f\x43\xd5\x28\x1f\x68\x8c\x6b\xab\x3d\x94\xcd\x89\x3c\xb9\xbc\xda\x01\x7d\xa8\xea\xe4\x5b\x66\xe7\xb4\x87\xce\xf6\x23\x61\xd2\xc3\x3a\x08\x29\x79\xee\x0f\x95\x71\x8f\xe1\x7e\x78\xb1\xda\x4a\xd2\xab\xc2\xab\xc9\xab\x8b\xca\x4a\x2f\xb0\x5e\x47\x98\x89\xd2\xab\x93\x88\xcf\x0b\x5a\xb5\x78\xe8\xfc\x15\x32\x8a\xf3\x64\x5b\x93\x4e\xab\xc4\x80\x37\x94\xb1\x74\xea\xad\x63\xdd\x3a\x3f\xf7\xa1\xec\x2c\xcd\x57\x4d\x2c\x31\xf1\x6c\xaf\xbd\x72\xf2\xc3\xae\x5a\x44\x45\xd9\x8a\xb3\xd4\x9e\x76\xb2\xa7\x9d\x6c\xed\x9d\xec\xd5\x4a\xb3\xe8\x69\xe3\xda\xdc\xc6\x65\xb9\x60\x93\x5f\xfa\xcd\x36\x38\x4b\x76\x59\x61\xfe\x1a\xfa\x2c\xf6\x12\x64\x77\x0c\x9f\xff\x3d\x14\xba\x65\x9c\xb5\x94\xf8\x8b\xe5\xc9\xca\x24\xe7\xcc\xf2\x28\x3a\x61\xeb\xde\x61\x5f\x65\xf4\x18\x77\xcd\x9b\xca\x56\xea\x39\x55\xe3\x96\xb6\xfd\x11\x09\x5b\xb3\x58\xdd\x96\x6a\x21\xda\xdc\xce\xf4\x32\xe4\x0c\x2f\xa4\xc6\x4e\xba\x9a\xe5\x7d\xee\x45\x30\x87\x0f\x44\xbb\xd5\x16\xc1\x79\xda\xd2\xff\x5e\x5b\xfa\x1d\x98\xf4\xd0\x9d\x53\xf0\x27\xf8\xeb\xef\xbb\x69\x6b\x85\x74\x67\xe5\x9a\xd5\x2e\xa9\xd2\xae\x8d\xb7\xef\x1e\x43\x1c\x89\xb1\xcb\x90\x87\x88\xc0\xd0\xb7\x5c\xec\x7d\xda\xd1\xe5\x8e\xde\x51\x9c\xba\x67\xe7\xec\x4c\x8e\x01\x8c\xd9\x78\xd2\xe1\x4f\x3a\xfc\x49\x87\x3f\x24\x1d\xae\xd4\x40\x7e\x55\x1f\x32\xe4\x55\xd5\x72\xae\x36\x90\x39\x12\x3c\xb9\x81\x95\x2c\x77\x30\xa5\x6c\x5d\xb5\xce\x69\xf3\xc4\x68\xc0\x39\xcd\x4e\xa8\x30\x99\xd2\x2a\x07\x80\xd3\x62\x06\xf4\x0a\xca\xfe\x66\xa9\xcf\x06\x03\x9e\xd2\x0c\x9f\xd2\x0c\xd5\xdf\xc6\x74\xd5\x33\x00\xbe\x93\xff\x07\x17\x73\xc4\x11\x80\x2c\xbb\x94\xdc\x99\x42\x17\x93\x19\x60\xc8\x57\x97\x87\xd3\x27\x42\xe2\x3e\x2b\x2a\xc2\xf7\x02\x24\x18\x76\x79\x4f\x9d\x12\x8f\x19\x24\x33\xb4\x4a\x29\x70\x10\x77\x8a\xdd\x68\x1c\x20\x8e\x18\x46\x1c\xa8\xee\xfa\xc0\x59\xea\x20\x9d\x42\x95\x86\x16\x8a\x3a\xe3\xb5\x86\xf2\x62\x79\x26\xbb\xbd\x33\x8e\xa9\xef\x3b\x67\xf9\xe7\xf3\x37\xa7\x00\x32\x06\x97\x52\x8f\xbc\x65\x34\x40\x62\x8e\xa2\x8c\x30\x3a\xf9\x84\x5c\xc1\xc1\x94\xd1\x00\xd0\x89\xd4\xaf\x50\x50\x86\xa3\xe0\x5b\x88\x5d\xcc\xa8\x8c\x4d\x4f\xc9\xcc\x4f\x5a\x26\xfd\x7b\x98\xc9\xcc\x95\x8d\xbd\x48\x2b\x81\x35\xba\x60\x22\xe4\x02\xf4\xd7\xe8\xa2\xd3\x33\x79\x7d\x4d\x2a\x8b\x06\x5c\x53\xf7\xe9\xf4\x50\xb1\xbe\xca\xd3\x79\x99\xe2\x49\xe9\xad\x52\x7a\x26\xa3\x9e\xd4\xde\x93\xda\x4b\xff\x1e\x99\xda\xbb\x85\x42\x9a\x22\x4f\x6a\x8f\x06\xf6\x18\xf4\xfd\x74\x15\x63\x02\xb8\xcb\x60\x88\xd4\xfb\x72\x53\xca\x02\x28\x62\x37\x51\x1f\x76\x5c\xe9\xc4\x76\xcf\xa6\xa2\x92\x21\xe3\xc5\xf7\x95\x34\x93\x56\x9a\x06\x01\xd0\x54\x4f\x02\xdd\x88\x98\x8e\x55\x62\x29\x9b\xf6\x42\x1f\xe2\xc6\x02\x69\x4d\x62\x6c\x0f\xeb\xd0\x7e\x5c\x55\x1d\xbe\x66\xc5\xdb\x27\x8d\xdc\x44\x23\x0f\x0b\x87\x80\x96\x72\x90\xd8\x53\xe1\x38\x55\xb8\xf5\x51\x70\x68\xa3\x05\x9e\x9e\xf6\xac\xfb\xdd\xb3\x9e\x65\x3f\xc9\x9e\x31\x2d\x1a\xc8\x1b\x65\x03\x9e\xa1\x29\x62\x88\xb8\x29\x9a\x5a\x4d\x6a\x03\x31\x19\x9e\xc9\x9d\x43\x60\x93\x4e\xec\x99\x74\x59\x75\xeb\x15\x26\xab\x1b\xcd\x25\x11\x75\x8d\xa4\x25\x38\x4a\xf7\x9d\x38\xcf\xcf\xe0\x82\x1c\xc5\xf8\x18\xc2\x19\x32\x3e\x72\xfc\xc5\xfc\x28\xa8\x80\xbe\xf1\x19\x0b\x14\xf0\xf5\x08\x6f\x44\x95\xc4\xa2\xdc\x48\x3a\x37\x33\xe3\xba\x82\x44\x6e\x75\x2b\x85\xf3\xea\x66\x8a\x94\x72\x33\xe5\x05\x18\xdf\x96\x9a\x01\xab\x1c\x25\x52\x5f\x10\x12\x6d\x05\xa9\xa5\x90\xc0\x80\xbe\xff\x66\xba\x4a\x2c\x6b\xc1\xc5\x53\x53\x66\x7f\xd5\x14\x00\xb5\xee\xbd\xd2\xca\xaa\xb8\xa6\x20\xe5\x06\x5a\xb4\x40\x65\xf3\xd4\x4e\x1a\xe7\xa5\xdc\xda\x29\x7d\x18\xf2\x56\x0c\x91\x1d\xef\xc0\x05\xcb\x6c\x56\x4d\x7c\x65\xf3\x7a\x01\x50\xe4\x69\x0c\xcd\xda\x58\x5f\x69\xf6\xcb\x0b\x5e\x37\x67\x08\x46\x62\x8e\x88\x88\xb5\xfc\x18\x11\x69\x03\x7b\x85\x66\x41\xe4\x0b\x3c\x86\x5f\x1a\x70\x92\xab\x67\x14\x8b\xbc\xc9\x6d\x47\xad\x5f\xa1\x1f\x21\x3e\x02\xbf\xc3\xb8\xd8\xe4\x16\x08\x19\x0a\xa1\x94\x85\x2d\x7d\x26\xc1\x31\x25\xea\x13\x43\xd0\x5b\x6e\x81\xa9\x7a\xab\x71\x4b\x5d\x63\x8e\x7f\xde\xd2\x67\xfd\x98\xcc\xfe\x00\xad\xa6\x22\x99\xbf\x6e\x55\x8f\x66\x72\x05\x49\xdf\xeb\x8c\xe2\x2a\xfa\x1e\x0a\x7d\xba\xec\x82\x97\x94\x25\xdb\x16\x38\xf8\x70\xde\x18\x83\x84\x97\x76\x69\x2b\x17\xc9\x06\xf1\x2d\xa7\x26\x2c\x4d\x6f\x7b\x1b\xa5\x31\xe2\xda\xf5\x6e\xe1\xc4\x27\x47\xc0\x08\x44\xbc\x83\x20\x17\x9d\xbe\xf2\x7b\xd6\xa1\x47\xbd\x78\xd2\x58\x25\xa8\x9b\x54\x4d\x1b\x4f\x28\x15\x5c\x30\x18\x8e\xf5\x7b\xd2\xe3\xb9\x91\x32\xb1\xb2\x37\xf4\x02\x4c\xc6\x30\xc4\x49\xef\x88\xf9\x75\x9d\x41\x1d\x83\x2f\xe6\x28\xf6\x02\x15\xd8\xf8\x81\x6b\x10\x31\x5f\xca\x44\x18\xd7\x4a\x37\x5b\xa4\xca\x8f\x03\xd4\x9d\x01\xe8\xfa\xf1\x2b\xde\x01\x22\x02\x20\xe1\x76\x15\x50\x75\x75\x3d\x9d\x37\xb8\x80\xd8\x57\x5e\xe8\xf5\x1c\x11\xa3\xc6\x61\x5a\x5b\x72\x1a\xf9\xfe\x32\x5b\x23\xc8\x03\xb8\x8b\x00\x16\x71\xb1\x53\x0e\x20\x68\xab\x35\xd3\x56\x4b\x11\xe5\xa9\x8a\x33\xd1\xc7\xb0\xc4\x46\xed\x2d\x8e\x80\x07\x05\xea\x08\x1c\xa0\xa6\x6c\x46\x37\x21\x66\x88\x6f\x12\x24\x00\x24\xf2\x15\x1b\x4a\xd7\x09\x41\xf2\xfe\xcc\x26\xc7\xd3\xca\x65\xbc\xe6\xee\x96\x3c\xef\xde\xb4\x7d\x6d\x05\x83\x66\xbd\xc6\x6b\x2d\x9f\x2a\xe5\xde\x5c\xf3\x28\x79\x1e\x73\x41\x19\x9c\xa1\x71\xd1\xcc\xaa\x1d\x7c\xc2\xe8\x35\x5f\xbd\xe8\xf2\x7b\x07\xfe\x82\x9a\x98\x0a\x19\x6f\x66\x0c\x71\x3e\x16\x73\x46\xa3\xd9\x3c\x8c\xc4\x38\x44\x6c\xcc\x91\xdb\x18\x04\xba\x33\x04\x65\x56\x8e\x03\x78\x33\x76\x29\x21\x48\xbd\x94\x50\x61\x4a\x14\x4d\x4d\xf9\x27\x3b\x86\x90\x09\x7c\x8b\x7e\x1e\x14\x70\xcc\x90\xf4\xdb\xe4\xf4\x86\x88\x61\xda\x9c\x7b\x79\x94\xc7\x50\x08\x14\x84\x82\xd7\x33\xa0\x8c\x8a\xf5\x21\x49\x9b\xf5\x52\x57\xdd\xbe\x6c\x18\xdd\xb7\x25\x68\x45\x5b\xf9\x24\xa0\x55\xc4\x23\xbf\x17\x2a\x9f\x04\xb4\xfa\xad\x92\xec\x96\xbf\xd5\x3e\x47\xe9\x6b\x69\x3f\x16\xf9\x7b\x97\x07\x01\xee\xd7\xac\x2d\xb0\x3f\xfb\xab\x9f\x08\x13\x67\x4d\xfe\xaf\x5a\x63\xbe\x46\x02\x4a\xd1\xfd\x4a\xb6\x6f\xdd\x4c\x1f\xbc\x3d\x89\x91\x2a\x4c\x90\xfc\x71\x51\x98\xb5\xb9\x46\xcb\x12\x8b\x6e\x15\x5c\x2a\xdf\xaf\xd0\x03\x1d\x0d\x59\xf7\x2e\x9a\x58\x75\x23\xf4\xaa\xba\x98\x22\x5b\x94\xd5\x6a\x9f\xaf\x12\xc1\xaf\x25\x1c\xd6\x69\xb4\x3c\xb1\x92\x40\xce\xdf\xaf\x53\x40\x94\xa5\x2a\xb2\x52\xe6\x60\x42\xbd\x25\xe0\x48\x5f\x91\x8f\x19\x06\xde\xbe\x39\xbf\x88\x61\xd8\xa2\x1e\x72\x43\x7d\x66\x92\xbe\x32\x6e\x51\xed\x41\x94\x0c\xc6\x42\xb5\x82\xeb\x39\x8a\xb3\x50\xb4\x4d\xe7\xfa\x11\x17\xf2\xfb\xd8\xf8\x4b\x8a\xd9\x63\x73\x13\xb6\xaa\x6f\x9b\x0f\x51\xb8\x9e\x90\x54\x7b\xea\x82\x93\xa9\x34\x0f\x31\xcf\x5e\xb1\xda\x52\x48\xe4\x2d\x4f\x3c\x23\x94\xc9\xe6\x12\xf1\x83\xb7\x27\x00\x46\x82\x06\x50\xda\x0e\xd2\xe0\xf4\x90\x40\x2c\xc0\x44\xd5\xdf\xc7\x3c\xee\xac\x8e\x3d\x25\xac\x76\xe8\x43\xd2\x06\x50\x08\x86\x27\x91\x40\xad\x12\x05\x65\xf3\xa2\xb2\x9e\x56\xd1\xc8\xc9\x51\xd6\x96\xf8\x11\xa3\x38\x44\x8e\x97\x5d\x70\x22\x40\x10\x71\x01\x5c\x4a\x78\x9c\xf4\xe6\xd3\x6b\xc4\x3a\x2e\xe4\x08\x40\x3f\x9c\x43\x12\x05\x88\x49\x87\x68\x0e\x19\x74\x05\x62\x1c\x50\x06\xda\xed\x4e\xbb\xbd\x25\x8d\x66\x16\x5f\x76\x81\x44\xb7\x9f\x20\x61\xb6\xde\x52\xd5\x8a\x50\xf2\x3e\x58\xd2\xaa\x04\x55\xb7\x73\x21\x51\x81\xe9\x09\x02\x3e\x25\x33\x55\xd0\x0b\x12\xb0\x3d\x30\x86\xef\xb6\x57\x4d\x78\xd9\x05\xb4\x14\xf4\x57\xb5\x86\x36\x27\x64\x4d\xcc\xc7\x1c\x16\x1f\xe6\x48\x3d\x02\x91\x19\x15\x25\x18\x52\x0c\x63\x30\x92\xe7\x84\x0a\x25\x9f\x1c\xa9\x35\x2b\xa5\x60\xab\xb6\x3b\x35\x7d\xa2\xb4\xd0\x54\xe6\xf5\xea\x05\x0e\xd0\x02\xb1\x25\xd8\x01\x01\x26\x91\x40\x5c\x0b\xb5\x87\xa6\x30\xf2\x45\x2c\xba\x98\x17\x5d\x8b\x2a\x39\xad\xf0\x45\xa4\xc4\x57\xb2\x42\x3b\x82\xb2\x89\x3e\x9b\x8b\xcf\x14\xe9\x14\xfc\x2b\x67\xd0\xff\xbb\xfb\xaf\xd8\xe8\xfd\x77\xdd\x74\xac\x28\x50\x55\xb9\x91\xae\xb3\x23\xe6\x6b\xa3\xad\x65\x9d\x54\xa3\x27\xb1\x5b\xc7\x5e\xa9\xc5\x61\xf3\x7b\xd3\xba\xe5\xc0\xda\x2b\x66\xc3\xba\x5b\xb5\xcf\xeb\x0a\xa4\xb5\xd7\xdb\x7d\x70\xf5\xf2\x6b\xbf\x27\xf8\xb3\x94\x6c\x95\xe9\x3c\xc5\xfa\xdd\x14\xcb\x72\x91\x43\xad\x56\x39\x1e\xe6\xa1\x0f\x97\x25\x97\x33\x3f\xe6\x4f\x51\x00\xd5\x3a\xf5\x54\xd4\x82\x58\xab\xf6\xd4\x90\x5d\x39\xbc\x2a\x19\x57\x3d\x6e\xe9\xb1\x83\x14\xba\xae\x35\x97\x05\x52\xb4\x95\xa0\x8e\x4f\x6b\xc7\x6f\x10\xe0\xb7\xca\xd3\x3a\xb2\x74\x9e\x96\x99\x2c\x7f\xdf\x4c\x76\xce\x8d\x42\x95\xf7\x27\x32\x98\xdb\xb8\xba\x29\x99\x39\xd2\xad\x0c\x61\xb9\xed\x78\xcd\x02\x00\xf9\xd1\x5f\xc7\x4f\x0b\xc5\x7d\x41\xd6\x17\x84\x88\x01\x8e\x5c\x4a\x3c\x43\x7e\xe4\xbe\xd4\x1c\xc1\x92\xae\x5d\x4f\x38\x5e\x2c\x05\xe2\x2a\x96\x7b\x22\x50\x90\x81\x6f\x14\xa6\xb0\xd3\x89\x1e\x11\x99\x2b\x63\x29\x76\x12\x61\xa0\xae\x70\x48\x51\x92\x00\x0c\x0b\x82\xdf\x9a\xc2\x62\xa0\xc3\x12\x6f\x29\xc6\xc3\xec\xc8\xc9\x4e\x20\x0e\xa1\x3d\x34\x7e\x57\x07\x9f\x9a\x31\x3a\xeb\x7b\x9f\x7c\x2e\xc7\xb5\x6a\x38\x9d\x76\x03\xba\xdb\xad\x11\x2b\xba\x5c\xcd\xa3\x65\x16\xec\x70\x14\x98\x76\x6d\xd2\x7b\x13\x4b\xd1\xc6\xc0\x00\x71\x6e\x8b\xd8\xda\xf9\x16\xb7\x56\x03\x3c\x38\x09\xc5\x64\x8c\xc9\x98\x2f\x89\x3b\x66\x48\x65\xa3\x54\xcb\x69\xeb\x35\x26\xa5\x67\xe3\x3a\xb2\x2f\x48\xfa\x76\xcb\x9e\x69\x91\x81\x71\x53\x35\xcd\x53\xe8\x0a\x5a\xed\xe4\xb7\xce\xb2\xb6\x40\xb7\x6d\xc8\xc0\xd5\x68\xa4\xe6\xd3\x18\x7e\x19\x07\xd4\xab\xb3\x86\x92\x22\x31\x07\x7a\x6c\xec\x63\xb1\x04\xff\xa1\x04\x01\xd5\x51\x3f\x99\x57\x85\x4b\x32\x52\xec\x26\x85\x94\x73\x2c\xd1\x5f\xe8\x23\x45\xc8\x10\x68\x71\x4c\x66\x3e\x6a\x6d\x81\x96\x0a\x3d\xb4\x2c\x02\xd0\xc0\x7e\xb2\x2e\x2c\x1f\x4f\x11\x0f\x21\x19\xeb\x75\x50\x43\xe5\x85\xaa\xb6\x1c\x60\x91\xf6\x49\x4c\xcd\xab\x3c\x55\xea\x7c\x4e\x01\x53\xde\xa5\xaa\xbd\x9b\xbe\xe0\x2d\x92\x83\xb5\xb4\x39\x91\xee\x62\x72\x8e\xd5\x60\x85\x55\xba\x84\x9f\x23\x2a\xa0\xd4\x12\x3c\x0a\x6a\xfc\xe4\xf6\x3b\xd9\x0e\x24\xed\xd2\xc7\x0b\x6f\xb7\xde\xf5\xa0\xc5\x33\x25\xdb\x80\xaa\x1e\xb8\x3a\xc6\x5e\x6f\xc4\xc2\x84\xb9\x30\x84\x2e\x16\xcb\x06\x84\x1e\x49\x8d\x2c\xbd\x60\x94\xc6\x21\x92\xde\x9b\x22\x3f\x80\x42\x25\xda\x8e\xcb\x89\x07\x45\x6d\xa7\x1b\x02\x1f\x2d\x90\x9f\x3a\x29\x72\x14\x70\xa8\x5f\x93\x6c\x71\x21\x67\xb5\x05\x28\x03\xad\x90\xa1\x05\x46\xd7\x36\x51\xaf\xf4\xcc\xcb\x9a\x6c\xcd\x6c\xb0\x89\xec\xbc\x3a\x47\x29\x3b\xeb\xc4\x44\xec\x0e\xd5\xf7\xa5\x87\x64\xbe\xd5\xe9\x49\x09\x91\x6f\x7f\x7c\x92\x43\xe9\xb1\x9c\x9f\xe4\x90\x6e\x65\x73\x9c\x3d\xce\xf1\x4d\x67\x38\x43\xe3\x81\xcc\x6f\x65\x61\xf1\x87\x3b\xbb\x1a\xe5\x56\x79\xfd\xda\x83\x01\xf9\x02\xf3\xa9\x62\x6a\x92\x5d\x99\x07\x74\x42\x3c\x69\xb5\x20\x7d\x39\x5e\xed\x0b\x89\x1f\xae\x05\xa1\x0b\x3e\xc4\x31\xd5\x76\x3b\x87\x58\xbb\x0d\x7c\x4c\xae\x1a\xb8\xe6\xb7\x09\x54\xc5\x83\x6f\x28\xce\x60\x96\x90\x2e\x1c\xc5\x4c\x29\x4b\x80\x80\x30\x62\x21\xe5\xd6\x9d\xbf\x30\x6c\x93\x50\xd8\x94\x61\x44\x3c\x7f\x69\xa1\x2e\x8f\xc3\x96\x42\x22\xc9\x20\xbb\x84\xd7\xfc\x72\x35\x06\xab\x42\xf0\xed\x24\x06\x6f\xa1\xd9\x08\xbd\x2b\xf2\x55\x1e\x1b\x26\x33\x00\x09\x78\x73\x7e\x94\x1e\xa1\x94\x91\xc8\xc7\xc4\x6d\xc7\x68\x66\xda\xa0\x21\xd9\x76\x31\x3e\xca\x3e\x49\xd6\xc0\xe4\xe8\x42\xfd\xdb\xfd\x76\x32\xae\x71\x6e\xb7\x1f\x9d\x70\xc7\xfc\xb3\x09\x75\x41\xca\x4e\xbb\xe0\x57\xcc\x66\x98\x60\xb8\x69\x69\xcb\xde\xba\xd8\x88\x94\xe9\xc1\xd4\x89\x4d\xb1\xb6\x7a\xe6\x19\x55\x9f\x17\x14\x0f\x17\x01\xa8\x22\xa2\xe1\x8b\x3c\xdc\x88\x67\x27\x16\xab\x26\xb9\xbb\x89\x37\x79\x8a\xcc\xb8\xad\x37\x95\x98\xd7\x4d\xd6\xc5\x75\x36\x7b\x4c\x1d\x88\xa5\xb6\xb9\x8f\xa6\x3a\x4c\x78\xcf\x31\x73\xfb\xd6\xa8\xd7\xe1\x61\x8c\x8c\xb4\x30\xa4\x25\xdd\x6a\xa8\x7e\xf4\x37\x55\x32\x62\x34\x49\xa8\xd5\x76\x7c\xae\xda\x4c\x45\x2c\x3e\x2e\x19\x73\x90\x2f\xeb\x2b\xdd\xcd\xd7\x07\xe7\x9d\xf3\xf3\x37\x69\x4a\x82\x16\xa0\xc3\xd8\xe7\x51\x57\x09\x73\x07\x99\xed\xdb\x58\x6e\x9b\x4b\xfa\x2f\xe7\xd8\xe5\x29\x8d\xb3\x5b\x67\x88\xa8\xab\x8d\x1e\x88\x12\xa5\x56\xf1\x28\x41\xf1\x3e\xcf\x5a\xf9\xbf\xf9\xb1\x1b\x83\x32\xbb\x6d\x06\x62\xfa\xf4\x42\xe3\x1c\xba\xb8\x07\x47\x2e\x2b\x17\x2e\xdb\x50\xca\x74\xed\xcb\x63\x59\x4a\xef\x64\xd9\x1c\xeb\x4d\x67\x01\xaf\x9f\x03\x68\xad\xd9\xd6\xb2\x2c\xc5\xc2\x3d\x89\xc2\x8a\xb4\x27\x02\x09\x1a\x93\x58\xae\xf3\xd4\xae\xd1\x22\xeb\xe7\x02\xad\x97\xa9\x52\xb3\x66\xec\x86\x80\x5d\xc0\xf3\x83\x1c\x98\x9f\x53\x4e\xac\x37\x54\x69\xfa\xd6\x98\x3a\x5b\x1e\xa7\x5d\x81\xdb\xa7\x90\x67\x53\x08\x8b\x71\x3c\xb5\x59\xa6\x9b\x12\x26\xf1\x86\xbb\xee\xf9\x67\x55\xde\x75\x1e\x11\xcb\xd8\xcd\x0e\x05\x92\x70\x98\x4e\xc0\xaf\xb1\x96\xa6\x3e\x9c\x01\xac\xb7\x5f\x69\x11\x5d\x9b\xb6\x7a\x42\x65\x32\x83\x79\x26\x60\x52\xb0\xb1\xe2\xc1\x9a\x59\x51\x15\xda\x23\x8d\x54\x8f\x57\x1c\xb6\x27\x27\xed\x59\x68\xdb\x7a\xe6\xae\xa2\xcc\xae\x0e\xa5\x19\x7b\xa3\x61\x2a\xc5\xb7\x1a\xe0\x95\x32\x08\x93\x6d\x34\x62\x0c\xc9\xff\x26\x2c\xc8\x1e\x83\x83\xbe\x0e\xf8\xf2\x4d\x85\x9b\x6d\xcb\xde\xfe\x6c\x63\xa7\xc8\x1e\x8b\x6e\xaa\x97\xec\x7f\xec\x1e\x5f\xb9\x8d\xe6\x11\xd0\xcd\xbe\x8a\x4d\xd1\x50\x0b\xd7\x8e\x62\xdd\xb4\xf3\xc3\xa8\x26\x77\x1d\xe7\xd6\xdb\x7d\x79\x7a\x2d\x6f\x50\x68\xdf\x45\xd7\x41\x6b\x3e\xa1\xb7\xb6\x17\x1a\xe0\x24\xd5\x82\xaa\x87\x26\x60\x10\x6e\xc2\xf8\xab\xe5\xac\x89\x8e\x97\x8f\x43\x54\x4e\x5a\x79\xd1\x6f\x24\xe1\x2e\x0e\xa6\x96\xa1\x97\x83\xa1\x96\x3c\xf2\x35\x2a\xe2\x26\x6a\x6a\x8d\xd0\x68\x31\xb4\x52\xcb\xd7\x6f\x1a\x47\xb5\x93\x6a\xb2\xb0\xea\xee\x6b\xee\xc2\x3b\x28\x5c\x63\xff\x2e\x57\x29\x30\xa9\xb3\x92\x54\x0c\xfc\x4e\xcb\x45\x56\xbf\xb2\xc2\x3c\x3d\x7f\x03\x8a\x15\x2e\xbf\xd1\x6e\xb0\x52\x47\xb6\x72\x3a\xd2\x28\x61\xda\xf8\x22\xe8\x04\x72\x64\xbb\xee\x95\xe7\x89\x6c\x05\x22\xe6\x37\x5e\xe9\xaa\xfc\xc9\x5a\xd7\xc8\x3e\x5d\x5f\x55\x88\xa3\xed\x16\x1f\xf4\xb1\x37\xc6\x9c\x47\x8d\x5d\xb2\x5b\x78\x3b\x99\xa4\x24\x86\xb2\xee\xa5\x40\x58\x6b\x15\x6e\x52\xc5\x58\x07\xb0\x5c\x78\xe9\x93\x49\x78\xbe\xe7\xfc\xe4\x45\x6f\xd1\xd0\x77\x04\xdd\xff\x74\x3e\x1b\x1c\xbe\xfa\x32\x8d\x1a\xe8\xa4\x5a\x8d\x54\x42\xe1\xde\x94\xd1\x23\xd1\x5b\x19\x27\x62\x9f\x29\xfd\xbc\xe6\x91\xb1\xd6\x4d\xe5\x33\xe3\x92\x84\x40\xcf\x53\xb9\x5a\xd0\x7f\x5b\xc1\x68\x2b\xa7\x74\x1a\x48\x19\x7e\xe3\x82\x18\xf6\x14\x20\x0d\x56\x4f\x7f\x7e\x88\x86\x74\xa7\x36\xc3\xed\x8e\xcb\xd3\x71\xcb\xdd\x75\xf6\x90\xa5\xb7\x47\xa3\x89\x8f\x6a\x5c\x09\x05\xd0\x5c\xd3\xc5\x52\x7c\xf7\xb0\xaa\x8b\x43\x7c\x93\x75\x6d\x22\xf1\x4f\x5f\xd9\x26\x2f\x5a\xa6\x30\xbc\xd4\x95\xe2\x30\x25\x67\xea\x3d\xff\xbc\xc0\x1b\x64\x98\x10\x1e\x98\x36\x78\xd8\xab\x4e\x85\x25\xde\xab\x02\x01\x85\xb8\x61\x43\xf6\x7d\xa7\xe2\x2f\x84\x5e\x6b\x77\x4f\xdd\x12\x9a\x23\x40\x89\xbf\x34\xce\x7f\xa6\x18\xf9\xfa\x78\x4b\x17\x23\x48\xbb\x97\x7c\xc4\x0a\x09\xad\xc8\x1f\xfb\x1b\xdd\xb8\x2a\xf1\x60\xe5\xbd\xaa\x67\xe5\xf2\x5c\xd9\x8a\xd7\x0f\x30\xa7\xb5\xef\x4a\x97\xdf\xf4\xdb\xd6\x0c\xb9\x94\xa5\xef\x0e\x14\x6a\x93\x59\xa6\xa2\xf0\xc8\xb5\xe5\xf5\xcb\xa4\xf2\x6e\x1e\x8f\xe4\x5b\x03\x8c\xf9\x62\x74\x09\x3b\x1f\x91\x99\x98\x2b\xe3\x1a\x07\x2a\x98\x17\xb3\x49\xc9\xd0\xf5\x1c\xbb\x73\x39\x19\x4c\xbf\x1f\x20\xd9\x1d\xe4\x8a\x49\x5a\x9f\xe5\xb4\xd3\x57\x5c\x84\xf6\x25\x98\x1e\xac\xee\x64\x8a\x43\xa7\xce\x8e\x40\x3f\xfb\x4a\xe7\x07\x8f\xc0\x70\x7b\xe0\xc4\xdf\x96\x0b\xb5\x15\x59\x04\xd2\x25\x1e\x43\x4f\x4a\x11\x17\xe6\x32\xfe\xb6\x29\x0f\x93\xf6\x46\x72\x27\x98\x20\x71\x8d\x10\xd1\x89\xdf\x69\x09\xf7\xfb\xe5\xd8\xb6\xd3\x88\x65\x7d\x67\xdf\xa9\xe6\x59\x91\x25\x06\xcf\x62\xf8\x71\xed\xd3\x3c\xcf\xe2\x2f\x9b\xb0\x2c\xc9\x08\x4e\x3c\x57\x41\xc1\x14\x09\x77\xde\x05\x2f\xe5\x7f\x72\xe5\x4f\x55\x50\x16\x05\xa1\x58\x76\x75\x3f\x44\x84\xaa\x4d\x0f\x59\xb6\xf0\x05\x62\x04\x26\x7d\x14\x3e\xe9\x22\xb7\xf3\x35\xbf\xd1\x56\x54\x55\x2b\x9d\x78\xc4\x5c\x4e\x4a\xa4\x9a\xf5\xdf\x34\x0f\x8c\xba\x74\xb5\x0c\x78\x0b\x67\x52\x68\x3c\x74\x53\x12\x09\x33\x9b\xa0\x81\x96\x28\x4f\x5f\xb1\x2a\x5d\x3c\x75\x49\x1a\x9b\x99\x75\xaf\x91\x36\xaa\xe7\xd5\x22\x7d\x9a\xe5\xad\x4b\x7e\x49\x59\x47\xd0\x9d\x9b\x44\x6f\x90\x8c\xe2\xed\x80\x94\x0c\xc7\xd1\x84\x50\xe6\x21\xf6\x62\x69\x0d\x6e\x18\x59\x13\xe7\x71\x6e\x75\xbc\x57\xca\x4e\x60\xb2\x04\x2e\xc3\x02\x31\x0c\x75\x5a\x39\x5f\x12\x01\x6f\xd2\x14\x9c\x54\xd5\x03\xcc\x0d\x84\x02\xec\x43\xa6\x13\xe7\xf3\x5d\x10\xb8\x4c\x00\x5f\x02\xd7\x87\x11\x57\xc1\x0a\x48\xc0\xf9\xbb\x57\xba\xd2\x51\x80\x88\xc8\xf6\x9d\x63\xc9\x37\x5d\x63\x3c\x3e\x92\x50\xfd\x75\x04\x14\x92\x65\x02\x76\x4a\x7d\x9f\x5e\x63\x32\x03\x97\x57\x46\xf9\x01\x7e\xa9\x77\x79\x3e\xca\xb2\x3b\xbe\xb7\x17\xa4\x32\x7e\xb7\x95\x9c\x32\x7e\xce\x97\x0e\xc8\xfd\xa0\x12\x05\xc6\x46\x71\xd7\xef\x8d\xa8\xab\xf1\xe5\x9c\xa1\xa9\xf1\x31\xd7\xc1\x7e\x90\xf1\x7d\xb9\x7a\xdb\xf7\xe6\x51\xa7\xfc\x48\xd9\x0c\x12\xcc\x93\x5a\x7d\xe6\x2f\xd2\xa2\x31\x3e\xaf\x2c\x18\xf7\x7d\x7c\x74\x63\x7c\xa1\x33\xb3\x8d\x2f\xb2\x12\x4e\xc6\x97\x71\x39\xa5\x8c\xdd\x46\x7d\xb2\x2d\x63\x7b\x94\x9a\x2b\x6f\x8d\x70\x73\x6a\xc5\x1c\x61\xa6\xe8\xdb\x02\x52\x48\xf2\x73\xac\x45\xca\x98\xd3\xcb\xcb\x4b\xfe\x39\x9b\x23\x15\x04\x83\xdc\x35\x7f\xcf\x1a\x5f\xac\x8f\x04\x18\x43\xe2\x8d\xd3\xe8\xbb\xa4\xfb\x2e\x78\x6d\x19\x52\x51\x8d\xe7\x89\x16\x6d\x73\x8d\x91\xb6\x48\x22\x7a\xde\x96\x34\x04\xf1\xd4\x28\x02\x21\x6d\x44\xa9\xff\x55\x61\x88\x6c\xea\xf4\x91\xa3\x74\x55\xf4\x5e\x60\x50\x28\x11\xea\xa6\x9a\x25\xf4\xa9\x97\x37\x66\xcb\xda\xa6\xa0\x4c\x80\xa1\x70\x12\xea\x5a\x15\x3a\x52\x2b\xd1\x18\xc0\x5d\xf5\x20\x17\x4b\x69\x73\xca\x6d\x5e\x6b\x6b\x04\x99\x3b\xb7\xeb\xb8\x4c\xc5\xa9\x46\x99\x4a\x33\x64\xa2\x5e\xb7\xad\xd0\x69\xaa\x5a\x43\x5e\xa1\x65\x63\xe6\x14\x1b\x38\x90\xb2\x92\x38\x1f\x3c\x39\x11\xd6\xd8\xab\xd9\xb9\xcc\xab\x97\xcb\x2d\x70\x29\x19\x27\xff\xab\x56\xb1\xfc\x87\x5e\x9b\x97\xba\x34\xc5\xa5\x5e\x98\x97\x19\x6c\xe9\xcd\x42\x06\x05\x65\x7a\xc2\x2f\xff\xf5\x6f\xd9\xeb\x87\x4b\x25\x32\x97\xaf\x4e\x7e\x39\xbe\xcc\x54\x6c\xd2\xeb\x13\xc5\x24\x6e\x7f\x70\x7a\x74\xa9\x61\xbf\x39\xbb\xec\x82\x9f\xe8\xb5\x74\x0c\xb6\xc0\x92\x46\x4a\x0d\x4b\x2a\x61\x62\x25\x49\x7a\xfb\x4e\xdc\x5d\x95\x49\x88\xa9\x51\x73\x6f\xf0\xf8\x38\x15\x26\xdb\x52\x2c\xfb\x26\xf1\x43\xb5\x4a\xac\x2e\x83\x65\x47\x29\x76\x8d\x97\x71\x8a\xae\x52\x6e\x9b\x2e\xc6\xfc\x4a\xfc\x01\x24\x50\x75\x8d\x8f\x1c\xe3\xc1\x0f\x00\x5e\x73\xb3\xf3\xef\x61\xe7\x8f\xe6\xa8\x43\x3d\x86\x3a\x4d\x57\xd5\x48\xe2\x87\x33\x2e\x83\xe5\x2d\xd1\xf5\xf1\x15\x02\xc1\xf2\xbf\x06\x3b\xf7\xa2\x2f\x94\x36\x2c\x3b\x89\xdc\xd0\x23\x50\xa4\xa7\x8e\xaa\x94\x61\x88\x58\x80\x39\x57\x67\x7f\x14\x70\xa4\x1f\x68\x62\x71\x75\x7b\x63\xea\x4f\xa9\x40\xdd\x04\x41\xbd\x9d\x67\x95\xd0\xa5\x18\xc7\x15\xad\x55\x8a\x41\xd2\xbb\x5a\x2d\xc5\xe6\x98\x12\xb3\x0a\x65\x63\x57\x2c\x16\xeb\x29\xa7\x37\x40\x51\x9d\x35\x10\x91\xd6\x6d\x95\x56\xf2\xb8\x80\x4a\x7f\x4a\x70\x8a\x5f\x17\x30\x61\x4a\xb7\x5b\x7d\x1b\x7f\xa9\x3f\xbc\x8c\x1d\x9c\x9f\x3f\x24\x85\x91\xf4\x80\x73\x21\xc2\x67\x45\x4a\xdf\x9f\xe7\xae\x55\x24\xe0\x0b\x31\x9c\xb8\x3c\x0d\x68\xa5\x65\x44\xb3\xb8\x62\xa1\x5e\x12\x68\x19\x94\x27\x13\xd2\x8a\xcf\x5d\x61\x88\x45\x5a\x2d\xec\xf8\xfd\x5a\x43\xa3\xa8\x73\x8d\x36\x35\xf4\x4d\xe8\x63\x17\x8b\x73\xfc\x05\xdd\x33\xe5\x72\xd0\xb1\x92\x93\xec\x27\x55\x5a\x46\xdd\x46\x23\x1e\x64\x5e\xf7\xa6\x5f\xae\x8f\x55\x8f\x96\x0e\xfb\xe2\xf3\x8f\xbb\x67\xef\xb6\x7f\xfe\xe5\x64\xff\x9d\xf3\xe6\x22\xf8\xf4\xee\xa5\xb7\x4d\xdd\x97\x67\xb3\x6c\xac\x38\x98\x5c\xc0\x60\x65\x21\xb2\x5e\x23\xe0\xf1\x9d\x3c\xd0\x52\x15\x49\x9b\x72\x26\xad\x6e\x55\x8c\x8e\x55\xb3\x5a\x07\xde\x40\x4b\x9a\xde\x71\xd1\x4a\x3d\xad\x35\xd3\x9d\xfd\x64\xaf\x33\x6b\xb6\xed\xf4\x31\x5f\xee\xb2\xcf\xdb\x9f\xae\xf0\xfe\x67\x87\x8a\xe0\xd3\xe7\xa9\x24\x77\xca\x66\x5d\x18\x86\xbc\x1b\x5c\x75\x26\x42\xcc\x9c\x4f\xa4\xbf\xe7\xcc\xc3\xee\xcd\x4e\xb4\xdf\xe5\xfd\xae\x87\x16\x7c\x8e\xa7\xa2\x4b\x99\xc1\x18\x6b\x6d\x5a\xd0\x92\x4b\x90\x8f\x7a\x3d\xf5\x73\x47\xff\xd4\x09\xae\x3a\x28\xfe\x9f\xdb\xe9\x74\xfe\xfc\xcb\xf7\xfe\xec\xfc\xd5\x21\x9d\x45\xd8\xe9\x4c\x7c\x31\xeb\xb2\xb9\x62\x68\xd7\xa5\x41\xcb\x48\x74\x37\xd2\x36\x40\x6b\xe0\x0c\x9c\x4e\xdf\xe9\x38\x3b\x17\xfd\xc1\x68\xa7\x3f\x1a\x0c\xbb\xce\xce\x76\x7f\x38\xf8\x4f\x86\x96\x51\x5b\xb5\xd4\x63\x77\xb4\xbd\xdb\xdd\xde\x1d\x0c\x9c\x7d\xa3\x47\x52\x04\x15\xb4\x06\xdd\xdd\xae\x93\xfd\x90\xcf\xba\x03\x89\x2c\x67\x3c\x37\xea\x83\x66\x84\xbb\x94\x70\xea\xa3\x2e\x43\xde\x1c\x0a\x49\x50\xcf\x78\x83\xa0\x13\x4f\x08\xef\x71\xc1\x10\x0c\x78\x26\x8c\x95\xb3\xd3\xf3\x20\x9f\x4f\x28\x64\xc6\xcb\x33\x95\x71\xd6\xbc\xc0\x25\xe5\x48\xc1\x4d\xdf\x20\xab\xb2\x12\x07\x68\x0d\x5e\x1b\x42\x55\x5d\xb2\xa3\xd0\xd0\x5e\xf4\x02\xf4\x1d\x23\xd2\x94\xaf\xd3\x50\xfa\xcd\x5e\x30\x01\xb4\xde\xf6\x87\x47\xad\x5c\xcb\xba\x12\x06\x29\x58\x53\xcf\xbc\x54\xb5\x71\x0f\xe3\x4c\x9d\x73\xb5\xa0\x1f\x97\xee\xd1\xd5\x7d\x9f\x94\xcf\xd7\x50\x3e\x5f\x55\xf7\xe4\xcb\x36\x83\x16\x8c\xdf\x27\x30\x6c\xd1\x24\x23\x3c\xcd\x34\x2b\x0a\xc3\x2a\x35\xd5\x40\x55\x34\xaa\x7e\x56\xb3\x56\x3c\xb4\x40\x3e\x0d\x8d\x30\x4b\xee\x06\x18\xb8\x60\xd8\x78\x6b\xa3\x94\xaa\xfb\xbb\xf1\x6f\x00\xfe\xcc\x7d\xd2\x03\xdc\xf4\xb7\x0a\xdf\xe6\x07\x68\xf5\x5b\xc5\x06\x75\x6a\xee\xcf\x96\xba\xa5\xde\x1a\x81\xed\xfe\x70\x67\x6f\xb0\xef\xfc\x55\xec\x5e\xa3\xfb\x1a\xf4\xae\x50\x88\xdb\x8e\xe3\x14\x9b\x56\x55\xe5\x31\x86\xe9\x3b\x7b\xdb\x7b\xc3\xfe\xbe\x23\xff\x4a\x63\x59\x34\x6b\x93\x41\xf2\x1a\xd6\xd6\x61\x95\xa2\x2d\xf6\x29\xd4\x8e\x00\xa5\x39\x33\xea\x3c\x80\x16\x9b\x53\x0e\xaf\x4a\x03\x97\x4b\x33\x94\xe1\x94\xea\xc3\x80\x3f\x81\xc1\xac\xe1\xfe\xce\xde\x6e\x99\x4d\xb6\x32\x2c\x65\xd8\x96\xd2\x29\xe5\x46\x96\xc2\x26\x05\x21\x96\x7f\x69\xc9\x91\xf2\x2f\xba\x04\x49\xf1\x87\x3f\xca\x84\xe6\x2b\x43\x80\xb6\x2e\xef\x90\xcf\x3c\xcb\x91\xaa\x0f\x1d\x6c\xd5\x02\x2a\xd6\xaf\xad\xe4\x41\x2b\xbf\x13\xda\x8c\xfe\xdc\x77\x85\xc5\x78\x10\xc0\x2f\x94\x80\x0f\x68\x92\x24\x9e\x1a\x6d\xcb\xda\xa7\x7c\xf5\xbd\x01\xaa\xe6\xbd\xf3\x14\x51\xcb\xce\x56\x40\xed\xfd\x39\x38\x86\x5c\x6c\x01\xe3\x1a\x69\x1d\x6e\xa0\xee\xb2\x26\xf8\x3d\x75\x70\x5a\x7f\x64\xfb\x46\x72\x7f\x31\x27\x12\x25\xad\x96\xd7\xda\x19\x20\xeb\x4a\x2c\x5e\xd0\xd0\xa7\xde\x85\x96\xc5\xcb\x10\xe0\xf7\xd6\x4d\xbf\xb5\x05\x5a\x37\x03\x03\x3d\x60\x3c\xbb\xaf\xbf\xad\xbb\x0d\x53\x31\x13\x31\x37\x83\x65\x07\x86\x61\x87\x1b\x2c\xcc\x67\x64\x16\xd3\xa5\xa7\x94\x81\x60\x09\x60\x18\xda\x2e\x4a\x35\x31\xca\x4a\xa6\x57\x1e\x44\x23\x1b\x2c\xb1\x4b\x74\x17\xde\xeb\x97\xa4\xfb\xce\x84\x81\xdc\x25\x02\xd0\x3a\x3f\xe8\xf4\x07\xf2\x7f\xa5\x9f\xe3\x8b\x77\x12\xa4\xfc\x47\xd9\x26\x93\xee\x75\x27\xe2\xe6\xaa\x34\x32\xe8\x6b\x7f\x4f\x0c\x91\x7e\xc7\x19\x76\x9c\xbd\x8b\xfe\xee\x68\x30\x1c\x39\xfd\xff\xe7\xec\x8c\xb6\x63\x4f\xa7\x9c\xd8\xb9\x62\xce\x21\x1f\x73\x4e\x0d\xeb\x2f\x49\x9a\xcd\xec\x2f\x7d\x73\x5c\x2c\xbb\x30\xc4\x86\x23\x94\xf5\x51\xf9\xad\x15\xed\x69\x88\x88\x36\xf9\x94\xef\x14\x89\x79\x8f\x21\xe8\x07\xbc\xc7\xe6\x14\xf2\x5e\xc8\xa8\xa0\x2e\xf5\x7b\xb2\x21\xf6\x3a\xf1\x36\xd5\x73\x11\x13\xdc\xf4\x49\x92\xa4\xdb\x0d\x8f\xa3\x00\x1b\xee\xa3\x99\x7d\x7b\xbb\xa1\x74\x26\xad\x65\x41\xbc\x58\x9e\x78\xff\xac\x45\xf1\xb5\x84\xbe\xee\x76\xc1\x5d\x58\x5d\xce\xde\x7f\x62\x79\x2e\x83\xb0\x94\x3e\x5d\xc1\xed\x72\x16\xe0\x58\xed\xe1\xe3\xf1\x08\x64\x1e\x2a\x62\xe3\x09\xa3\x57\x88\x09\x1a\x62\x37\xce\x06\x19\x2b\x53\x50\x1a\x7b\xf9\x37\xfe\x80\x0a\x48\x07\x5f\xf0\x18\xd3\x71\x7c\x5e\x1d\x03\x4b\xc2\x32\x46\x5b\x05\x71\x04\xc6\x89\x21\xca\xc6\x74\x3a\xe5\x48\x70\x73\xe5\x17\xd2\x8a\x3b\x46\x72\x21\xe8\xef\xf6\xfb\xbb\x7b\xce\x40\x1a\xfd\x4e\x6e\xab\x8e\xa3\xec\xfb\xc3\xfe\xce\x70\x55\xef\xdd\xca\xde\x3b\xfb\xfb\xfb\xab\x7a\x3f\xaf\xec\xbd\xb7\x3b\x18\x98\xf3\x62\x49\x7f\x7d\xbc\x33\xb3\x72\x16\x4a\x33\x30\x74\x9c\x23\xf5\x14\xdb\x2a\x1b\x54\x6b\x01\x67\xbb\xa4\x07\x8c\xd7\xf1\x40\xfd\xb2\x57\xc7\x3d\xbc\x97\x03\xa2\xde\x30\x04\xad\x5f\x0e\x5e\xfe\x72\x70\xde\x79\xfd\xe3\xeb\x8b\x4e\xee\xf7\x34\x42\x70\xbe\x24\xee\x9c\x51\x42\x23\x0e\xa0\x9b\xa4\x47\xaa\xfa\x80\x89\x99\xaa\x4f\xd8\xa0\xf4\x74\x7e\x50\x85\x43\xd2\x53\x31\x63\xd1\x9b\xef\x1a\x82\x56\x1f\x7f\x38\xc1\xc1\xe7\x1f\x5d\x76\x14\xbd\xda\xed\xc3\xf7\x37\x27\xff\xf9\xfc\xe2\xe2\xf3\xe9\x59\xac\x79\x86\x8e\x93\x04\xd0\x9e\xf8\x63\xe7\xcf\x89\x3e\xd1\x6b\xb0\x82\x14\xc8\xc1\x06\x58\x34\xa8\xe7\xd0\xc0\xc6\x20\x1d\x0d\x55\x4f\xbe\x41\xc6\x51\xee\xc0\x7a\x04\xde\x93\xa4\xee\xa7\xba\x31\x9d\x0b\x41\xe9\x5c\xcf\x52\x88\x70\x04\xf2\x63\x8e\xc0\xaa\x21\xb2\x34\x64\x97\xfa\x51\x40\xf4\x11\xaf\x04\x1e\x9f\x48\x82\x36\xf6\xda\xdd\x2c\x2c\x65\xb6\x53\xc7\xf4\xa3\x38\x9a\xb9\x15\xa7\xc9\xe4\x03\xa2\xc9\xb7\xda\x6b\xee\x82\x77\xfa\xd0\x55\xcf\xcf\x08\x60\x0f\xfc\x00\xfa\x26\x73\x8a\xb3\xed\x7f\x38\xfa\x31\x5a\x4e\x4e\xd8\x31\xb9\x61\x07\x28\xd8\x1b\x0c\x67\x9f\xaf\xae\xf0\xd1\x22\x9d\x6d\x83\x8a\x66\xe6\xb3\x82\xbc\xed\xdc\x7d\xd2\x4d\x18\x96\x49\x37\x7f\x4e\x27\x3d\x41\x31\xbf\x10\x2a\x19\xe0\x3e\xdf\x77\xe6\x62\x31\x5b\xb8\xe4\xf9\xd5\x74\xa7\xef\x39\xc4\xb1\x51\xde\xc4\x69\xd7\x74\x97\xed\xa6\xf5\xe9\xee\xd7\xd3\xdd\xb7\xd0\xad\x11\xdc\x04\xd5\x2b\x5e\x54\xb7\xae\xf0\x0d\x10\x3d\xa8\x27\x7a\x60\x23\x3a\xd0\xa8\xaa\xbc\xf0\x4c\xb7\x25\x2f\x7a\xe0\x6a\x06\x34\x90\xfb\xe2\x93\xdf\x36\xba\xf7\xee\x4e\xf6\x5e\x2d\xd5\x7b\x16\xa2\x2f\xb2\xe2\x29\xc8\x03\x0c\x71\x1a\x31\x17\x01\x8f\x22\x95\x08\x82\x6e\xd2\x7b\x45\x43\x67\xa8\xb6\xfa\x15\xc7\xe2\xdf\x8e\x94\xf8\xec\x2a\xa6\x40\x25\xce\x60\xef\x87\x76\x1f\xff\xb2\xed\x45\xbf\x7e\x3c\x59\x2c\x76\x3e\x2e\x5e\xf9\xcb\x2f\xfd\xe0\xc7\xb3\xed\x9f\x97\x9f\x4f\xdb\xd9\xc3\xf1\x35\x5b\xd8\xc7\x37\x7b\xb3\xc1\x6c\xf7\xa7\x0b\xef\xfd\x2f\xef\xe1\xe0\x8a\xff\xb4\x3f\xb8\x7a\x77\xb4\xbd\x4c\xf8\x52\x7c\xf1\xde\xba\xb5\x6f\x40\xa8\xfb\xf5\x42\xdd\xb7\x09\x75\xb6\x31\x2d\x10\xc3\xd3\x25\xf8\xf9\xc3\x85\xf6\xf1\x47\xe0\x2c\xb9\xc2\x21\x3d\x6b\xca\xf0\x97\xf8\x4a\xbe\xfc\xb5\x19\x67\xb6\xdf\xcf\x8f\xe7\xd7\xc1\x6f\x2f\xc2\x0f\x6f\xa7\x27\x03\xff\x14\x5d\x85\xde\xf0\x3f\x47\x09\x67\xb6\x1b\x70\x66\x78\x77\xc6\x0c\x6b\xf9\x32\xb4\xb1\x85\x23\x06\xda\x53\x4a\x3b\x13\xc8\xda\x89\xa9\x93\xf0\x41\x6f\xc2\xd0\x75\xf5\xf3\x09\x69\x71\x80\x6e\x8d\x0a\xf8\xb8\xfd\x1e\x1f\xcf\xbf\x10\x83\x17\x9f\x42\x6f\xf8\xf1\x30\xe5\xc5\x6b\x78\x13\xe7\xcd\x25\x27\x45\x67\x3a\x2c\xd9\x80\x49\x3b\x77\x67\xd2\x4e\x2d\x93\x76\x56\x33\x69\x0e\xd3\xe2\x33\x46\x26\x5f\x56\x70\x7d\x17\xc0\x38\x2d\x50\x9f\xd1\x4b\x5d\x1a\x11\x2c\xf8\x4a\xb6\x5d\xdd\x48\xb6\xfd\xfa\x16\x9d\x0c\xe8\x29\xfa\xe4\x6d\xff\xf6\x22\xe5\xda\x05\x62\x01\x3f\xa5\xe2\x20\x7e\x30\xba\xc9\x5a\x1b\x6c\x60\xad\x0d\xea\xd7\xda\xc0\xba\x6b\xc6\xeb\x49\x48\x9c\xc1\x1c\x2e\x50\xfc\x00\x18\x22\x20\x79\xf0\xba\x92\x17\x57\xbf\x1d\x7e\xf9\xa0\x58\x90\xf0\xe2\xd5\xe2\xe5\xf3\x4f\xaf\xdf\x7d\x4c\x78\xf1\xfc\x14\x06\xe8\x90\x92\xa9\x8f\xdd\x26\x41\xdf\xed\xdd\x0d\x58\x0f\xbb\xf5\xd6\xc3\x6e\x95\x22\x4e\xcb\x7e\x2b\x23\x15\x73\x00\x7d\x95\x0a\xa4\xca\x90\x57\x32\x61\xf7\xea\xa3\x23\x05\xe2\x4b\xc6\x8d\x8f\x68\xee\x6d\x1f\xc7\x2a\x65\xc7\x71\x1a\x10\xfe\xfc\xee\x74\x3f\xaf\x25\xfb\xb9\x55\xd3\x66\x95\xe6\x51\x7e\xb8\x92\xe2\x44\xc7\xc9\xdc\xee\x7e\x9c\xcd\xa7\xaf\x9f\xcf\x7e\x3c\xe3\x3f\x2d\x8e\x3f\xa4\x54\x36\xde\x6a\xbf\x09\xad\x3a\xf3\x32\x79\x84\x1d\x48\x97\x90\x23\x31\x02\x6f\x0e\x5f\x77\x8e\x7f\xeb\x3c\x1f\xc5\xa7\xed\xfa\xd5\x74\x49\x49\xd6\x06\xdd\x88\x4e\x2e\xc3\xe1\xc6\xd9\xf6\x89\xe7\x07\x9f\x9d\xcf\x53\x77\x8f\x63\x01\x77\xb8\xff\x69\xb1\x6f\xc6\x2e\xa4\x93\x93\x08\x94\x24\xbb\x3f\xdb\xf1\xf6\xf7\x3f\x3b\x3e\x73\xbd\xc5\x70\xb6\x07\xfd\xc9\x1e\xf7\xa7\x33\xf2\x69\xdb\x9b\x4f\xf8\xa7\xff\xfa\x3f\xff\x7d\xfc\xdb\xc5\xd9\x01\xf8\x5e\xd3\xd8\x55\x4c\xf9\x21\x2b\xcd\x6a\xc0\xc6\x1c\xb4\x87\xce\xb0\xbd\xa5\xa8\x57\x1f\x0f\x5f\xbd\x3f\xbf\x38\x3e\x4b\x36\x10\x67\xd8\x56\xa9\x9c\xe9\x3c\x9a\x35\x5e\x65\xfb\xfe\x6c\x87\xb2\x1d\x67\x81\x23\x67\x8f\x22\x39\x4b\x73\x76\xe5\x0e\x76\xbd\xd9\x54\x7c\xea\x43\xb7\x6d\x86\x7d\x92\xda\x90\xed\x55\x44\x18\xe6\xc9\xff\xd4\xed\xc2\x17\xfc\x03\x5b\xee\x12\xfe\x79\x32\xe0\xa7\xc1\xcb\x4f\x3b\x93\xdf\xc2\xa3\xbd\x43\xd8\x7a\xf6\xbf\x01\x00\x00\xff\xff\x0e\x55\x25\x2a\xc4\xf9\x00\x00") func kasFleetManagerYamlBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func kasFleetManagerYaml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "kas-fleet-manager.yaml", size: 63432, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "kas-fleet-manager.yaml", size: 63940, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/internal/kafka/internal/migrations/202205061532_add_admin_api_server_url.go b/internal/kafka/internal/migrations/202205061532_add_admin_api_server_url.go new file mode 100644 index 000000000..9700d468c --- /dev/null +++ b/internal/kafka/internal/migrations/202205061532_add_admin_api_server_url.go @@ -0,0 +1,27 @@ +package migrations + +import ( + "github.com/go-gormigrate/gormigrate/v2" + "gorm.io/gorm" +) + +// Migrations should NEVER use types from other packages. Types can change +// and then migrations run on a _new_ database will fail or behave unexpectedly. +// Instead of importing types, always re-create the type in the migration, as +// is done here, even though the same type is defined in pkg/api + +func addAdminApiServerURL() *gormigrate.Migration { + type KafkaRequest struct { + AdminApiServerURL string `json:"admin_api_server_url" gorm:"default:''"` + } + + return &gormigrate.Migration{ + ID: "202205061532", + Migrate: func(tx *gorm.DB) error { + return tx.AutoMigrate(&KafkaRequest{}) + }, + Rollback: func(tx *gorm.DB) error { + return tx.Migrator().DropColumn(&KafkaRequest{}, "admin_api_server_url") + }, + } +} diff --git a/internal/kafka/internal/migrations/migrations.go b/internal/kafka/internal/migrations/migrations.go index 92feba899..b96a10a2f 100644 --- a/internal/kafka/internal/migrations/migrations.go +++ b/internal/kafka/internal/migrations/migrations.go @@ -77,6 +77,7 @@ var migrations = []*gormigrate.Migration{ addClusterServiceClientSecret(), addKafkaSizeId(), dropKafkaSsoClientIdAndSecret(), + addAdminApiServerURL(), } func New(dbConfig *db.DatabaseConfig) (*db.Migration, func(), error) { diff --git a/internal/kafka/internal/presenters/data_plane_kafka_status.go b/internal/kafka/internal/presenters/data_plane_kafka_status.go index 77b282766..3e5f8d314 100644 --- a/internal/kafka/internal/presenters/data_plane_kafka_status.go +++ b/internal/kafka/internal/presenters/data_plane_kafka_status.go @@ -34,6 +34,7 @@ func ConvertDataPlaneKafkaStatus(status map[string]private.DataPlaneKafkaStatus) KafkaVersion: v.Versions.Kafka, StrimziVersion: v.Versions.Strimzi, KafkaIBPVersion: v.Versions.KafkaIbp, + AdminServerURI: v.AdminServerURI, }) } diff --git a/internal/kafka/internal/presenters/kafka.go b/internal/kafka/internal/presenters/kafka.go index 996cc5fd3..58d91ea8e 100644 --- a/internal/kafka/internal/presenters/kafka.go +++ b/internal/kafka/internal/presenters/kafka.go @@ -75,6 +75,7 @@ func PresentKafkaRequest(kafkaRequest *dbapi.KafkaRequest, config *config.KafkaC MultiAz: kafkaRequest.MultiAZ, Owner: kafkaRequest.Owner, BootstrapServerHost: setBootstrapServerHost(kafkaRequest.BootstrapServerHost), + AdminApiServerUrl: kafkaRequest.AdminApiServerURL, Status: kafkaRequest.Status, CreatedAt: kafkaRequest.CreatedAt, UpdatedAt: kafkaRequest.UpdatedAt, diff --git a/internal/kafka/internal/services/data_plane_kafka.go b/internal/kafka/internal/services/data_plane_kafka.go index 9a6dc6b9f..90b2d1462 100644 --- a/internal/kafka/internal/services/data_plane_kafka.go +++ b/internal/kafka/internal/services/data_plane_kafka.go @@ -76,6 +76,7 @@ func (d *dataPlaneKafkaService) UpdateDataPlaneKafkaService(ctx context.Context, // Store the routes (and create them) when Kafka is ready. By the time it is ready, the routes should definitely be there. e = d.persistKafkaRoutes(kafka, ks, cluster) if e == nil { + kafka.AdminApiServerURL = ks.AdminServerURI e = d.setKafkaClusterReady(kafka) } case statusInstalling: @@ -121,10 +122,11 @@ func (d *dataPlaneKafkaService) setKafkaClusterReady(kafka *dbapi.KafkaRequest) return err } - err = d.kafkaService.Updates(kafka, map[string]interface{}{"failed_reason": "", "status": constants2.KafkaRequestStatusReady.String()}) + err = d.kafkaService.Updates(kafka, map[string]interface{}{"admin_api_server_url": kafka.AdminApiServerURL, "failed_reason": "", "status": constants2.KafkaRequestStatusReady.String()}) if err != nil { - return serviceError.NewWithCause(err.Code, err, "failed to update status %s for kafka cluster %s", constants2.KafkaRequestStatusReady, kafka.ID) + return serviceError.NewWithCause(err.Code, err, "failed to update kafka cluster %s", kafka.ID) } + if shouldSendMetric { metrics.UpdateKafkaRequestsStatusSinceCreatedMetric(constants2.KafkaRequestStatusReady, kafka.ID, kafka.ClusterID, time.Since(kafka.CreatedAt)) metrics.UpdateKafkaCreationDurationMetric(metrics.JobTypeKafkaCreate, time.Since(kafka.CreatedAt)) diff --git a/internal/kafka/internal/services/data_plane_kafka_test.go b/internal/kafka/internal/services/data_plane_kafka_test.go index bc46a3b82..0ca39b84a 100644 --- a/internal/kafka/internal/services/data_plane_kafka_test.go +++ b/internal/kafka/internal/services/data_plane_kafka_test.go @@ -10,40 +10,48 @@ import ( constants2 "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/internal/kafka/constants" "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/internal/kafka/internal/api/dbapi" "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/internal/kafka/internal/config" - "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/api" "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/errors" - + serviceError "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/errors" . "github.com/onsi/gomega" ) -func TestDataPlaneKafkaService_UpdateDataPlaneKafkaService(t *testing.T) { +func Test_dataPlaneKafkaService_UpdateDataPlaneKafkaService(t *testing.T) { testErrorCondMessage := "test failed message" bootstrapServer := "test.kafka.example.com" ingress := fmt.Sprintf("elb.%s", bootstrapServer) - invalidIngress := "elb.test1.kafka.example.com" - tests := []struct { - name string + type fields struct { clusterService ClusterService kafkaService func(c map[string]int) KafkaService - clusterId string - status []*dbapi.DataPlaneKafkaStatus - wantErr bool + } + type args struct { + clusterId string + status []*dbapi.DataPlaneKafkaStatus + } + tests := []struct { + name string + fields fields + args args expectCounters map[string]int + want *serviceError.ServiceError }{ { name: "should return error when cluster id is not valid", - clusterService: &ClusterServiceMock{ - FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { - return nil, nil + fields: fields{ + clusterService: &ClusterServiceMock{ + FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { + return nil, nil + }, + }, + kafkaService: func(c map[string]int) KafkaService { + return &KafkaServiceMock{} }, }, - kafkaService: func(c map[string]int) KafkaService { - return &KafkaServiceMock{} + args: args{ + clusterId: "test-cluster-id", + status: []*dbapi.DataPlaneKafkaStatus{}, }, - clusterId: "test-cluster-id", - status: []*dbapi.DataPlaneKafkaStatus{}, - wantErr: true, + want: errors.BadRequest("Cluster id test-cluster-id not found"), expectCounters: map[string]int{ "ready": 0, "failed": 0, @@ -53,108 +61,112 @@ func TestDataPlaneKafkaService_UpdateDataPlaneKafkaService(t *testing.T) { }, { name: "should success", - clusterService: &ClusterServiceMock{ - FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { - return &api.Cluster{}, nil - }, - }, - kafkaService: func(c map[string]int) KafkaService { - return &KafkaServiceMock{ - GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { - return &dbapi.KafkaRequest{ - ClusterID: "test-cluster-id", - Status: constants2.KafkaRequestStatusProvisioning.String(), - Routes: []byte("[{'domain':'test.example.com', 'router':'test.example.com'}]"), - RoutesCreated: true, - }, nil + fields: fields{ + clusterService: &ClusterServiceMock{ + FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { + return &api.Cluster{}, nil }, - UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { - if kafkaRequest.Status == string(constants2.KafkaRequestStatusFailed) { - if !strings.Contains(kafkaRequest.FailedReason, testErrorCondMessage) { - return errors.GeneralError("Test failure error. Expected FailedReason is empty") + }, + kafkaService: func(c map[string]int) KafkaService { + return &KafkaServiceMock{ + GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { + return &dbapi.KafkaRequest{ + ClusterID: "test-cluster-id", + Status: constants2.KafkaRequestStatusProvisioning.String(), + Routes: []byte("[{'domain':'test.example.com', 'router':'test.example.com'}]"), + RoutesCreated: true, + }, nil + }, + UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { + if kafkaRequest.Status == string(constants2.KafkaRequestStatusFailed) { + if !strings.Contains(kafkaRequest.FailedReason, testErrorCondMessage) { + return errors.GeneralError("Test failure error. Expected FailedReason is empty") + } + c["failed"]++ + } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusReady) { + c["ready"]++ + } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusDeleting) { + c["deleting"]++ + } else { + c["rejected"]++ } - c["failed"]++ - } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusReady) { - c["ready"]++ - } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusDeleting) { - c["deleting"]++ - } else { - c["rejected"]++ - } - return nil - }, - UpdatesFunc: func(kafkaRequest *dbapi.KafkaRequest, values map[string]interface{}) *errors.ServiceError { - v, ok := values["status"] - if ok { - statusValue := v.(string) - c[statusValue]++ - } - return nil - }, - UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { - if status == constants2.KafkaRequestStatusReady { - c["ready"]++ - } else if status == constants2.KafkaRequestStatusDeleting { - c["deleting"]++ - } else if status == constants2.KafkaRequestStatusFailed { - c["failed"]++ - } - return true, nil - }, - DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { - return nil - }, - } + return nil + }, + UpdatesFunc: func(kafkaRequest *dbapi.KafkaRequest, values map[string]interface{}) *errors.ServiceError { + v, ok := values["status"] + if ok { + statusValue := v.(string) + c[statusValue]++ + } + return nil + }, + UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { + if status == constants2.KafkaRequestStatusReady { + c["ready"]++ + } else if status == constants2.KafkaRequestStatusDeleting { + c["deleting"]++ + } else if status == constants2.KafkaRequestStatusFailed { + c["failed"]++ + } + return true, nil + }, + DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { + return nil + }, + } + }, }, - clusterId: "test-cluster-id", - status: []*dbapi.DataPlaneKafkaStatus{ - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "True", + args: args{ + clusterId: "test-cluster-id", + status: []*dbapi.DataPlaneKafkaStatus{ + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "True", + }, }, }, - }, - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "False", - Reason: "Installing", + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "False", + Reason: "Installing", + }, }, }, - }, - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "False", - Reason: "Error", - Message: testErrorCondMessage, + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "False", + Reason: "Error", + Message: testErrorCondMessage, + }, }, }, - }, - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "False", - Reason: "Deleted", + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "False", + Reason: "Deleted", + }, }, }, - }, - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "False", - Reason: "Rejected", + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "False", + Reason: "Rejected", + }, }, }, }, }, - wantErr: false, + want: nil, expectCounters: map[string]int{ "ready": 1, "failed": 1, @@ -164,224 +176,151 @@ func TestDataPlaneKafkaService_UpdateDataPlaneKafkaService(t *testing.T) { }, { name: "should use routes in the requests if they are present", - clusterService: &ClusterServiceMock{ - FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { - return &api.Cluster{}, nil - }, - GetClusterDNSFunc: func(clusterID string) (string, *errors.ServiceError) { - return bootstrapServer, nil - }, - }, - kafkaService: func(c map[string]int) KafkaService { - routesCreated := false - expectedRoutes := []dbapi.DataPlaneKafkaRoute{ - { - Domain: bootstrapServer, - Router: ingress, - }, - { - Domain: fmt.Sprintf("admin-api-%s", bootstrapServer), - Router: ingress, - }, - { - Domain: fmt.Sprintf("broker-0-%s", bootstrapServer), - Router: ingress, - }, - } - return &KafkaServiceMock{ - GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { - return &dbapi.KafkaRequest{ - ClusterID: "test-cluster-id", - Status: constants2.KafkaRequestStatusProvisioning.String(), - BootstrapServerHost: bootstrapServer, - RoutesCreated: routesCreated, - }, nil - }, - UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { - routes, err := kafkaRequest.GetRoutes() - if err != nil || !reflect.DeepEqual(routes, expectedRoutes) { - c["rejected"]++ - } else { - routesCreated = true - } - if kafkaRequest.Status == string(constants2.KafkaRequestStatusReady) { - c["ready"]++ - } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusDeleting) { - c["deleting"]++ - } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusFailed) { - c["failed"]++ - } - return nil - }, - UpdatesFunc: func(kafkaRequest *dbapi.KafkaRequest, values map[string]interface{}) *errors.ServiceError { - v, ok := values["status"] - if ok { - statusValue := v.(string) - c[statusValue]++ - } - return nil + fields: fields{ + clusterService: &ClusterServiceMock{ + FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { + return &api.Cluster{}, nil }, - UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { - if status == constants2.KafkaRequestStatusReady { - c["ready"]++ - } else if status == constants2.KafkaRequestStatusDeleting { - c["deleting"]++ - } else if status == constants2.KafkaRequestStatusFailed { - c["failed"]++ - } - return true, nil - }, - DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { - return nil - }, - } - }, - clusterId: "test-cluster-id", - status: []*dbapi.DataPlaneKafkaStatus{ - // route not available yet, so Kafka will not update (rejected count +1) - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "False", - Reason: "Installing", - }, + GetClusterDNSFunc: func(clusterID string) (string, *errors.ServiceError) { + return bootstrapServer, nil }, }, - // routes available, this will set "RoutesCreated" to true but should not set status to Ready - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + kafkaService: func(c map[string]int) KafkaService { + routesCreated := false + expectedRoutes := []dbapi.DataPlaneKafkaRoute{ { - Type: "Ready", - Status: "False", - Reason: "Installing", - }, - }, - Routes: []dbapi.DataPlaneKafkaRouteRequest{ - { - Name: "bootstrap", - Prefix: "", + Domain: bootstrapServer, Router: ingress, }, { - Name: "admin-api", - Prefix: "admin-api", + Domain: fmt.Sprintf("admin-api-%s", bootstrapServer), Router: ingress, }, { - Name: "broker-0", - Prefix: "broker-0", + Domain: fmt.Sprintf("broker-0-%s", bootstrapServer), Router: ingress, }, - }, - }, - // This will then set the kafka instance to be ready - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "True", + } + return &KafkaServiceMock{ + GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { + return &dbapi.KafkaRequest{ + ClusterID: "test-cluster-id", + Status: constants2.KafkaRequestStatusProvisioning.String(), + BootstrapServerHost: bootstrapServer, + RoutesCreated: routesCreated, + }, nil }, - }, - Routes: []dbapi.DataPlaneKafkaRouteRequest{ - { - Name: "bootstrap", - Prefix: "", - Router: ingress, + UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { + routes, err := kafkaRequest.GetRoutes() + if err != nil || !reflect.DeepEqual(routes, expectedRoutes) { + c["rejected"]++ + } else { + routesCreated = true + } + if kafkaRequest.Status == string(constants2.KafkaRequestStatusReady) { + c["ready"]++ + } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusDeleting) { + c["deleting"]++ + } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusFailed) { + c["failed"]++ + } + return nil }, - { - Name: "admin-api", - Prefix: "admin-api", - Router: ingress, + UpdatesFunc: func(kafkaRequest *dbapi.KafkaRequest, values map[string]interface{}) *errors.ServiceError { + v, ok := values["status"] + if ok { + statusValue := v.(string) + c[statusValue]++ + } + return nil }, - { - Name: "broker-0", - Prefix: "broker-0", - Router: ingress, + UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { + if status == constants2.KafkaRequestStatusReady { + c["ready"]++ + } else if status == constants2.KafkaRequestStatusDeleting { + c["deleting"]++ + } else if status == constants2.KafkaRequestStatusFailed { + c["failed"]++ + } + return true, nil }, - }, - }, - }, - wantErr: false, - expectCounters: map[string]int{ - "ready": 1, - "failed": 0, - "deleting": 0, - "rejected": 0, - }, - }, - { - name: "return error if router is not valid", - clusterService: &ClusterServiceMock{ - FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { - return &api.Cluster{}, nil - }, - GetClusterDNSFunc: func(clusterID string) (string, *errors.ServiceError) { - return bootstrapServer, nil + DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { + return nil + }, + } }, }, - kafkaService: func(c map[string]int) KafkaService { - return &KafkaServiceMock{ - GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { - return &dbapi.KafkaRequest{ - ClusterID: "test-cluster-id", - Status: constants2.KafkaRequestStatusProvisioning.String(), - BootstrapServerHost: bootstrapServer, - RoutesCreated: false, - }, nil - }, - UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { - return nil - }, - UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { - return true, nil - }, - DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { - return nil - }, - } - }, - clusterId: "test-cluster-id", - status: []*dbapi.DataPlaneKafkaStatus{ - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "False", - Reason: "Installing", + args: args{ + clusterId: "test-cluster-id", + status: []*dbapi.DataPlaneKafkaStatus{ + // route not available yet, so Kafka will not update (rejected count +1) + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "False", + Reason: "Installing", + }, }, }, - }, - // This will set "RoutesCreated" to true - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "True", + // routes available, this will set "RoutesCreated" to true but should not set status to Ready + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "False", + Reason: "Installing", + }, + }, + Routes: []dbapi.DataPlaneKafkaRouteRequest{ + { + Name: "bootstrap", + Prefix: "", + Router: ingress, + }, + { + Name: "admin-api", + Prefix: "admin-api", + Router: ingress, + }, + { + Name: "broker-0", + Prefix: "broker-0", + Router: ingress, + }, }, }, - Routes: []dbapi.DataPlaneKafkaRouteRequest{ - { - Name: "bootstrap", - Prefix: "", - Router: invalidIngress, + // This will then set the kafka instance to be ready + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "True", + }, }, - { - Name: "admin-api", - Prefix: "admin-api", - Router: invalidIngress, - }, - { - Name: "broker-0", - Prefix: "broker-0", - Router: invalidIngress, + Routes: []dbapi.DataPlaneKafkaRouteRequest{ + { + Name: "bootstrap", + Prefix: "", + Router: ingress, + }, + { + Name: "admin-api", + Prefix: "admin-api", + Router: ingress, + }, + { + Name: "broker-0", + Prefix: "broker-0", + Router: ingress, + }, }, }, }, }, - wantErr: true, + want: nil, expectCounters: map[string]int{ - "ready": 0, + "ready": 1, "failed": 0, "deleting": 0, "rejected": 0, @@ -389,72 +328,76 @@ func TestDataPlaneKafkaService_UpdateDataPlaneKafkaService(t *testing.T) { }, { name: "success when updates kafka status to ready and removes failed reason", - clusterService: &ClusterServiceMock{ - FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { - return &api.Cluster{}, nil - }, - }, - kafkaService: func(c map[string]int) KafkaService { - return &KafkaServiceMock{ - GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { - return &dbapi.KafkaRequest{ - ClusterID: "test-cluster-id", - Status: constants2.KafkaRequestStatusProvisioning.String(), - Routes: []byte("[{'domain':'test.example.com', 'router':'test.example.com'}]"), - RoutesCreated: true, - FailedReason: testErrorCondMessage, - }, nil + fields: fields{ + clusterService: &ClusterServiceMock{ + FindClusterByIDFunc: func(clusterID string) (*api.Cluster, *errors.ServiceError) { + return &api.Cluster{}, nil }, - UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { - if kafkaRequest.Status == string(constants2.KafkaRequestStatusFailed) { - if !strings.Contains(kafkaRequest.FailedReason, testErrorCondMessage) { - return errors.GeneralError("Test failure error. Expected FailedReason is empty") + }, + kafkaService: func(c map[string]int) KafkaService { + return &KafkaServiceMock{ + GetByIdFunc: func(id string) (*dbapi.KafkaRequest, *errors.ServiceError) { + return &dbapi.KafkaRequest{ + ClusterID: "test-cluster-id", + Status: constants2.KafkaRequestStatusProvisioning.String(), + Routes: []byte("[{'domain':'test.example.com', 'router':'test.example.com'}]"), + RoutesCreated: true, + FailedReason: testErrorCondMessage, + }, nil + }, + UpdateFunc: func(kafkaRequest *dbapi.KafkaRequest) *errors.ServiceError { + if kafkaRequest.Status == string(constants2.KafkaRequestStatusFailed) { + if !strings.Contains(kafkaRequest.FailedReason, testErrorCondMessage) { + return errors.GeneralError("Test failure error. Expected FailedReason is empty") + } + c["failed"]++ + } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusReady) { + c["ready"]++ + } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusDeleting) { + c["deleting"]++ + } else { + c["rejected"]++ } - c["failed"]++ - } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusReady) { - c["ready"]++ - } else if kafkaRequest.Status == string(constants2.KafkaRequestStatusDeleting) { - c["deleting"]++ - } else { - c["rejected"]++ - } - return nil - }, - UpdatesFunc: func(kafkaRequest *dbapi.KafkaRequest, values map[string]interface{}) *errors.ServiceError { - v, ok := values["status"] - if ok { - statusValue := v.(string) - c[statusValue]++ - } - return nil - }, - UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { - if status == constants2.KafkaRequestStatusReady { - c["ready"]++ - } else if status == constants2.KafkaRequestStatusDeleting { - c["deleting"]++ - } else if status == constants2.KafkaRequestStatusFailed { - c["failed"]++ - } - return true, nil - }, - DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { - return nil - }, - } + return nil + }, + UpdatesFunc: func(kafkaRequest *dbapi.KafkaRequest, values map[string]interface{}) *errors.ServiceError { + v, ok := values["status"] + if ok { + statusValue := v.(string) + c[statusValue]++ + } + return nil + }, + UpdateStatusFunc: func(id string, status constants2.KafkaStatus) (bool, *errors.ServiceError) { + if status == constants2.KafkaRequestStatusReady { + c["ready"]++ + } else if status == constants2.KafkaRequestStatusDeleting { + c["deleting"]++ + } else if status == constants2.KafkaRequestStatusFailed { + c["failed"]++ + } + return true, nil + }, + DeleteFunc: func(in1 *dbapi.KafkaRequest) *errors.ServiceError { + return nil + }, + } + }, }, - clusterId: "test-cluster-id", - status: []*dbapi.DataPlaneKafkaStatus{ - { - Conditions: []dbapi.DataPlaneKafkaStatusCondition{ - { - Type: "Ready", - Status: "True", + args: args{ + clusterId: "test-cluster-id", + status: []*dbapi.DataPlaneKafkaStatus{ + { + Conditions: []dbapi.DataPlaneKafkaStatusCondition{ + { + Type: "Ready", + Status: "True", + }, }, }, }, }, - wantErr: false, + want: nil, expectCounters: map[string]int{ "ready": 1, "failed": 0, @@ -474,11 +417,9 @@ func TestDataPlaneKafkaService_UpdateDataPlaneKafkaService(t *testing.T) { "deleting": 0, "rejected": 0, } - s := NewDataPlaneKafkaService(tt.kafkaService(counter), tt.clusterService, &config.KafkaConfig{}) - err := s.UpdateDataPlaneKafkaService(context.TODO(), tt.clusterId, tt.status) - if err != nil && !tt.wantErr { - t.Errorf("unexpected error %v", err) - } + s := NewDataPlaneKafkaService(tt.fields.kafkaService(counter), tt.fields.clusterService, &config.KafkaConfig{}) + err := s.UpdateDataPlaneKafkaService(context.TODO(), tt.args.clusterId, tt.args.status) + Expect(err).To(Equal(tt.want)) Expect(counter).To(Equal(tt.expectCounters)) }) } @@ -619,7 +560,7 @@ func TestDataPlaneKafkaService_UpdateVersions(t *testing.T) { StrimziVersion: "strimzi-1", }, }, - wantErr: false, + wantErr: true, expectedVersions: versions{ actualKafkaVersion: "kafka-1", actualKafkaIBPVersion: "kafka-ibp-1", diff --git a/internal/kafka/test/integration/data_plane_endpoints_test.go b/internal/kafka/test/integration/data_plane_endpoints_test.go index 8185d881d..0c9a12aff 100644 --- a/internal/kafka/test/integration/data_plane_endpoints_test.go +++ b/internal/kafka/test/integration/data_plane_endpoints_test.go @@ -833,7 +833,7 @@ func TestDataPlaneEndpoints_GetManagedKafkasWithOauthMaximumSessionLifetime(t *t } -func TestDataPlaneEndpoints_UpdateManagedKafkasWithRoutes(t *testing.T) { +func TestDataPlaneEndpoints_UpdateManagedKafkasWithRoutesAndAdminApiServerUrl(t *testing.T) { testServer := setup(t, func(account *v1.Account, cid string, h *coreTest.Helper) jwt.MapClaims { username, _ := account.GetUsername() return jwt.MapClaims{ @@ -854,6 +854,7 @@ func TestDataPlaneEndpoints_UpdateManagedKafkasWithRoutes(t *testing.T) { } bootstrapServerHost := "prefix.some-bootstrap⁻host" + adminApiServerUrl := "https://test-url.com" var testKafkas = []*dbapi.KafkaRequest{ { @@ -884,6 +885,7 @@ func TestDataPlaneEndpoints_UpdateManagedKafkasWithRoutes(t *testing.T) { updates := map[string]private.DataPlaneKafkaStatus{} for _, item := range list.Items { updates[item.Metadata.Annotations.Bf2OrgId] = private.DataPlaneKafkaStatus{ + AdminServerURI: adminApiServerUrl, Conditions: []private.DataPlaneClusterUpdateStatusRequestConditions{{ Type: "Ready", Status: "True", @@ -949,6 +951,7 @@ func TestDataPlaneEndpoints_UpdateManagedKafkasWithRoutes(t *testing.T) { t.Errorf("failed to find kafka cluster with id %s due to error: %v", cid, err) } Expect(c.Status).To(Equal(constants2.KafkaRequestStatusReady.String())) + Expect(c.AdminApiServerURL).To(Equal(adminApiServerUrl)) } db = test.TestServices.DBFactory.New() diff --git a/internal/kafka/test/integration/kafkas_test.go b/internal/kafka/test/integration/kafkas_test.go index 651d79d5d..dd80e4ae3 100644 --- a/internal/kafka/test/integration/kafkas_test.go +++ b/internal/kafka/test/integration/kafkas_test.go @@ -114,6 +114,7 @@ func TestKafkaCreate_Success(t *testing.T) { Expect(kafka.BrowserUrl).To(Equal(fmt.Sprintf("%s%s/dashboard", test.TestServices.KafkaConfig.BrowserUrl, kafka.Id))) Expect(kafka.InstanceTypeName).To(Equal("Standard")) Expect(kafka.ExpiresAt).To(BeNil()) + Expect(kafka.AdminApiServerUrl).To(BeEmpty()) // wait until the kafka goes into a ready state // the timeout here assumes a backing cluster has already been provisioned @@ -124,11 +125,14 @@ func TestKafkaCreate_Success(t *testing.T) { Expect(foundKafka.BootstrapServerHost).To(Not(BeEmpty())) Expect(foundKafka.Version).To(Equal(kasfleetshardsync.GetDefaultReportedKafkaVersion())) Expect(foundKafka.Owner).To(Equal(kafka.Owner)) + Expect(foundKafka.AdminApiServerUrl).To(Equal(kasfleetshardsync.AdminServerURI)) + // checking kafka_request bootstrap server port number being present kafka, _, err = client.DefaultApi.GetKafkaById(ctx, foundKafka.Id) Expect(err).NotTo(HaveOccurred(), "Error getting created kafka_request: %v", err) Expect(strings.HasSuffix(kafka.BootstrapServerHost, ":443")).To(Equal(true)) Expect(kafka.Version).To(Equal(kasfleetshardsync.GetDefaultReportedKafkaVersion())) + Expect(kafka.AdminApiServerUrl).To(Equal(kasfleetshardsync.AdminServerURI)) db := test.TestServices.DBFactory.New() var kafkaRequest dbapi.KafkaRequest diff --git a/internal/kafka/test/mocks/kasfleetshardsync/kas-fleetshard-sync.go b/internal/kafka/test/mocks/kasfleetshardsync/kas-fleetshard-sync.go index d385c4b27..9d08a4aeb 100644 --- a/internal/kafka/test/mocks/kasfleetshardsync/kas-fleetshard-sync.go +++ b/internal/kafka/test/mocks/kasfleetshardsync/kas-fleetshard-sync.go @@ -20,6 +20,8 @@ import ( clustersmgmtv1 "github.com/openshift-online/ocm-sdk-go/clustersmgmt/v1" ) +const AdminServerURI = "http://test-admin-server-uri.com" + // defaultUpdateDataplaneClusterStatusFunc - The default behaviour for updating data plane cluster status in each Kas Fleetshard Sync reconcile. // Retrieves all clusters in the database in a 'waiting_for_kas_fleetshard_operator' state and updates it to 'ready' once all of the addons are installed. var defaultUpdateDataplaneClusterStatusFunc = func(helper *coreTest.Helper, privateClient *private.APIClient, ocmClient ocm.Client) error { @@ -336,6 +338,7 @@ func GetReadyKafkaStatusResponse(clusterDNS string) private.DataPlaneKafkaStatus Router: clusterDNS, }, }, + AdminServerURI: AdminServerURI, } } diff --git a/openapi/kas-fleet-manager-private.yaml b/openapi/kas-fleet-manager-private.yaml index 23b8f6b64..2e4ebc51a 100644 --- a/openapi/kas-fleet-manager-private.yaml +++ b/openapi/kas-fleet-manager-private.yaml @@ -523,6 +523,8 @@ components: type: string router: type: string + adminServerURI: + type: string example: $ref: '#/components/examples/DataPlaneKafkaStatusRequestExample' diff --git a/openapi/kas-fleet-manager.yaml b/openapi/kas-fleet-manager.yaml index 9b1f218d4..02062d2b2 100644 --- a/openapi/kas-fleet-manager.yaml +++ b/openapi/kas-fleet-manager.yaml @@ -980,6 +980,9 @@ components: type: string bootstrap_server_host: type: string + admin_api_server_url: + type: string + description: The kafka admin server url to perform kafka admin operations e.g acl management etc. The value will be available when the Kafka has been fully provisioned i.e it reaches a 'ready' state created_at: format: date-time type: string @@ -1558,6 +1561,7 @@ components: Each query can be ordered by any of the following `kafkaRequests` fields: * bootstrap_server_host + * admin_api_server_url * cloud_provider * cluster_id * created_at @@ -1668,6 +1672,7 @@ components: owner: "api_kafka_service" name: "serviceapi" bootstrap_server_host: "serviceapi-1isy6rq3jki8q0otmjqfd3ocfrg.apps.mk-bttg0jn170hp.x5u8.s1.devshift.org" + admin_api_server_url: "https://admin-server-mk-e-e-e-e-c---{}ld{-}-n-vp--bltg.rhcloud.com" created_at: "2020-10-05T12:51:24.053142Z" updated_at: "2020-10-05T12:56:36.362208Z" version: "2.6.0" @@ -1693,6 +1698,7 @@ components: owner: "api_kafka_service" name: "serviceapi" bootstrap_server_host: "serviceapi-1isy6rq3jki8q0otmjqfd3ocfrg.apps.mk-bttg0jn170hp.x5u8.s1.devshift.org" + admin_api_server_url: "https://admin-server-mk-e-e-e-e-c---{}ld{-}-n-vp--bltg.rhcloud.com" created_at: "2020-10-05T12:51:24.053142Z" updated_at: "2020-10-05T12:56:36.362208Z" failed_reason: "a reason the Kafka request creation failed" diff --git a/pkg/client/redhatsso/client.go b/pkg/client/redhatsso/client.go index 71343680e..515bc5781 100644 --- a/pkg/client/redhatsso/client.go +++ b/pkg/client/redhatsso/client.go @@ -4,17 +4,18 @@ import ( "context" "encoding/json" "fmt" - "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/client/keycloak" - "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/shared" - "github.com/patrickmn/go-cache" - "github.com/pkg/errors" - serviceaccountsclient "github.com/redhat-developer/app-services-sdk-go/serviceaccounts/apiv1internal/client" "io/ioutil" "net/http" "net/url" "strconv" "strings" "time" + + "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/client/keycloak" + "github.com/bf2fc6cc711aee1a0c2a/kas-fleet-manager/pkg/shared" + "github.com/patrickmn/go-cache" + "github.com/pkg/errors" + serviceaccountsclient "github.com/redhat-developer/app-services-sdk-go/serviceaccounts/apiv1internal/client" ) const (