diff --git a/CHANGELOG.md b/CHANGELOG.md index 2765cc40..4da08d64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.0.0](https://github.com/terraform-google-modules/terraform-google-bigquery/compare/v6.1.1...v7.0.0) (2023-10-10) + + +### ⚠ BREAKING CHANGES + +* data_warehosue migrating to TheLook Ecommerce dataset ([#257](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/257)) + +### Features + +* data_warehosue migrating to TheLook Ecommerce dataset ([#257](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/257)) ([e97adfb](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/e97adfb1984592a6f9e4eea8f8bdc3d2969e3d2d)) +* data_warehouse add labels to objects ([#253](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/253)) ([70962af](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/70962afc68366e8ef1214b9ad747d3d15fa7f313)) + + +### Bug Fixes + +* data_warehouse add bigquery data policy api ([#254](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/254)) ([f2aa4f3](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/f2aa4f392e94603ca831c40c6c08dc3fbdae8af4)) +* data_warehouse api identity dependency for p/s ([#252](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/252)) ([d2c1256](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/d2c125676f176c8fa33eb9dad12b7ed992dee6ac)) +* **deps:** update terraform terraform-google-modules/project-factory/google to 14.3 ([#245](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/245)) ([cf6869c](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/cf6869c8f37999f4b765b7b9ac501c73a5ca3e36)) +* update architecture diagrams, fix integration test ([#241](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/241)) ([bc5abf8](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/bc5abf8cb55bfc2c9939a1be6d6adfa7212e3a17)) +* update workflow.tftpl bc subworkflow creates bq not biglake tables ([#246](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/246)) ([fc7d4ae](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/fc7d4ae15376a22a5f37c140fc4b1c1c4ad3aa52)) +* upgrade hashicorp/google to 5.0 ([#259](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/259)) ([096ca4e](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/096ca4ee651152d040f8c555832488991773ddb8)) +* upgraded versions.tf to include minor bumps from tpg v5 ([#261](https://github.com/terraform-google-modules/terraform-google-bigquery/issues/261)) ([7fd5bcb](https://github.com/terraform-google-modules/terraform-google-bigquery/commit/7fd5bcbb4eca4d71a0d1c9b7fb7f4d19ae21ddbf)) + ## [6.1.1](https://github.com/terraform-google-modules/terraform-google-bigquery/compare/v6.1.0...v6.1.1) (2023-07-20) diff --git a/Makefile b/Makefile index fb2b149a..2bd060df 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ # Make will use bash instead of sh SHELL := /usr/bin/env bash -DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.16 +DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.17 DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools REGISTRY_URL := gcr.io/cloud-foundation-cicd ENABLE_BPMETADATA := 1 diff --git a/README.md b/README.md index 67537cc3..cea22940 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Basic usage of this module is as follows: ```hcl module "bigquery" { source = "terraform-google-modules/bigquery/google" - version = "~> 6.1" + version = "~> 7.0" dataset_id = "foo" dataset_name = "foo" diff --git a/build/int.cloudbuild.yaml b/build/int.cloudbuild.yaml index 812e560d..705e9ed9 100644 --- a/build/int.cloudbuild.yaml +++ b/build/int.cloudbuild.yaml @@ -53,4 +53,4 @@ tags: - 'integration' substitutions: _DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools' - _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.16' + _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17' diff --git a/build/lint.cloudbuild.yaml b/build/lint.cloudbuild.yaml index fab56a49..410bea53 100644 --- a/build/lint.cloudbuild.yaml +++ b/build/lint.cloudbuild.yaml @@ -21,4 +21,4 @@ tags: - 'lint' substitutions: _DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools' - _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.16' + _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17' diff --git a/examples/basic_bq/versions.tf b/examples/basic_bq/versions.tf index 96fc6080..6a252892 100644 --- a/examples/basic_bq/versions.tf +++ b/examples/basic_bq/versions.tf @@ -17,8 +17,7 @@ terraform { required_providers { google = { - source = "hashicorp/google" - version = "~> 4.0" + source = "hashicorp/google" } } required_version = ">= 0.13" diff --git a/examples/basic_view/versions.tf b/examples/basic_view/versions.tf index 96fc6080..6a252892 100644 --- a/examples/basic_view/versions.tf +++ b/examples/basic_view/versions.tf @@ -17,8 +17,7 @@ terraform { required_providers { google = { - source = "hashicorp/google" - version = "~> 4.0" + source = "hashicorp/google" } } required_version = ">= 0.13" diff --git a/examples/data_warehouse/versions.tf b/examples/data_warehouse/versions.tf index 948215bf..2b719d12 100644 --- a/examples/data_warehouse/versions.tf +++ b/examples/data_warehouse/versions.tf @@ -17,8 +17,7 @@ terraform { required_providers { google = { - source = "hashicorp/google" - version = "~> 4.52" + source = "hashicorp/google" } } required_version = ">= 0.13" diff --git a/examples/multiple_tables/versions.tf b/examples/multiple_tables/versions.tf index 96fc6080..6a252892 100644 --- a/examples/multiple_tables/versions.tf +++ b/examples/multiple_tables/versions.tf @@ -17,8 +17,7 @@ terraform { required_providers { google = { - source = "hashicorp/google" - version = "~> 4.0" + source = "hashicorp/google" } } required_version = ">= 0.13" diff --git a/examples/scheduled_queries/versions.tf b/examples/scheduled_queries/versions.tf index 7f7043fd..51e20bd0 100644 --- a/examples/scheduled_queries/versions.tf +++ b/examples/scheduled_queries/versions.tf @@ -18,8 +18,7 @@ terraform { required_providers { google = { - source = "hashicorp/google" - version = "~> 4.0" + source = "hashicorp/google" } } } diff --git a/main.tf b/main.tf index 8d50a8c9..fd4af704 100644 --- a/main.tf +++ b/main.tf @@ -155,7 +155,7 @@ resource "google_bigquery_table" "main" { labels = each.value["labels"] schema = each.value["schema"] clustering = each.value["clustering"] - expiration_time = each.value["expiration_time"] + expiration_time = each.value["expiration_time"] != null ? each.value["expiration_time"] : 0 project = var.project_id deletion_protection = each.value["deletion_protection"] @@ -163,7 +163,7 @@ resource "google_bigquery_table" "main" { for_each = each.value["time_partitioning"] != null ? [each.value["time_partitioning"]] : [] content { type = time_partitioning.value["type"] - expiration_ms = time_partitioning.value["expiration_ms"] + expiration_ms = time_partitioning.value["expiration_ms"] != null ? time_partitioning.value["expiration_ms"] : 0 field = time_partitioning.value["field"] require_partition_filter = time_partitioning.value["require_partition_filter"] } @@ -219,7 +219,7 @@ resource "google_bigquery_table" "materialized_view" { description = each.value["description"] labels = each.value["labels"] clustering = each.value["clustering"] - expiration_time = each.value["expiration_time"] + expiration_time = each.value["expiration_time"] != null ? each.value["expiration_time"] : 0 project = var.project_id deletion_protection = false @@ -227,7 +227,7 @@ resource "google_bigquery_table" "materialized_view" { for_each = each.value["time_partitioning"] != null ? [each.value["time_partitioning"]] : [] content { type = time_partitioning.value["type"] - expiration_ms = time_partitioning.value["expiration_ms"] + expiration_ms = time_partitioning.value["expiration_ms"] != null ? time_partitioning.value["expiration_ms"] : 0 field = time_partitioning.value["field"] require_partition_filter = time_partitioning.value["require_partition_filter"] } @@ -265,7 +265,7 @@ resource "google_bigquery_table" "external_table" { table_id = each.key description = each.value["description"] labels = each.value["labels"] - expiration_time = each.value["expiration_time"] + expiration_time = each.value["expiration_time"] != null ? each.value["expiration_time"] : 0 project = var.project_id deletion_protection = false diff --git a/metadata.yaml b/metadata.yaml index a6e399bd..a5399c26 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -24,7 +24,7 @@ spec: source: repo: https://github.com/terraform-google-modules/terraform-google-bigquery sourceType: git - version: 6.1.0 + version: 7.0.0 actuationTool: flavor: Terraform version: '>= 0.13' diff --git a/modules/authorization/README.md b/modules/authorization/README.md index d8a3624d..87291515 100644 --- a/modules/authorization/README.md +++ b/modules/authorization/README.md @@ -17,7 +17,7 @@ Example: ```hcl module "dataset" { source = "terraform-google-modules/bigquery/google" - version = "~> 6.1" + version = "~> 7.0" dataset_id = "example_dataset" dataset_name = "example_dataset" diff --git a/modules/authorization/metadata.yaml b/modules/authorization/metadata.yaml index fea0bb6f..820510b9 100644 --- a/modules/authorization/metadata.yaml +++ b/modules/authorization/metadata.yaml @@ -25,7 +25,7 @@ spec: repo: https://github.com/terraform-google-modules/terraform-google-bigquery sourceType: git dir: /modules/authorization - version: 6.1.0 + version: 7.0.0 actuationTool: flavor: Terraform version: '>= 0.13' diff --git a/modules/authorization/versions.tf b/modules/authorization/versions.tf index 42391ba5..f494a773 100644 --- a/modules/authorization/versions.tf +++ b/modules/authorization/versions.tf @@ -20,12 +20,12 @@ terraform { google = { source = "hashicorp/google" - version = ">= 4.44, < 5.0" + version = ">= 4.44, < 6" } } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-bigquery:authorization/v6.1.1" + module_name = "blueprints/terraform/terraform-google-bigquery:authorization/v7.0.0" } } diff --git a/modules/data_warehouse/README.md b/modules/data_warehouse/README.md index c697bd28..e00b2540 100644 --- a/modules/data_warehouse/README.md +++ b/modules/data_warehouse/README.md @@ -12,9 +12,10 @@ The resources/services/activations/deletions that this module will create/trigge - Creates a BigQuery Dataset - Creates a BigQuery Table - Creates a Google Cloud Storage bucket -- Loads the Google Cloud Storage bucket with data from https://console.cloud.google.com/marketplace/product/city-of-new-york/nyc-tlc-trips +- Loads the Google Cloud Storage bucket with data from [TheLook eCommerce Public Dataset](https://console.cloud.google.com/marketplace/product/bigquery-public-data/thelook-ecommerce) - Provides SQL examples - Creates and inferences with a BigQuery ML model +- Creates a remote model and uses Generative AI to generate text through a BigQuery ML remote model - Creates a Looker Studio report ### preDeploy @@ -27,7 +28,7 @@ To deploy this blueprint you must have an active billing account and billing per ## Usage Functional examples are included in the -[examples](./examples/) directory. +[examples](../../examples/data_warehouse/README.md) directory. ## Inputs @@ -40,6 +41,7 @@ Functional examples are included in the | labels | A map of labels to apply to contained resources. | `map(string)` |
{
"data-warehouse": true
}
| no | | project\_id | Google Cloud Project ID | `string` | n/a | yes | | region | Google Cloud Region | `string` | n/a | yes | +| text\_generation\_model\_name | Name of the BigQuery ML GenAI remote model that connects to the LLM used for text generation | `string` | `"text_generate_model"` | no | ## Outputs @@ -47,7 +49,7 @@ Functional examples are included in the |------|-------------| | bigquery\_editor\_url | The URL to launch the BigQuery editor with the sample query procedure opened | | ds\_friendly\_name | Dataset name | -| lookerstudio\_report\_url | The URL to create a new Looker Studio report displays a sample dashboard for the taxi data analysis | +| lookerstudio\_report\_url | The URL to create a new Looker Studio report displays a sample dashboard for the e-commerce data analysis | | neos\_tutorial\_url | The URL to launch the in-console tutorial for the EDW solution | | raw\_bucket | Raw bucket name | @@ -61,8 +63,8 @@ These sections describe requirements for using this module. The following dependencies must be available: -- [Terraform][terraform] v0.13 -- [Terraform Provider for GCP][terraform-provider-gcp] plugin v3.0 +- [Terraform](https://github.com/hashicorp/terraform) v0.13 +- [Terraform Provider for GCP](https://github.com/hashicorp/terraform-provider-google) plugin v3.0 ### Service Account @@ -76,8 +78,8 @@ the resources of this module: - Pub/Sub Admin: `roles/pubsub.admin` - Dataplex Admin: `roles/dataplex.admin` -The [Project Factory module][project-factory-module] and the -[IAM module][iam-module] may be used in combination to provision a +The [Project Factory module](./.terraform/modules/project-services/README.md) and the +[IAM module](https://github.com/terraform-google-modules/terraform-google-iam) may be used in combination to provision a service account with the necessary roles applied. ### APIs @@ -85,13 +87,18 @@ service account with the necessary roles applied. A project with the following APIs enabled must be used to host the resources of this module: +- Vertex AI API: `aiplatform.googleapis.com` - BigQuery API: `bigquery.googleapis.com` +- BigQuery Connection API: `bigqueryconnection.googleapis.com` - BigQuery Data Policy API: `bigquerydatapolicy.googleapis.com` +- BigQuery Data Transfer Service API: `bigquerydatatransfer.googleapis.com` - BigQuery Migration API: `bigquerymigration.googleapis.com` -- BigQuery Storage API: `bigquerystorage.googleapis.com` -- BigQuery Connection API: `bigqueryconnection.googleapis.com` - BigQuery Reservations API: `bigqueryreservation.googleapis.com` -- BigQuery Data Transfer Service API: `bigquerydatatransfer.googleapis.com` +- BigQuery Storage API: `bigquerystorage.googleapis.com` +- Google Cloud APIs: `cloudapis.googleapis.com` +- Cloud Build API: `cloudbuild.googleapis.com` +- Compute Engine API: `compute.googleapis.com` +- Infrastructure Manager API: `config.googleapis.com` - Data Catalog API: `datacatalog.googleapis.com` - Data Lineage API: `datalineage.googleapis.com` - Eventarc API: `eventarc.googleapis.com` @@ -101,10 +108,10 @@ resources of this module: - Google Cloud Storage JSON API: `storage-api.googleapis.com` - Google Cloud Workflows API: `workflows.googleapis.com` -The [Project Factory module][project-factory-module] can be used to +The [Project Factory module](./.terraform/modules/project-services/README.md) can be used to provision a project with the necessary APIs enabled. ## Security Disclosures -Please see our [security disclosure process](./SECURITY.md). +Please see our [security disclosure process](../../SECURITY.md). diff --git a/modules/data_warehouse/assets/data-warehouse-architecture.json b/modules/data_warehouse/assets/data-warehouse-architecture.json index 48afe9c9..bc42429f 100644 --- a/modules/data_warehouse/assets/data-warehouse-architecture.json +++ b/modules/data_warehouse/assets/data-warehouse-architecture.json @@ -1 +1 @@ -{"version":"0.2.3","resources":[["UHRN8URZWaOiEoegPEZvR",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"UHRN8URZWaOiEoegPEZvR","isDeleted":false,"resource":"region"}],["xL5R-mC3JM90QTsSNUJjX",{"documentation_url":"https://cloud.google.com/resource-manager/docs/creating-managing-projects","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"billing_account":{"type":"string","description":"The alphanumeric ID of the billing account this project belongs to. The user or service account performing this operation with Terraform must have Billing Account Administrator privileges (roles/billing.admin) in the organization. See Google Cloud Billing API Access Control for more details.","description_kind":"plain","optional":true,"placeholder":"011DC8-DA44DB-216504","display":true},"folder_id":{"type":"string","description":"The numeric ID of the folder this project should be created under. Only one of org_id or folder_id may be specified. If the folder_id is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder.","description_kind":"plain","placeholder":"191953190635","optional":true,"display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"org_id":{"type":"string","description":"The numeric ID of the organization this project belongs to. Changing this forces a new project to be created. Only one of org_id or folder_id may be specified. If the org_id is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization.","description_kind":"plain","placeholder":"991249987803","optional":true,"display":true},"project_id":{"type":"string","field_type":"single-select","description":"The project ID. Changing this forces a new project to be created.","description_kind":"plain","required":true,"display":true,"placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","representative":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"xL5R-mC3JM90QTsSNUJjX","isDeleted":false,"resource":"google_project"}],["vqRNLI_Kb6tOOTPDWKqb4",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"vqRNLI_Kb6tOOTPDWKqb4","isDeleted":false,"resource":"region"}],["fbaE_gb4igPrw0Kv6UKau",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"fbaE_gb4igPrw0Kv6UKau","isDeleted":false,"resource":"region"}],["iaxbfHV-ny455ElfBgSN0",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"iaxbfHV-ny455ElfBgSN0","isDeleted":false,"resource":"region"}],["Zlb5FtWCuto_voxL_bzkO",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"Zlb5FtWCuto_voxL_bzkO","isDeleted":true,"resource":"region"}],["LKICWKVtjNK_KOm00c4ac",{"documentation_url":"https://cloud.google.com/resource-manager/docs/creating-managing-projects","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"billing_account":{"type":"string","description":"The alphanumeric ID of the billing account this project belongs to. The user or service account performing this operation with Terraform must have Billing Account Administrator privileges (roles/billing.admin) in the organization. See Google Cloud Billing API Access Control for more details.","description_kind":"plain","optional":true,"placeholder":"011DC8-DA44DB-216504","display":true},"folder_id":{"type":"string","description":"The numeric ID of the folder this project should be created under. Only one of org_id or folder_id may be specified. If the folder_id is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder.","description_kind":"plain","placeholder":"191953190635","optional":true,"display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"org_id":{"type":"string","description":"The numeric ID of the organization this project belongs to. Changing this forces a new project to be created. Only one of org_id or folder_id may be specified. If the org_id is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization.","description_kind":"plain","placeholder":"991249987803","optional":true,"display":true},"project_id":{"type":"string","field_type":"single-select","description":"The project ID. Changing this forces a new project to be created.","description_kind":"plain","required":true,"display":true,"placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","representative":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"LKICWKVtjNK_KOm00c4ac","isDeleted":true,"resource":"google_project"}],["BmLdO74YV04wW-ZaLwn-t",{"documentation_url":"https://cloud.google.com/run/docs/deploying","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the cloud run instance. eg us-central1","description_kind":"plain","required":true,"display":true,"placeholder":"us-central1","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region"},"name":{"type":"string","description":"Name must be unique within a namespace, within a Cloud Run region. Is required when creating resources. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names","description_kind":"plain","required":true,"display":true,"placeholder":"webservice","validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$"},"project":{"type":"string","description_kind":"plain","field_type":"single-select","required":true,"computed":true,"display":true,"gcp_resource":"project","placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"template":{"nesting_mode":"list","display":true,"display_label":"Template","block":{"block_types":{"spec":{"nesting_mode":"list","display":true,"display_label":"Spec","block":{"block_types":{"containers":{"nesting_mode":"list","display":true,"display_label":"Container spec","block":{"attributes":{"image":{"type":"string","description":"Docker image name. This is most often a reference to a container located in the container registry, such as gcr.io/cloudrun/hello More info: https://kubernetes.io/docs/concepts/containers/images","description_kind":"plain","required":true,"placeholder":"gcr.io/cloudrun/hello","display":true}},"block_types":{"ports":{"nesting_mode":"list","display":true,"display_label":"Ports","block":{"attributes":{"container_port":{"type":"number","description":"Port number the container listens on. This must be a valid port number, 0 < x < 65536.","description_kind":"plain","optional":true,"placeholder":"3000","display":true}},"description":"List of open ports in the container. More Info: https://cloud.google.com/run/docs/reference/rest/v1/RevisionSpec#ContainerPort","description_kind":"plain"}}},"description":"Container defines the unit of execution for this Revision. In the context of a Revision, we disallow a number of the fields of this Container, including: name, ports, and volumeMounts. The runtime contract is documented here: https://github.com/knative/serving/blob/main/docs/runtime-contract.md","description_kind":"plain"},"min_items":1}},"description":"RevisionSpec holds the desired state of the Revision (from the client).","description_kind":"plain"},"max_items":1,"min_items":1}},"description":"template holds the latest specification for the Revision to be stamped out. The template references the container image, and may also include labels and annotations that should be attached to the Revision. To correlate a Revision, and/or to force a Revision to be created when the spec doesn't otherwise change, a nonce label may be provided in the template metadata. For more details, see: https://github.com/knative/serving/blob/main/docs/client-conventions.md#associate-modifications-with-revisions Cloud Run does not currently support referencing a build that is responsible for materializing the container image from source.","description_kind":"plain"},"max_items":1,"min_items":1}}},"boxId":"BmLdO74YV04wW-ZaLwn-t","isDeleted":true,"resource":"google_cloud_run_service"}],["23Zvzt8Up1N1pOkvrcj-R",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region"},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"boxId":"23Zvzt8Up1N1pOkvrcj-R","isDeleted":true,"resource":"google_bigquery_dataset"}],["a7jxO9KBbu7x0PTSp8V8R",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"a7jxO9KBbu7x0PTSp8V8R","isDeleted":false,"resource":"region"}],["RypXleBEkT_Umab_0FLYS",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region"},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"boxId":"RypXleBEkT_Umab_0FLYS","isDeleted":true,"resource":"google_bigquery_dataset"}],["p0S5NKIgKqSfDkV9tM2wc",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"p0S5NKIgKqSfDkV9tM2wc","isDeleted":true,"resource":"region"}],["QzD_9h41xrBE4QdwJfF-N",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"QzD_9h41xrBE4QdwJfF-N","isDeleted":true,"resource":"google_storage_bucket"}],["d4dZQFNnizOH4OIitFRg0",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"d4dZQFNnizOH4OIitFRg0","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["AdNAjJY_mPmLqaqxUTb82",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"AdNAjJY_mPmLqaqxUTb82","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["ytWIU5Fbiq4oKMskS45VV",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"ytWIU5Fbiq4oKMskS45VV","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["T_mshNLa6Cv_keTTXyg9N",{"documentation_url":"https://cloud.google.com/pubsub/docs/admin","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the topic.","description_kind":"plain","placeholder":"pubsub-topic","display":true,"required":true},"labels":{"type":["map","string"],"description":"A set of key/value label pairs to assign to this Topic.","description_kind":"plain","display":true,"optional":true},"message_retention_duration":{"type":"string","description":"Indicates the minimum duration to retain a message after it is published to the topic. If this field is set, messages published to the topic in the last messageRetentionDuration are always available to subscribers. For instance, it allows any attached subscription to seek to a timestamp that is up to messageRetentionDuration in the past. If this field is not set, message retention is controlled by settings on individual subscriptions. Cannot be more than 7 days or less than 10 minutes.","description_kind":"plain","placeholder":"86600s","display":true,"optional":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"schema_settings":{"nesting_mode":"list","display":true,"display_label":"Schema Settings","block":{"attributes":{"encoding":{"type":"string","field_type":"single-select","description":"The encoding of messages validated against schema. Default value: \"ENCODING_UNSPECIFIED\" Possible values: [\"ENCODING_UNSPECIFIED\", \"JSON\", \"BINARY\"]","description_kind":"plain","placeholder":"JSON","display":true,"optional":true,"values":["ENCODING_UNSPECIFIED","JSON","BINARY"]},"schema":{"type":"string","description":"The name of the schema that messages published should be validated against. Format is projects/{project}/schemas/{schema}. The value of this field will be _deleted-schema_ if the schema has been deleted.","description_kind":"plain","placedholder":"projects/{project}/schemas/{schema}","display":true,"required":true}},"description":"Settings for validating messages published against a schema.","description_kind":"plain"},"max_items":1}},"description_kind":"plain"},"boxId":"T_mshNLa6Cv_keTTXyg9N","isDeleted":true,"resource":"google_pubsub_topic"}],["rJJmXdPlRXtLrEaOFUoaQ",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"rJJmXdPlRXtLrEaOFUoaQ","isDeleted":true,"resource":"google_storage_bucket"}],["q530R61UTLOj7TzT77YrD",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":""},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"q530R61UTLOj7TzT77YrD","isDeleted":false,"resource":"google_compute_network"}],["ytmbL65ING_a2IF5e25Mc",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"ytmbL65ING_a2IF5e25Mc","isDeleted":true,"resource":"google_compute_network"}],["qWT4rflNgdOfouksxcANl",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"},"value":""},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"qWT4rflNgdOfouksxcANl","isDeleted":true,"resource":"gke"}],["NQh75nyHB1usHUHR1z4Ot",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","value":""},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"NQh75nyHB1usHUHR1z4Ot","isDeleted":true,"resource":"google_compute_network"}],["iKMbPK-SQF1Wpw3bvJSpa",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"iKMbPK-SQF1Wpw3bvJSpa","isDeleted":true,"resource":"gke"}],["1ZffgxEm7iEhX_jh3uJ65",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"1ZffgxEm7iEhX_jh3uJ65","isDeleted":true,"resource":"google_compute_network"}],["FBRQR79WCfzcDxQf2qSz1",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"},"value":""},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"FBRQR79WCfzcDxQf2qSz1","isDeleted":true,"resource":"gke"}],["quGgT6MXOAo7I1GUdu618",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"quGgT6MXOAo7I1GUdu618","isDeleted":true,"resource":"gke"}],["xUiJL3UPVgR8Msy3NuSMX",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"xUiJL3UPVgR8Msy3NuSMX","isDeleted":true,"resource":"gke"}],["rRg18D8ZBs9CfX193c9q8",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"rRg18D8ZBs9CfX193c9q8","isDeleted":true,"resource":"gke"}],["AAf3trC5P8q_OHT59SwTB",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"AAf3trC5P8q_OHT59SwTB","isDeleted":true,"resource":"google_compute_network"}],["XOMy8QrxWZ0K4rehh5TUj",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"XOMy8QrxWZ0K4rehh5TUj","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["hzpvJNZ8CpRAPAjCV7wET",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"hzpvJNZ8CpRAPAjCV7wET","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["kLidXBsuXTZeh2Z2UdLlI",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"kLidXBsuXTZeh2Z2UdLlI","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["FV69FXJ4PIlJiH340IvLT",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"FV69FXJ4PIlJiH340IvLT","isDeleted":true,"resource":"google_storage_bucket"}],["rCkbsZl5tCzAsNPaJki8x",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region","message":""},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project","message":"Required"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"boxId":"rCkbsZl5tCzAsNPaJki8x","isDeleted":true,"resource":"google_bigquery_dataset"}],["xKHUnyB9oVjnPJ1dqEWl3",{"documentation_url":"https://cloud.google.com/functions/docs/writing","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"docker_registry":{"type":"string","field_type":"single-select","description":"Docker Registry to use for storing the function's Docker images. Allowed values are CONTAINER_REGISTRY (default) and ARTIFACT_REGISTRY.","description_kind":"plain","optional":true,"computed":true,"placeholder":"CONTAINER_REGISTRY","display":true,"values":["CONTAINER_REGISTRY","ARTIFACT_REGISTRY"]},"docker_repository":{"type":"string","description":"User managed repository created in Artifact Registry optionally with a customer managed encryption key. If specified, deployments will use Artifact Registry for storing images built with Cloud Build.","description_kind":"plain","optional":true,"placeholder":"gcr.io/cloudrun","display":true},"entry_point":{"type":"string","description":"Name of the function that will be executed when the Google Cloud Function is triggered.","description_kind":"plain","optional":true,"placeholder":"entrypoint_method","display":true},"name":{"type":"string","description":"A user-defined name of the function. Function names must be unique globally.","description_kind":"plain","required":true,"display":true,"placeholder":"appservice-method","validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$"},"project":{"type":"string","field_type":"single-select","description":"Project of the function. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"computed":true,"display":true,"gcp_resource":"project","placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","message":"Required"},"region":{"type":"string","field_type":"single-select","description":"Region of function. If it is not provided, the provider region is used.","description_kind":"plain","optional":true,"computed":true,"display":true,"gcp_resource":"region","placeholder":"us-central1","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Invalid format"},"runtime":{"type":"string","field_type":"single-select","description":"The runtime in which the function is going to run. Eg. \"nodejs8\", \"nodejs10\", \"python37\", \"go111\".","description_kind":"plain","required":true,"placeholder":"python37","display":true,"values":["nodejs8","nodejs10","python37","go111"]},"source_archive_bucket":{"type":"string","field_type":"single-select","description":"The GCS bucket containing the zip archive which contains the function.","description_kind":"plain","optional":true,"placeholder":"source_cf_bucket","display":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"source_archive_object":{"type":"string","description":"The source archive object (file) in archive bucket.","description_kind":"plain","optional":true,"placeholder":"cf_objects/helloworld","display":true},"trigger_http":{"type":"bool","field_type":"single-select","description":"Boolean variable. Any HTTP request (of a supported type) to the endpoint will trigger function execution. Supported HTTP request types are: POST, PUT, GET, DELETE, and OPTIONS. Endpoint is returned as https_trigger_url. Cannot be used with trigger_bucket and trigger_topic.","description_kind":"plain","optional":true,"placeholder":"GET","display":true,"values":["POST","PUT","GET","DELETE","OPTIONS"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"pubsub_event_trigger":{"nesting_mode":"list","display":true,"display_label":"pubsub event trigger","block":{"attributes":{"event_type":{"type":"string","display":true,"description":"The type of event to observe. For example: \"google.storage.object.finalize\". See the documentation on calling Cloud Functions for a full reference of accepted triggers.","description_kind":"plain","placeholder":"google.storage.object.finalize","required":true},"resource":{"type":"resource","field_type":"resource","resource":"google_pubsub_topic","description":"pubsub topic.","description_kind":"plain","display":true,"required":true}},"block_types":{},"description":"A source that fires events in response to a condition in another service. Cannot be used with trigger_http.","description_kind":"plain"},"max_items":1},"cloud_storage_event_trigger":{"nesting_mode":"list","display":true,"display_label":"cloud storage event trigger","block":{"attributes":{"event_type":{"type":"string","description":"The type of event to observe. For example: \"google.storage.object.finalize\". See the documentation on calling Cloud Functions for a full reference of accepted triggers.","description_kind":"plain","placeholder":"google.storage.object.finalize","required":true,"display":true},"resource":{"type":"resource","field_type":"resource","resource":"google_storage_bucket","description":"storage bucket.","description_kind":"plain","display":true,"required":true}},"block_types":{},"description":"A source that fires events in response to a condition in another service. Cannot be used with trigger_http.","description_kind":"plain"},"max_items":1},"source_repository":{"nesting_mode":"list","display":true,"display_label":"Source repository","block":{"attributes":{"url":{"type":"string","description":"The URL pointing to the hosted repository where the function is defined. There are supported Cloud Source Repository URLs in the following formats","description_kind":"plain","placeholder":"https://source.developers.google.com/projects/prj-adt-terraform/repos/helloworld","required":true,"display":true}},"description":"Represents parameters related to source repository where a function is hosted. Cannot be set alongside source_archive_bucket or source_archive_object.","description_kind":"plain"},"max_items":1,"min_items":1},"blockTypeLists":{"source_repository":[{"key":"_3jRQfb3WLZOeHNTTjCO0","value":{"nesting_mode":"list","display":true,"display_label":"Source repository","block":{"attributes":{"url":{"type":"string","description":"The URL pointing to the hosted repository where the function is defined. There are supported Cloud Source Repository URLs in the following formats","description_kind":"plain","placeholder":"https://source.developers.google.com/projects/prj-adt-terraform/repos/helloworld","required":true,"display":true}},"description":"Represents parameters related to source repository where a function is hosted. Cannot be set alongside source_archive_bucket or source_archive_object.","description_kind":"plain"},"max_items":1,"min_items":1}}]}}},"boxId":"xKHUnyB9oVjnPJ1dqEWl3","isDeleted":true,"resource":"google_cloudfunctions_function"}],["rLR6xsPDNiM8uM_dWPxfI",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Required"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":"Required"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"rLR6xsPDNiM8uM_dWPxfI","isDeleted":true,"resource":"google_storage_bucket"}]],"canvasElements":{"elements":[{"type":"rectangle","version":716,"versionNonce":1240864983,"isDeleted":false,"id":"TweuPsQzOu7c7aHV7ONZf","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":0,"y":-160,"strokeColor":"#d5d7dc","backgroundColor":"#FFF","width":1020,"height":880,"seed":2045804161,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"UHRN8URZWaOiEoegPEZvR","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":518,"versionNonce":179684377,"isDeleted":false,"id":"wKTrcpxO8PsdclzHx7PUv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":20,"y":40,"strokeColor":"#FFFFFF","backgroundColor":"#f1f3f4","width":980,"height":660,"seed":977102351,"groupIds":["F0_vNv7sRzKFZ64C9vadj"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"xL5R-mC3JM90QTsSNUJjX","label":"Project","resource":"google_project","type":"container"}},{"type":"text","version":226,"versionNonce":2005591543,"isDeleted":false,"id":"CcjLsb-15L9oGdL1Ke4aF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":40,"y":60,"strokeColor":"#202124","backgroundColor":"transparent","width":191,"height":23,"seed":524224097,"groupIds":["F0_vNv7sRzKFZ64C9vadj"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"xL5R-mC3JM90QTsSNUJjX","label":"Project","resource":"google_project","type":"child"},"fontSize":20,"fontFamily":2,"text":"Google Cloud Project","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Cloud Project"},{"type":"rectangle","version":589,"versionNonce":1199036665,"isDeleted":false,"id":"_whdePPavnbZlToM2QxIB","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":40,"y":100,"strokeColor":"#4285f4","backgroundColor":"#d2e3fc","width":940,"height":580,"seed":1021561903,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"vqRNLI_Kb6tOOTPDWKqb4","label":"Region","resource":"region","type":"container"}},{"type":"text","version":267,"versionNonce":1867058967,"isDeleted":false,"id":"ofS3NZ8EAbsLNLqCrXDI6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":460,"y":120,"strokeColor":"#202124","backgroundColor":"transparent","width":106,"height":19,"seed":1295094337,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"vqRNLI_Kb6tOOTPDWKqb4","label":"Region","resource":"region","type":"child"},"fontSize":16,"fontFamily":2,"text":"APPLICATION","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"APPLICATION"},{"type":"rectangle","version":559,"versionNonce":1357140441,"isDeleted":false,"id":"nuE-AcFQrwLl8JaHXKzu4","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":20,"y":-140,"strokeColor":"#4285f4","backgroundColor":"#d2e3fc","width":980,"height":160,"seed":102264399,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"},{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"fbaE_gb4igPrw0Kv6UKau","label":"Region","resource":"region","type":"container"}},{"type":"text","version":381,"versionNonce":1537545271,"isDeleted":false,"id":"pYI7fsbeQMcJFPj3LG4fy","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":460,"y":-120,"strokeColor":"#202124","backgroundColor":"transparent","width":127,"height":19,"seed":1487381025,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"iaxbfHV-ny455ElfBgSN0","label":"Region","resource":"region","type":"child"},"fontSize":16.444444444444446,"fontFamily":2,"text":"DATA SOURCES","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA SOURCES"},{"type":"arrow","version":918,"versionNonce":1812901561,"isDeleted":true,"id":"5NHi5KE_nu-zXqdTwd3J_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":40,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":166.73200709877102,"seed":548654191,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,166.73200709877102]],"fontFamily":2},{"type":"ellipse","version":277,"versionNonce":612595031,"isDeleted":false,"id":"IEhGqxbkEOsoOOko2ME6x","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":40,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1318106625,"groupIds":["66Cio6jsLLNEz3glASI5T"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"DFr5kjaC9Tw49svyYpGo5","label":"Step Circle","type":"child"}},{"type":"text","version":237,"versionNonce":1872392089,"isDeleted":false,"id":"f5Tc1omoRGkO-YgcHdYpW","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":290.5,"y":48,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":679372431,"groupIds":["66Cio6jsLLNEz3glASI5T"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"DFr5kjaC9Tw49svyYpGo5","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"1","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"1"},{"type":"rectangle","version":666,"versionNonce":1094234743,"isDeleted":true,"id":"W4vr0jThzdyF3CaN5h1QJ","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":0,"y":-200,"strokeColor":"#d5d7dc","backgroundColor":"#d5d7dc","width":1020,"height":60,"seed":1911311841,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"Zlb5FtWCuto_voxL_bzkO","label":"Region","resource":"region","type":"container"}},{"type":"text","version":317,"versionNonce":297473145,"isDeleted":true,"id":"PO9qh5wN3DWqz1Vt032UR","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":420,"y":-180,"strokeColor":"#202124","backgroundColor":"transparent","width":182,"height":32,"seed":741391535,"groupIds":["IMp4GXHDCtP_Gy4P2k2fO"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"LKICWKVtjNK_KOm00c4ac","label":"Project","resource":"google_project","type":"child"},"fontSize":28,"fontFamily":2,"text":"Secure CI/CD ","baseline":26,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Secure CI/CD "},{"type":"rectangle","version":115,"versionNonce":1250511767,"isDeleted":true,"id":"9pzAwHcckCuZ_EMGiVVQq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":260,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":2043275713,"groupIds":["AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"}},{"type":"text","version":111,"versionNonce":1983126873,"isDeleted":true,"id":"Q311PDWZw9PW8V80hkp_D","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":50,"height":18,"seed":1332956879,"groupIds":["AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"fontSize":16,"fontFamily":2,"text":"Device","baseline":16,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Device"},{"type":"line","version":111,"versionNonce":1286193335,"isDeleted":true,"id":"XoXx3D3wW5XiWPsl4QhxE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":289,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":256444833,"groupIds":["QEqo_gwTrA3-V6ydHHo8Y","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":111,"versionNonce":2086210105,"isDeleted":true,"id":"ptOdQewgnuJSoCC1clAJO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293,"y":-38,"strokeColor":"#00000000","backgroundColor":"#000","width":22,"height":16,"seed":752786671,"groupIds":["CZm-QNXBD8d0En35hLhF3","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[18,0],[18,-2],[0,-2],[0,-2],[-0.7765624523162842,-1.8421874046325684],[-1.4124999046325684,-1.4124999046325684],[-1.8421874046325684,-0.7765626907348633],[-2,0],[-2,11],[-4,11],[-4,14],[10,14],[10,11],[0,11],[0,0],[0,0]]},{"type":"line","version":111,"versionNonce":1497272791,"isDeleted":true,"id":"NT-NqKGTJBsGwibyEy7Ql","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312,"y":-36,"strokeColor":"#00000000","backgroundColor":"#000","width":8,"height":12,"seed":194588033,"groupIds":["fyU8-sdx7-c6xfZW8EBDS","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-6,0],[-6,0],[-6.706249237060547,0.2937498092651367],[-7,1],[-7,11],[-7,11],[-6.706249237060547,11.706249237060547],[-6,12],[0,12],[0,12],[0.7062492370605469,11.706249237060547],[1,11],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":111,"versionNonce":1292720921,"isDeleted":true,"id":"AkJ-v9WWRpMGCuf_JSIz4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":311,"y":-27,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":7,"seed":2012948239,"groupIds":["vrqri4vUUNiHiWzwJSJxk","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4,0],[-4,-7],[0,-7],[0,0]]},{"type":"rectangle","version":127,"versionNonce":1499217655,"isDeleted":true,"id":"Xm7gToxpr-sVr11kMHVM4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":140,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":102,"height":82,"seed":1979307361,"groupIds":["rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"}},{"type":"text","version":127,"versionNonce":683970553,"isDeleted":true,"id":"cIuXwKzygEx4l3DSWFSAW","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":156,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":70,"height":18,"seed":1598123311,"groupIds":["rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"fontSize":16,"fontFamily":2,"text":"Smartphone","baseline":16,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Smartphone"},{"type":"line","version":127,"versionNonce":528959511,"isDeleted":true,"id":"JEZ2zhXk1X9Ri2C1PkDaD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":179,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1102741825,"groupIds":["8B999aCWu1gA7cfQVCLTU","rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":127,"versionNonce":1971464409,"isDeleted":true,"id":"rOgNvBrY1dgHN3QvMloKB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":196,"y":-42.99000000953674,"strokeColor":"#00000000","backgroundColor":"#000","width":14,"height":22,"seed":773451599,"groupIds":["Egcas7g2wzLiiDDJALbrC","rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-10,-0.009999990463256836],[-10,-0.009999990463256836],[-10.776562690734863,0.14781248569488525],[-11.412499904632568,0.5774999856948853],[-11.842187404632568,1.213437557220459],[-12,1.9900000095367432],[-12,19.990000009536743],[-12,19.990000009536743],[-11.842187404632568,20.76656174659729],[-11.412499904632568,21.40250039100647],[-10.776562690734863,21.83218789100647],[-10,21.990000009536743],[0,21.990000009536743],[0,21.990000009536743],[0.7765617370605469,21.83218789100647],[1.4125003814697266,21.40250039100647],[1.8421878814697266,20.76656174659729],[2,19.990000009536743],[2,1.9900000095367432],[2,1.9900000095367432],[1.8421878814697266,1.2149999141693115],[1.4125003814697266,0.5824999809265137],[0.7765617370605469,0.15625],[0,0],[0,0]]},{"type":"line","version":127,"versionNonce":968109367,"isDeleted":true,"id":"dulO0U0TqP5glSmxyckdR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":196,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":10,"height":14,"seed":1278914849,"groupIds":["aBRY9H2ZzFj4G_23qtGHG","rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-10,0],[-10,-14],[0,-14],[0,0]]},{"type":"rectangle","version":67,"versionNonce":215590329,"isDeleted":true,"id":"byvCKjxxAty1f_CZXJuMy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":786247023,"groupIds":["qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"}},{"type":"text","version":67,"versionNonce":55012951,"isDeleted":true,"id":"i4AwcWIUW3TXCC3rZZt3p","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":50,"height":18,"seed":451536129,"groupIds":["qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"fontSize":16,"fontFamily":2,"text":"Cloud","baseline":16,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Cloud"},{"type":"line","version":67,"versionNonce":1240368793,"isDeleted":true,"id":"0_kmf_IlAE3siPbBQb6HG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":649,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1288939407,"groupIds":["RA4yD3gjppwfLfztnQB9j","qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":67,"versionNonce":1997900663,"isDeleted":true,"id":"EaLQgzk8PlTKjqkP-_dy1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.3500003814697,"y":-33.96000003814697,"strokeColor":"#00000000","backgroundColor":"#000","width":24,"height":16,"seed":1497865441,"groupIds":["VPXYg6IZraSE6-jP90a6O","qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.3617572784423828,-1.2500581741333008],[-0.9234371185302734,-2.3992185592651367],[-1.6646480560302734,-3.4272069931030273],[-2.565000534057617,-4.31374979019165],[-3.60410213470459,-5.03857421875],[-4.761563301086426,-5.581406116485596],[-6.016992568969727,-5.921972751617432],[-7.350000381469727,-6.039999961853027],[-9.432500839233398,-5.746250152587891],[-11.289999961853027,-4.920000076293945],[-12.84000015258789,-3.6437501907348633],[-14.000000476837158,-2],[-15.094082355499268,-1.7787694931030273],[-16.10578155517578,-1.368281364440918],[-17.015527725219727,-0.7883396148681641],[-17.80375039577484,-0.058750152587890625],[-18.450879275798798,0.8006839752197266],[-18.937344133853912,1.770155906677246],[-19.24357459694147,2.8298635482788086],[-19.350000381469727,3.9600000381469727],[-19.22794959694147,5.168144226074219],[-18.87796914577484,6.293906211853027],[-18.32431674003601,7.313027381896973],[-17.5912504196167,8.201249122619629],[-16.703027725219727,8.93431568145752],[-15.683906555175781,9.487969398498535],[-14.55814504623413,9.8379487991333],[-13.350000381469727,9.960000038146973],[-0.35000038146972656,9.960000038146973],[-0.35000038146972656,9.960000038146973],[0.6572647094726562,9.858359336853027],[1.5956249237060547,9.566874504089355],[2.4449214935302734,9.10570240020752],[3.184999465942383,8.494999885559082],[3.7957019805908203,7.754921913146973],[4.256874084472656,6.905625343322754],[4.548358917236328,5.9672651290893555],[4.649999618530273,4.960000038146973],[4.2890625,3.096562385559082],[3.299999237060547,1.557499885559082],[1.8234367370605469,0.4796876907348633],[0,0],[0,0]]},{"type":"line","version":67,"versionNonce":1467239289,"isDeleted":true,"id":"o84xlrlSa8of6cUbVxl5k","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668,"y":-26,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":20,"height":12,"seed":1983241647,"groupIds":["Xx9ZNke2qHoENg1oIcJ5D","qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-13,0],[-13,0],[-14.55734395980835,-0.31421852111816406],[-15.828749895095825,-1.1712493896484375],[-16.685781240463257,-2.4426565170288086],[-17,-4],[-16.685781240463257,-5.557343482971191],[-15.828749895095825,-6.828749656677246],[-14.55734395980835,-7.685781478881836],[-13,-8],[-12.289999961853027,-8],[-12.289999961853027,-8],[-11.539374828338623,-9.599531173706055],[-10.342499732971191,-10.866250038146973],[-8.796875,-11.699843883514404],[-7,-12],[-5.890859603881836,-11.888359546661377],[-4.858124732971191,-11.568124771118164],[-3.923828125,-11.061327934265137],[-3.109999656677246,-10.389999866485596],[-2.438671112060547,-9.576171875],[-1.931875228881836,-8.641875267028809],[-1.6116409301757812,-7.609140396118164],[-1.5,-6.5],[-1.5,-6],[0,-6],[0,-6],[1.1690616607666016,-5.764687538146973],[2.122499465942383,-5.122500419616699],[2.7646865844726562,-4.169062614440918],[3,-3],[2.7646865844726562,-1.8309383392333984],[2.122499465942383,-0.8775005340576172],[1.1690616607666016,-0.23531341552734375],[0,0],[0,0]]},{"type":"rectangle","version":69,"versionNonce":1097008279,"isDeleted":true,"id":"SoBS8Cr_TmMR_SYRMqFR5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":740,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":109,"height":82,"seed":383998145,"groupIds":["Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"round","boundElements":[{"id":"oeXAa8J4xvSm11RODwd77","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"}},{"type":"text","version":81,"versionNonce":1034843225,"isDeleted":true,"id":"-YYU90TuMypu6oINlESLH","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":747.5,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":94,"height":19,"seed":1043091407,"groupIds":["Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"fontSize":16,"fontFamily":2,"text":"On-Premises","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"On-Premises"},{"type":"line","version":67,"versionNonce":300177847,"isDeleted":true,"id":"f9RKzSCBcckRDZFiQm3nz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":782.5,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1163696289,"groupIds":["vhehBs-6eZAAW8QZm4RNB","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":67,"versionNonce":812679481,"isDeleted":true,"id":"XP7PHm854gGRDhP6d-sl_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":794.5,"y":-37,"strokeColor":"#00000000","backgroundColor":"#000","width":20,"height":18,"seed":1053785583,"groupIds":["9-G26wZQWCx0gX6JdF49S","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-4],[-10,-4],[-10,14],[10,14],[10,0],[0,0]]},{"type":"line","version":67,"versionNonce":767429335,"isDeleted":true,"id":"4WNkpeeiw8tmX8Gv1LRO_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1986190465,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":488501785,"isDeleted":true,"id":"7ruYDoI_fovS_QE9cb7iF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-29,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":992471055,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":1099208695,"isDeleted":true,"id":"8UjOZluHYSF1Qfddzeznd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-33,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1505076321,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":2024425209,"isDeleted":true,"id":"K1C4qeBqz-4FxqDcBLWm4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-37,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":19795503,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":1933345047,"isDeleted":true,"id":"7hGTdHrNk14cB9HYG3QHR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":2065985601,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":1301872601,"isDeleted":true,"id":"VCaHhW2LYWP0VXWs-rolH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-29,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":197816399,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":878331447,"isDeleted":true,"id":"9ZClsnKA-4hZ5CQfbG02n","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-33,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1083097121,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":167615673,"isDeleted":true,"id":"-0r8kSCpT8RoA4jygqHce","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-37,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1691717231,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":67,"versionNonce":1405249367,"isDeleted":true,"id":"k73ssyB--pVLNh8n362KZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":802.5,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":8,"height":10,"seed":669258753,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-8,0],[-8,-2],[-6,-2],[-6,-4],[-8,-4],[-8,-6],[-6,-6],[-6,-8],[-8,-8],[-8,-10],[0,-10],[0,0]]},{"type":"line","version":67,"versionNonce":226205081,"isDeleted":true,"id":"AjpdrOL6SDvHftKF0AR9W","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":800.5,"y":-33,"strokeColor":"#00000000","backgroundColor":"#000","width":2,"height":2,"seed":1192749199,"groupIds":["ve0oKS5tqVeFQ29waG9z_","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,2],[0,2],[0,0]]},{"type":"line","version":67,"versionNonce":1338598519,"isDeleted":true,"id":"KutwLAggp0K8lhJUL8tOY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":800.5,"y":-29,"strokeColor":"#00000000","backgroundColor":"#000","width":2,"height":2,"seed":1159982049,"groupIds":["ve0oKS5tqVeFQ29waG9z_","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,2],[0,2],[0,0]]},{"type":"rectangle","version":105,"versionNonce":2001109625,"isDeleted":true,"id":"qSr1VhlJ9kDLU0Wu5DDyA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":120,"y":200,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":4849327,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"},{"id":"N3M63cNjcTvZhPHB36J_k","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"container"}},{"type":"text","version":100,"versionNonce":1748221335,"isDeleted":true,"id":"uLD9bucbaaLwNLwcmkNi9","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":216,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":6145985,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Run","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Run"},{"type":"line","version":99,"versionNonce":874629977,"isDeleted":true,"id":"Upi9t59zAXCVJgZpvFFAF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.90666675567627,"y":218.6266667842865,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":12.466668128967285,"height":9.373333215713501,"seed":320098511,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.1133337020874023,9.373333215713501],[12.466668128967285,9.373333215713501],[0,0],[0,0]]},{"type":"line","version":99,"versionNonce":1882583735,"isDeleted":true,"id":"dDipeLK-2vH_BX6HOlQrE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":341.37333488464355,"y":228,"strokeColor":"transparent","backgroundColor":"#4285f4","width":12.466668128967285,"height":9.373334884643555,"seed":330377121,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.353334426879883,0],[-12.466668128967285,9.373334884643555],[0,0],[0,0]]},{"type":"line","version":99,"versionNonce":1281423417,"isDeleted":true,"id":"M-fclitvDquwg89F_bCCo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":323.44000005722046,"y":237.37333488464355,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.4666666984558105,"height":9.373334884643555,"seed":420437743,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.126667022705078,-1.5600013732910156],[5.4666666984558105,-9.373334884643555],[2.3400001525878906,-9.373334884643555],[0,0],[0,0]]},{"type":"line","version":99,"versionNonce":1618248663,"isDeleted":true,"id":"JnUQVgBTw67kOouHX77FB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":323.44000005722046,"y":218.6266667842865,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":5.4666666984558105,"height":9.373333215713501,"seed":1229818753,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3400001525878906,9.373333215713501],[5.4666666984558105,9.373333215713501],[3.126667022705078,1.5600001811981201],[0,0],[0,0]]},{"type":"rectangle","version":86,"versionNonce":1910999321,"isDeleted":true,"id":"npx8Hz75hgm3swD6_2iyY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":120,"y":320,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1690544399,"groupIds":["4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"round","boundElements":[{"id":"N3M63cNjcTvZhPHB36J_k","type":"arrow"}],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"container"}},{"type":"text","version":81,"versionNonce":688124151,"isDeleted":true,"id":"Yn_yBP7W7hT9OU-eZWLT1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":336,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":2037543777,"groupIds":["4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Logging","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Logging"},{"type":"line","version":81,"versionNonce":1311309305,"isDeleted":true,"id":"obw8Pi0-DPdzn1NgbmCtO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":329.85806465148926,"y":349.35914039611816,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":6.4645161628723145,"height":15.083869934082031,"seed":1672064815,"groupIds":["Ii9EPx28h_2Ltznm9_g0T","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.154839515686035],[-4.309677600860596,-2.154839515686035],[-4.309677600860596,-7.539785385131836],[-6.4645161628723145,-7.539785385131836],[-6.4645161628723145,7.544084548950195],[0,7.544084548950195],[0,5.389245986938477],[-4.309677600860596,5.389245986938477],[-4.309677600860596,0],[0,0]]},{"type":"line","version":81,"versionNonce":1130936855,"isDeleted":true,"id":"roVzUmE4QUgv__jXKAUDE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.7784948348999,"y":342.8946237564087,"strokeColor":"#00000000","backgroundColor":"#669df6","width":14.004302024841309,"height":4.3053765296936035,"seed":1215258433,"groupIds":["y1d7xwHyjE-wliVKC9fCt","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[14.004302024841309,0],[14.004302024841309,-4.3053765296936035],[0,-4.3053765296936035],[0,0]]},{"type":"line","version":81,"versionNonce":271111897,"isDeleted":true,"id":"zeyftvOIg5-jMFJNT8R1n","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.7784948348999,"y":350.4387102127075,"strokeColor":"#00000000","backgroundColor":"#669df6","width":14.004302024841309,"height":4.309678077697754,"seed":1076490575,"groupIds":["y1d7xwHyjE-wliVKC9fCt","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[14.004302024841309,0],[14.004302024841309,-4.309678077697754],[0,-4.309678077697754],[0,0]]},{"type":"line","version":81,"versionNonce":77029175,"isDeleted":true,"id":"WLZfwEGcl4O_fuH5GgVhR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.7784948348999,"y":357.97849464416504,"strokeColor":"#00000000","backgroundColor":"#669df6","width":14.004302024841309,"height":4.3096771240234375,"seed":614715169,"groupIds":["y1d7xwHyjE-wliVKC9fCt","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[14.004302024841309,0],[14.004302024841309,-4.3096771240234375],[0,-4.3096771240234375],[0,0]]},{"type":"line","version":81,"versionNonce":981111737,"isDeleted":true,"id":"5FvriNfwi-1VwsyQcmJkR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":321.23870968818665,"y":343.9741930961609,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.4645164012908936,"height":6.464515686035156,"seed":1134358383,"groupIds":["HTBdtz_iv6ftotiAP86yr","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[6.4645164012908936,0],[6.4645164012908936,-6.464515686035156],[0,-6.464515686035156],[0,0]]},{"type":"rectangle","version":137,"versionNonce":787767383,"isDeleted":true,"id":"jKFQ6AEoQ5G3FvmeJjBI1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":440,"y":300,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":75449089,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":155,"versionNonce":826389657,"isDeleted":true,"id":"6Gdn1-ng_LCJrHZIbTqmO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":316,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":118,"height":37,"seed":2018191759,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"round","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"BigQuery Data \nTransfer Service","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery Data \nTransfer Service"},{"type":"line","version":131,"versionNonce":1146371447,"isDeleted":true,"id":"C16nNj6hnqQBox7nKvHRt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":658.421215057373,"y":332.79999923706055,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":1686190817,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":131,"versionNonce":137476473,"isDeleted":true,"id":"xTkpgHgrFLJKDkIak8Ujw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":651.2549142837524,"y":317.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":191700911,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":131,"versionNonce":402355863,"isDeleted":true,"id":"R8Nu8_bMJEvE8mMgtaKWR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":651.2549142837524,"y":334.25647354125977,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":87635649,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":131,"versionNonce":277750361,"isDeleted":true,"id":"YNy3njIQrlUC1ZhWk3Fk6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":651.2549142837524,"y":334.25647354125977,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":1865109967,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":131,"versionNonce":547261367,"isDeleted":true,"id":"9Qlb4tuIKcoYZQzzSThZK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":646.7132601737976,"y":326.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":1766241953,"groupIds":["Ds0GI30dPCA8HPusc2b__","t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442473,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":131,"versionNonce":657092409,"isDeleted":true,"id":"eno2qBddipOxHBYCGD-1j","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":650.0755071640015,"y":324.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":1017004015,"groupIds":["Qf4Uw2dD1cBOrt0fhhU2o","t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":131,"versionNonce":174193879,"isDeleted":true,"id":"kgGBcS9PhnR92Ey-YuDpV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":654.0630264282227,"y":328.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":324614785,"groupIds":["3Vqpitu9fWBXXWT5hUCOd","t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"arrow","version":75,"versionNonce":1114251289,"isDeleted":true,"id":"N3M63cNjcTvZhPHB36J_k","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":261,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":58,"seed":1439590927,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,58]],"fontFamily":2},{"type":"rectangle","version":1193,"versionNonce":148523511,"isDeleted":false,"id":"DYaaB9-Upcbvgkx-N9rbN","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":60,"y":400,"strokeColor":"#34a853","backgroundColor":"#ceead6","width":900,"height":260,"seed":70271585,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"PiqrL0eWlHBfTKdGN3bVH","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"a7jxO9KBbu7x0PTSp8V8R","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":90,"versionNonce":1077982457,"isDeleted":true,"id":"nL2lT2KxwSWQfETys3YkU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":460,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1202999343,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"round","boundElements":[{"id":"4kXwJH1dLqUAAORSO3NPX","type":"arrow"},{"id":"0jBnfLa8x-7PG-dHNSIyq","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":88,"versionNonce":1762390807,"isDeleted":true,"id":"rasyQ0CHhsp3CsEfuzqpg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":296,"y":476,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":2023444033,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"BigQuery","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery"},{"type":"text","version":100,"versionNonce":1949412825,"isDeleted":true,"id":"jv2zzqV6Bhp1slRGCSA_c","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":296,"y":498,"strokeColor":"#202124","backgroundColor":"transparent","width":120,"height":19,"seed":1815638607,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"Data Warehouse","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Data Warehouse"},{"type":"line","version":85,"versionNonce":1667987511,"isDeleted":true,"id":"g_8oGPIIfJ26l2d6DYb_r","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":498.42121505737305,"y":492.79999923706055,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":1736039969,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":85,"versionNonce":1968212665,"isDeleted":true,"id":"usRDjBw5ws4B7H-WHKaeX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":491.25491428375244,"y":477.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":1278431343,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":85,"versionNonce":769481047,"isDeleted":true,"id":"rmVF8p_ePYCrvy5d1mwk8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":491.25491428375244,"y":494.25647354125977,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":1069249025,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":85,"versionNonce":742443929,"isDeleted":true,"id":"cbIBZylvCmBG1E6rhpd6R","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":491.25491428375244,"y":494.25647354125977,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":1097689743,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":85,"versionNonce":1303778935,"isDeleted":true,"id":"f4tuTGE4Jh1gzQ70-xIN_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":486.7132601737976,"y":486.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":1717537249,"groupIds":["kt5YX_q77_IepwRy7W0dT","v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":85,"versionNonce":557183097,"isDeleted":true,"id":"uAQjzSIMVu7foiNKig1Ua","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":490.07550716400146,"y":484.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":1486831791,"groupIds":["bvKsdz5PYT61BwaiJ78bc","v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":85,"versionNonce":700067735,"isDeleted":true,"id":"sMoTA5a160FCKmlnFJo55","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":494.06302642822266,"y":488.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":1953867201,"groupIds":["PwHcwbiCZw-OC4KjfEQzg","v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"rectangle","version":69,"versionNonce":166951257,"isDeleted":true,"id":"iHAHXdGWgA7lLPLlYdzk4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":460,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1936806607,"groupIds":["aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"round","boundElements":[{"id":"0jBnfLa8x-7PG-dHNSIyq","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"container"}},{"type":"text","version":65,"versionNonce":1545479351,"isDeleted":true,"id":"xz3-NJXbvk7bJrFHdyA7W","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":476,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":891110817,"groupIds":["aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"fontSize":16,"fontFamily":2,"text":"Looker Studio","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Looker Studio"},{"type":"text","version":84,"versionNonce":399304249,"isDeleted":true,"id":"Ja-6sfaquNvBjyxhpayRh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":498,"strokeColor":"#202124","backgroundColor":"transparent","width":99,"height":19,"seed":712777967,"groupIds":["aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"fontSize":16,"fontFamily":2,"text":"Visualizations","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Visualizations"},{"type":"line","version":65,"versionNonce":1149662679,"isDeleted":true,"id":"lv3E4PkfO4Mfz0QfMGIDG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":831.934796333313,"y":478.25,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":3.444951057434082,"height":3.3636693954467773,"seed":1669720449,"groupIds":["RJ9HV3J7GAggYoRpmTAKv","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.17994022369384766,0.008455276489257812],[-0.3534507751464844,0.03334450721740723],[-0.5198154449462891,0.07395315170288086],[-0.6783208847045898,0.12956690788269043],[-0.8282508850097656,0.19947099685668945],[-0.9688930511474609,0.28295135498046875],[-1.099532127380371,0.37929272651672363],[-1.2194528579711914,0.4877810478210449],[-1.3279409408569336,0.6077020168304443],[-1.4242830276489258,0.7383408546447754],[-1.5077619552612305,0.8789827823638916],[-1.577667236328125,1.0289134979248047],[-1.6332807540893555,1.1874184608459473],[-1.67388916015625,1.3537836074829102],[-1.6987791061401367,1.5272934436798096],[-1.7072334289550781,1.7072343826293945],[-1.6907224655151367,1.9511208534240723],[-1.668654441833496,2.0730676651000977],[-1.6361074447631836,2.1950159072875977],[-1.5921268463134766,2.3169636726379395],[-1.5357608795166016,2.438910484313965],[-1.4660577774047852,2.5608553886413574],[-1.3820619583129883,2.6827969551086426],[-0.650390625,1.951125144958496],[-0.650390625,1.7072343826293945],[-0.650390625,1.7072343826293945],[-0.6356239318847656,1.5590853691101074],[-0.5932302474975586,1.4214184284210205],[-0.5260677337646484,1.2970912456512451],[-0.43699169158935547,1.1889610290527344],[-0.3288612365722656,1.0998854637145996],[-0.20453453063964844,1.032721996307373],[-0.06686687469482422,0.9903287887573242],[0.08128070831298828,0.975562334060669],[0.2294301986694336,0.9903287887573242],[0.3670969009399414,1.032721996307373],[0.491424560546875,1.0998854637145996],[0.5995550155639648,1.1889610290527344],[0.6886301040649414,1.2970912456512451],[0.7557945251464844,1.4214184284210205],[0.7981882095336914,1.5590853691101074],[0.812952995300293,1.7072343826293945],[0.7981882095336914,1.8553833961486816],[0.7557945251464844,1.9930505752563477],[0.6886301040649414,2.117377758026123],[0.5995550155639648,2.2255077362060547],[0.491424560546875,2.3145833015441895],[0.3670969009399414,2.381746292114258],[0.2294301986694336,2.424139976501465],[0.08128070831298828,2.438906192779541],[-0.16260910034179688,2.438906192779541],[-0.8942804336547852,3.089296817779541],[-0.8942804336547852,3.089296817779541],[-0.739192008972168,3.1731338500976562],[-0.5795764923095703,3.241727828979492],[-0.4166259765625,3.2950782775878906],[-0.25153160095214844,3.3331851959228516],[-0.08548355102539062,3.356049060821533],[0.08032703399658203,3.3636693954467773],[0.24470806121826172,3.3560471534729004],[0.40647029876708984,3.333181381225586],[0.5644235610961914,3.2950730323791504],[0.717371940612793,3.2417216300964355],[0.8641300201416016,3.1731271743774414],[1.003504753112793,3.0892906188964844],[1.134303092956543,2.99021053314209],[1.2553377151489258,2.875887870788574],[1.3654146194458008,2.7463231086730957],[1.463343620300293,2.601515769958496],[1.5471820831298828,2.4464268684387207],[1.6157751083374023,2.2868118286132812],[1.6691255569458008,2.123861312866211],[1.7072334289550781,1.9587664604187012],[1.7300958633422852,1.7927179336547852],[1.737717628479004,1.6269078254699707],[1.7300939559936523,1.4625258445739746],[1.707228660583496,1.3007636070251465],[1.6691198348999023,1.1428120136260986],[1.615769386291504,0.9898619651794434],[1.547175407409668,0.843104362487793],[1.4633378982543945,0.703730583190918],[1.3642587661743164,0.5729315280914307],[1.2499361038208008,0.45189762115478516],[1.1203699111938477,0.34182024002075195],[0.9755620956420898,0.24389052391052246],[0.8802938461303711,0.18672418594360352],[0.7774038314819336,0.13718199729919434],[0.6668920516967773,0.09526300430297852],[0.5487604141235352,0.06096673011779785],[0.4230051040649414,0.03429293632507324],[0.2896261215209961,0.015241146087646484],[0.14862537384033203,0.0038101673126220703],[0,0],[0,0]]},{"type":"line","version":65,"versionNonce":94746393,"isDeleted":true,"id":"hi-sManixaxYkyjn_NM49","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":831.2844533920288,"y":483.2091407775879,"strokeColor":"#00000000","backgroundColor":"#669df6","width":1.7072343826293945,"height":3.902249813079834,"seed":1867000591,"groupIds":["XKXrpiSYsFd_sg-EA4r4W","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.007622718811035156,-0.2132415771484375],[-0.030488967895507812,-0.4255342483520508],[-0.06859874725341797,-0.6359243392944336],[-0.12195110321044922,-0.8434572219848633],[-0.19054698944091797,-1.04718017578125],[-0.274383544921875,-1.2461400032043457],[-0.3734626770019531,-1.4393820762634277],[-0.4877815246582031,-1.625953197479248],[-1.463343620300293,-0.650390625],[-1.463343620300293,-0.650390625],[-1.4036455154418945,-0.48017311096191406],[-1.3515586853027344,-0.3251953125],[-1.3147125244140625,-0.17021846771240234],[-1.3043880462646484,-0.0879669189453125],[-1.300734519958496,0],[-1.3081979751586914,0.14862489700317383],[-1.3299531936645508,0.2896270751953125],[-1.365046501159668,0.4230051040649414],[-1.4125261306762695,0.5487594604492188],[-1.4714374542236328,0.6668920516967773],[-1.540827751159668,0.7774033546447754],[-1.6197443008422852,0.8802928924560547],[-1.7072343826293945,0.9755620956420898],[-1.2194528579711914,2.276296615600586],[-1.2194528579711914,2.276296615600586],[-1.0717878341674805,2.180173873901367],[-0.9336481094360352,2.075118064880371],[-0.8050355911254883,1.9617271423339844],[-0.6859493255615234,1.8405942916870117],[-0.5763893127441406,1.7123165130615234],[-0.47635650634765625,1.5774898529052734],[-0.3858489990234375,1.4367084503173828],[-0.3048696517944336,1.290567398071289],[-0.23341655731201172,1.1396656036376953],[-0.17148971557617188,0.9845943450927734],[-0.11909008026123047,0.8259515762329102],[-0.0762186050415039,0.664332389831543],[-0.04287242889404297,0.5003318786621094],[-0.019054412841796875,0.3345456123352051],[-0.004763603210449219,0.1675701141357422],[0,0],[0,0]]},{"type":"line","version":65,"versionNonce":1510449911,"isDeleted":true,"id":"RqM-RGkzd6CkH7bjvD5bI","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":828.6829376220703,"y":484.5911560058594,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.471312999725342,"height":5.365593910217285,"seed":686756193,"groupIds":["bwrehPALZbZq3dciq3XNx","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.13609695434570312,-0.00656890869140625],[-0.2694549560546875,-0.025880813598632812],[-0.39924144744873047,-0.057338714599609375],[-0.5246210098266602,-0.10034751892089844],[-0.6447620391845703,-0.1543130874633789],[-0.7588291168212891,-0.21863937377929688],[-0.8659892082214355,-0.29272937774658203],[-0.9654083251953125,-0.3759899139404297],[-1.056253433227539,-0.46782493591308594],[-1.137690544128418,-0.5676383972167969],[-1.2088861465454102,-0.674835205078125],[-1.2690067291259766,-0.7888202667236328],[-1.31721830368042,-0.9089984893798828],[-1.352686882019043,-1.0347728729248047],[-1.3745794296264648,-1.1655502319335938],[-1.3820629119873047,-1.3007335662841797],[-1.375493049621582,-1.4368314743041992],[-1.3561820983886719,-1.5701894760131836],[-1.324723243713379,-1.6999750137329102],[-1.2817144393920898,-1.8253555297851562],[-1.2277488708496094,-1.9454960823059082],[-1.1634235382080078,-2.0595626831054688],[-1.0893325805664062,-2.1667232513427734],[-1.0060720443725586,-2.2661423683166504],[-0.9142374992370605,-2.356987953186035],[-0.8144245147705078,-2.438424587249756],[-0.7072277069091797,-2.5096206665039062],[-0.5932426452636719,-2.5697402954101562],[-0.4730644226074219,-2.617952346801758],[-0.3472890853881836,-2.653421401977539],[-0.21651172637939453,-2.675313949584961],[-0.08132743835449219,-2.6827964782714844],[0.013623237609863281,-2.6789865493774414],[0.11429023742675781,-2.667555809020996],[0.3251485824584961,-2.6218299865722656],[0.5360069274902344,-2.5456151962280273],[0.6366739273071289,-2.4960718154907227],[0.7316246032714844,-2.438905715942383],[1.7071876525878906,-3.3331871032714844],[1.7071876525878906,-3.3331871032714844],[1.4936275482177734,-3.5046730041503906],[1.2791128158569336,-3.6532936096191406],[1.0626907348632812,-3.779049873352051],[0.843409538269043,-3.881941318511963],[0.6203193664550781,-3.961967945098877],[0.39246654510498047,-4.019129753112793],[0.15890121459960938,-4.053426742553711],[-0.08132743835449219,-4.064859390258789],[-0.35260868072509766,-4.050806999206543],[-0.6167440414428711,-4.0096025466918945],[-0.8723058700561523,-3.9426755905151367],[-1.117863655090332,-3.851454734802246],[-1.3519887924194336,-3.7373695373535156],[-1.5732526779174805,-3.6018481254577637],[-1.780226230621338,-3.446320056915283],[-1.971480369567871,-3.272214889526367],[-2.1455860137939453,-3.080960750579834],[-2.301114082336426,-2.8739871978759766],[-2.4366350173950195,-2.6527228355407715],[-2.5507211685180664,-2.41859769821167],[-2.6419410705566406,-2.173039436340332],[-2.7088685035705566,-1.917478084564209],[-2.750072956085205,-1.6533427238464355],[-2.764125347137451,-1.3820619583129883],[-2.7509660720825195,-1.1107816696166992],[-2.7122020721435547,-0.8466458320617676],[-2.64890718460083,-0.5910854339599609],[-2.5621509552001953,-0.34552669525146484],[-2.4530067443847656,-0.11140155792236328],[-2.322545051574707,0.1098623275756836],[-2.171839714050293,0.3168363571166992],[-2.0019612312316895,0.5080900192260742],[-1.813981056213379,0.6821956634521484],[-1.6089725494384766,0.8377237319946289],[-1.3880057334899902,0.9732446670532227],[-1.1521539688110352,1.0873308181762695],[-0.9024887084960938,1.1785516738891602],[-0.640080451965332,1.2454776763916016],[-0.36600399017333984,1.28668212890625],[-0.08132743835449219,1.300734519958496],[0.053328514099121094,1.2994651794433594],[0.20322036743164062,1.2905750274658203],[0.3531036376953125,1.266444206237793],[0.42327880859375,1.2462825775146484],[0.4877347946166992,1.2194538116455078],[-0.00004673004150390625,0],[0,0]]},{"type":"line","version":65,"versionNonce":1710320633,"isDeleted":true,"id":"ZDa5aYhmxJOkXlzeYdjTY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832.0161247253418,"y":485.6480464935303,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":12.04841136932373,"height":12.080839157104492,"seed":1850601775,"groupIds":["o-BtIZ21gP2H5JvBLlRQd","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.4268035888671875,0.015241622924804688],[-0.8536167144775391,0.060967445373535156],[-1.2804298400878906,0.13718223571777344],[-1.7072334289550781,0.24389076232910156],[-0.9755620956420898,2.032406806945801],[-0.9755620956420898,2.032406806945801],[-0.7316761016845703,2.0197067260742188],[-0.4877805709838867,1.9917659759521484],[-0.24388599395751953,1.9638252258300781],[0,1.9511260986328125],[0.21193504333496094,1.9565563201904297],[0.4207725524902344,1.9726600646972656],[0.6262760162353516,1.999155044555664],[0.8282089233398438,2.035757064819336],[1.0263290405273438,2.082183837890625],[1.2204017639160156,2.138153076171875],[1.410186767578125,2.2033815383911133],[1.5954465866088867,2.277585983276367],[1.7759437561035156,2.360483169555664],[1.9514389038085938,2.451791763305664],[2.121694564819336,2.551227569580078],[2.2864723205566406,2.65850830078125],[2.445535659790039,2.773350715637207],[2.5986413955688477,2.8954734802246094],[2.745555877685547,3.0245914459228516],[2.8860416412353516,3.16042423248291],[3.019857406616211,3.3026866912841797],[3.1467647552490234,3.4510974884033203],[3.266529083251953,3.6053733825683594],[3.378908157348633,3.7652320861816406],[3.4836654663085938,3.9303884506225586],[3.580564498901367,4.10056209564209],[3.6693649291992188,4.275468826293945],[3.7498302459716797,4.454828262329102],[3.8217201232910156,4.638354301452637],[3.8847970962524414,4.825765609741211],[3.938823699951172,5.016780853271484],[3.983560562133789,5.211113929748535],[4.018772125244141,5.408483505249023],[4.044218063354492,5.608607292175293],[4.059659957885742,5.811202049255371],[4.064859390258789,6.015983581542969],[4.059429168701172,6.22791862487793],[4.043325424194336,6.436758041381836],[4.0168304443359375,6.64225959777832],[3.9802284240722656,6.8441925048828125],[3.93380069732666,7.042314529418945],[3.8778324127197266,7.236387252807617],[3.812602996826172,7.426172256469727],[3.7383995056152344,7.611433029174805],[3.6555023193359375,7.791929244995117],[3.5641937255859375,7.967424392700195],[3.4647579193115234,8.137680053710938],[3.357476234436035,8.302457809448242],[3.242633819580078,8.461519241333008],[3.120512008666992,8.614625930786133],[2.991392135620117,8.761541366577148],[2.8555612564086914,8.90202522277832],[2.713298797607422,9.03584098815918],[2.564887046813965,9.162750244140625],[2.410612106323242,9.282512664794922],[2.250753402709961,9.394891738891602],[2.085597038269043,9.499650955200195],[1.9154224395751953,9.596549987792969],[1.7405147552490234,9.68535041809082],[1.5611572265625,9.765813827514648],[1.3776302337646484,9.837703704833984],[1.1902179718017578,9.900781631469727],[0.9992046356201172,9.954809188842773],[0.8048715591430664,9.99954605102539],[0.6075019836425781,10.034757614135742],[0.4073781967163086,10.060201644897461],[0.20478343963623047,10.075643539428711],[0,10.080842971801758],[-0.21193408966064453,10.075414657592773],[-0.4207725524902344,10.059309005737305],[-0.6262760162353516,10.032814025878906],[-0.8282070159912109,9.996212005615234],[-1.0263290405273438,9.949785232543945],[-1.2204017639160156,9.893815994262695],[-1.410186767578125,9.828588485717773],[-1.5954465866088867,9.754384994506836],[-1.7759437561035156,9.671485900878906],[-1.9514389038085938,9.580177307128906],[-2.121694564819336,9.480741500854492],[-2.2864723205566406,9.37346076965332],[-2.4455337524414062,9.25861930847168],[-2.5986413955688477,9.136495590209961],[-2.745555877685547,9.007377624511719],[-2.886040687561035,8.871545791625977],[-3.0198564529418945,8.72928237915039],[-3.1467647552490234,8.58087158203125],[-3.2665281295776367,8.426595687866211],[-3.3789072036743164,8.26673698425293],[-3.4836654663085938,8.101581573486328],[-3.580564498901367,7.931407928466797],[-3.6693649291992188,7.756500244140625],[-3.7498292922973633,7.577140808105469],[-3.821718215942383,7.39361572265625],[-3.884796142578125,7.206203460693359],[-3.938823699951172,7.015188217163086],[-3.983560562133789,6.820856094360352],[-4.018771648406982,6.62348747253418],[-4.044217109680176,6.423362731933594],[-4.059658527374268,6.220767974853516],[-4.064859390258789,6.015983581542969],[-4.055392265319824,5.728410720825195],[-4.027228355407715,5.44548225402832],[-3.9807252883911133,5.16802978515625],[-3.916240692138672,4.896888732910156],[-3.83413028717041,4.632892608642578],[-3.7347536087036133,4.376873970031738],[-3.6184654235839844,4.129669189453125],[-3.4856252670288086,3.8921079635620117],[-3.336587905883789,3.665027618408203],[-3.1717119216918945,3.449258804321289],[-2.991353988647461,3.2456369400024414],[-2.795872688293457,3.054995536804199],[-2.585622787475586,2.8781681060791016],[-2.360963821411133,2.7159881591796875],[-2.122251510620117,2.5692901611328125],[-1.8698434829711914,2.4389076232910156],[-2.6015148162841797,0.650390625],[-2.6015148162841797,0.650390625],[-2.8782453536987305,0.7939214706420898],[-3.144331932067871,0.9497756958007812],[-3.3996124267578125,1.1174211502075195],[-3.643922805786133,1.2963199615478516],[-3.8770971298217773,1.4859371185302734],[-4.098974704742432,1.685734748840332],[-4.309389114379883,1.8951797485351562],[-4.5081787109375,2.1137351989746094],[-4.695178031921387,2.3408641815185547],[-4.870224952697754,2.5760316848754883],[-5.033154487609863,2.8187007904052734],[-5.183803081512451,3.068338394165039],[-5.322007179260254,3.3244056701660156],[-5.447603225708008,3.586367607116699],[-5.560426712036133,3.853689193725586],[-5.660314559936523,4.125831604003906],[-5.747101783752441,4.402263641357422],[-5.820626735687256,4.682445526123047],[-5.88072395324707,4.96584415435791],[-5.927229881286621,5.251920700073242],[-5.959981441497803,5.540142059326172],[-5.978815078735352,5.829970359802246],[-5.983565330505371,6.120870590209961],[-5.974069595336914,6.4123077392578125],[-5.950164794921875,6.703742980957031],[-5.911684989929199,6.9946441650390625],[-5.858469009399414,7.28447151184082],[-5.790351390838623,7.57269287109375],[-5.7071685791015625,7.858770370483398],[-5.608757019042969,8.142168045043945],[-5.494953632354736,8.42234992980957],[-5.365592956542969,8.698781967163086],[-5.2220635414123535,8.975515365600586],[-5.0662078857421875,9.241607666015625],[-4.898563385009766,9.496889114379883],[-4.719664573669434,9.741201400756836],[-4.53004789352417,9.97437858581543],[-4.330248832702637,10.196256637573242],[-4.120804309844971,10.406675338745117],[-3.902250289916992,10.605464935302734],[-3.6751203536987305,10.792465209960938],[-3.439952850341797,10.967512130737305],[-3.1972827911376953,11.130441665649414],[-2.9476470947265625,11.281089782714844],[-2.691579818725586,11.419294357299805],[-2.429616928100586,11.54488754272461],[-2.1622962951660156,11.657711029052734],[-1.8901519775390625,11.757596969604492],[-1.6137208938598633,11.844385147094727],[-1.3335380554199219,11.91790771484375],[-1.050140380859375,11.978004455566406],[-0.7640628814697266,12.024507522583008],[-0.4758424758911133,12.057258605957031],[-0.18601417541503906,12.076089859008789],[0.10488700866699219,12.080839157104492],[0.39632320404052734,12.071342468261719],[0.6877584457397461,12.047435760498047],[0.9786586761474609,12.008955001831055],[1.2684879302978516,11.955738067626953],[1.5567083358764648,11.88762092590332],[1.8427867889404297,11.804435729980469],[2.12618350982666,11.706024169921875],[2.4063663482666016,11.592218399047852],[2.6827964782714844,11.462860107421875],[2.9595279693603516,11.319330215454102],[3.225614547729492,11.163475036621094],[3.4808950424194336,10.995828628540039],[3.725203514099121,10.816930770874023],[3.9583797454833984,10.627313613891602],[4.180255889892578,10.427515029907227],[4.3906707763671875,10.218070983886719],[4.589460372924805,9.999517440795898],[4.776460647583008,9.77238655090332],[4.951507568359375,9.537220001220703],[5.114437103271484,9.294549942016602],[5.265085220336914,9.044912338256836],[5.403289794921875,8.788846969604492],[5.5288848876953125,8.526884078979492],[5.6417083740234375,8.259561538696289],[5.741596221923828,7.987417221069336],[5.8283843994140625,7.710987091064453],[5.901908874511719,7.430803298950195],[5.962005615234375,7.147407531738281],[6.008510589599609,6.861330032348633],[6.041263580322266,6.573108673095703],[6.060096740722656,6.283281326293945],[6.064846038818359,5.992380142211914],[6.055351257324219,5.700943946838379],[6.03144645690918,5.409507751464844],[5.99296760559082,5.1186065673828125],[5.939750671386719,4.828778266906738],[5.871633529663086,4.540557861328125],[5.788450241088867,4.254480361938477],[5.690040588378906,3.9710826873779297],[5.576234817504883,3.6909008026123047],[5.446876525878906,3.414468765258789],[5.236549377441406,3.0411930084228516],[5.002763748168945,2.6842308044433594],[4.746826171875,2.3446550369262695],[4.4700469970703125,2.0235366821289062],[4.173738479614258,1.7219486236572266],[3.8592090606689453,1.4409618377685547],[3.527769088745117,1.181650161743164],[3.180727005004883,0.9450826644897461],[2.8193931579589844,0.7323322296142578],[2.445079803466797,0.5444717407226562],[2.0590953826904297,0.3825712203979492],[1.6627492904663086,0.24770355224609375],[1.2573509216308594,0.14094161987304688],[0.8442134857177734,0.0633554458618164],[0.42464447021484375,0.016017913818359375],[-0.0000476837158203125,0],[0,0]]},{"type":"line","version":69,"versionNonce":1025911831,"isDeleted":true,"id":"QvDFKQuoYBb8QKTP-szuw","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":200,"y":380,"strokeColor":"#000000","backgroundColor":"transparent","width":0,"height":120,"seed":1520975169,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,120]],"fontFamily":2},{"type":"text","version":336,"versionNonce":817071321,"isDeleted":true,"id":"hnC_bsf2Afagia8FOc5FB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":460,"y":680,"strokeColor":"#202124","backgroundColor":"transparent","width":124,"height":19,"seed":821424975,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"p0S5NKIgKqSfDkV9tM2wc","label":"Region","resource":"region","type":"child"},"fontSize":16.444444444444446,"fontFamily":2,"text":"DATA ANALYSIS","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA ANALYSIS"},{"type":"rectangle","version":76,"versionNonce":165056823,"isDeleted":true,"id":"UbTdotD4BefGl3ikKibHf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":160,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":2014375201,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":69,"versionNonce":293568953,"isDeleted":true,"id":"ZruJ0Dr4CXrrcS3v5JbbF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":176,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":2140713327,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":79,"versionNonce":1769820759,"isDeleted":true,"id":"Gx1803BvWzRHZzU4lHskY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":198,"strokeColor":"#202124","backgroundColor":"transparent","width":74,"height":19,"seed":1754833153,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Data Lake","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Data Lake"},{"type":"rectangle","version":69,"versionNonce":1970856601,"isDeleted":true,"id":"HRvci0cWXPKn_nWSmNbOi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":180,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":58633103,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":1693380471,"isDeleted":true,"id":"LywRVvMkWXe1OQXIDWI4J","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":840,"y":180,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":2042550497,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":69,"versionNonce":1498621817,"isDeleted":true,"id":"oSdFKzdYPmvznI_tHpb6s","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":842,"y":180,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":685793711,"groupIds":["IH1KPRANnsiP1tsa3xD8k","ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":69,"versionNonce":1987045527,"isDeleted":true,"id":"VndU5Z2yer77e2BhpirKa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":180,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":487789761,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":1464979545,"isDeleted":true,"id":"pwG-8shbFVZi3pmwR6OGY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":826,"y":183,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1088836559,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":1538571703,"isDeleted":true,"id":"7REEO6xhenBL-dRxy7oOZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":835,"y":182,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1714738337,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":1967676729,"isDeleted":true,"id":"fTopVi_tyi1Rqvh6JCFi7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":189,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1672020463,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":669118167,"isDeleted":true,"id":"bg70mrO7enesWDllTvU4_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":840,"y":189,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1221826689,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":69,"versionNonce":848973337,"isDeleted":true,"id":"9s1bLMBaGYxrz7ltyS9lb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":842,"y":189,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":305196047,"groupIds":["YbOeYVwfD8p5X2CLELLai","ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":69,"versionNonce":361495543,"isDeleted":true,"id":"b_DfqH7PtMbxEm0GHMtOl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":189,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":380559457,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":1446716153,"isDeleted":true,"id":"X-aTibOLxLtCuD-u6BgQ4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":826,"y":192,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":410423855,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":69,"versionNonce":414672151,"isDeleted":true,"id":"4zlmqfIt4KyH5Fhp0-pBa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":835,"y":191,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1033251905,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"arrow","version":89,"versionNonce":2091801561,"isDeleted":true,"id":"4kXwJH1dLqUAAORSO3NPX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":200,"y":500,"strokeColor":"#202124","backgroundColor":"#202124","width":79,"height":0,"seed":794981455,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[79,0]],"fontFamily":2},{"type":"arrow","version":67,"versionNonce":819505719,"isDeleted":true,"id":"0jBnfLa8x-7PG-dHNSIyq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":500,"strokeColor":"#202124","backgroundColor":"#202124","width":100,"height":0,"seed":1164508193,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[100,0]],"fontFamily":2},{"type":"arrow","version":65,"versionNonce":1711765689,"isDeleted":true,"id":"aQLxPaQ8P9w9EYGk6G49s","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":120,"seed":1590497903,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":{"focus":0.3,"gap":16,"elementId":"rasyQ0CHhsp3CsEfuzqpg"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,120]],"fontFamily":2},{"type":"line","version":60,"versionNonce":2060733271,"isDeleted":true,"id":"aTYsV-Ig4m1PW-zIZof3B","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":340,"strokeColor":"#000000","backgroundColor":"transparent","width":40,"height":0,"seed":236376065,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[40,0]],"fontFamily":2},{"type":"arrow","version":62,"versionNonce":65665433,"isDeleted":true,"id":"bglfe1poYP5Gp9RwIy5pd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":780,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":100,"height":0,"seed":528411791,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[-100,0]],"fontFamily":2},{"type":"line","version":63,"versionNonce":50251895,"isDeleted":true,"id":"xw6Kr6s7f0SdHNoJp5uKl","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":780,"y":240,"strokeColor":"#000000","backgroundColor":"transparent","width":0,"height":100,"seed":1302276065,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,100]],"fontFamily":2},{"type":"arrow","version":69,"versionNonce":1200184953,"isDeleted":true,"id":"oeXAa8J4xvSm11RODwd77","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":720,"y":-75.04587155963304,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":234.04587155963304,"seed":1026589359,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"startBinding":null,"endBinding":{"focus":-0.16666666666666666,"gap":1,"elementId":"UbTdotD4BefGl3ikKibHf"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,234.04587155963304]],"fontFamily":2},{"type":"ellipse","version":343,"versionNonce":1461494167,"isDeleted":true,"id":"WgcYDxo58a2wE9xsAIF3n","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":180,"y":220,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1309770689,"groupIds":["sKoYG8z0zStXephHuji8q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"UDl3vtAfeea5HacfMqrtg","label":"Step Circle","type":"child"}},{"type":"text","version":303,"versionNonce":799614809,"isDeleted":true,"id":"x-TabJO45EGrpsmvJVsFn","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":190.5,"y":228,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":2022331599,"groupIds":["sKoYG8z0zStXephHuji8q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"UDl3vtAfeea5HacfMqrtg","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"2","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"2"},{"type":"text","version":59,"versionNonce":1482839735,"isDeleted":true,"id":"VcmfJFPr2XDMD5oP86qvT","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":225,"y":426,"strokeColor":"#000000","backgroundColor":"transparent","width":22,"height":23,"seed":1804428193,"groupIds":["sKoYG8z0zStXephHuji8q"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"fontSize":20,"fontFamily":2,"text":"","baseline":19,"textAlign":"center","verticalAlign":"middle","containerId":"oXmrarFjLAOt0by1KTAta","originalText":""},{"type":"ellipse","version":369,"versionNonce":379376697,"isDeleted":true,"id":"Sv27OUEcC8ZY5BOLPXlhv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":340,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1764025071,"groupIds":["O7LUIBeCSIuGQHsVEA7Px"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GmS_6aXjOFF1P2_aEunVZ","label":"Step Circle","type":"child"}},{"type":"text","version":330,"versionNonce":1299474391,"isDeleted":true,"id":"yXcilfDK0J6A66339SCbG","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":350.5,"y":348,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1380075393,"groupIds":["O7LUIBeCSIuGQHsVEA7Px"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"GmS_6aXjOFF1P2_aEunVZ","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"3","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"3"},{"type":"text","version":59,"versionNonce":1078453529,"isDeleted":true,"id":"iLXMrKx8RLV-Sos1eskeo","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1165,"y":360,"strokeColor":"#000000","backgroundColor":"transparent","width":22,"height":23,"seed":529050895,"groupIds":["O7LUIBeCSIuGQHsVEA7Px"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"fontSize":20,"fontFamily":2,"text":"","baseline":19,"textAlign":"center","verticalAlign":"middle","containerId":"oXmrarFjLAOt0by1KTAta","originalText":""},{"type":"ellipse","version":344,"versionNonce":879187191,"isDeleted":true,"id":"Q4D7JXQYit9b5nxW3hn4j","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":260,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":2087694177,"groupIds":["ZuqjW4EZk1UumFp3fWMgl"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"_n40AdILG9y0GGRud2SzX","label":"Step Circle","type":"child"}},{"type":"text","version":306,"versionNonce":673044985,"isDeleted":true,"id":"AnTMx6V9LgtkW2Fp_hryv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":410.5,"y":268,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":120468271,"groupIds":["ZuqjW4EZk1UumFp3fWMgl"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"_n40AdILG9y0GGRud2SzX","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"4","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"4"},{"type":"ellipse","version":395,"versionNonce":1421843991,"isDeleted":true,"id":"FUIj7F7KR2AQBZ9sHxitX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":220,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1885674305,"groupIds":["rZKDvg7YKfG9oHP82cudH"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"_kQwilXDXKZFR2PtPYdN_","label":"Step Circle","type":"child"}},{"type":"text","version":359,"versionNonce":253899481,"isDeleted":true,"id":"0rJf4nz36yEZg2zbeKDba","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":630.5,"y":228,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":142472527,"groupIds":["rZKDvg7YKfG9oHP82cudH"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"_kQwilXDXKZFR2PtPYdN_","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"5","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"5"},{"type":"rectangle","version":73,"versionNonce":292668215,"isDeleted":true,"id":"TYqgrS7MVCDyXgTBUof2z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":420,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1450900623,"groupIds":["U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{}},{"type":"text","version":81,"versionNonce":1239969721,"isDeleted":true,"id":"EM8ByicYxiVyFWTjY7F0v","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":424,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":74,"height":19,"seed":539760609,"groupIds":["U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{},"fontSize":16,"fontFamily":2,"text":"Developer","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Developer"},{"type":"line","version":71,"versionNonce":2061648983,"isDeleted":true,"id":"AKKBb6Y5tEIZWOevQlLQw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":449,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1512739503,"groupIds":["K8d5DhR8_PNGXDPvOqVfM","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":71,"versionNonce":1318326425,"isDeleted":true,"id":"Dkr7uNNPrn_WRd-elpKU0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":465.5,"y":-52,"strokeColor":"#00000000","backgroundColor":"#000","width":4.989999771118164,"height":5,"seed":562066369,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[0.9712505340576172,-0.1965627670288086],[1.7625007629394531,-0.7325000762939453],[2.2950000762939453,-1.5271873474121094],[2.489999771118164,-2.5],[2.2950000762939453,-3.4728126525878906],[1.7625007629394531,-4.267499923706055],[0.9712505340576172,-4.80343770980835],[0,-5],[-0.9728126525878906,-4.80343770980835],[-1.7674999237060547,-4.267499923706055],[-2.3034372329711914,-3.4728126525878906],[-2.5,-2.5],[-2.3034372329711914,-1.5271873474121094],[-1.7674999237060547,-0.7325000762939453],[-0.9728126525878906,-0.1965627670288086],[0,0],[0,0]]},{"type":"line","version":71,"versionNonce":551919991,"isDeleted":true,"id":"uQ-etcTLk09BlvRW4HgF7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":458,"y":-53,"strokeColor":"#00000000","backgroundColor":"#000","width":5.989999771118164,"height":6,"seed":197289167,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[1.1674995422363281,-0.23531246185302734],[2.1175003051757812,-0.8774995803833008],[2.7562503814697266,-1.830937385559082],[2.989999771118164,-3],[2.7562503814697266,-4.169062614440918],[2.1175003051757812,-5.122499942779541],[1.1674995422363281,-5.764687538146973],[0,-6],[-1.169062614440918,-5.764687538146973],[-2.122499942779541,-5.122499942779541],[-2.7646875381469727,-4.169062614440918],[-3,-3],[-2.7646875381469727,-1.830937385559082],[-2.122499942779541,-0.8774995803833008],[-1.169062614440918,-0.23531246185302734],[0,0],[0,0]]},{"type":"line","version":71,"versionNonce":47748473,"isDeleted":true,"id":"ZGf4wiy2xRo8kbHiZvHAO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":465.5,"y":-50,"strokeColor":"#00000000","backgroundColor":"#000","width":11,"height":5,"seed":1402885025,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-1.6314058303833008,0.17234420776367188],[-3.4362497329711914,0.6887502670288086],[-4.897968292236328,1.5482816696166992],[-5.338730812072754,2.106426239013672],[-5.5,2.75],[-5.5,5],[5.5,5],[5.5,2.75],[5.5,2.75],[5.3387298583984375,2.106426239013672],[4.897968292236328,1.5482816696166992],[3.436250686645508,0.6887502670288086],[1.6314067840576172,0.17234420776367188],[0,0],[0,0]]},{"type":"line","version":71,"versionNonce":616585879,"isDeleted":true,"id":"vwLofSoJ4tkD5cjUQ-9OC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":458,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":9.369999885559082,"height":6,"seed":2061169391,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.9697456359863281,0.054823875427246094],[-2.076718807220459,0.21921920776367188],[-4.37375020980835,0.8762502670288086],[-5.399511814117432,1.36865234375],[-6.233906269073486,1.9701566696166992],[-6.794785261154175,2.680644989013672],[-7,3.5],[-7,6],[0,6],[0,3.75],[0,3.75],[0.08343791961669922,3.0081253051757812],[0.4200000762939453,2.119999885559082],[1.1390628814697266,1.1793746948242188],[2.369999885559082,0.2799997329711914],[1.1062498092651367,0.07250022888183594],[0,0],[0,0]]},{"type":"rectangle","version":77,"versionNonce":1241087577,"isDeleted":true,"id":"8lyzvlLPRT1neo7PNl089","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":734074543,"groupIds":["4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"}},{"type":"text","version":85,"versionNonce":187101111,"isDeleted":true,"id":"Kk08iw9Jk2r_Bzsvjt5n1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":524,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":74,"height":19,"seed":1032073153,"groupIds":["4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"fontSize":16,"fontFamily":2,"text":"Developer","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Developer"},{"type":"line","version":75,"versionNonce":1388989241,"isDeleted":true,"id":"es-hr1HCnkN1aSsNv04sB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":549,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1877502159,"groupIds":["XDjRWsuEDPeRzPM0kU76T","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":75,"versionNonce":1312678103,"isDeleted":true,"id":"Q9Yz_yZmLRgNwA0Mcu3Zf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":565.5,"y":-52,"strokeColor":"#00000000","backgroundColor":"#000","width":4.989999771118164,"height":5,"seed":801804193,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[0.9712505340576172,-0.1965627670288086],[1.7625007629394531,-0.7325000762939453],[2.2950000762939453,-1.5271873474121094],[2.489999771118164,-2.5],[2.2950000762939453,-3.4728126525878906],[1.7625007629394531,-4.267499923706055],[0.9712505340576172,-4.80343770980835],[0,-5],[-0.9728126525878906,-4.80343770980835],[-1.7674999237060547,-4.267499923706055],[-2.3034372329711914,-3.4728126525878906],[-2.5,-2.5],[-2.3034372329711914,-1.5271873474121094],[-1.7674999237060547,-0.7325000762939453],[-0.9728126525878906,-0.1965627670288086],[0,0],[0,0]]},{"type":"line","version":75,"versionNonce":632192025,"isDeleted":true,"id":"2BzQDMLI6fWdDtqNWcI4C","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":558,"y":-53,"strokeColor":"#00000000","backgroundColor":"#000","width":5.989999771118164,"height":6,"seed":1939896047,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[1.1674995422363281,-0.23531246185302734],[2.1175003051757812,-0.8774995803833008],[2.7562503814697266,-1.830937385559082],[2.989999771118164,-3],[2.7562503814697266,-4.169062614440918],[2.1175003051757812,-5.122499942779541],[1.1674995422363281,-5.764687538146973],[0,-6],[-1.169062614440918,-5.764687538146973],[-2.122499942779541,-5.122499942779541],[-2.7646875381469727,-4.169062614440918],[-3,-3],[-2.7646875381469727,-1.830937385559082],[-2.122499942779541,-0.8774995803833008],[-1.169062614440918,-0.23531246185302734],[0,0],[0,0]]},{"type":"line","version":75,"versionNonce":798600695,"isDeleted":true,"id":"VmqYStP0_LLB8uoPsOA_X","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":565.5,"y":-50,"strokeColor":"#00000000","backgroundColor":"#000","width":11,"height":5,"seed":1845097345,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-1.6314058303833008,0.17234420776367188],[-3.4362497329711914,0.6887502670288086],[-4.897968292236328,1.5482816696166992],[-5.338730812072754,2.106426239013672],[-5.5,2.75],[-5.5,5],[5.5,5],[5.5,2.75],[5.5,2.75],[5.3387298583984375,2.106426239013672],[4.897968292236328,1.5482816696166992],[3.436250686645508,0.6887502670288086],[1.6314067840576172,0.17234420776367188],[0,0],[0,0]]},{"type":"line","version":75,"versionNonce":1922666745,"isDeleted":true,"id":"r4hN_E-Fc0Ig40ByeOjdq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":558,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":9.369999885559082,"height":6,"seed":2104606991,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.9697456359863281,0.054823875427246094],[-2.076718807220459,0.21921920776367188],[-4.37375020980835,0.8762502670288086],[-5.399511814117432,1.36865234375],[-6.233906269073486,1.9701566696166992],[-6.794785261154175,2.680644989013672],[-7,3.5],[-7,6],[0,6],[0,3.75],[0,3.75],[0.08343791961669922,3.0081253051757812],[0.4200000762939453,2.119999885559082],[1.1390628814697266,1.1793746948242188],[2.369999885559082,0.2799997329711914],[1.1062498092651367,0.07250022888183594],[0,0],[0,0]]},{"id":"k6zdvt2zAnaMd8R6qj8Rx","type":"text","x":546.8183925010219,"y":537.2186897277455,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1872986753,"version":55,"versionNonce":1245632279,"isDeleted":true,"boundElements":null,"updated":1682981442474,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"rectangle","version":68,"versionNonce":521079257,"isDeleted":true,"id":"z2UJS9aaoqYGgVA3eupzG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":120,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1972446351,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"container"}},{"type":"text","version":65,"versionNonce":1688329271,"isDeleted":true,"id":"o1vDnEM4wH0z6uoeTTS6Y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":136,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":33,"seed":1122791393,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Source \nRepositories ","baseline":30,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Source \nRepositories "},{"type":"text","version":54,"versionNonce":337798841,"isDeleted":true,"id":"4AWkHeZ1eGEI_8hWxHgoB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":193,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":71023279,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":55,"versionNonce":44514647,"isDeleted":true,"id":"XS6f5cSIQWdqTx8UbrMKZ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":220,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":980798401,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":54,"versionNonce":1282877337,"isDeleted":true,"id":"Rbmm8OMBPPYtrIy5lF4oL","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":228,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":695110863,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":63,"versionNonce":933460599,"isDeleted":true,"id":"jPPUQCeo821lbiK1s-bTe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":301.9375,"y":138.0625,"strokeColor":"transparent","backgroundColor":"#4285f4","width":19.875,"height":19.875,"seed":1411951521,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,19.875],[-19.875,19.875],[-19.875,0],[0,0],[0,0]]},{"type":"line","version":63,"versionNonce":574671993,"isDeleted":true,"id":"wnWtOA1uCxc9iB27eC1Bp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292,"y":142.64687538146973,"strokeColor":"transparent","backgroundColor":"#4285f4","width":15.29062557220459,"height":9.937498092651367,"seed":1623333615,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.329864501953125,0.013018131256103516],[-0.652587890625,0.05141592025756836],[-0.9671821594238281,0.11420249938964844],[-1.2726554870605469,0.20038986206054688],[-1.568023681640625,0.308990478515625],[-1.852294921875,0.4390130043029785],[-2.124481201171875,0.5894713401794434],[-2.383594512939453,0.7593746185302734],[-2.628643035888672,0.9477348327636719],[-2.858642578125,1.153564453125],[-3.072601318359375,1.3758716583251953],[-3.26953125,1.6136722564697266],[-3.448444366455078,1.8659725189208984],[-3.608348846435547,2.131786346435547],[-3.748260498046875,2.410125732421875],[-3.8671875,2.6999988555908203],[-4.026562213897705,2.6999988555908203],[-4.026562213897705,2.6999988555908203],[-4.21263313293457,2.7047128677368164],[-4.396277904510498,2.7187023162841797],[-4.577268600463867,2.74173641204834],[-4.755376815795898,2.773590087890625],[-4.930375099182129,2.814032554626465],[-5.102035045623779,2.8628368377685547],[-5.434423446655273,2.984619140625],[-5.750717639923096,3.137105941772461],[-6.049090385437012,3.3184757232666016],[-6.327714920043945,3.526897430419922],[-6.584765434265137,3.7605457305908203],[-6.818414688110352,4.017597198486328],[-7.026837348937988,4.296220779418945],[-7.208205223083496,4.594594955444336],[-7.360692977905273,4.910888671875],[-7.482474327087402,5.243276596069336],[-7.53127908706665,5.4149370193481445],[-7.571722030639648,5.589934349060059],[-7.603575706481934,5.768043518066406],[-7.62661075592041,5.949033737182617],[-7.640598773956299,6.132678985595703],[-7.645312309265137,6.318750381469727],[-7.640598773956299,6.504819869995117],[-7.62661075592041,6.688464164733887],[-7.603575706481934,6.869455337524414],[-7.571722030639648,7.047563552856445],[-7.53127908706665,7.222562789916992],[-7.482474327087402,7.394221305847168],[-7.360692977905273,7.72661018371582],[-7.208205223083496,8.042905807495117],[-7.026837348937988,8.341277122497559],[-6.818414688110352,8.619901657104492],[-6.584765434265137,8.876952171325684],[-6.327714920043945,9.110601425170898],[-6.049090385437012,9.319025039672852],[-5.750717639923096,9.500391006469727],[-5.434423446655273,9.65287971496582],[-5.102035045623779,9.774660110473633],[-4.930375099182129,9.823465347290039],[-4.755376815795898,9.863908767700195],[-4.577268600463867,9.895761489868164],[-4.396277904510498,9.918798446655273],[-4.21263313293457,9.932785034179688],[-4.026562213897705,9.937498092651367],[4.026561737060547,9.937498092651367],[4.026561737060547,9.937498092651367],[4.21263313293457,9.932785034179688],[4.396278381347656,9.918798446655273],[4.577268600463867,9.895761489868164],[4.755378723144531,9.863908767700195],[4.9303741455078125,9.823465347290039],[5.1020355224609375,9.774660110473633],[5.434425354003906,9.65287971496582],[5.7507171630859375,9.500391006469727],[6.049091339111328,9.319025039672852],[6.327716827392578,9.110601425170898],[6.584766387939453,8.876952171325684],[6.818416595458984,8.619901657104492],[7.026836395263672,8.341277122497559],[7.2082061767578125,8.042905807495117],[7.360694885253906,7.72661018371582],[7.482475280761719,7.394221305847168],[7.531280517578125,7.222562789916992],[7.571723937988281,7.047563552856445],[7.60357666015625,6.869455337524414],[7.626609802246094,6.688464164733887],[7.640598297119141,6.504819869995117],[7.645313262939453,6.318750381469727],[7.640598297119141,6.132678985595703],[7.626609802246094,5.949033737182617],[7.60357666015625,5.768043518066406],[7.571723937988281,5.589934349060059],[7.531280517578125,5.4149370193481445],[7.482475280761719,5.243276596069336],[7.360694885253906,4.910888671875],[7.2082061767578125,4.594594955444336],[7.026836395263672,4.296220779418945],[6.818416595458984,4.017597198486328],[6.584766387939453,3.7605457305908203],[6.327716827392578,3.526897430419922],[6.049091339111328,3.3184757232666016],[5.7507171630859375,3.137105941772461],[5.434425354003906,2.984619140625],[5.1020355224609375,2.8628368377685547],[4.9303741455078125,2.814032554626465],[4.755378723144531,2.773590087890625],[4.577268600463867,2.74173641204834],[4.396278381347656,2.7187023162841797],[4.21263313293457,2.7047128677368164],[4.026561737060547,2.6999988555908203],[3.8671875,2.6999988555908203],[3.8671875,2.6999988555908203],[3.748260498046875,2.410125732421875],[3.608348846435547,2.131786346435547],[3.448444366455078,1.8659725189208984],[3.26953125,1.6136722564697266],[3.072601318359375,1.3758716583251953],[2.858642578125,1.153564453125],[2.628643035888672,0.9477348327636719],[2.383594512939453,0.7593746185302734],[2.124481201171875,0.5894713401794434],[1.852294921875,0.4390130043029785],[1.568023681640625,0.308990478515625],[1.2726554870605469,0.20038986206054688],[0.9671821594238281,0.11420249938964844],[0.652587890625,0.05141592025756836],[0.329864501953125,0.013018131256103516],[0,0],[0,0]]},{"type":"line","version":63,"versionNonce":945492887,"isDeleted":true,"id":"AXAnd-RlpMjmEMNe7iLGL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.9734377861023,"y":145.34687423706055,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.29062557220459,"height":9.937498092651367,"seed":406097793,"groupIds":["PYiwqszrmiOJ4wmq8-O5G","7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.15937471389770508,0],[0.15937471389770508,0],[0.2783017158508301,-0.2898731231689453],[0.4182133674621582,-0.5682125091552734],[0.578117847442627,-0.8340263366699219],[0.7570309638977051,-1.0863265991210938],[0.9539608955383301,-1.324127197265625],[1.167919635772705,-1.5464344024658203],[1.3979191780090332,-1.7522640228271484],[1.642967700958252,-1.9406242370605469],[1.90208101272583,-2.110527515411377],[2.174267292022705,-2.260985851287842],[2.45853853225708,-2.3910083770751953],[2.753906726837158,-2.4996089935302734],[3.059380054473877,-2.585796356201172],[3.373974323272705,-2.648582935333252],[3.69669771194458,-2.686980724334717],[4.026562213897705,-2.6999988555908203],[4.35642671585083,-2.686980724334717],[4.679150104522705,-2.648582935333252],[4.993744373321533,-2.585796356201172],[5.299217700958252,-2.4996089935302734],[5.59458589553833,-2.3910083770751953],[5.878857135772705,-2.260985851287842],[6.15104341506958,-2.110527515411377],[6.410156726837158,-1.9406242370605469],[6.655205249786377,-1.7522640228271484],[6.885204792022705,-1.5464344024658203],[7.09916353225708,-1.324127197265625],[7.296093463897705,-1.0863265991210938],[7.475006580352783,-0.8340263366699219],[7.634911060333252,-0.5682125091552734],[7.77482271194458,-0.2898731231689453],[7.893749713897705,0],[8.053123950958252,0],[8.053123950958252,0],[8.239195346832275,0.004714012145996094],[8.422840595245361,0.018703460693359375],[8.603830814361572,0.04173755645751953],[8.781940937042236,0.07359123229980469],[8.956936359405518,0.11403369903564453],[9.128597736358643,0.16283798217773438],[9.460987567901611,0.2846202850341797],[9.777279376983643,0.4371070861816406],[10.075653553009033,0.6184768676757812],[10.354279041290283,0.8268985748291016],[10.611328601837158,1.060546875],[10.84497880935669,1.3175983428955078],[11.053398609161377,1.596221923828125],[11.234768390655518,1.8945960998535156],[11.387257099151611,2.2108898162841797],[11.509037494659424,2.5432777404785156],[11.55784273147583,2.714938163757324],[11.598286151885986,2.8899354934692383],[11.630138874053955,3.068044662475586],[11.653172016143799,3.249034881591797],[11.667160511016846,3.432680130004883],[11.671875476837158,3.6187515258789062],[11.667160511016846,3.804821014404297],[11.653172016143799,3.9884653091430664],[11.630138874053955,4.169456481933594],[11.598286151885986,4.347564697265625],[11.55784273147583,4.522563934326172],[11.509037494659424,4.694222450256348],[11.387257099151611,5.026611328125],[11.234768390655518,5.342906951904297],[11.053398609161377,5.641278266906738],[10.84497880935669,5.919902801513672],[10.611328601837158,6.176953315734863],[10.354279041290283,6.410602569580078],[10.075653553009033,6.619026184082031],[9.777279376983643,6.800392150878906],[9.460987567901611,6.952880859375],[9.128597736358643,7.0746612548828125],[8.956936359405518,7.123466491699219],[8.781940937042236,7.163909912109375],[8.603830814361572,7.195762634277344],[8.422840595245361,7.218799591064453],[8.239195346832275,7.232786178588867],[8.053123950958252,7.237499237060547],[0,7.237499237060547],[0,7.237499237060547],[-0.18607091903686523,7.232786178588867],[-0.36971569061279297,7.218799591064453],[-0.5507063865661621,7.195762634277344],[-0.7288146018981934,7.163909912109375],[-0.9038128852844238,7.123466491699219],[-1.0754728317260742,7.0746612548828125],[-1.4078612327575684,6.952880859375],[-1.7241554260253906,6.800392150878906],[-2.0225281715393066,6.619026184082031],[-2.3011527061462402,6.410602569580078],[-2.5582032203674316,6.176953315734863],[-2.7918524742126465,5.919902801513672],[-3.000275135040283,5.641278266906738],[-3.181643009185791,5.342906951904297],[-3.3341307640075684,5.026611328125],[-3.4559121131896973,4.694222450256348],[-3.5047168731689453,4.522563934326172],[-3.5451598167419434,4.347564697265625],[-3.5770134925842285,4.169456481933594],[-3.600048542022705,3.9884653091430664],[-3.6140365600585938,3.804821014404297],[-3.6187500953674316,3.6187515258789062],[-3.6140365600585938,3.432680130004883],[-3.600048542022705,3.249034881591797],[-3.5770134925842285,3.068044662475586],[-3.5451598167419434,2.8899354934692383],[-3.5047168731689453,2.714938163757324],[-3.4559121131896973,2.5432777404785156],[-3.3341307640075684,2.2108898162841797],[-3.181643009185791,1.8945960998535156],[-3.000275135040283,1.596221923828125],[-2.7918524742126465,1.3175983428955078],[-2.5582032203674316,1.060546875],[-2.3011527061462402,0.8268985748291016],[-2.0225281715393066,0.6184768676757812],[-1.7241554260253906,0.4371070861816406],[-1.4078612327575684,0.2846202850341797],[-1.0754728317260742,0.16283798217773438],[-0.9038128852844238,0.11403369903564453],[-0.7288146018981934,0.07359123229980469],[-0.5507063865661621,0.04173755645751953],[-0.36971569061279297,0.018703460693359375],[-0.18607091903686523,0.004714012145996094],[0,0],[0,0]]},{"id":"GEETmhI04uB-ATh_54zNc","type":"text","x":198.75295764789348,"y":235.3471243150013,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1490353135,"version":55,"versionNonce":1564661081,"isDeleted":true,"boundElements":null,"updated":1682981442474,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"rectangle","version":79,"versionNonce":755140791,"isDeleted":true,"id":"xLgm8STTmBoi2noXkeBgB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":260,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1707782223,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow"},{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow"},{"id":"tzltvz06MYsY6b9U8_x56","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":71,"versionNonce":13681209,"isDeleted":true,"id":"67mB0ysx2uIMadWnnwogP","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":276,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":900890657,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":54,"versionNonce":1128159703,"isDeleted":true,"id":"mDWzCVLzScAS8FlszVJxa","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":318,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":349032047,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":54,"versionNonce":1506677529,"isDeleted":true,"id":"UrVI046bXViPoPwcX38jA","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":345,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1116722177,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":54,"versionNonce":2295543,"isDeleted":true,"id":"k-kpC1RkWMfw7jXjZKVzo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":353,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1309157519,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":70,"versionNonce":1286490105,"isDeleted":true,"id":"9W7qdwd3FX5dHliEgRl9r","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":292.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":341289953,"groupIds":["BlvlnjADUJqveEMw6MxJ4","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":70,"versionNonce":1379209239,"isDeleted":true,"id":"3YyEimQe5UpwHAKqQjayQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":286.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1060257455,"groupIds":["Y8qBqUjTbYesUsl3KLAGx","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":70,"versionNonce":1668604121,"isDeleted":true,"id":"9oHapoHmHjIeTFKzFR0Yl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":293.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":857311169,"groupIds":["IHEhD0D_DpRcnceyUUfUa","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":70,"versionNonce":1667822903,"isDeleted":true,"id":"zdOjHpwFgpRtDle1HA139","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":284.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":1257541839,"groupIds":["IHEhD0D_DpRcnceyUUfUa","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":70,"versionNonce":464870841,"isDeleted":true,"id":"_9zT0ankzZpeluu9CBFr0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":291.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":2029316001,"groupIds":["IHEhD0D_DpRcnceyUUfUa","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":109,"versionNonce":723727959,"isDeleted":true,"id":"wdJbcKQ7xeYqt5eFLleXz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":640,"y":140,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":515423823,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"container"}},{"type":"text","version":101,"versionNonce":1955806873,"isDeleted":true,"id":"pPqYJBtRLhDrbu_5iSbGK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":656,"y":156,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1425297953,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"Binary Authorization","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Binary Authorization"},{"type":"text","version":62,"versionNonce":1077433207,"isDeleted":true,"id":"u1R5P2xj1yICzOEIATkTW","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":536,"y":198,"strokeColor":"#202124","backgroundColor":"transparent","width":90,"height":19,"seed":1623858287,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":62,"versionNonce":1019347833,"isDeleted":true,"id":"aAHWDRc-e_7or1oNdNmKh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":536,"y":225,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":2110219777,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":62,"versionNonce":1793903767,"isDeleted":true,"id":"_rXMayfVA8JEL8yw1zi1K","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":536,"y":233,"strokeColor":"#202124","backgroundColor":"transparent","width":91,"height":14,"seed":826979983,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":11,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":99,"versionNonce":545598553,"isDeleted":true,"id":"bK5JdwD9MWZB7L2uHW0g9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":852.6638898849487,"y":167.52171230316162,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.067220687866211,"height":13.477689743041992,"seed":1724710369,"groupIds":["YU1J8xw87tjmiAN0hnbMS","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3271865844726562,0],[2.3271865844726562,0],[2.3155136108398438,0.6361570358276367],[2.2813262939453125,1.2466144561767578],[2.225862503051758,1.8318605422973633],[2.1503658294677734,2.3923826217651367],[2.0560789108276367,2.9286632537841797],[1.9442415237426758,3.4411935806274414],[1.8160982131958008,3.930455207824707],[1.6728887557983398,4.396936416625977],[1.3462371826171875,5.263503074645996],[0.9742250442504883,6.044783592224121],[0.5667839050292969,6.744668006896973],[0.1338481903076172,7.367043495178223],[-0.31464576721191406,7.915802955627441],[-0.7687664031982422,8.394835472106934],[-1.2185783386230469,8.808030128479004],[-1.6541500091552734,9.159279823303223],[-2.0655431747436523,9.452471733093262],[-2.4428253173828125,9.691496849060059],[-2.776063919067383,9.880244255065918],[-3.055323600769043,10.022604942321777],[-3.055323600769043,11.807255744934082],[-2.755502700805664,11.707316398620605],[-2.755502700805664,11.707316398620605],[-2.712222099304199,11.691277503967285],[-2.6347970962524414,11.661320686340332],[-2.5255584716796875,11.616576194763184],[-2.3868331909179688,11.556178092956543],[-2.220950126647949,11.47925853729248],[-2.030240058898926,11.3849515914917],[-1.8170318603515625,11.272383689880371],[-1.5836553573608398,11.1406888961792],[-1.0657119750976562,10.816454887390137],[-0.49504566192626953,10.405303001403809],[0.109710693359375,9.900286674499512],[0.7299222946166992,9.294468879699707],[1.0400018692016602,8.951586723327637],[1.3469552993774414,8.580899238586426],[1.6484565734863281,8.181540489196777],[1.9421758651733398,7.752638816833496],[2.2257823944091797,7.293332099914551],[2.4969482421875,6.802746772766113],[2.753342628479004,6.280014991760254],[2.9926376342773438,5.724270820617676],[3.212505340576172,5.134648323059082],[3.4106130599975586,4.510275840759277],[3.5846338272094727,3.850287437438965],[3.732235908508301,3.1538143157958984],[3.8510942459106445,2.419989585876465],[3.938876152038574,1.647944450378418],[3.9932546615600586,0.8368129730224609],[4.011897087097168,-0.014277458190917969],[4.011897087097168,-1.6704339981079102],[-0.8423547744750977,-1.6704339981079102],[0,0],[0,0]]},{"type":"line","version":99,"versionNonce":1995776439,"isDeleted":true,"id":"To4E9WoQeCK8HoFfrZaXk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":851.8072566986084,"y":165.8512783050537,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.052944183349609,"height":19.131469160318375,"seed":1995639983,"groupIds":["L3pheg2oEI7odsuPbIZ_r","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442474,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.8280792236328125,-1.5704936981201172],[0.8280792236328125,-9.38013020157814],[-0.4854249954223633,-8.366447925567627],[-0.4854249954223633,-8.366447925567627],[-1.0193290710449219,-7.942404866218567],[-1.552311897277832,-7.47975492477417],[-2.079440116882324,-6.980045318603516],[-2.595775604248047,-6.444823980331421],[-3.0963850021362305,-5.875638484954834],[-3.57633113861084,-5.274036884307861],[-4.030677795410156,-4.641565799713135],[-4.454490661621094,-3.97977352142334],[-4.842833995819092,-3.290207862854004],[-5.190771579742432,-2.574415683746338],[-5.493367671966553,-1.8339462280273438],[-5.7456865310668945,-1.0703449249267578],[-5.942792892456055,-0.28516101837158203],[-6.079751014709473,0.5200586318969727],[-6.151625156402588,1.343766212463379],[-6.15347957611084,2.184414863586426],[-6.126155376434326,2.7413511276245117],[-6.066059589385986,3.292348861694336],[-5.973881721496582,3.836151123046875],[-5.850311756134033,4.3715057373046875],[-5.696040630340576,4.897154808044434],[-5.511757850646973,5.411846160888672],[-5.298153877258301,5.914322853088379],[-5.0559186935424805,6.403331756591797],[-4.785742282867432,6.877616882324219],[-4.488315582275391,7.33592414855957],[-4.164328098297119,7.776998519897461],[-3.8144702911376953,8.199583053588867],[-3.439432144165039,8.602428436279297],[-3.039902687072754,8.984272003173828],[-2.616575241088867,9.343866348266602],[-2.1701364517211914,9.679952621459961],[-2.0416412353515625,9.751338958740234],[-1.1850080490112305,8.366447448730469],[-1.2992267608642578,8.295063018798828],[-1.2992267608642578,8.295063018798828],[-1.7935752868652344,7.897085189819336],[-2.2557992935180664,7.466983795166016],[0.8994646072387695,5.6823320388793945],[0.8994646072387695,1.6847124099731445],[0,0],[0,0]]},{"type":"line","version":99,"versionNonce":2008037689,"isDeleted":true,"id":"Q3q4AQ1Rz85uehe3PzE36","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":850.9934558868408,"y":167.52171230316162,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.6835217475891113,"height":11.964307069778442,"seed":1863621057,"groupIds":["L3pheg2oEI7odsuPbIZ_r","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":99,"versionNonce":1165349591,"isDeleted":true,"id":"ghl2PwLIMIrZE6R49Oj0x","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":850.9934558868408,"y":167.52171230316162,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.6835217475891113,"height":11.964307069778442,"seed":762027727,"groupIds":["e6Fw3u0vLi4Fy2r1FinA6","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":99,"versionNonce":1403431449,"isDeleted":true,"id":"jjTCQ4MRJf2eWkQuWVF5y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":849.6085662841797,"y":177.61570358276367,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.637927174568176,"height":13.63473892211914,"seed":1740487073,"groupIds":["ESTghUcPXoLSsqYmZ4ncB","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.6996078491210938,-0.3905677795410156],[-1.362553596496582,-0.8270187377929688],[-1.9873113632202148,-1.3067207336425781],[-2.572352886199951,-1.8270378112792969],[-3.116152763366699,-2.385334014892578],[-3.617182731628418,-2.978975296020508],[-4.073917865753174,-3.6053237915039062],[-4.484830379486084,-4.261747360229492],[-4.84839391708374,-4.945611953735352],[-5.163082122802734,-5.654278755187988],[-5.427367210388184,-6.385114669799805],[-5.639723539352417,-7.135483741760254],[-5.798623561859131,-7.902751922607422],[-5.902541399002075,-8.684283256530762],[-5.949949741363525,-9.477441787719727],[-5.939321756362915,-10.279594421386719],[-5.939321756362915,-11.850088119506836],[-7.624033451080322,-11.850088119506836],[-7.624033451080322,-10.279594421386719],[-7.624033451080322,-10.279594421386719],[-7.637927174568176,-9.323471069335938],[-7.579249858856201,-8.379413604736328],[-7.450050592422485,-7.45079231262207],[-7.252379655838013,-6.540971755981445],[-6.988286018371582,-5.6533203125],[-6.659819602966309,-4.791204452514648],[-6.269029378890991,-3.9579906463623047],[-5.817965745925903,-3.1570472717285156],[-5.308677673339844,-2.391742706298828],[-4.7432146072387695,-1.6654434204101562],[-4.123627185821533,-0.9815139770507812],[-3.451963424682617,-0.3433208465576172],[-2.730273723602295,0.24576377868652344],[-1.9606080055236816,0.7823753356933594],[-1.145014762878418,1.2631454467773438],[-0.28554439544677734,1.6847114562988281],[-0.014278411865234375,1.7846508026123047]]},{"type":"rectangle","version":97,"versionNonce":520314871,"isDeleted":true,"id":"naTolb6WaI_4qh01Vb529","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":720,"y":260,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1847933057,"groupIds":["mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"round","boundElements":[{"id":"7ovtTjRzZj2EWDoBAM3Je","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"container"}},{"type":"text","version":91,"versionNonce":1297874681,"isDeleted":true,"id":"bVJU8cxnqdqPRmwxxtwIY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":736,"y":276,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1548307471,"groupIds":["mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"Binary Authorization","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Binary Authorization"},{"type":"line","version":90,"versionNonce":1168263447,"isDeleted":true,"id":"EMX6axmwwTaGWYJ8JsPBR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":932.6638898849487,"y":287.5217123031616,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.067220687866211,"height":13.477689743041992,"seed":1624014945,"groupIds":["ahZmMdnKVl6pltCjJsnmR","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3271865844726562,0],[2.3271865844726562,0],[2.3155136108398438,0.6361570358276367],[2.2813262939453125,1.2466144561767578],[2.225862503051758,1.8318605422973633],[2.1503658294677734,2.3923826217651367],[2.0560789108276367,2.9286632537841797],[1.9442415237426758,3.4411935806274414],[1.8160982131958008,3.930455207824707],[1.6728887557983398,4.396936416625977],[1.3462371826171875,5.263503074645996],[0.9742250442504883,6.044783592224121],[0.5667839050292969,6.744668006896973],[0.1338481903076172,7.367043495178223],[-0.31464576721191406,7.915802955627441],[-0.7687664031982422,8.394835472106934],[-1.2185783386230469,8.808030128479004],[-1.6541500091552734,9.159279823303223],[-2.0655431747436523,9.452471733093262],[-2.4428253173828125,9.691496849060059],[-2.776063919067383,9.880244255065918],[-3.055323600769043,10.022604942321777],[-3.055323600769043,11.807255744934082],[-2.755502700805664,11.707316398620605],[-2.755502700805664,11.707316398620605],[-2.712222099304199,11.691277503967285],[-2.6347970962524414,11.661320686340332],[-2.5255584716796875,11.616576194763184],[-2.3868331909179688,11.556178092956543],[-2.220950126647949,11.47925853729248],[-2.030240058898926,11.3849515914917],[-1.8170318603515625,11.272383689880371],[-1.5836553573608398,11.1406888961792],[-1.0657119750976562,10.816454887390137],[-0.49504566192626953,10.405303001403809],[0.109710693359375,9.900286674499512],[0.7299222946166992,9.294468879699707],[1.0400018692016602,8.951586723327637],[1.3469552993774414,8.580899238586426],[1.6484565734863281,8.181540489196777],[1.9421758651733398,7.752638816833496],[2.2257823944091797,7.293332099914551],[2.4969482421875,6.802746772766113],[2.753342628479004,6.280014991760254],[2.9926376342773438,5.724270820617676],[3.212505340576172,5.134648323059082],[3.4106130599975586,4.510275840759277],[3.5846338272094727,3.850287437438965],[3.732235908508301,3.1538143157958984],[3.8510942459106445,2.419989585876465],[3.938876152038574,1.647944450378418],[3.9932546615600586,0.8368129730224609],[4.011897087097168,-0.014277458190917969],[4.011897087097168,-1.6704339981079102],[-0.8423547744750977,-1.6704339981079102],[0,0],[0,0]]},{"type":"line","version":90,"versionNonce":324253657,"isDeleted":true,"id":"4Rgz5mPyWJbEckISWZFiw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":931.8072566986084,"y":285.8512783050537,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.052944183349609,"height":19.131469160318375,"seed":1082323503,"groupIds":["2ro6xTgbt40tkQT6M24ZK","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.8280792236328125,-1.5704936981201172],[0.8280792236328125,-9.38013020157814],[-0.4854249954223633,-8.366447925567627],[-0.4854249954223633,-8.366447925567627],[-1.0193290710449219,-7.942404866218567],[-1.552311897277832,-7.47975492477417],[-2.079440116882324,-6.980045318603516],[-2.595775604248047,-6.444823980331421],[-3.0963850021362305,-5.875638484954834],[-3.57633113861084,-5.274036884307861],[-4.030677795410156,-4.641565799713135],[-4.454490661621094,-3.97977352142334],[-4.842833995819092,-3.290207862854004],[-5.190771579742432,-2.574415683746338],[-5.493367671966553,-1.8339462280273438],[-5.7456865310668945,-1.0703449249267578],[-5.942792892456055,-0.28516101837158203],[-6.079751014709473,0.5200586318969727],[-6.151625156402588,1.343766212463379],[-6.15347957611084,2.184414863586426],[-6.126155376434326,2.7413511276245117],[-6.066059589385986,3.292348861694336],[-5.973881721496582,3.836151123046875],[-5.850311756134033,4.3715057373046875],[-5.696040630340576,4.897154808044434],[-5.511757850646973,5.411846160888672],[-5.298153877258301,5.914322853088379],[-5.0559186935424805,6.403331756591797],[-4.785742282867432,6.877616882324219],[-4.488315582275391,7.33592414855957],[-4.164328098297119,7.776998519897461],[-3.8144702911376953,8.199583053588867],[-3.439432144165039,8.602428436279297],[-3.039902687072754,8.984272003173828],[-2.616575241088867,9.343866348266602],[-2.1701364517211914,9.679952621459961],[-2.0416412353515625,9.751338958740234],[-1.1850080490112305,8.366447448730469],[-1.2992267608642578,8.295063018798828],[-1.2992267608642578,8.295063018798828],[-1.7935752868652344,7.897085189819336],[-2.2557992935180664,7.466983795166016],[0.8994646072387695,5.6823320388793945],[0.8994646072387695,1.6847124099731445],[0,0],[0,0]]},{"type":"line","version":90,"versionNonce":1187450423,"isDeleted":true,"id":"feTFNzevzJymCGgKE3bfi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":930.9934558868408,"y":287.5217123031616,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.6835217475891113,"height":11.964307069778442,"seed":855624769,"groupIds":["2ro6xTgbt40tkQT6M24ZK","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":90,"versionNonce":933319865,"isDeleted":true,"id":"U8_S-xD5G6ShXhChfTdH8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":930.9934558868408,"y":287.5217123031616,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.6835217475891113,"height":11.964307069778442,"seed":1457706063,"groupIds":["EZVDA10mwKOAas4r1bT65","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":90,"versionNonce":223752023,"isDeleted":true,"id":"e3ILYmBHudGAy7JEpzQQu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":929.6085662841797,"y":297.6157035827637,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.637927174568176,"height":13.63473892211914,"seed":480156705,"groupIds":["TabXR4fX_ycdxCCRJ1PSD","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.6996078491210938,-0.3905677795410156],[-1.362553596496582,-0.8270187377929688],[-1.9873113632202148,-1.3067207336425781],[-2.572352886199951,-1.8270378112792969],[-3.116152763366699,-2.385334014892578],[-3.617182731628418,-2.978975296020508],[-4.073917865753174,-3.6053237915039062],[-4.484830379486084,-4.261747360229492],[-4.84839391708374,-4.945611953735352],[-5.163082122802734,-5.654278755187988],[-5.427367210388184,-6.385114669799805],[-5.639723539352417,-7.135483741760254],[-5.798623561859131,-7.902751922607422],[-5.902541399002075,-8.684283256530762],[-5.949949741363525,-9.477441787719727],[-5.939321756362915,-10.279594421386719],[-5.939321756362915,-11.850088119506836],[-7.624033451080322,-11.850088119506836],[-7.624033451080322,-10.279594421386719],[-7.624033451080322,-10.279594421386719],[-7.637927174568176,-9.323471069335938],[-7.579249858856201,-8.379413604736328],[-7.450050592422485,-7.45079231262207],[-7.252379655838013,-6.540971755981445],[-6.988286018371582,-5.6533203125],[-6.659819602966309,-4.791204452514648],[-6.269029378890991,-3.9579906463623047],[-5.817965745925903,-3.1570472717285156],[-5.308677673339844,-2.391742706298828],[-4.7432146072387695,-1.6654434204101562],[-4.123627185821533,-0.9815139770507812],[-3.451963424682617,-0.3433208465576172],[-2.730273723602295,0.24576377868652344],[-1.9606080055236816,0.7823753356933594],[-1.145014762878418,1.2631454467773438],[-0.28554439544677734,1.6847114562988281],[-0.014278411865234375,1.7846508026123047]]},{"type":"rectangle","version":83,"versionNonce":1038636441,"isDeleted":true,"id":"RuGEK4rcEUcwCLLrUn_cn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":460,"y":260,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1480478863,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"container"}},{"type":"text","version":77,"versionNonce":866397303,"isDeleted":true,"id":"e-IikHBmMP7dH46_e0XBM","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":476,"y":276,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":234357729,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[{"id":"0mG0njKLae7Xs8hf0tM2V","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"fontSize":16,"fontFamily":2,"text":"Artifact Registry","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Artifact Registry"},{"type":"text","version":52,"versionNonce":1767651961,"isDeleted":true,"id":"U8ubw7xR7epzJIBuXQt7B","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":356,"y":238,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1885562543,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":52,"versionNonce":360023447,"isDeleted":true,"id":"J4Iuvpov_jJVQF_KmXhp7","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":356,"y":265,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1190059969,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":52,"versionNonce":1254130521,"isDeleted":true,"id":"HkzioyOGmH7eH1I0BHd8y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":356,"y":273,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":197179599,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":75,"versionNonce":570342071,"isDeleted":true,"id":"-wqdtGth6S4mFp4qi1meQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":666.0481100082397,"y":277.1546391248703,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.072165012359619,"height":20.646048665046692,"seed":408895393,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.487972617149353],[-3.0378007888793945,4.2474223375320435],[-3.0378007888793945,16.39862549304962],[0,18.158074498176575],[0,20.646048665046692],[-5.072165012359619,17.718213200569153],[-5.072165012359619,2.9278351068496704],[0,0],[0,0]]},{"type":"line","version":75,"versionNonce":241741881,"isDeleted":true,"id":"7zW47HdSR4jCTCd33crgb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":678.185567855835,"y":277.1546391248703,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.058418273925781,"height":20.632302403450012,"seed":267306735,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[5.058418273925781,2.914089322090149],[5.058418273925781,17.704466938972473],[0,20.632302403450012],[0,18.144328236579895],[3.0377979278564453,16.39862549304962],[3.0377979278564453,4.2474223375320435],[0,2.487972617149353],[0,0],[0,0]]},{"type":"line","version":75,"versionNonce":1843678167,"isDeleted":true,"id":"yuNCILiawn8kBTBvdAUVO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":672.0955324172974,"y":280.5773196220398,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.965635299682617,"height":3.340205669403076,"seed":1081648001,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.9828176498413086,1.6632304191589355],[0,3.340205669403076],[2.9828176498413086,1.6632304191589355],[0,0]]},{"type":"line","version":75,"versionNonce":171458841,"isDeleted":true,"id":"fqvhoK69LLr9Bb4o1bePP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":672.4941577911377,"y":287.8213052749634,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.9140892028808594,"height":5.017181873321533,"seed":460722447,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.9140892028808594,-1.6907215118408203],[2.9140892028808594,-5.017181873321533],[0,-3.3264598846435547],[0,0]]},{"type":"line","version":75,"versionNonce":87734519,"isDeleted":true,"id":"Ki5ezdaMi_W-4k7hFiU-C","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":671.7518901824951,"y":284.4948453903198,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.900343894958496,"height":5.017181873321533,"seed":192580449,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.900343894958496,-1.6907219886779785],[-2.900343894958496,1.6357383728027344],[0,3.3264598846435547],[0,0]]},{"type":"line","version":75,"versionNonce":195212793,"isDeleted":true,"id":"FP6tyMSCnN9XkavbpJv73","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.6391754150391,"y":286.7221984863281,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.7044677734375,"height":3.3264617919921875,"seed":1741625135,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.85910701751709,1.6632299423217773],[0,3.3264617919921875],[2.84536075592041,1.6632299423217773],[0,0]]},{"type":"line","version":75,"versionNonce":2105967127,"isDeleted":true,"id":"TAwMHpMZi6Zb2hBHUPChz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.9003438949585,"y":293.96618461608887,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.9003429412841797,"height":5.017181396484375,"seed":297039681,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.9003429412841797,-1.6907215118408203],[2.9003429412841797,-5.017181396484375],[0,-3.3264598846435547],[0,0]]},{"type":"line","version":75,"versionNonce":1705742041,"isDeleted":true,"id":"EZTKHPvvH1WJAms4yM35Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.364260673523,"y":290.6397247314453,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.900343418121338,"height":5.017181396484375,"seed":1801607503,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.900343418121338,-1.6907215118408203],[-2.900343418121338,1.6357383728027344],[0,3.3264598846435547],[0,0]]},{"type":"line","version":75,"versionNonce":1203513143,"isDeleted":true,"id":"Bc5f6g3LuglmuwaKjANZZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":675.607834815979,"y":286.7221984863281,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.7044677734375,"height":3.3264617919921875,"seed":897967905,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.84536075592041,1.6632299423217773],[0,3.3264617919921875],[2.85910701751709,1.6632299423217773],[0,0]]},{"type":"line","version":75,"versionNonce":1055280057,"isDeleted":true,"id":"2b0Pn04S62gSfjd5gP1Ya","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":675.8827486038208,"y":293.96618461608887,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.900343894958496,"height":5.017181396484375,"seed":998791023,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.900343894958496,-1.6907215118408203],[2.900343894958496,-5.017181396484375],[0,-3.3264598846435547],[0,0]]},{"type":"line","version":75,"versionNonce":1111500887,"isDeleted":true,"id":"YWGJVK4IJ04ntzoH2THqy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":675.3466672897339,"y":290.6397247314453,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.9003448486328125,"height":5.017181396484375,"seed":1633573633,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.9003448486328125,-1.6907215118408203],[-2.9003448486328125,1.6357383728027344],[0,3.3264598846435547],[0,0]]},{"type":"rectangle","version":94,"versionNonce":527854745,"isDeleted":true,"id":"thqVsWnvipTNZJpePsNIH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":420,"y":500,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":2014138401,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"container"}},{"type":"text","version":79,"versionNonce":182912375,"isDeleted":true,"id":"q24c5b0SNKehIqImEz2XH","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":516,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1447558767,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[{"id":"8rQyLaKxAoB8tQIxvtlYK","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Deploy","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Deploy"},{"type":"text","version":52,"versionNonce":1057976697,"isDeleted":true,"id":"N4McaglBdk1jBYP4GtPmq","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":558,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":286303233,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":53,"versionNonce":284507799,"isDeleted":true,"id":"3-qkHmQllFe2BHFbWLmr2","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":580,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1086085263,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":53,"versionNonce":318036569,"isDeleted":true,"id":"iZt8fPuewYbqId6bNe2se","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":588,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":2050915297,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":77,"versionNonce":1730106295,"isDeleted":true,"id":"nlxN5IO4YrwpinAgxkzvx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":640.3866672515869,"y":534.2400016784668,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":8.866666793823242,"height":15.353334903717041,"seed":736128687,"groupIds":["BulxHPWSNPwaWyKnIMqHT","1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-10.2333345413208],[-8.866666793823242,-15.353334903717041],[-8.866666793823242,-10.693335056304932],[-4.013334274291992,-7.920001983642578],[-4.039999008178711,-2.333333969116211],[0,0],[0,0]]},{"type":"line","version":77,"versionNonce":469378873,"isDeleted":true,"id":"sfHPa3akyg6THwvmP65X_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":634.7933340072632,"y":535.8533344268799,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.466667175292969,"height":12.933334350585938,"seed":1403410369,"groupIds":["syV6g5eenlL5K6TJDCNVa","1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-8.620000839233398],[-7.466667175292969,-12.933334350585938],[-7.466667175292969,-8.913333892822266],[-3.4600000381469727,-6.620000839233398],[-3.473334312438965,-2.0066661834716797],[0,0],[0,0]]},{"type":"line","version":77,"versionNonce":1435092183,"isDeleted":true,"id":"rlNmR8rExBmt-xo_AXcZC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":629.7600002288818,"y":537.1466674804688,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.066666841506958,"height":10.513334274291992,"seed":1650245839,"groupIds":["272FODIO794pUv3mUl5iO","1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-7.0066680908203125],[-6.066666841506958,-10.513334274291992],[-6.066666841506958,-7.14666748046875],[-2.9000000953674316,-5.333333969116211],[-2.913332939147949,-1.6800003051757812],[0,0],[0,0]]},{"type":"rectangle","version":107,"versionNonce":1954732057,"isDeleted":true,"id":"MSXfs0Xk2_LjCTY3Hg-Rx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":500,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":460747599,"groupIds":["9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":101,"versionNonce":734597623,"isDeleted":true,"id":"pJjBwLQBEfoOJoKXk4IGs","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":516,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1406692641,"groupIds":["9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"line","version":100,"versionNonce":511864057,"isDeleted":true,"id":"sw7SE6srkKKhE6Q2FMncS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":892.1500005722046,"y":532.2449989318848,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":1175007599,"groupIds":["kV8e1WylUomyvYulKnMDw","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":100,"versionNonce":1390525207,"isDeleted":true,"id":"VDIh4Pof5NgFCRyir95Jq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":888.6324996948242,"y":526.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1601184001,"groupIds":["lmx_ycXo4-on5viF-t28N","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":100,"versionNonce":293365209,"isDeleted":true,"id":"dX6Pqzs0azghRQ6OjNxL-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.460000038147,"y":533.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":668937103,"groupIds":["Ox-4gFf3F-V_AeQ8wXEyR","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":100,"versionNonce":524828727,"isDeleted":true,"id":"hCd9IIDNcW7lpLboRvgUP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":887.9274997711182,"y":524.9475002288818,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":698767585,"groupIds":["Ox-4gFf3F-V_AeQ8wXEyR","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":100,"versionNonce":142885561,"isDeleted":true,"id":"kues_hSWogBQD6-KaUAHd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":897.0625,"y":531.0150003433228,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":1831920047,"groupIds":["Ox-4gFf3F-V_AeQ8wXEyR","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":89,"versionNonce":1658921303,"isDeleted":true,"id":"5JXsJyqt37VvHbAO7yjq8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":360,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":913245039,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"},{"id":"7mHnYCMq-L6XCjXQ8F8pG","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"container"}},{"type":"text","version":79,"versionNonce":272466841,"isDeleted":true,"id":"e83CFcBwIYTAuc95n2cLu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":376,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1854435073,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"fontSize":16,"fontFamily":2,"text":"Pub/Sub","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Pub/Sub"},{"type":"text","version":51,"versionNonce":1057021559,"isDeleted":true,"id":"fly9gQq0puGBf4HHSkH9M","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":358,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1874509199,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":51,"versionNonce":1423681657,"isDeleted":true,"id":"j5rKv1Pd5h3liy23h6eMQ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":385,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":210036449,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":51,"versionNonce":913045399,"isDeleted":true,"id":"6R33SYvjgdRj74SVOY0x-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":393,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":399127471,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"ellipse","version":78,"versionNonce":807547225,"isDeleted":true,"id":"czCXciJ4NVyKB8L5zYnz-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":897.25,"y":382.48999977111816,"strokeColor":"transparent","backgroundColor":"#669df6","width":3.440000057220459,"height":3.440000057220459,"seed":1206346433,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":78,"versionNonce":2136403127,"isDeleted":true,"id":"zY6B4Pfpo8cWEWxwMRSlD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":883.3099999427795,"y":382.48999977111816,"strokeColor":"transparent","backgroundColor":"#669df6","width":3.440000057220459,"height":3.440000057220459,"seed":382068175,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":78,"versionNonce":2003082809,"isDeleted":true,"id":"NVJ4nLTNvDASzOqbgNszL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":890.2799997329712,"y":394.5599994659424,"strokeColor":"transparent","backgroundColor":"#669df6","width":3.440000057220459,"height":3.440000057220459,"seed":223306401,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"line","version":78,"versionNonce":359022039,"isDeleted":true,"id":"CKSWA16qP6GG72fknomB3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.6459999084473,"y":388.85999965667725,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.790000915527344,"height":5.403999328613281,"seed":1002853359,"groupIds":["DnD_Ns3fXS6v4km0IZNAe","BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.7950000762939453,-1.3839998245239258],[7.790000915527344,2.636000633239746],[6.995000839233398,4.0199995040893555],[0,0]]},{"type":"line","version":78,"versionNonce":159805209,"isDeleted":true,"id":"Es5f-BBw6SqeSh7Z2nzsE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":884.6329998970032,"y":391.57299995422363,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.757999897003174,"height":5.397000312805176,"seed":158099073,"groupIds":["ybysXVHqq-isWTJn0Bydp","BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[6.9629998207092285,-4.0199995040893555],[7.757999897003174,-2.6429996490478516],[0.7950000762939453,1.3770008087158203],[0,0]]},{"type":"line","version":78,"versionNonce":195980023,"isDeleted":true,"id":"R67PEtAZsWEg2H7jd8GHP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.1999998092651,"y":380.19000005722046,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.5900001525878906,"height":8.03999948501587,"seed":1590951439,"groupIds":["PZufmkT5w54eY_Zqh9FXR","BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[1.5900001525878906,0],[1.5900001525878906,8.03999948501587],[0,8.03999948501587],[0,0]]},{"type":"ellipse","version":78,"versionNonce":486220793,"isDeleted":true,"id":"x-SXhsXV7NIWwYee8YCVk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":889.2200002670288,"y":385.44999980926514,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":5.559999942779541,"height":5.559999942779541,"seed":654175841,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":78,"versionNonce":515109911,"isDeleted":true,"id":"AdnrckW6rKfw8jfyB45z7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":882.8399999141693,"y":390.0600004196167,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":4.380000114440918,"height":4.380000114440918,"seed":1122460719,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":78,"versionNonce":1304837337,"isDeleted":true,"id":"aXzdzYNAPnHJYuXIt_f-Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":896.7800006866455,"y":390.0600004196167,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":4.380000114440918,"height":4.380000114440918,"seed":1288927809,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":79,"versionNonce":107698487,"isDeleted":true,"id":"zwtYWwdyIbm2-OQQ1LQ3T","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":889.8100004196167,"y":378,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":4.380000114440918,"height":4.380000114440918,"seed":938018383,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1803237817,"isDeleted":true,"id":"nV1AI5bHHC26YAjup5RIv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":140,"y":120,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":443582607,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":117,"versionNonce":137960023,"isDeleted":true,"id":"ITrKp6V6S9Cmg6mW98Vtw","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":156,"y":136,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1764051937,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[{"id":"gISyGfHd3ExlrEzh0Hj-0","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":56,"versionNonce":121477785,"isDeleted":true,"id":"yvoOLMHERKAqDoCfiPE8y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":376,"y":418,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":529440431,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":57,"versionNonce":1223800695,"isDeleted":true,"id":"PdNXdlYF9b4_kpVydHyZz","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":445,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1563633601,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":57,"versionNonce":1103159161,"isDeleted":true,"id":"jPXYS3JtzQvdr23DbZrGb","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":453,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":549777615,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"rectangle","version":115,"versionNonce":1591324823,"isDeleted":true,"id":"qcPNVRi7vG5Nt3qDHFBmx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":140,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1859815329,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":1497925721,"isDeleted":true,"id":"06XSh5RVwY5GrgZt6k0_E","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":360,"y":140,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1739325167,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":115,"versionNonce":598050231,"isDeleted":true,"id":"tto4WaJazHBfz9I4BM-dm","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":362,"y":140,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":944434049,"groupIds":["aLCKileQ88_F43nfE-jrr","lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":115,"versionNonce":2007504185,"isDeleted":true,"id":"30BD-7pkdLJq4dKVPvr07","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":140,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1993099535,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":1182381783,"isDeleted":true,"id":"AsWzomLr_TpEZ1XaAWQfZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":143,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1640223585,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":1078134297,"isDeleted":true,"id":"9NeR01rWGvckIOKWadwgF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":355,"y":142,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1805537071,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":501924855,"isDeleted":true,"id":"o1HJ3vZjC8885RZH_MZSP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":149,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1603583809,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":504158969,"isDeleted":true,"id":"-LBbcAJ3Z-allbkmHMmgg","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":360,"y":149,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":545952079,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":115,"versionNonce":972893463,"isDeleted":true,"id":"57oOuYWAkPM5-Z9B0pILx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":362,"y":149,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1880960801,"groupIds":["v2uJpNgXmsqU8tAXRtiGd","lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":115,"versionNonce":1367938009,"isDeleted":true,"id":"BT7xlYtwISLlfc7CGjOMO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":149,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":250187631,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":908423735,"isDeleted":true,"id":"WQn4xZDN583Gr8s_yXrmz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":152,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1506583297,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":115,"versionNonce":1053503673,"isDeleted":true,"id":"IVsPD4aph7lxKkupcnsJK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":355,"y":151,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1896073615,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":89,"versionNonce":1263014743,"isDeleted":true,"id":"VjU1bGi9YYnINIC6WYz7H","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":720,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":595769167,"groupIds":["OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"round","boundElements":[{"id":"Sj_PH5cNVlsYPvn1BMMmF","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"container"}},{"type":"text","version":84,"versionNonce":2071376281,"isDeleted":true,"id":"FplAVudSsCZGAJEhDZZ6O","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":396,"y":736,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":1419929889,"groupIds":["OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"round","boundElements":[{"id":"Sj_PH5cNVlsYPvn1BMMmF","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud VPN","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud VPN"},{"type":"line","version":83,"versionNonce":565809271,"isDeleted":true,"id":"9X0FETu3qIydvnv2NqAQe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":598.5022354125977,"y":741.5054316520691,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.033864974975586,"height":12.816612720489502,"seed":200078703,"groupIds":["sPyePw-9Rb6FulWsVVSMK","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.647284030914307],[-3.5233211517333984,5.647284030914307],[-3.5233211517333984,7.157826900482178],[0,7.157826900482178],[0,12.816612720489502],[1.5105438232421875,12.816612720489502],[1.5105438232421875,0],[0,0]]},{"type":"line","version":83,"versionNonce":482285177,"isDeleted":true,"id":"0B_QP6ie9QXoEd3RA4L-m","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":586.4945683479309,"y":747.1527156829834,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.6849846839904785,"height":1.510542869567871,"seed":765107457,"groupIds":["sPyePw-9Rb6FulWsVVSMK","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.6849846839904785,0],[4.6849846839904785,1.510542869567871],[0,1.510542869567871],[0,0]]},{"type":"line","version":83,"versionNonce":1665034647,"isDeleted":true,"id":"IwhAOWPulY5eWbxWXa34Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":593.0849828720093,"y":750.3194885253906,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.815336227416992,"height":4.815335273742676,"seed":78278543,"groupIds":["prQXe_W-ewXqczASNUKdv","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.24627304077148438,-0.012423515319824219],[-0.4854106903076172,-0.048890113830566406],[-0.7162008285522461,-0.10819053649902344],[-0.93743896484375,-0.1891164779663086],[-1.1479177474975586,-0.2904653549194336],[-1.3464269638061523,-0.4110240936279297],[-1.5317630767822266,-0.5495901107788086],[-1.702713966369629,-0.7049522399902344],[-1.858077049255371,-0.8759040832519531],[-1.9966421127319336,-1.061239242553711],[-2.117201805114746,-1.259749412536621],[-2.2185497283935547,-1.4702281951904297],[-2.2994766235351562,-1.6914663314819336],[-2.3587770462036133,-1.9222564697265625],[-2.3952436447143555,-2.161393165588379],[-2.4076671600341797,-2.4076671600341797],[-2.3952436447143555,-2.653942108154297],[-2.3587770462036133,-2.893077850341797],[-2.2994766235351562,-3.123868942260742],[-2.2185497283935547,-3.345107078552246],[-2.117201805114746,-3.5555849075317383],[-1.9966421127319336,-3.754096031188965],[-1.858077049255371,-3.9394302368164062],[-1.702713966369629,-4.110383033752441],[-1.5317630767822266,-4.265745162963867],[-1.3464269638061523,-4.40431022644043],[-1.1479177474975586,-4.524870872497559],[-0.93743896484375,-4.626217842102051],[-0.7162008285522461,-4.707145690917969],[-0.4854106903076172,-4.766446113586426],[-0.24627304077148438,-4.802911758422852],[0,-4.815335273742676],[0.2462759017944336,-4.802911758422852],[0.4854116439819336,-4.766446113586426],[0.7162027359008789,-4.707145690917969],[0.9374408721923828,-4.626217842102051],[1.147918701171875,-4.524870872497559],[1.3464288711547852,-4.40431022644043],[1.531764030456543,-4.265745162963867],[1.7027158737182617,-4.110383033752441],[1.858078956604004,-3.9394302368164062],[1.99664306640625,-3.754096031188965],[2.117203712463379,-3.5555849075317383],[2.218550682067871,-3.345107078552246],[2.299478530883789,-3.123868942260742],[2.358778953552246,-2.893077850341797],[2.395244598388672,-2.653942108154297],[2.4076690673828125,-2.4076671600341797],[2.3966827392578125,-2.162698745727539],[2.3616552352905273,-1.9246149063110352],[2.3037919998168945,-1.6946420669555664],[2.224302291870117,-1.4740009307861328],[2.124392509460449,-1.2639188766479492],[2.005270004272461,-1.0656204223632812],[1.868143081665039,-0.8803262710571289],[1.7142181396484375,-0.7092647552490234],[1.544703483581543,-0.5536584854125977],[1.3608064651489258,-0.4147310256958008],[1.1637334823608398,-0.29370784759521484],[0.9546937942504883,-0.19181251525878906],[0.734893798828125,-0.11027050018310547],[0.5055398941040039,-0.050304412841796875],[0.2678413391113281,-0.013138771057128906],[0.023003578186035156,0],[0,0],[0,0]]},{"type":"line","version":83,"versionNonce":1164435289,"isDeleted":true,"id":"PIMB0qSiX_iDVay2ZGs-S","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":593.0849828720093,"y":746.4089450836182,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.021085739135742,"height":3.021085739135742,"seed":1159812321,"groupIds":["prQXe_W-ewXqczASNUKdv","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":83,"versionNonce":218832567,"isDeleted":true,"id":"Rc6202_7VyhMuock2BXSp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":593.0849828720093,"y":746.4089450836182,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.021085739135742,"height":3.021085739135742,"seed":401843631,"groupIds":["TnPYRXIe8OpvgMtu4FLr6","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":83,"versionNonce":1942260793,"isDeleted":true,"id":"vluAdiyiCrvYQy6fr1ey_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":597.00319480896,"y":753.766134262085,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122043609619141,"seed":1321603265,"groupIds":["zWYSy2pvGQM0cYdLRcCwF","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024200439453125],[4.679801940917969,0.05256462097167969],[4.725238800048828,0.09009552001953125],[4.762767791748047,0.13553237915039062],[4.791133880615234,0.1876201629638672],[4.809074401855469,0.24509811401367188],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.815334320068359],[4.815334320068359,4.815334320068359],[4.809074401855469,4.876947402954102],[4.791133880615234,4.934425354003906],[4.762767791748047,4.98651123046875],[4.725238800048828,5.031949996948242],[4.679801940917969,5.069478988647461],[4.627714157104492,5.097843170166016],[4.57023811340332,5.115785598754883],[4.508625030517578,5.122043609619141],[0,5.122043609619141],[0,5.122043609619141],[-0.061611175537109375,5.115785598754883],[-0.11909103393554688,5.097843170166016],[-0.17117691040039062,5.069478988647461],[-0.21661376953125,5.031949996948242],[-0.25414276123046875,4.98651123046875],[-0.28250885009765625,4.934425354003906],[-0.3004493713378906,4.876947402954102],[-0.30670928955078125,4.815334320068359],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509811401367188],[-0.28250885009765625,0.1876201629638672],[-0.25414276123046875,0.13553237915039062],[-0.21661376953125,0.09009552001953125],[-0.17117691040039062,0.05256462097167969],[-0.11909103393554688,0.024200439453125],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":83,"versionNonce":29634519,"isDeleted":true,"id":"8XM3bICf5dgghzLTwOeYk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":597.00319480896,"y":736.9968050718307,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122044682502747,"seed":1961957327,"groupIds":["zWYSy2pvGQM0cYdLRcCwF","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024201273918151855],[4.679801940917969,0.052565932273864746],[4.725238800048828,0.0900958776473999],[4.762767791748047,0.13553321361541748],[4.791133880615234,0.18761980533599854],[4.809074401855469,0.24509775638580322],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.8153358697891235],[4.815334320068359,4.8153358697891235],[4.809074401855469,4.876947045326233],[4.791133880615234,4.934424996376038],[4.762767791748047,4.986511826515198],[4.725238800048828,5.031948685646057],[4.679801940917969,5.0694791078567505],[4.627714157104492,5.097843289375305],[4.57023811340332,5.115784764289856],[4.508625030517578,5.122044682502747],[0,5.122044682502747],[0,5.122044682502747],[-0.061611175537109375,5.115784764289856],[-0.11909103393554688,5.097843289375305],[-0.17117691040039062,5.0694791078567505],[-0.21661376953125,5.031948685646057],[-0.25414276123046875,4.986511826515198],[-0.28250885009765625,4.934424996376038],[-0.3004493713378906,4.876947045326233],[-0.30670928955078125,4.8153358697891235],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509775638580322],[-0.28250885009765625,0.18761980533599854],[-0.25414276123046875,0.13553321361541748],[-0.21661376953125,0.0900958776473999],[-0.17117691040039062,0.052565932273864746],[-0.11909103393554688,0.024201273918151855],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":83,"versionNonce":263757081,"isDeleted":true,"id":"DFCVsXz7Z_9W78QSv9Y7t","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":582.4766771793365,"y":745.3469648361206,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122044801712036,"height":5.122044563293457,"seed":1613254817,"groupIds":["zWYSy2pvGQM0cYdLRcCwF","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508626222610474,0],[4.508626222610474,0],[4.570237874984741,0.006259918212890625],[4.627715349197388,0.024200439453125],[4.679802179336548,0.052565574645996094],[4.725239992141724,0.09009552001953125],[4.762769460678101,0.13553333282470703],[4.791134595870972,0.1876201629638672],[4.809075117111206,0.24509716033935547],[4.815335512161255,0.30670928955078125],[4.815335512161255,4.815335273742676],[4.815335512161255,4.815335273742676],[4.809075117111206,4.876946449279785],[4.791134595870972,4.934425354003906],[4.762769460678101,4.98651123046875],[4.725239992141724,5.031948089599609],[4.679802179336548,5.0694780349731445],[4.627715349197388,5.097843170166016],[4.570237874984741,5.115784645080566],[4.508626222610474,5.122044563293457],[0,5.122044563293457],[0,5.122044563293457],[-0.06161141395568848,5.115784645080566],[-0.11908936500549316,5.097843170166016],[-0.17117619514465332,5.0694780349731445],[-0.2166132926940918,5.031948089599609],[-0.25414323806762695,4.98651123046875],[-0.28250789642333984,4.934425354003906],[-0.3004491329193115,4.876946449279785],[-0.30670928955078125,4.815335273742676],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.2993483543395996,0.24509716033935547],[-0.28089046478271484,0.1876201629638672],[-0.2524585723876953,0.13553333282470703],[-0.21517562866210938,0.09009552001953125],[-0.1701653003692627,0.052565574645996094],[-0.11855030059814453,0.024200439453125],[-0.061454057693481445,0.006259918212890625],[0,0],[0,0]]},{"type":"rectangle","version":457,"versionNonce":1534991607,"isDeleted":false,"id":"alQMHesl-G0NviYi6f0BX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":120,"y":140,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":280,"height":200,"seed":1716867951,"groupIds":["ogT50GayQ-Q5VOFc-AmYk"],"strokeSharpness":"sharp","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"3EleidzYjikUW9ZkNfEPT","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"q530R61UTLOj7TzT77YrD","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":299,"versionNonce":951554553,"isDeleted":false,"id":"b5uFYKYQ9YtB2lM0PEZyK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":220,"y":160,"strokeColor":"#202124","backgroundColor":"transparent","width":86,"height":19,"seed":1391402753,"groupIds":["ogT50GayQ-Q5VOFc-AmYk"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"q530R61UTLOj7TzT77YrD","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DATA LAKE","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA LAKE"},{"type":"rectangle","version":97,"versionNonce":2109564439,"isDeleted":true,"id":"FT082wzi3l6l370pE96ew","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":440,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1691381167,"groupIds":["UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"round","boundElements":[{"id":"FdOpZc3X7dy5DyT_pEmQC","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":91,"versionNonce":1405414105,"isDeleted":true,"id":"HCnCXOttU8ehwY6NpOb8p","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":456,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1626982593,"groupIds":["UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"line","version":90,"versionNonce":1735822135,"isDeleted":true,"id":"qnoivhRwFrwRQaMY62xBC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":472.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":452255695,"groupIds":["zjNY1k-_e8YdoAPpOwx-d","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":90,"versionNonce":1500784569,"isDeleted":true,"id":"tYz1f2llDug-UmmXNJkQy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":466.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1663371425,"groupIds":["1QhsszbburjDVfud0jRW6","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":90,"versionNonce":1158548567,"isDeleted":true,"id":"W_X2ubNjxVbV8qqsWwPI9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":473.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":335941103,"groupIds":["8iUz2p4Dw9gUraW5Q9xI8","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":90,"versionNonce":1676200089,"isDeleted":true,"id":"-Pnu17ChbzpRuPLVzrqUR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":464.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":563956865,"groupIds":["8iUz2p4Dw9gUraW5Q9xI8","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":90,"versionNonce":1113090423,"isDeleted":true,"id":"zLIKVElOrHefm_fiJ385D","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":471.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":1259108367,"groupIds":["8iUz2p4Dw9gUraW5Q9xI8","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":77,"versionNonce":2094419321,"isDeleted":true,"id":"dHskVG81JjltL_ZxuSSjx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":520,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1937532833,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"container"}},{"type":"text","version":73,"versionNonce":479863447,"isDeleted":true,"id":"4kX7ZHc9Z1C8xui4L-zoa","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":536,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1587027695,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud VPN","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud VPN"},{"type":"text","version":52,"versionNonce":729822809,"isDeleted":true,"id":"MfmT9lKDEdoZQbk35YiYr","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":618,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":229690241,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":52,"versionNonce":1955051447,"isDeleted":true,"id":"nxNG_QURvrXE6Rd7fD7UC","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":645,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":2067032335,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":52,"versionNonce":1119486777,"isDeleted":true,"id":"q_0DJMYKrr2pRJnf5aPhv","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":653,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1332589409,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":72,"versionNonce":1615177943,"isDeleted":true,"id":"3Dg7jnOk3bOSOMZFoqKt3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":298.50223541259766,"y":541.5054316520691,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.033864974975586,"height":12.816612720489502,"seed":1845653295,"groupIds":["c19rpFEgeCSueG-OZXWEW","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.647284030914307],[-3.5233211517333984,5.647284030914307],[-3.5233211517333984,7.157826900482178],[0,7.157826900482178],[0,12.816612720489502],[1.5105438232421875,12.816612720489502],[1.5105438232421875,0],[0,0]]},{"type":"line","version":72,"versionNonce":1860645913,"isDeleted":true,"id":"BCgnFR8vzYoT4-tErlrL5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":286.4945683479309,"y":547.1527156829834,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.6849846839904785,"height":1.510542869567871,"seed":1023582017,"groupIds":["c19rpFEgeCSueG-OZXWEW","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.6849846839904785,0],[4.6849846839904785,1.510542869567871],[0,1.510542869567871],[0,0]]},{"type":"line","version":72,"versionNonce":1030256119,"isDeleted":true,"id":"ocQ8B2FefnUZoexD-aIiU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293.0849828720093,"y":550.3194885253906,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.815336227416992,"height":4.815335273742676,"seed":23769423,"groupIds":["FjY58-QGxkNdDH_oopjJn","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.24627304077148438,-0.012423515319824219],[-0.4854106903076172,-0.048890113830566406],[-0.7162008285522461,-0.10819053649902344],[-0.93743896484375,-0.1891164779663086],[-1.1479177474975586,-0.2904653549194336],[-1.3464269638061523,-0.4110240936279297],[-1.5317630767822266,-0.5495901107788086],[-1.702713966369629,-0.7049522399902344],[-1.858077049255371,-0.8759040832519531],[-1.9966421127319336,-1.061239242553711],[-2.117201805114746,-1.259749412536621],[-2.2185497283935547,-1.4702281951904297],[-2.2994766235351562,-1.6914663314819336],[-2.3587770462036133,-1.9222564697265625],[-2.3952436447143555,-2.161393165588379],[-2.4076671600341797,-2.4076671600341797],[-2.3952436447143555,-2.653942108154297],[-2.3587770462036133,-2.893077850341797],[-2.2994766235351562,-3.123868942260742],[-2.2185497283935547,-3.345107078552246],[-2.117201805114746,-3.5555849075317383],[-1.9966421127319336,-3.754096031188965],[-1.858077049255371,-3.9394302368164062],[-1.702713966369629,-4.110383033752441],[-1.5317630767822266,-4.265745162963867],[-1.3464269638061523,-4.40431022644043],[-1.1479177474975586,-4.524870872497559],[-0.93743896484375,-4.626217842102051],[-0.7162008285522461,-4.707145690917969],[-0.4854106903076172,-4.766446113586426],[-0.24627304077148438,-4.802911758422852],[0,-4.815335273742676],[0.2462759017944336,-4.802911758422852],[0.4854116439819336,-4.766446113586426],[0.7162027359008789,-4.707145690917969],[0.9374408721923828,-4.626217842102051],[1.147918701171875,-4.524870872497559],[1.3464288711547852,-4.40431022644043],[1.531764030456543,-4.265745162963867],[1.7027158737182617,-4.110383033752441],[1.858078956604004,-3.9394302368164062],[1.99664306640625,-3.754096031188965],[2.117203712463379,-3.5555849075317383],[2.218550682067871,-3.345107078552246],[2.299478530883789,-3.123868942260742],[2.358778953552246,-2.893077850341797],[2.395244598388672,-2.653942108154297],[2.4076690673828125,-2.4076671600341797],[2.3966827392578125,-2.162698745727539],[2.3616552352905273,-1.9246149063110352],[2.3037919998168945,-1.6946420669555664],[2.224302291870117,-1.4740009307861328],[2.124392509460449,-1.2639188766479492],[2.005270004272461,-1.0656204223632812],[1.868143081665039,-0.8803262710571289],[1.7142181396484375,-0.7092647552490234],[1.544703483581543,-0.5536584854125977],[1.3608064651489258,-0.4147310256958008],[1.1637334823608398,-0.29370784759521484],[0.9546937942504883,-0.19181251525878906],[0.734893798828125,-0.11027050018310547],[0.5055398941040039,-0.050304412841796875],[0.2678413391113281,-0.013138771057128906],[0.023003578186035156,0],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":66799865,"isDeleted":true,"id":"LsoXac9281hSmo4L4V7Xq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293.0849828720093,"y":546.4089450836182,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.021085739135742,"height":3.021085739135742,"seed":617549601,"groupIds":["FjY58-QGxkNdDH_oopjJn","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":1123327767,"isDeleted":true,"id":"OskPc8Jo_2UfOzL3gNrtV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293.0849828720093,"y":546.4089450836182,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.021085739135742,"height":3.021085739135742,"seed":516271983,"groupIds":["oVhjKvkzPvFKalZPj53Q6","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":192528857,"isDeleted":true,"id":"RCQ5IEX35PV-19fq4vhSK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.00319480895996,"y":553.766134262085,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122043609619141,"seed":1564640001,"groupIds":["toKOci7VtTgiLI8XDmuVU","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024200439453125],[4.679801940917969,0.05256462097167969],[4.725238800048828,0.09009552001953125],[4.762767791748047,0.13553237915039062],[4.791133880615234,0.1876201629638672],[4.809074401855469,0.24509811401367188],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.815334320068359],[4.815334320068359,4.815334320068359],[4.809074401855469,4.876947402954102],[4.791133880615234,4.934425354003906],[4.762767791748047,4.98651123046875],[4.725238800048828,5.031949996948242],[4.679801940917969,5.069478988647461],[4.627714157104492,5.097843170166016],[4.57023811340332,5.115785598754883],[4.508625030517578,5.122043609619141],[0,5.122043609619141],[0,5.122043609619141],[-0.061611175537109375,5.115785598754883],[-0.11909103393554688,5.097843170166016],[-0.17117691040039062,5.069478988647461],[-0.21661376953125,5.031949996948242],[-0.25414276123046875,4.98651123046875],[-0.28250885009765625,4.934425354003906],[-0.3004493713378906,4.876947402954102],[-0.30670928955078125,4.815334320068359],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509811401367188],[-0.28250885009765625,0.1876201629638672],[-0.25414276123046875,0.13553237915039062],[-0.21661376953125,0.09009552001953125],[-0.17117691040039062,0.05256462097167969],[-0.11909103393554688,0.024200439453125],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":1398711351,"isDeleted":true,"id":"G4SZsMNza64EdTCiiAQZi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.00319480895996,"y":536.9968050718307,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122044682502747,"seed":1885071759,"groupIds":["toKOci7VtTgiLI8XDmuVU","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024201273918151855],[4.679801940917969,0.052565932273864746],[4.725238800048828,0.0900958776473999],[4.762767791748047,0.13553321361541748],[4.791133880615234,0.18761980533599854],[4.809074401855469,0.24509775638580322],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.8153358697891235],[4.815334320068359,4.8153358697891235],[4.809074401855469,4.876947045326233],[4.791133880615234,4.934424996376038],[4.762767791748047,4.986511826515198],[4.725238800048828,5.031948685646057],[4.679801940917969,5.0694791078567505],[4.627714157104492,5.097843289375305],[4.57023811340332,5.115784764289856],[4.508625030517578,5.122044682502747],[0,5.122044682502747],[0,5.122044682502747],[-0.061611175537109375,5.115784764289856],[-0.11909103393554688,5.097843289375305],[-0.17117691040039062,5.0694791078567505],[-0.21661376953125,5.031948685646057],[-0.25414276123046875,4.986511826515198],[-0.28250885009765625,4.934424996376038],[-0.3004493713378906,4.876947045326233],[-0.30670928955078125,4.8153358697891235],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509775638580322],[-0.28250885009765625,0.18761980533599854],[-0.25414276123046875,0.13553321361541748],[-0.21661376953125,0.0900958776473999],[-0.17117691040039062,0.052565932273864746],[-0.11909103393554688,0.024201273918151855],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":309731001,"isDeleted":true,"id":"SrZumm_5zg7QDqje7tMwV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282.47667717933655,"y":545.3469648361206,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122044801712036,"height":5.122044563293457,"seed":1121745633,"groupIds":["toKOci7VtTgiLI8XDmuVU","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508626222610474,0],[4.508626222610474,0],[4.570237874984741,0.006259918212890625],[4.627715349197388,0.024200439453125],[4.679802179336548,0.052565574645996094],[4.725239992141724,0.09009552001953125],[4.762769460678101,0.13553333282470703],[4.791134595870972,0.1876201629638672],[4.809075117111206,0.24509716033935547],[4.815335512161255,0.30670928955078125],[4.815335512161255,4.815335273742676],[4.815335512161255,4.815335273742676],[4.809075117111206,4.876946449279785],[4.791134595870972,4.934425354003906],[4.762769460678101,4.98651123046875],[4.725239992141724,5.031948089599609],[4.679802179336548,5.0694780349731445],[4.627715349197388,5.097843170166016],[4.570237874984741,5.115784645080566],[4.508626222610474,5.122044563293457],[0,5.122044563293457],[0,5.122044563293457],[-0.06161141395568848,5.115784645080566],[-0.11908936500549316,5.097843170166016],[-0.17117619514465332,5.0694780349731445],[-0.2166132926940918,5.031948089599609],[-0.25414323806762695,4.98651123046875],[-0.28250789642333984,4.934425354003906],[-0.3004491329193115,4.876946449279785],[-0.30670928955078125,4.815335273742676],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.2993483543395996,0.24509716033935547],[-0.28089046478271484,0.1876201629638672],[-0.2524585723876953,0.13553333282470703],[-0.21517562866210938,0.09009552001953125],[-0.1701653003692627,0.052565574645996094],[-0.11855030059814453,0.024200439453125],[-0.061454057693481445,0.006259918212890625],[0,0],[0,0]]},{"type":"rectangle","version":432,"versionNonce":243991895,"isDeleted":true,"id":"TXEjIo4mN5S32oecI7i3C","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":800,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":272.7272727272727,"height":160.00000000000003,"seed":1833713473,"groupIds":["v4Kyrx3gvgGfINYNqD0Sk"],"strokeSharpness":"sharp","boundElements":[{"id":"shJ__kxr9Uyo_Kc4UCS2e","type":"arrow"}],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytmbL65ING_a2IF5e25Mc","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":298,"versionNonce":932437913,"isDeleted":true,"id":"aN_qxEMolrKsxMGTyvEUg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":160,"y":820,"strokeColor":"#202124","backgroundColor":"transparent","width":103,"height":19,"seed":202051919,"groupIds":["v4Kyrx3gvgGfINYNqD0Sk"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"ytmbL65ING_a2IF5e25Mc","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DEV SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DEV SUBNET"},{"type":"rectangle","version":66,"versionNonce":600719991,"isDeleted":true,"id":"Gxohmm-MpUgfliDHgZjIh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":100,"y":860,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":381678785,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":88,"versionNonce":2030470265,"isDeleted":true,"id":"i5O_IyW22NKqiIgyLj2lZ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":116,"y":876,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":142,"height":37,"seed":754414543,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"text","version":56,"versionNonce":1676467095,"isDeleted":true,"id":"7WccvBfTqmal1klF43ZeK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":260,"y":880,"strokeColor":"#202124","backgroundColor":"transparent","width":5,"height":19,"seed":1464186017,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":56,"versionNonce":1116835161,"isDeleted":true,"id":"F4UBAUOPiNih_1NgGEvLL","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":260,"y":907,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":7,"seed":1888887279,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[100,-7],[208,0]]},{"type":"text","version":51,"versionNonce":320557239,"isDeleted":true,"id":"-IeM8tVDqUrkJh2of4d2v","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":256,"y":913,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":617117825,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":61,"versionNonce":998799929,"isDeleted":true,"id":"oY2PfKMrZHLT05GNwLL5x","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.16421031951904,"y":876.9347368478775,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":1148849167,"groupIds":["symsiy-U2zHp1U5qqqHr6","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":61,"versionNonce":2063475159,"isDeleted":true,"id":"LR4ZjxL5mAHDg9Av8-evk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.1705255508423,"y":879.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":1627897953,"groupIds":["Yws3MTy8lJJuOr9m4VEqD","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442475,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":61,"versionNonce":1422838553,"isDeleted":true,"id":"LqdEvJDdiakzhgvG6Xwfy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.6568412780762,"y":888.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":1687925295,"groupIds":["0ez8K_H2m5dafIPVeHgnu","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":61,"versionNonce":1017761527,"isDeleted":true,"id":"60tBT7iJjm8hMhKRNVmMv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":307.62947368621826,"y":885.0505266189575,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":164826177,"groupIds":["1gjXPZD-ZIlSfvGZ6YeyB","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":61,"versionNonce":383254521,"isDeleted":true,"id":"ml1WD2o_me_Fsw5JlTvex","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":307.20631551742554,"y":885.9284210205078,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":2044957775,"groupIds":["vS0jRmQ94PLOCtN6aPZFt","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":61,"versionNonce":1654839319,"isDeleted":true,"id":"-xPj0VZlsgdNgj__S5-0E","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.6568412780762,"y":883.0989475250244,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.016840934753418,"height":3.7010529041290283,"seed":923393057,"groupIds":["Y0h2PLPgYarjxlQEpTljD","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-3.429474115371704],[-0.4863157272338867,-3.7010529041290283],[-1.016840934753418,-3.3915791511535645],[-1.016840934753418,0],[0,0]]},{"type":"line","version":61,"versionNonce":799512793,"isDeleted":true,"id":"YneCxdebDNYckI3qjj2i-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":319.9768409729004,"y":892.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":2083140207,"groupIds":["GPTSD5mCh3LqiitCPI0h6","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":61,"versionNonce":853392695,"isDeleted":true,"id":"m3XL1a736tD5XpAbbkCLS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":307.7999997138977,"y":890.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":1486598145,"groupIds":["JMrHQdOqUFVZ017rg4xwg","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"type":"rectangle","version":447,"versionNonce":1087444409,"isDeleted":true,"id":"yXmE5IfkXtfLBNXzyC9-u","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":800,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":272.7272727272727,"height":160.00000000000003,"seed":1596056111,"groupIds":["7n9Cse3WWz7efRfcJX32D"],"strokeSharpness":"sharp","boundElements":[{"id":"uw9uafUImq_py2-_G2vYB","type":"arrow"}],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"NQh75nyHB1usHUHR1z4Ot","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":319,"versionNonce":1086258775,"isDeleted":true,"id":"PL3KGhBNLFBGRWqBH21oo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":460,"y":820,"strokeColor":"#202124","backgroundColor":"transparent","width":93,"height":19,"seed":101178433,"groupIds":["7n9Cse3WWz7efRfcJX32D"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"NQh75nyHB1usHUHR1z4Ot","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"QA SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"QA SUBNET"},{"type":"rectangle","version":83,"versionNonce":1836578457,"isDeleted":true,"id":"It6Fg91kutUsPimMteqbG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":860,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":606323791,"groupIds":["VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":108,"versionNonce":1058741111,"isDeleted":true,"id":"ouGPfMM4Cwyo_TXxpI0BI","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":416,"y":876,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":142,"height":37,"seed":1948560417,"groupIds":["VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"line","version":78,"versionNonce":676313977,"isDeleted":true,"id":"KPd5j8UH0pjX178W7d956","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.164210319519,"y":876.9347368478775,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":1323590255,"groupIds":["iudIHUbJJMTVpR1r16jf4","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":78,"versionNonce":305566871,"isDeleted":true,"id":"x-Pl_3-Af0IxHMPTMvdDe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.1705255508423,"y":879.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":1239187457,"groupIds":["A6rGJ8bmCMkJWDug0G1y6","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":78,"versionNonce":1100735577,"isDeleted":true,"id":"_hDUEtPCKFfxqd50LXyNw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.6568412780762,"y":888.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":808205455,"groupIds":["VpiryfaYxmEW-iRtoSyNh","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":78,"versionNonce":566618551,"isDeleted":true,"id":"dxUQ_0nIzzdBXj90rLsuE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":607.6294736862183,"y":885.0505266189575,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":1697568737,"groupIds":["GIufUB0abrByh237Rselw","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":78,"versionNonce":892334393,"isDeleted":true,"id":"cTBh7MDUkceYd-znE2DRw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":607.2063155174255,"y":885.9284210205078,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":1806946991,"groupIds":["BfcgeILTW7tP_tCcmjd3d","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":78,"versionNonce":1793956567,"isDeleted":true,"id":"x3ff1XK6td6g0gkQYkjcx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.6568412780762,"y":883.0989475250244,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.016840934753418,"height":3.7010529041290283,"seed":942355393,"groupIds":["k1dJRprUzoWoHFgEBz4gP","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-3.429474115371704],[-0.4863157272338867,-3.7010529041290283],[-1.016840934753418,-3.3915791511535645],[-1.016840934753418,0],[0,0]]},{"type":"line","version":78,"versionNonce":946823705,"isDeleted":true,"id":"pydGRoKbh_IcQBu2GWyPl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":619.9768409729004,"y":892.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":438543567,"groupIds":["YYDtsfctbswzMmq2Ck_hl","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":78,"versionNonce":1380067319,"isDeleted":true,"id":"r-zQGoMMm4RalpkJEN_BW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":607.7999997138977,"y":890.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":1190204321,"groupIds":["Ls7-fi6Fuk9XnmHC_zttG","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"type":"rectangle","version":435,"versionNonce":139310841,"isDeleted":true,"id":"Ewm3TZnx9dyQaz23xd6bv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":800,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":272.7272727272727,"height":160.00000000000003,"seed":2050733249,"groupIds":["rSFcwUCe--C834beUoAU3"],"strokeSharpness":"sharp","boundElements":[{"id":"pdPc6K8gQxSjcdIstC2GM","type":"arrow"}],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"1ZffgxEm7iEhX_jh3uJ65","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":303,"versionNonce":902304023,"isDeleted":true,"id":"cd-uFgDtoVNcZEN5CUivs","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":760,"y":819,"strokeColor":"#202124","backgroundColor":"transparent","width":117,"height":19,"seed":538424271,"groupIds":["rSFcwUCe--C834beUoAU3"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"1ZffgxEm7iEhX_jh3uJ65","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"PROD SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"PROD SUBNET"},{"type":"rectangle","version":71,"versionNonce":2001629145,"isDeleted":true,"id":"0ajDR25Afe-RD7-13RV7b","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":700,"y":860,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1430877345,"groupIds":["wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":93,"versionNonce":1056167479,"isDeleted":true,"id":"-PSE6nWEp2ao7NJv59m6y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":716,"y":876,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":142,"height":37,"seed":363749871,"groupIds":["wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"line","version":66,"versionNonce":998575289,"isDeleted":true,"id":"ByJOBBW2IbSWy4wtKza_B","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.164210319519,"y":876.9347368478775,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":743716993,"groupIds":["b9dbaO3WwhieMnXG8nm9I","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":66,"versionNonce":1957295959,"isDeleted":true,"id":"JgWyKACsRPawr-S3NQQdo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.1705255508423,"y":879.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":478825487,"groupIds":["uvMswIquB-8Ddm5DyJPV3","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":66,"versionNonce":2090143129,"isDeleted":true,"id":"xz41JtPeNaAvZSJh3liyN","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.6568412780762,"y":888.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":18579553,"groupIds":["hbLrWE4JqNj8WeNJyUGS4","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":66,"versionNonce":222229623,"isDeleted":true,"id":"xaf2lcJgKYxdMKNnY9BgM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907.6294736862183,"y":885.0505266189575,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":1352921647,"groupIds":["Ovw0AjCeRdpiFhxnyeYvO","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":66,"versionNonce":565310073,"isDeleted":true,"id":"4KXDyWRnqxcbBJ1zMaxUe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907.2063155174255,"y":885.9284210205078,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":1903086657,"groupIds":["fYQLeW_yRkFQzoLgoU2ZM","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":66,"versionNonce":7818647,"isDeleted":true,"id":"YOTTEKbnLE_k4SmWl-4xO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.6568412780762,"y":883.0989475250244,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.016840934753418,"height":3.7010529041290283,"seed":988009551,"groupIds":["eCKJxopZhDZj0H6OACCGs","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-3.429474115371704],[-0.4863157272338867,-3.7010529041290283],[-1.016840934753418,-3.3915791511535645],[-1.016840934753418,0],[0,0]]},{"type":"line","version":66,"versionNonce":1604270937,"isDeleted":true,"id":"sWRajSP2f_et519CONdbB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":919.9768409729004,"y":892.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":892181537,"groupIds":["YFNlw9FuEnzJ0PmU-6qMN","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":66,"versionNonce":1502053047,"isDeleted":true,"id":"C4vqvoT-8NzPxX2w0QQ-7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907.7999997138977,"y":890.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":857895535,"groupIds":["CxnKLIwp_Agt5XYWFZB59","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"type":"rectangle","version":115,"versionNonce":112224313,"isDeleted":true,"id":"A3eKhBGrcZNinQ6GBlfEY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":1160,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":54644289,"groupIds":["5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"round","boundElements":[{"id":"BcSy_szos-cbUBAyvULcw","type":"arrow"}],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"container"}},{"type":"text","version":112,"versionNonce":1226052567,"isDeleted":true,"id":"CcUymMemIT_7lt1klmA5Z","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":416,"y":1175.5,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":143,"height":19,"seed":624554575,"groupIds":["5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"Binary Authorization","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Binary Authorization"},{"type":"line","version":106,"versionNonce":281606425,"isDeleted":true,"id":"OvpO8lQw6LgY0H05qao8z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.6638898849487,"y":1187.5217123031616,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.067220687866211,"height":13.477689743041992,"seed":1498439201,"groupIds":["EAmG0SzGFJnanXwsVjKnG","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3271865844726562,0],[2.3271865844726562,0],[2.3155136108398438,0.6361570358276367],[2.2813262939453125,1.2466144561767578],[2.225862503051758,1.8318605422973633],[2.1503658294677734,2.3923826217651367],[2.0560789108276367,2.9286632537841797],[1.9442415237426758,3.4411935806274414],[1.8160982131958008,3.930455207824707],[1.6728887557983398,4.396936416625977],[1.3462371826171875,5.263503074645996],[0.9742250442504883,6.044783592224121],[0.5667839050292969,6.744668006896973],[0.1338481903076172,7.367043495178223],[-0.31464576721191406,7.915802955627441],[-0.7687664031982422,8.394835472106934],[-1.2185783386230469,8.808030128479004],[-1.6541500091552734,9.159279823303223],[-2.0655431747436523,9.452471733093262],[-2.4428253173828125,9.691496849060059],[-2.776063919067383,9.880244255065918],[-3.055323600769043,10.022604942321777],[-3.055323600769043,11.807255744934082],[-2.755502700805664,11.707316398620605],[-2.755502700805664,11.707316398620605],[-2.712222099304199,11.691277503967285],[-2.6347970962524414,11.661320686340332],[-2.5255584716796875,11.616576194763184],[-2.3868331909179688,11.556178092956543],[-2.220950126647949,11.47925853729248],[-2.030240058898926,11.3849515914917],[-1.8170318603515625,11.272383689880371],[-1.5836553573608398,11.1406888961792],[-1.0657119750976562,10.816454887390137],[-0.49504566192626953,10.405303001403809],[0.109710693359375,9.900286674499512],[0.7299222946166992,9.294468879699707],[1.0400018692016602,8.951586723327637],[1.3469552993774414,8.580899238586426],[1.6484565734863281,8.181540489196777],[1.9421758651733398,7.752638816833496],[2.2257823944091797,7.293332099914551],[2.4969482421875,6.802746772766113],[2.753342628479004,6.280014991760254],[2.9926376342773438,5.724270820617676],[3.212505340576172,5.134648323059082],[3.4106130599975586,4.510275840759277],[3.5846338272094727,3.850287437438965],[3.732235908508301,3.1538143157958984],[3.8510942459106445,2.419989585876465],[3.938876152038574,1.647944450378418],[3.9932546615600586,0.8368129730224609],[4.011897087097168,-0.014277458190917969],[4.011897087097168,-1.6704339981079102],[-0.8423547744750977,-1.6704339981079102],[0,0],[0,0]]},{"type":"line","version":106,"versionNonce":1999732983,"isDeleted":true,"id":"0EL5KyBxTwftFrlcVBH_6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":611.8072566986084,"y":1185.8512783050537,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.052944183349609,"height":19.131469160318375,"seed":1761923183,"groupIds":["WI9e2s0e1dMwm1-AfPXsA","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.8280792236328125,-1.5704936981201172],[0.8280792236328125,-9.38013020157814],[-0.4854249954223633,-8.366447925567627],[-0.4854249954223633,-8.366447925567627],[-1.0193290710449219,-7.942404866218567],[-1.552311897277832,-7.47975492477417],[-2.079440116882324,-6.980045318603516],[-2.595775604248047,-6.444823980331421],[-3.0963850021362305,-5.875638484954834],[-3.57633113861084,-5.274036884307861],[-4.030677795410156,-4.641565799713135],[-4.454490661621094,-3.97977352142334],[-4.842833995819092,-3.290207862854004],[-5.190771579742432,-2.574415683746338],[-5.493367671966553,-1.8339462280273438],[-5.7456865310668945,-1.0703449249267578],[-5.942792892456055,-0.28516101837158203],[-6.079751014709473,0.5200586318969727],[-6.151625156402588,1.343766212463379],[-6.15347957611084,2.184414863586426],[-6.126155376434326,2.7413511276245117],[-6.066059589385986,3.292348861694336],[-5.973881721496582,3.836151123046875],[-5.850311756134033,4.3715057373046875],[-5.696040630340576,4.897154808044434],[-5.511757850646973,5.411846160888672],[-5.298153877258301,5.914322853088379],[-5.0559186935424805,6.403331756591797],[-4.785742282867432,6.877616882324219],[-4.488315582275391,7.33592414855957],[-4.164328098297119,7.776998519897461],[-3.8144702911376953,8.199583053588867],[-3.439432144165039,8.602428436279297],[-3.039902687072754,8.984272003173828],[-2.616575241088867,9.343866348266602],[-2.1701364517211914,9.679952621459961],[-2.0416412353515625,9.751338958740234],[-1.1850080490112305,8.366447448730469],[-1.2992267608642578,8.295063018798828],[-1.2992267608642578,8.295063018798828],[-1.7935752868652344,7.897085189819336],[-2.2557992935180664,7.466983795166016],[0.8994646072387695,5.6823320388793945],[0.8994646072387695,1.6847124099731445],[0,0],[0,0]]},{"type":"line","version":106,"versionNonce":1868328441,"isDeleted":true,"id":"jStVys1h_1ZIcjxldecmh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":610.9934558868408,"y":1187.5217123031616,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.6835217475891113,"height":11.964307069778442,"seed":851571201,"groupIds":["WI9e2s0e1dMwm1-AfPXsA","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":106,"versionNonce":358894103,"isDeleted":true,"id":"UpU6inBmpPX0iFyPyh6_V","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":610.9934558868408,"y":1187.5217123031616,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.6835217475891113,"height":11.964307069778442,"seed":1208937103,"groupIds":["f4J7dG4CuvfaLccpN73gR","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":106,"versionNonce":426657497,"isDeleted":true,"id":"FG1H8YjDrU5dPeviu8Ret","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":609.6085662841797,"y":1197.6157035827637,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.637927174568176,"height":13.63473892211914,"seed":882248161,"groupIds":["U-oABaPB0qCDdWNM_UnpL","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.6996078491210938,-0.3905677795410156],[-1.362553596496582,-0.8270187377929688],[-1.9873113632202148,-1.3067207336425781],[-2.572352886199951,-1.8270378112792969],[-3.116152763366699,-2.385334014892578],[-3.617182731628418,-2.978975296020508],[-4.073917865753174,-3.6053237915039062],[-4.484830379486084,-4.261747360229492],[-4.84839391708374,-4.945611953735352],[-5.163082122802734,-5.654278755187988],[-5.427367210388184,-6.385114669799805],[-5.639723539352417,-7.135483741760254],[-5.798623561859131,-7.902751922607422],[-5.902541399002075,-8.684283256530762],[-5.949949741363525,-9.477441787719727],[-5.939321756362915,-10.279594421386719],[-5.939321756362915,-11.850088119506836],[-7.624033451080322,-11.850088119506836],[-7.624033451080322,-10.279594421386719],[-7.624033451080322,-10.279594421386719],[-7.637927174568176,-9.323471069335938],[-7.579249858856201,-8.379413604736328],[-7.450050592422485,-7.45079231262207],[-7.252379655838013,-6.540971755981445],[-6.988286018371582,-5.6533203125],[-6.659819602966309,-4.791204452514648],[-6.269029378890991,-3.9579906463623047],[-5.817965745925903,-3.1570472717285156],[-5.308677673339844,-2.391742706298828],[-4.7432146072387695,-1.6654434204101562],[-4.123627185821533,-0.9815139770507812],[-3.451963424682617,-0.3433208465576172],[-2.730273723602295,0.24576377868652344],[-1.9606080055236816,0.7823753356933594],[-1.145014762878418,1.2631454467773438],[-0.28554439544677734,1.6847114562988281],[-0.014278411865234375,1.7846508026123047]]},{"type":"rectangle","version":92,"versionNonce":815853367,"isDeleted":true,"id":"MuZFZCmHJJEbcEIjywlCC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":100,"y":980,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":820694369,"groupIds":["7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"round","boundElements":[{"type":"text","id":"yiSd-6J4jgLJiBXNHfydg"}],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":88,"versionNonce":1502741433,"isDeleted":true,"id":"Iv7Zr6CX_0Qp2QhAjv2c6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-380,"y":716,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":142,"height":37,"seed":1107031343,"groupIds":["7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"line","version":62,"versionNonce":1129050199,"isDeleted":true,"id":"tB_Ogmif9URHzZiXW390t","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-190.02736854553223,"y":720,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":1674344769,"groupIds":["KcPhkf3grzfz53QJDgWXT","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":61,"versionNonce":1542136985,"isDeleted":true,"id":"TGefFVrUt9IsDRMAMvaRj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-187.82947444915771,"y":719.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":1749251919,"groupIds":["Uldw-GGSx5RRgcNl5Db3l","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":61,"versionNonce":121228663,"isDeleted":true,"id":"Kn_Iuud7eCCo5EtyfAoyh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-187.34315872192383,"y":728.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":1229826337,"groupIds":["IfsDmn0DKHuXmZBIs0DdT","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":62,"versionNonce":2083334521,"isDeleted":true,"id":"Z7IZ5gJiTc-Dcq8VzoEOB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-200,"y":722.5831580162048,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":2056631663,"groupIds":["I1kykiLW8b4vVleFm5B3L","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":63,"versionNonce":128910999,"isDeleted":true,"id":"-SVMcUrVmIPfAkooy5knx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-195.96842098236084,"y":720,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":1792924929,"groupIds":["YWNsXNokjyuoXcr0epgZ_","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":61,"versionNonce":1402704473,"isDeleted":true,"id":"sMliTHwcs_b4ZmT97xcb4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-180.0231590270996,"y":732.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":2013041889,"groupIds":["89eCKlsgNvrAuL0_E1Pxc","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":61,"versionNonce":1935678391,"isDeleted":true,"id":"144zNrE3im2mc_dXejVJw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-192.2000002861023,"y":730.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":57435567,"groupIds":["rNFdxS5lNSvzBc6zfx6n0","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"id":"x2TzVX21UZ6TkxzZnI_6h","type":"text","x":-228.8644100388231,"y":879.9587936303021,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":96651247,"version":48,"versionNonce":118087481,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"yiSd-6J4jgLJiBXNHfydg","type":"text","x":105,"y":1000.5,"width":230,"height":19,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"round","seed":4539969,"version":127,"versionNonce":779193559,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"text":"Required attestations build","fontSize":16,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":15,"containerId":"MuZFZCmHJJEbcEIjywlCC","originalText":"Required attestations build"},{"type":"rectangle","version":117,"versionNonce":1423675417,"isDeleted":true,"id":"lCjQZyTEArtBR_ssx6ki2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":980,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":595785231,"groupIds":["xFs4WMh6FTah8k0J_52vO","8Dl5bYzZf9cBe4Y4nRoQU"],"strokeSharpness":"round","boundElements":[{"id":"ncF8YT_z_OTOSl0cG4gIc","type":"text"},{"type":"text","id":"ncF8YT_z_OTOSl0cG4gIc"},{"id":"BcSy_szos-cbUBAyvULcw","type":"arrow"}],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"xUiJL3UPVgR8Msy3NuSMX","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":159,"versionNonce":611834359,"isDeleted":true,"id":"ncF8YT_z_OTOSl0cG4gIc","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":405,"y":991,"strokeColor":"#000000","backgroundColor":"transparent","width":230,"height":38,"seed":47871585,"groupIds":["xFs4WMh6FTah8k0J_52vO","8Dl5bYzZf9cBe4Y4nRoQU"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"Required attestations build, \nsecurity","baseline":34,"textAlign":"center","verticalAlign":"middle","containerId":"lCjQZyTEArtBR_ssx6ki2","originalText":"Required attestations build, security"},{"type":"rectangle","version":125,"versionNonce":1661215993,"isDeleted":true,"id":"0TmYeCcEoQcGV9jC2m4fX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":700,"y":980,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1020477217,"groupIds":["4pSlmnjQZibOs130E-Sb3","UupQjrOPAx6gu7EpGXjmJ"],"strokeSharpness":"round","boundElements":[{"id":"_TyuzdC_cxtRROfaAnnue","type":"text"},{"id":"_TyuzdC_cxtRROfaAnnue","type":"text"},{"type":"text","id":"_TyuzdC_cxtRROfaAnnue"}],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"rRg18D8ZBs9CfX193c9q8","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":178,"versionNonce":1517781783,"isDeleted":true,"id":"_TyuzdC_cxtRROfaAnnue","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":705,"y":991,"strokeColor":"#000000","backgroundColor":"transparent","width":230,"height":38,"seed":475823983,"groupIds":["4pSlmnjQZibOs130E-Sb3","UupQjrOPAx6gu7EpGXjmJ"],"strokeSharpness":"round","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"Required attestations build, \nsecurity, quality","baseline":34,"textAlign":"center","verticalAlign":"middle","containerId":"0TmYeCcEoQcGV9jC2m4fX","originalText":"Required attestations build, security, quality"},{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow","x":260,"y":21.250000000000014,"width":0,"height":118.74999999999999,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1520277185,"version":754,"versionNonce":462466263,"isDeleted":false,"boundElements":null,"updated":1682981491905,"link":null,"locked":false,"points":[[0,0],[0,118.74999999999999]],"lastCommittedPoint":null,"startBinding":{"elementId":"nuE-AcFQrwLl8JaHXKzu4","focus":0.5102040816326531,"gap":1.2500000000000142},"endBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow","x":260,"y":179.24695076595958,"width":0,"height":59.75304923404042,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1723920495,"version":347,"versionNonce":1088751671,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,59.75304923404042]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0.4285714285714287,"gap":21},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow","x":320,"y":280,"width":140,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1492273537,"version":348,"versionNonce":1912076985,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[140,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"0mG0njKLae7Xs8hf0tM2V","type":"arrow","x":680,"y":201,"width":0,"height":59,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1374805217,"version":103,"versionNonce":1168435543,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,59]],"lastCommittedPoint":null,"startBinding":{"elementId":"wdJbcKQ7xeYqt5eFLleXz","focus":0.6666666666666666,"gap":1},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"Ox5mUOuHGzYA12cNbxFFk","type":"line","x":380,"y":300,"width":0,"height":220,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2024543439,"version":77,"versionNonce":41565081,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,220]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"8rQyLaKxAoB8tQIxvtlYK","type":"arrow","x":380,"y":520,"width":41.16760302580866,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":978531009,"version":82,"versionNonce":638297719,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[41.16760302580866,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"gISyGfHd3ExlrEzh0Hj-0","type":"arrow","x":380,"y":400,"width":67.38461538461536,"height":219,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":204379183,"version":273,"versionNonce":1321295993,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[-67.38461538461536,-219]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"w7G5c3bssSr0pDxV4UMRh","type":"line","x":600,"y":460,"width":0,"height":40,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":936183265,"version":57,"versionNonce":14532503,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,40]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"igogTZJwWzncygOnqfIbj","type":"arrow","x":751.2,"y":459,"width":28.799999999999955,"height":21,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":158035855,"version":119,"versionNonce":1418783065,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[28.799999999999955,21]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow","x":840.0000000274126,"y":421,"width":2.69479869530187e-8,"height":58,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1148000065,"version":278,"versionNonce":676312247,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[-2.69479869530187e-8,58]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"m9NP4e0V2NbJQI-NmR7jU","type":"text","x":930.3055778938806,"y":383.8664631304317,"width":7,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1468806017,"version":36,"versionNonce":222058041,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"7mHnYCMq-L6XCjXQ8F8pG","type":"arrow","x":760,"y":460,"width":0,"height":39,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":198032527,"version":41,"versionNonce":872809943,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,-39]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"SEQW2KpBeU2Er3-0YvvU1","type":"line","x":920,"y":540,"width":20,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":136688367,"version":41,"versionNonce":2074552089,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[20,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"7ovtTjRzZj2EWDoBAM3Je","type":"arrow","x":940,"y":540,"width":0,"height":219,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1088699169,"version":53,"versionNonce":1393898231,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,-219]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"tzltvz06MYsY6b9U8_x56","type":"arrow","x":220,"y":262.1818181818182,"width":0,"height":62.18181818181819,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1391174767,"version":356,"versionNonce":2051333113,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,-62.18181818181819]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"L_LKWVirTjHH4Ncix2DfT","type":"line","x":420,"y":540,"width":60,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":218084783,"version":52,"versionNonce":1577171991,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[-60,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"OwudwDvG4os7Lw0sCo-im","type":"line","x":360,"y":540,"width":0,"height":80,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1481369135,"version":52,"versionNonce":1226372313,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,-80]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"FdOpZc3X7dy5DyT_pEmQC","type":"arrow","x":280.7235142118863,"y":336.66666666666663,"width":59.27648578811369,"height":123.33333333333337,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1570074561,"version":618,"versionNonce":683680055,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[59.27648578811369,123.33333333333337]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","gap":16.666666666666664,"focus":0.16666666666666666},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"ASBL7QH_7dby1mNlRmSJK","type":"line","x":380,"y":540,"width":0,"height":40,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":232319745,"version":49,"versionNonce":1538716089,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,40]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"JGgM9Egr-cGxclIxeIH8n","type":"line","x":380,"y":580,"width":420,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1514809807,"version":58,"versionNonce":347398743,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[220,0],[420,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"k9iST2Ww6ZFCoqs5qXDsx","type":"line","x":800,"y":580,"width":0,"height":20,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":958149089,"version":47,"versionNonce":1732399769,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,-20]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"ax1y3gkL5MjprHkh-fIU3","type":"line","x":540,"y":560,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1621332353,"version":50,"versionNonce":1655996279,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"NUpcmeUGsowAIlJzvOmbm","type":"line","x":320,"y":620,"width":560,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1196654817,"version":83,"versionNonce":812554105,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[560,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"pdPc6K8gQxSjcdIstC2GM","type":"arrow","x":880,"y":620,"width":0,"height":180,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1877976833,"version":46,"versionNonce":1157855383,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,180]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"uw9uafUImq_py2-_G2vYB","type":"arrow","x":640,"y":620,"width":131.8947368421052,"height":179,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1226359905,"version":108,"versionNonce":427769945,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[131.8947368421052,179]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"9S5avaATpAiJMjsYiewcz","focus":0.6666666666666666,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"shJ__kxr9Uyo_Kc4UCS2e","type":"arrow","x":376.212961495801,"y":338.1818181818182,"width":56.21296149580098,"height":460.7272727272727,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":473193185,"version":488,"versionNonce":827739575,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[-56.21296149580098,460.7272727272727]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","gap":18.18181818181818,"focus":-0.8571428571428571},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"FMBTmNCSBwDRjjSH0lqCr","type":"arrow","x":260,"y":1100,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1446154753,"version":62,"versionNonce":1883753785,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,-60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":0.5555555555555556,"gap":20},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"arrow","version":52,"versionNonce":1926332119,"isDeleted":true,"id":"Y1BOjhXuHuS3ur54qYzON","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":1100,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":59,"seed":1970080129,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"startBinding":null,"endBinding":{"elementId":"lCjQZyTEArtBR_ssx6ki2","focus":0,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,-59]],"fontFamily":2},{"type":"arrow","version":83,"versionNonce":2083241497,"isDeleted":true,"id":"SmTDDfA1bsDdxpj6TSeh5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":1159,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":118,"seed":47789007,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"startBinding":{"elementId":"A3eKhBGrcZNinQ6GBlfEY","focus":0,"gap":1},"endBinding":{"elementId":"lCjQZyTEArtBR_ssx6ki2","focus":0,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,-118]],"fontFamily":2},{"type":"arrow","version":63,"versionNonce":2081000439,"isDeleted":true,"id":"7WlAZM0LQ2icqPKQK9bAh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":820,"y":1100,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":59,"seed":608166383,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"startBinding":null,"endBinding":{"elementId":"0TmYeCcEoQcGV9jC2m4fX","focus":0,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,-59]],"fontFamily":2},{"id":"1nrFbf4Db13TekgDqhtK1","type":"line","x":260,"y":1100,"width":560,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1308437281,"version":59,"versionNonce":1277072121,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[560,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"EHPHkg1qlxCE8U79Uzvvb","type":"arrow","x":200,"y":600,"width":0,"height":40,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1745442095,"version":42,"versionNonce":2030236951,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[0,40]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0,"gap":1},"endBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":-0.6888888888888889,"gap":20},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"Sj_PH5cNVlsYPvn1BMMmF","type":"arrow","x":77.35783594644624,"y":650.0649342600939,"width":301.6421640535538,"height":88.84339907323942,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":966489217,"version":163,"versionNonce":1151585241,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[301.6421640535538,88.84339907323942]],"lastCommittedPoint":null,"startBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":0.2,"gap":20},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"3OVxnvHgvYdzGxLVmKgk5","type":"arrow","x":180,"y":640.5681818181818,"width":39.184702084876704,"height":320.56818181818176,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":161534095,"version":697,"versionNonce":556939831,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[39.184702084876704,-320.56818181818176]],"lastCommittedPoint":null,"startBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":-0.7507962533212257,"gap":19.431818181818244},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"CVd8PMrfxHntfy0L8WE7V","type":"line","x":180,"y":640,"width":240,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1201180943,"version":58,"versionNonce":1842276537,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"points":[[0,0],[240,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":411,"versionNonce":1232853847,"isDeleted":true,"id":"78Wctym-9y0ecv2s18Suj","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":460,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":664002191,"groupIds":["yIXsaARoztc3ErlCISyV8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qlWGZXu5w60raOSOrI44S","label":"Step Circle","type":"child"}},{"type":"text","version":376,"versionNonce":21195161,"isDeleted":true,"id":"CsY-U-O3NloGTsyC4N_u8","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":410.5,"y":468,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":856315361,"groupIds":["yIXsaARoztc3ErlCISyV8"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qlWGZXu5w60raOSOrI44S","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"6","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"6"},{"type":"ellipse","version":439,"versionNonce":909400183,"isDeleted":true,"id":"SQqnNx10EYOgX9sTwlC09","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":540,"y":460,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":46022337,"groupIds":["dMtH3VaEcU5zbjmDq4RS4"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"uENvUshk8qf7zm8ydjU02","label":"Step Circle","type":"child"}},{"type":"text","version":405,"versionNonce":942984825,"isDeleted":true,"id":"LHtehNjXKY0j42Scq6N1H","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":550.5,"y":468,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1046137295,"groupIds":["dMtH3VaEcU5zbjmDq4RS4"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"uENvUshk8qf7zm8ydjU02","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"7","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"7"},{"type":"ellipse","version":461,"versionNonce":757084567,"isDeleted":true,"id":"2wFSii_UEdNj0bs9Hccju","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":940,"y":380,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1148066735,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qXhMc50XiP9gGZgWCu8RH","label":"Step Circle","type":"child"}},{"type":"text","version":427,"versionNonce":1499895641,"isDeleted":true,"id":"srizKmCc_9FI7A91P3WwT","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":950.5,"y":388,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":366344897,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"qXhMc50XiP9gGZgWCu8RH","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"8","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"8"},{"id":"ZJZo43039jVVxfsk2ceXw","type":"text","x":945,"y":386,"width":22,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"round","seed":1298507681,"version":36,"versionNonce":1198778039,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":19,"containerId":"2wFSii_UEdNj0bs9Hccju","originalText":""},{"id":"4HGeJfVzni_9Ykz0cxFjn","type":"text","x":945,"y":386,"width":22,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"round","seed":837734863,"version":33,"versionNonce":120341561,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":19,"containerId":"2wFSii_UEdNj0bs9Hccju","originalText":""},{"type":"ellipse","version":414,"versionNonce":64223191,"isDeleted":true,"id":"X7ycdTkB9P_U4NG-rs4pl","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":2024578721,"groupIds":["rJzwglZhAlrEVjemXNN75"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"fvgf6kD4ul62xACCrvpGj","label":"Step Circle","type":"child"}},{"type":"text","version":379,"versionNonce":1298748697,"isDeleted":true,"id":"VwQg3CLetAv0KyHTeFZJk","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":290.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":753588207,"groupIds":["rJzwglZhAlrEVjemXNN75"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"fvgf6kD4ul62xACCrvpGj","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"6","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"6"},{"type":"ellipse","version":425,"versionNonce":408216823,"isDeleted":true,"id":"dH6mWSq7_6oPcsot9biDB","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":660,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1427148225,"groupIds":["L8nbqNJreSPzQOYQDtkHr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"tspEGr9ui0pQMyti_LAgw","label":"Step Circle","type":"child"}},{"type":"text","version":391,"versionNonce":1871792633,"isDeleted":true,"id":"yzcm-i9sCNwGYffZCXOme","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":670.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":744024783,"groupIds":["L8nbqNJreSPzQOYQDtkHr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"tspEGr9ui0pQMyti_LAgw","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"9","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"9"},{"type":"ellipse","version":433,"versionNonce":75181591,"isDeleted":true,"id":"UZveLYbMK6MFTIRLte6g7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":900,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":555401839,"groupIds":["Mp4AZ36gw6YcN83NHxZ3E"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"_J3UUmmCABTjwsFyreQs3","label":"Step Circle","type":"child"}},{"type":"text","version":401,"versionNonce":1990697689,"isDeleted":true,"id":"J9VAaI6kejeX2J2eD_Bq7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":906.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":616308737,"groupIds":["Mp4AZ36gw6YcN83NHxZ3E"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"_J3UUmmCABTjwsFyreQs3","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"10","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"10"},{"type":"ellipse","version":448,"versionNonce":1664832311,"isDeleted":true,"id":"CtIeGm_0J0ZwgXEGqeaT7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":560,"y":1120,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1259242543,"groupIds":["IjVz8Jyj9wjgoQtbidhFE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"Koa7RuVQRpC3YjZBDzcgx","label":"Step Circle","type":"child"}},{"type":"text","version":416,"versionNonce":2134892473,"isDeleted":true,"id":"3asuPQOuzubGWMxwfrB9o","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":567,"y":1128,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":16,"height":16,"seed":372136513,"groupIds":["IjVz8Jyj9wjgoQtbidhFE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"Koa7RuVQRpC3YjZBDzcgx","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"11","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"11"},{"id":"psR2OrDD9UVhhLE8qIasW","type":"text","x":-297.9651744985325,"y":622.7972508918074,"width":7,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":78079887,"version":31,"versionNonce":2096747607,"isDeleted":true,"boundElements":null,"updated":1682981442476,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"ellipse","version":477,"versionNonce":1199407257,"isDeleted":true,"id":"i_UJISUT9aobixuJNgIVL","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":160,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":186361871,"groupIds":["DYKkFL0PVBanZIJj8EwyE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"JtclH-XJZ-XZePWv-u5vO","label":"Step Circle","type":"child"}},{"type":"text","version":447,"versionNonce":428552567,"isDeleted":true,"id":"fDr6bwLRei8m6nO9XKb3l","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":166.5,"y":348,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":64873569,"groupIds":["DYKkFL0PVBanZIJj8EwyE"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"JtclH-XJZ-XZePWv-u5vO","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"12","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"12"},{"type":"ellipse","version":376,"versionNonce":583066553,"isDeleted":false,"id":"x5Pa38vqOFZy3lNJ389sX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":560,"y":200,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":58966837,"groupIds":["N6wIb8neExP8RGaioqiue"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981484009,"link":null,"locked":false,"customData":{"boxId":"q_x4vNsCAxDX_x_EuMU_y","label":"Step Circle","type":"child"}},{"type":"text","version":337,"versionNonce":284889175,"isDeleted":false,"id":"SEQamGre3PGTErj8bDluV","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":570.5,"y":208,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":972355227,"groupIds":["N6wIb8neExP8RGaioqiue"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981484009,"link":null,"locked":false,"customData":{"boxId":"q_x4vNsCAxDX_x_EuMU_y","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"2","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"2"},{"type":"ellipse","version":297,"versionNonce":1262939737,"isDeleted":true,"id":"qNnIErxgfuV1BVkCyDL7b","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":160,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":9267541,"groupIds":["tAvrdlE1qfkglhmYdkWYa"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"8YPcJJ6foKsJz74dVQC9L","label":"Step Circle","type":"child"}},{"type":"text","version":259,"versionNonce":598245303,"isDeleted":true,"id":"tzcr4uTlnt1iS-LesRC0m","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":166.5,"y":348,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":676872827,"groupIds":["tAvrdlE1qfkglhmYdkWYa"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442476,"link":null,"locked":false,"customData":{"boxId":"8YPcJJ6foKsJz74dVQC9L","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"12","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"12"},{"type":"ellipse","version":366,"versionNonce":926755927,"isDeleted":false,"id":"nlbYwb8ZxMrYUYDOAuQKA","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":100,"y":500,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":916897595,"groupIds":["75IRW1WjqOLiaStc0Ge1X"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981471759,"link":null,"locked":false,"customData":{"boxId":"cX6_g5IRqptzU_mt4U-MX","label":"Step Circle","type":"child"}},{"type":"text","version":328,"versionNonce":1203480729,"isDeleted":false,"id":"TWu3gk1lMvvvZhguHlyEf","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":110.5,"y":508,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":2073306613,"groupIds":["75IRW1WjqOLiaStc0Ge1X"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981471759,"link":null,"locked":false,"customData":{"boxId":"cX6_g5IRqptzU_mt4U-MX","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"4","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"4"},{"type":"ellipse","version":353,"versionNonce":1643284601,"isDeleted":false,"id":"ySves-RdNXqjcjwUKoCHi","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":220,"y":360,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1094769243,"groupIds":["ZToeJWayNv_1EdeRtK05m"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981468280,"link":null,"locked":false,"customData":{"boxId":"qPCpsxGBwLGCOo5WKe8sR","label":"Step Circle","type":"child"}},{"type":"text","version":315,"versionNonce":1387468695,"isDeleted":false,"id":"TbgPgnwdAuKVpTK4Rcl4L","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":230.5,"y":368,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":328518869,"groupIds":["ZToeJWayNv_1EdeRtK05m"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981468280,"link":null,"locked":false,"customData":{"boxId":"qPCpsxGBwLGCOo5WKe8sR","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"3","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"3"},{"type":"ellipse","version":355,"versionNonce":1898619575,"isDeleted":false,"id":"eDNaee2-ziNKllxdYkwwc","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":600,"y":560,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":344326523,"groupIds":["-vRojK5P1iyf5s1nLk9FH"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981478566,"link":null,"locked":false,"customData":{"boxId":"yg_3yGKDcFztvdWz4Vy3R","label":"Step Circle","type":"child"}},{"type":"text","version":317,"versionNonce":105859129,"isDeleted":false,"id":"jFnlhC-vmj6T4zpxZ1_OQ","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":610.5,"y":568,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1609639861,"groupIds":["-vRojK5P1iyf5s1nLk9FH"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981478566,"link":null,"locked":false,"customData":{"boxId":"yg_3yGKDcFztvdWz4Vy3R","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"5","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"5"},{"type":"ellipse","version":305,"versionNonce":1773272537,"isDeleted":true,"id":"Wj7iDVYYlca3W0P3dXayl","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1140,"y":-80,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":302980085,"groupIds":["dIwiZvGV45gQvqMX3CF5e"],"strokeSharpness":"sharp","boundElements":[],"updated":1682983689678,"link":null,"locked":false,"customData":{"boxId":"TpClCuqxTynKKfDAatPAJ","label":"Step Circle","type":"child"}},{"type":"text","version":267,"versionNonce":1087907895,"isDeleted":true,"id":"8QdOVk_21qmgqx3OfCoPk","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1150.5,"y":-72,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":788040155,"groupIds":["dIwiZvGV45gQvqMX3CF5e"],"strokeSharpness":"sharp","boundElements":[],"updated":1682983689678,"link":null,"locked":false,"customData":{"boxId":"TpClCuqxTynKKfDAatPAJ","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"6","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"6"},{"type":"ellipse","version":289,"versionNonce":1728698041,"isDeleted":true,"id":"3s9tAcNFDQcygVCxHFpMm","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":560,"y":460,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":813040341,"groupIds":["i_L8V6YNBUmR0hHAjrMwi"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"1Bu_dDZftxqNUQVcXnGRb","label":"Step Circle","type":"child"}},{"type":"text","version":252,"versionNonce":1211026775,"isDeleted":true,"id":"K1mM9woJILebWzCpFR_u-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":570.5,"y":468,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1006633211,"groupIds":["i_L8V6YNBUmR0hHAjrMwi"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"1Bu_dDZftxqNUQVcXnGRb","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"8","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"8"},{"type":"ellipse","version":303,"versionNonce":439617879,"isDeleted":true,"id":"jUA3TKshK_2tNTzX_WLJv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1380,"y":380,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":366543899,"groupIds":["zDXWOmmc1ZC9RxRHVEVkT"],"strokeSharpness":"sharp","boundElements":[],"updated":1682983690956,"link":null,"locked":false,"customData":{"boxId":"LMa-w_IS3LJdeuq5ShOn0","label":"Step Circle","type":"child"}},{"type":"text","version":269,"versionNonce":1508711321,"isDeleted":true,"id":"6BNlMUM31taBa1QEJJyhI","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1390.5,"y":388,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":322772757,"groupIds":["zDXWOmmc1ZC9RxRHVEVkT"],"strokeSharpness":"sharp","boundElements":[],"updated":1682983690956,"link":null,"locked":false,"customData":{"boxId":"LMa-w_IS3LJdeuq5ShOn0","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"9","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"9"},{"type":"ellipse","version":288,"versionNonce":369900665,"isDeleted":true,"id":"QyyW29zaWzdyFBq0Dn3v1","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":900,"y":720,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":339728565,"groupIds":["nhvhvCjfKZCr-D7JKDisx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"cKcwg3JiT2txYous4-0B_","label":"Step Circle","type":"child"}},{"type":"text","version":253,"versionNonce":1295950743,"isDeleted":true,"id":"B2VEnlnHe8GpA_hX7pbKG","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907,"y":728,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":16,"height":16,"seed":852424987,"groupIds":["nhvhvCjfKZCr-D7JKDisx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"cKcwg3JiT2txYous4-0B_","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"11","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"11"},{"type":"ellipse","version":288,"versionNonce":639649113,"isDeleted":true,"id":"3FtIkVI1A_3wC1OCgEMU3","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":660,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1739122747,"groupIds":["8QPIG6RUyjbA1-SJ9b-kr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"WVoBhS9H_LVIQRzrNbK7h","label":"Step Circle","type":"child"}},{"type":"text","version":255,"versionNonce":2129926327,"isDeleted":true,"id":"gIxw9UejSwTnlKaz_V-Cs","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":666.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":1910836469,"groupIds":["8QPIG6RUyjbA1-SJ9b-kr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"WVoBhS9H_LVIQRzrNbK7h","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"10","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"10"},{"type":"ellipse","version":288,"versionNonce":746598969,"isDeleted":true,"id":"d1e0Oenb-v5dDUCf83OEY","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1467306965,"groupIds":["yV5YDSGRcP2-ufwRUukhN"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"MPcXP6eO_0VR7uPGzSbcC","label":"Step Circle","type":"child"}},{"type":"text","version":251,"versionNonce":8251863,"isDeleted":true,"id":"7ZuVhaLvVu1wJk0aO3zQK","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":290.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":68829179,"groupIds":["yV5YDSGRcP2-ufwRUukhN"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"MPcXP6eO_0VR7uPGzSbcC","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"7","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"7"},{"type":"ellipse","version":305,"versionNonce":1041203993,"isDeleted":true,"id":"d9-BH4z0RtpPfGpI5Zg5m","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":200,"y":1060,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":715907867,"groupIds":["LPhhXdIsU9hsikPcWyT6H"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kys11FcxCb6KpS0oZVjPc","label":"Step Circle","type":"child"}},{"type":"text","version":269,"versionNonce":250648311,"isDeleted":true,"id":"clhrnS2e9TZS9VFuM0mhf","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":210.5,"y":1068,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":281784341,"groupIds":["LPhhXdIsU9hsikPcWyT6H"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kys11FcxCb6KpS0oZVjPc","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"7","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"7"},{"type":"text","version":304,"versionNonce":121747449,"isDeleted":true,"id":"eanvCRctDGqeRlnbsdImu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":160,"y":820,"strokeColor":"#202124","backgroundColor":"transparent","width":103,"height":19,"seed":1065355388,"groupIds":["v4Kyrx3gvgGfINYNqD0Sk"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"AAf3trC5P8q_OHT59SwTB","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DEV SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DEV SUBNET"},{"id":"uhhZPNIvPGXYzmzoL3709","type":"text","x":180,"y":600,"width":149,"height":19,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":653384572,"version":124,"versionNonce":1355849751,"isDeleted":false,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"text":"DATA WAREHOUSE","fontSize":16,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":15,"containerId":null,"originalText":"DATA WAREHOUSE"},{"type":"ellipse","version":317,"versionNonce":1511674073,"isDeleted":true,"id":"HWNst2nUxKk2Ub7IMNKkR","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":480,"y":1060,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1725774076,"groupIds":["axztrPMqOSgjk_w9sjmye"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"1dqqZyQ61opbKGJ30kDvn","label":"Step Circle","type":"child"}},{"type":"text","version":285,"versionNonce":672302391,"isDeleted":true,"id":"SI0sC_9keJi73ycQDfjCj","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":486.5,"y":1068,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":1802233028,"groupIds":["axztrPMqOSgjk_w9sjmye"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"1dqqZyQ61opbKGJ30kDvn","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"10","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"10"},{"type":"ellipse","version":331,"versionNonce":2083311033,"isDeleted":true,"id":"_F7fMv4ohWladS67CVOad","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":840,"y":1060,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":472021956,"groupIds":["y2umzz-Xlk8G-IspTOE4C"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"_a_b-dfbVazRfX9b7IO1s","label":"Step Circle","type":"child"}},{"type":"text","version":303,"versionNonce":1142605399,"isDeleted":true,"id":"dTbCFHCPvb9Nf6ucwG9jS","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":847,"y":1068,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":16,"height":16,"seed":170332796,"groupIds":["y2umzz-Xlk8G-IspTOE4C"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"_a_b-dfbVazRfX9b7IO1s","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"11","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"11"},{"id":"ghqypfbEJh-dvnDTHAIcH","type":"line","x":380,"y":300,"width":0,"height":140,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":448502084,"version":27,"versionNonce":882683545,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,-140]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow","x":381,"y":160,"width":258,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1451183812,"version":304,"versionNonce":1941824375,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[258,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":34,"versionNonce":438137721,"isDeleted":true,"id":"DNRYALDqi1CMZ407YFMI3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":420,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1065392836,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":29,"versionNonce":926964887,"isDeleted":true,"id":"eJomFSVxjUy8CA021T_nR","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":436,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":1786667900,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":43,"versionNonce":552770649,"isDeleted":true,"id":"VLzUJ4pIQ5osVXVSLrklz","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":458,"strokeColor":"#202124","backgroundColor":"transparent","width":87,"height":19,"seed":1302897220,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Worker pool","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Worker pool"},{"type":"line","version":27,"versionNonce":307671479,"isDeleted":true,"id":"1WZz9VqXfMJsELdp7dHOI","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":460,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":945591292,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":27,"versionNonce":1760536889,"isDeleted":true,"id":"KcciNXEB3h0zkb2cQNrhE","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":468,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":2019801540,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":29,"versionNonce":505766615,"isDeleted":true,"id":"SppQSCjT74DPScg_ORU8q","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":452.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":2082518140,"groupIds":["iD44Czl413s4ESjNAkWSd","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":29,"versionNonce":1266162201,"isDeleted":true,"id":"fV_EDs7iZL8hrvyi9Fxgz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":446.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1523573060,"groupIds":["F_IN6YnFoXW-TRgDyaHYI","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":29,"versionNonce":1530982391,"isDeleted":true,"id":"WTdjlv2OVRXBRiMvdiKWW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":453.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":1670169852,"groupIds":["p1tkBs4iKH9bp4frqFQhp","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":29,"versionNonce":696217337,"isDeleted":true,"id":"4BOD-jvJBDDY5i2T9hUbn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":444.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":2085296324,"groupIds":["p1tkBs4iKH9bp4frqFQhp","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":29,"versionNonce":1135466775,"isDeleted":true,"id":"XP0An1VsdfWFa8QHfliLY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":451.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":337823100,"groupIds":["p1tkBs4iKH9bp4frqFQhp","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":56,"versionNonce":2039031769,"isDeleted":true,"id":"kc7mdb2IBHnKZYCbJMjm7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":480,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1120254844,"groupIds":["y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":48,"versionNonce":484482615,"isDeleted":true,"id":"dJ2tzvuRAJfFvfjIPzVFe","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":496,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":35834436,"groupIds":["y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":69,"versionNonce":363381945,"isDeleted":true,"id":"xaTOtMZ49dWyeSGmOtO0Y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":518,"strokeColor":"#202124","backgroundColor":"transparent","width":51,"height":19,"seed":1039723516,"groupIds":["y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Trigger","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Trigger"},{"type":"line","version":48,"versionNonce":163430231,"isDeleted":true,"id":"xoHKFM0mjusJ07kR_cD56","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":892.1500005722046,"y":512.2449989318848,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":1800987076,"groupIds":["Gz74dBPzSm8cjaUL9CuMO","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":48,"versionNonce":1233241497,"isDeleted":true,"id":"doVXqdwVU7_lwMNGCtN_R","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":888.6324996948242,"y":506.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1014107260,"groupIds":["FTqAmV2doIlHqdn-7Kim7","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":48,"versionNonce":1553579127,"isDeleted":true,"id":"PETMVXYIvr8UywI69DQlM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.460000038147,"y":513.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":81791300,"groupIds":["5Q1wX-u5k25t96EfH9sB3","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":48,"versionNonce":541567609,"isDeleted":true,"id":"ZLBR81rFBmSV2Z2WCLOBf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":887.9274997711182,"y":504.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":1072897276,"groupIds":["5Q1wX-u5k25t96EfH9sB3","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":48,"versionNonce":691606935,"isDeleted":true,"id":"jxLN7FHPXy1Yg35NSz4gt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":897.0625,"y":511.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":1108754628,"groupIds":["5Q1wX-u5k25t96EfH9sB3","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":90,"versionNonce":1925051225,"isDeleted":true,"id":"rW2PTmqX4Ggypk0jdCJFh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":240,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":409952252,"groupIds":["V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"},{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow"},{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow"},{"id":"tzltvz06MYsY6b9U8_x56","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":78,"versionNonce":382749367,"isDeleted":true,"id":"Hd7aQLoWFzaz1ovM4ixkd","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":256,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":1890823620,"groupIds":["V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":99,"versionNonce":892870713,"isDeleted":true,"id":"lquLK_i34OYzBzJDvwRPO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":278,"strokeColor":"#202124","backgroundColor":"transparent","width":51,"height":19,"seed":1744437372,"groupIds":["V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Trigger","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Trigger"},{"type":"line","version":78,"versionNonce":1912855511,"isDeleted":true,"id":"ce5H79HhQCRlJ6nwTv27P","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":272.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":755062084,"groupIds":["_zMTF_ElLblJuEEBpa78C","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":78,"versionNonce":93958425,"isDeleted":true,"id":"mCjrIe1iRb2FYIaBqMEjR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":266.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":509382908,"groupIds":["dQkU7M0ztXto41TUnazEv","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":78,"versionNonce":2129152247,"isDeleted":true,"id":"MtXUnnRu-UI3yVxYGZaH2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":273.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":1882066116,"groupIds":["7i0FLwIjkps9d5C-bB4hW","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":78,"versionNonce":2035688953,"isDeleted":true,"id":"URHHJwUyPV5oRPyZPHNEe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":264.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":2065240444,"groupIds":["7i0FLwIjkps9d5C-bB4hW","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":78,"versionNonce":184685079,"isDeleted":true,"id":"xO75XndnkfOvqb82uhQpQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":271.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":735564868,"groupIds":["7i0FLwIjkps9d5C-bB4hW","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"id":"XBtPrrKjt-IYFDzTFgmrF","type":"line","x":260,"y":1040,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":557421380,"version":18,"versionNonce":728825561,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"6QHaaka5rNhpcRtNPhcSl","type":"line","x":520,"y":1040,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":799253500,"version":16,"versionNonce":1061533495,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"ShpizXL49uz-ODMS8A3gc","type":"line","x":820,"y":1040,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1828784324,"version":19,"versionNonce":176012217,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"BcSy_szos-cbUBAyvULcw","type":"arrow","x":520,"y":781,"width":0,"height":378,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1193576132,"version":123,"versionNonce":840415319,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,378]],"lastCommittedPoint":null,"startBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":-0.022222222222222223,"gap":21},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"8USQIac6tvkAE-1mcKOT-","type":"line","x":600,"y":460,"width":160,"height":0,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1735818366,"version":21,"versionNonce":1721752729,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[160,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"i8pIgAaXwDjUT4tCQU6ap","type":"line","x":360,"y":500,"width":0,"height":80,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1938641314,"version":22,"versionNonce":961320311,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,-40],[0,40]],"lastCommittedPoint":[0,-40],"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"loRDMdwvBp_wHXFbuRIXd","type":"line","x":360,"y":460,"width":0,"height":80,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":219925310,"version":18,"versionNonce":1066066297,"isDeleted":true,"boundElements":null,"updated":1682981442477,"link":null,"locked":false,"points":[[0,0],[0,40],[0,80]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":18,"versionNonce":2083049111,"isDeleted":false,"id":"LJk2XCvI5nymX1bvvY-K5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1667954679,"groupIds":["OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{}},{"type":"text","version":29,"versionNonce":1384270425,"isDeleted":false,"id":"Oao7PNEfHAidyLqMR0UZe","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":403.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":383379193,"groupIds":["OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":18,"versionNonce":1163977655,"isDeleted":false,"id":"ebm5I-ffxunqTEdQET6aV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":409,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1230430487,"groupIds":["1jwBp00-X1LvsFMNfgM1i","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":18,"versionNonce":1750701881,"isDeleted":false,"id":"JGPcvZGwBXATHwBd9fFag","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":429,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":1154785241,"groupIds":["LCCtG2EFzC8Ei0I0_l7Vl","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":18,"versionNonce":353981655,"isDeleted":false,"id":"WmvhC96coCpe8dr5Mjny6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":416,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":405317175,"groupIds":["mV96xTNDSUGyXTkpNyXSd","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":18,"versionNonce":1668565017,"isDeleted":false,"id":"sJ2uzvF4adnQV8bL5K1V_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":429,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":1489321145,"groupIds":["KgBJiZNE_14Hk6ZktT8tm","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":18,"versionNonce":1927717367,"isDeleted":false,"id":"xxyH-bIwD3xzAYM63lint","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":416,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":1858389847,"groupIds":["4Bx09aiAdKrALiVoXrAIL","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":26,"versionNonce":231070969,"isDeleted":false,"id":"XcWFGvwFHWeHat_0QxYqT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":480,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1663502903,"groupIds":["fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"}},{"type":"text","version":31,"versionNonce":2144160535,"isDeleted":false,"id":"VXnomDYAaMYKVL5_ZIeRg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":503.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":240064697,"groupIds":["fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":26,"versionNonce":651285977,"isDeleted":false,"id":"9iqb-SYzoShcfP7QwItnt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":509,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":341224279,"groupIds":["EFmQgnMtLO1MJuQ0fMxGA","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":26,"versionNonce":1212272695,"isDeleted":false,"id":"9btzpZ2MwGv_siztDnLyo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":529,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":37591449,"groupIds":["2pYI9dMJHFDgFbfJcG3T0","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":26,"versionNonce":833335993,"isDeleted":false,"id":"I1N-jf6unhLTizhB78PfQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":516,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":2100635767,"groupIds":["09tcDvUms1SzTHWhZVYmV","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":26,"versionNonce":1445507415,"isDeleted":false,"id":"YiWvovsyJ0LRPAT2oGYfY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":529,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":2053701241,"groupIds":["j2TCQ1qABDNdYb3DFD9Ek","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":26,"versionNonce":49738649,"isDeleted":false,"id":"swnDs17DE0NL7dhh8CMfj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":516,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":2072445335,"groupIds":["d2MMvMq_3pVywE4K3yugn","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":30,"versionNonce":47607415,"isDeleted":false,"id":"EfLUqG8VkbxWkqofNu1B6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":580,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":626560855,"groupIds":["pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"}},{"type":"text","version":35,"versionNonce":250026105,"isDeleted":false,"id":"fa09_vxJI_A-2DtmwCGsy","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":603.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":1706816921,"groupIds":["pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":30,"versionNonce":152012695,"isDeleted":false,"id":"e-GkTlFxyJ-fqiVyoSwk7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":609,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1549438071,"groupIds":["ReLFbn2tftwCinmWPXlhG","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":30,"versionNonce":2000658777,"isDeleted":false,"id":"5sCtVdicHMUOVfodqKu9Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":629,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":364632697,"groupIds":["LtHdkl7DN2Qa7V1yMnfk3","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":30,"versionNonce":1460174007,"isDeleted":false,"id":"rmsIhDwyQUdOWXEqw0LMn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":616,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":408937879,"groupIds":["PEtvkJACkiUMhjCp1EJXh","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":30,"versionNonce":1498680889,"isDeleted":false,"id":"rQvhMy4vcDVytMFvFpQB8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":629,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":170664793,"groupIds":["gCGplUD8yCEIPVgiWezp-","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":30,"versionNonce":543542743,"isDeleted":false,"id":"02d2aUGDcSfIxY6BIn6kW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":616,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":412949175,"groupIds":["lss6KLgOwy6qgYErilXsH","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":154,"versionNonce":1544019737,"isDeleted":true,"id":"rfo0vgI0WaVRshIqPSdJC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":360,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":691709241,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":147,"versionNonce":809237239,"isDeleted":true,"id":"dAUJF7WEtziGbQ3uyvZ2E","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":376,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":421013207,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[{"id":"gISyGfHd3ExlrEzh0Hj-0","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"rectangle","version":144,"versionNonce":2110690297,"isDeleted":true,"id":"DPClQ7KUuT12YCCEymTVJ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":380,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1090754073,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":2064614423,"isDeleted":true,"id":"hpDrdXTPj8o9tyZIA0Kfd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":380,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1933259767,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":144,"versionNonce":581676249,"isDeleted":true,"id":"BavSg1cJoq_vXXJT4mLD-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":302,"y":380,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1480289017,"groupIds":["caOxQrXK9y3hN8mWh7_fl","BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":144,"versionNonce":1893001527,"isDeleted":true,"id":"skpoMvVatbUmCjoe8K85i","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":380,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1807719703,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":1647487417,"isDeleted":true,"id":"sneTMVr3u-qcwmfDnA-qq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":286,"y":383,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1734714329,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":250653271,"isDeleted":true,"id":"_joX6HYG8CR5zAMWrbcQE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":295,"y":382,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1712972343,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":361171609,"isDeleted":true,"id":"C5ctS2MQQidHb5nm4_ILL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":389,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":177586361,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":842483575,"isDeleted":true,"id":"FXCNZFliDY_xW0NsKnRlB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":389,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1663992663,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":144,"versionNonce":626806649,"isDeleted":true,"id":"aWzWHJzcm-yYcaOIyP56W","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":302,"y":389,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":258949529,"groupIds":["4E-ATa57osK16LOiBqxdn","BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":144,"versionNonce":686637207,"isDeleted":true,"id":"fxpqr3CKhdPcffo4amL76","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":389,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1397882999,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":401995865,"isDeleted":true,"id":"m4I01ocnrd0dWScMYKrpD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":286,"y":392,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1126540921,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":80156087,"isDeleted":true,"id":"d72llA2G6JzkjWIuawbMC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":295,"y":391,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":675862935,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"text","version":141,"versionNonce":1596425529,"isDeleted":false,"id":"EM9xr5KsBCr4SK2RSCHMw","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":640,"y":600,"strokeColor":"#202124","backgroundColor":"transparent","width":120,"height":19,"seed":143092345,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"VISUALIZATION","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"VISUALIZATION"},{"type":"text","version":158,"versionNonce":753485527,"isDeleted":false,"id":"g9ZP1GdyeFgArDXsAP7yG","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":440,"y":420,"strokeColor":"#202124","backgroundColor":"transparent","width":121,"height":19,"seed":531028089,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"DATA ANALYSIS","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA ANALYSIS"},{"type":"rectangle","version":50,"versionNonce":1716811289,"isDeleted":false,"id":"9S5avaATpAiJMjsYiewcz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":600,"y":480,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":817874903,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"container"}},{"type":"text","version":54,"versionNonce":803754999,"isDeleted":false,"id":"5TTFh6lcnxiCqjt7mWQwt","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":616,"y":496,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":103,"height":20,"seed":300057881,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[{"id":"eA4HsqtnkUBOc8YEdHjwl","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"fontSize":16,"fontFamily":5,"text":"Looker Studio","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Looker Studio"},{"type":"text","version":10,"versionNonce":1617971961,"isDeleted":true,"id":"I4Xb6FpodIm3uSBY53pVF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":780,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1464251639,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":11,"versionNonce":1439218967,"isDeleted":true,"id":"rnrN3Odmd9WXmUDaXtfRt","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":807,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":761559545,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":9,"versionNonce":1442743257,"isDeleted":true,"id":"lF517h0RQcr8ee7FCIdmT","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":813,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":615710231,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":45,"versionNonce":1912537655,"isDeleted":false,"id":"2VyNtq4L4VK0KS1vxepg6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.9612498283386,"y":497.33350002765656,"strokeColor":"#00000000","backgroundColor":"#d2e3fc","width":3.7423171997070312,"height":3.734805941581726,"seed":1922355929,"groupIds":["1btVUiomdVH3Kr3B2_Z5g","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.5100312232971191,0.0662999153137207],[-0.9578003883361816,0.256449818611145],[-1.6157517433166504,0.9213823080062866],[-1.8722500801086426,1.8209623098373413],[-1.625687599182129,2.7813557386398315],[-1.5472497940063477,2.906999945640564],[-0.7537503242492676,2.1134999990463257],[-0.7537503242492676,2.1134999990463257],[-0.7934994697570801,1.8667501211166382],[-0.6784472465515137,1.459694266319275],[-0.3909187316894531,1.182958722114563],[-0.005667686462402344,1.078858494758606],[0.40255308151245117,1.1897085905075073],[0.6975464820861816,1.4928752183914185],[0.7934422492980957,1.8802498579025269],[0.6909708976745605,2.2659372091293335],[0.39086198806762695,2.564041018486023],[0,2.6670001745224],[-0.24749994277954102,2.6339999437332153],[-1.0394997596740723,3.413999915122986],[-1.0394997596740723,3.413999915122986],[-0.09706878662109375,3.734805941581726],[0.823235034942627,3.547327399253845],[1.539562702178955,2.9398897886276245],[1.7644085884094238,2.5062869787216187],[1.8700671195983887,2.000815749168396],[1.763500690460205,1.230448842048645],[1.3719353675842285,0.5925709009170532],[0.7621073722839355,0.15861141681671143],[0.0007500648498535156,0],[0,0]]},{"type":"line","version":45,"versionNonce":1930600633,"isDeleted":false,"id":"CQqJXPRgjxn0OPYbwkbi8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.2210001945496,"y":502.76725006103516,"strokeColor":"#00000000","backgroundColor":"#5e97f6","width":1.8870000839233398,"height":4.200750827789307,"seed":1274618679,"groupIds":["eow4gkBPcRiPAVE1M738y","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.1371932029724121,-0.9175972938537598],[-0.553499698638916,-1.7467503547668457],[-1.6200003623962402,-0.7132501602172852],[-1.6200003623962402,-0.7132501602172852],[-1.4332499504089355,0],[-1.5482854843139648,0.5842504501342773],[-1.8870000839233398,1.0739998817443848],[-1.320000171661377,2.454000473022461],[-1.320000171661377,2.454000473022461],[-0.7648921012878418,1.9806079864501953],[-0.3492741584777832,1.3941383361816406],[-0.0890202522277832,0.7240996360778809],[0,0],[0,0]]},{"type":"line","version":45,"versionNonce":1970250583,"isDeleted":false,"id":"Lyyk_etILK4xyblptFnVr","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":804.3274998664856,"y":504.2544994354248,"strokeColor":"#00000000","backgroundColor":"#5e97f6","width":4.788131952285767,"height":5.8241026401519775,"seed":1711738809,"groupIds":["8scWl7gGuaJ6VdTbSX0yj","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7686569690704346,-0.19264698028564453],[-1.3029444217681885,-0.7155532836914062],[-1.519442081451416,-1.4311113357543945],[-1.3347289562225342,-2.2017135620117188],[-0.9288370609283447,-2.6721296310424805],[-0.38905811309814453,-2.929086685180664],[0.20825529098510742,-2.9536781311035156],[0.7867498397827148,-2.726999282836914],[1.813499927520752,-3.7469992637634277],[1.813499927520752,-3.7469992637634277],[0.9519872665405273,-4.242705345153809],[-0.026999950408935547,-4.414499521255493],[-0.8281154632568359,-4.312613487243652],[-1.5320091247558594,-4.015993595123291],[-2.1186437606811523,-3.5587029457092285],[-2.567983627319336,-2.974803924560547],[-2.8599919080734253,-2.298361301422119],[-2.9746320247650146,-1.5634379386901855],[-2.891867995262146,-0.8040962219238281],[-2.591663122177124,-0.05439949035644531],[-2.0081441402435303,0.6735925674438477],[-1.2448241710662842,1.1711139678955078],[-0.365445613861084,1.4096031188964844],[0.5662503242492676,1.3605003356933594],[0,0]]},{"type":"line","version":45,"versionNonce":357573017,"isDeleted":false,"id":"a0aWqVR-G7zE22ypAuvJD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":808.0010004043579,"y":505.4409999847412,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":13.195429801940918,"height":13.228109359741211,"seed":763208791,"groupIds":["wsCQDBWJiABDfBMhhWxQH","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-1.9072504043579102,0.2805004119873047],[-1.0935001373291016,2.280750274658203],[-1.0935001373291016,2.280750274658203],[0,2.147250175476074],[1.225865364074707,2.3133630752563477],[2.3003673553466797,2.7765493392944336],[3.193240165710449,3.4843788146972656],[3.8742170333862305,4.384426116943359],[4.3130340576171875,5.42425537109375],[4.479426383972168,6.551445007324219],[4.343131065368652,7.713560104370117],[3.8738794326782227,8.858175277709961],[3.1170883178710938,9.836748123168945],[2.178708076477051,10.535699844360352],[1.1192741394042969,10.955032348632812],[-0.0006742477416992188,11.094751358032227],[-1.1206021308898926,10.954858779907227],[-2.1799707412719727,10.535362243652344],[-3.1182432174682617,9.836267471313477],[-3.874882698059082,8.857574462890625],[-4.254111051559448,8.009841918945312],[-4.4462738037109375,7.13081169128418],[-4.458913087844849,6.24669075012207],[-4.299572467803955,5.383687973022461],[-3.97579288482666,4.568010330200195],[-3.495117664337158,3.825863838195801],[-2.8650894165039062,3.1834583282470703],[-2.093250274658203,2.6669998168945312],[-2.9070005416870117,0.6667499542236328],[-2.9070005416870117,0.6667499542236328],[-4.429308652877808,1.68048095703125],[-5.558233737945557,2.9912586212158203],[-6.2874510288238525,4.509803771972656],[-6.610635757446289,6.1468400955200195],[-6.5214632749557495,7.813089370727539],[-6.013608932495117,9.419271469116211],[-5.080748081207275,10.876110076904297],[-3.7165560722351074,12.094327926635742],[-2.0774850845336914,12.905818939208984],[-0.3778553009033203,13.228109359741211],[1.3018522262573242,13.10035514831543],[2.8811588287353516,12.561723709106445],[4.279585838317871,11.651374816894531],[5.416653633117676,10.408468246459961],[6.211883544921875,8.872167587280273],[6.584794044494629,7.081634521484375],[6.536764144897461,5.680234909057617],[6.209012031555176,4.363650321960449],[5.630675315856934,3.1632137298583984],[4.830890655517578,2.110261917114258],[3.838794708251953,1.2361297607421875],[2.6835222244262695,0.5721530914306641],[1.394211769104004,0.14966392517089844],[0,0],[0,0]]},{"type":"rectangle","version":36,"versionNonce":1081024631,"isDeleted":false,"id":"D6aJ_2_A95YlU4x7pRShZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":140,"y":480,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":2044467065,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[{"id":"eA4HsqtnkUBOc8YEdHjwl","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":33,"versionNonce":434800249,"isDeleted":false,"id":"ziTJLMTGXBaihpVo72h8a","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":156,"y":496,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":858650775,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[{"id":"3EleidzYjikUW9ZkNfEPT","type":"arrow"}],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":5,"text":"BigQuery","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery"},{"type":"text","version":8,"versionNonce":885127575,"isDeleted":true,"id":"yocS2x47D1cJJUeo8hyYV","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":236,"y":818,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1497153625,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":10,"versionNonce":1805995865,"isDeleted":true,"id":"UzhS7a9jmDHd0k787P82D","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":236,"y":845,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":5,"seed":1982909879,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[104,-5],[208,0]]},{"type":"text","version":8,"versionNonce":127708855,"isDeleted":true,"id":"2a-zmsgTooCjG_D84EKDh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":236,"y":853,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1549094201,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":32,"versionNonce":1356069945,"isDeleted":false,"id":"RnleHxA9DF4HZsoQ1WmJ-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":358.42121505737305,"y":512.7999992370605,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":945553111,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":32,"versionNonce":1403240407,"isDeleted":false,"id":"gMuURjq2cP6ln7sAdjHOH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":351.25491428375244,"y":497.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":176766489,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":32,"versionNonce":2035944729,"isDeleted":false,"id":"___yOsTw0d-CbwANIKJGw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":351.25491428375244,"y":514.2564735412598,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":742657015,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442477,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":32,"versionNonce":1793830135,"isDeleted":false,"id":"nJAGx2ce2HDuf3-pCujZv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":351.25491428375244,"y":514.2564735412598,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":852235001,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":32,"versionNonce":1286275577,"isDeleted":false,"id":"T9eojxue9EVUgk7Oey03w","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346.7132601737976,"y":506.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":1038972183,"groupIds":["jPGKJN1GzmTpTm6AfSVZT","PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":32,"versionNonce":1761146391,"isDeleted":false,"id":"89n2-VC6qO8C5B8xyHvFf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":350.07550716400146,"y":504.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":2040613849,"groupIds":["iBPzNQQ4IeLLh2JQ_rgVx","PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":32,"versionNonce":2009750233,"isDeleted":false,"id":"Wy6vgjoRbDyPDnecTv4nC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":354.06302642822266,"y":508.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":1691138615,"groupIds":["fZe_yjjcqfbUOpUWFfa0Y","PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"rectangle","version":60,"versionNonce":1721169531,"isDeleted":true,"id":"uK_QKU4jqy7TvnkM2CY4t","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":600,"y":220,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":459172503,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"container"}},{"type":"text","version":51,"versionNonce":727057077,"isDeleted":true,"id":"hgbfKOar4KE5N2WAXKClX","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":616,"y":236,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":537161305,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"fontSize":16,"fontFamily":5,"text":"Cloud Functions","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Functions"},{"type":"text","version":8,"versionNonce":581278807,"isDeleted":true,"id":"x3F9Oozh31FgC97kyW-ao","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":518,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":595787703,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":9,"versionNonce":2035431577,"isDeleted":true,"id":"upL8UrFxTxjnnHUzaKcoJ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":545,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":167197497,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":8,"versionNonce":645790071,"isDeleted":true,"id":"TKv2chHuYkC9NW5E5DNua","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":553,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":546828503,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":51,"versionNonce":1594388251,"isDeleted":true,"id":"e_0aKaymMGbZi_n_3BPUM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":801.3598774671555,"y":251.73782634735107,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.182848572731018,"height":12.727717876434326,"seed":1237150745,"groupIds":["bNhr7iDN4XSSspPjGYOg5","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.182848572731018,2.5874414443969727],[3.182848572731018,-10.140276432037354],[0,-7.563859939575195],[0,0]]},{"type":"line","version":51,"versionNonce":1196286997,"isDeleted":true,"id":"_UiCJuGx2f4B0TZQ_2Q3X","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":801.3598774671555,"y":245.83889770507812,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.182848572731018,"height":4.241347789764404,"seed":1278328311,"groupIds":["afB47AaiErYunvnouMdGW","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.182848572731018,-2.1206741333007812],[3.182848572731018,-4.241347789764404],[0,0]]},{"type":"line","version":51,"versionNonce":134337467,"isDeleted":true,"id":"nPLg2WEhJMbCFuaAqy8Yr","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":804.5427260398865,"y":254.32526779174805,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.182848572731018,"height":4.245022773742676,"seed":390758649,"groupIds":["afB47AaiErYunvnouMdGW","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.1206741333007812],[-3.182848572731018,-4.245022773742676],[0,0]]},{"type":"line","version":51,"versionNonce":1350736245,"isDeleted":true,"id":"blnLWzn1758w9dyjNfa65","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.7218990325928,"y":256.4459419250488,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.362021565437317,"height":8.486371040344238,"seed":961865495,"groupIds":["6QzxFfPXbh10oTspJ3cBo","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-6.362021565437317,-6.365696907043457],[-6.362021565437317,-2.1206741333007812],[-2.1206741333007812,2.1206741333007812],[0,0]]},{"type":"line","version":51,"versionNonce":1638245467,"isDeleted":true,"id":"uUZMBe3_UIt4dc5ma7tx0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":805.59019947052,"y":237.36722826957703,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.3546706438064575,"height":8.471669435501099,"seed":1612839385,"groupIds":["6QzxFfPXbh10oTspJ3cBo","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.230322003364563,4.230321645736694],[-4.219295978546143,8.471669435501099],[2.1243486404418945,2.120673894882202],[0,0]]},{"type":"line","version":51,"versionNonce":809083605,"isDeleted":true,"id":"utkIFhJVyYPoIYOqZQTW8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822.5702896118164,"y":244.19601821899414,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.1791725158691406,"height":12.727717876434326,"seed":645262391,"groupIds":["4kNdp7PLUCQ8mDodij1mn","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1791725158691406,-2.587441921234131],[-3.1791725158691406,10.140275955200195],[0,7.571209907531738],[0,0]]},{"type":"line","version":51,"versionNonce":1137074427,"isDeleted":true,"id":"dM1fGUjvqnUCAfLMy69y5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822.5702896118164,"y":250.09127044677734,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.1791725158691406,"height":4.245023727416992,"seed":358045369,"groupIds":["ZJtKmHfIMPN2qjEyP2PB1","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1791725158691406,2.1206741333007812],[-3.1791725158691406,4.245023727416992],[0,0]]},{"type":"line","version":51,"versionNonce":185106485,"isDeleted":true,"id":"dMP2F3iw49ja5d2mRGLhg","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":819.3911170959473,"y":241.60857629776,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.1791725158691406,"height":4.241346836090088,"seed":259607895,"groupIds":["ZJtKmHfIMPN2qjEyP2PB1","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.120673656463623],[3.1791725158691406,4.241346836090088],[0,0]]},{"type":"line","version":51,"versionNonce":1743161755,"isDeleted":true,"id":"OefPteHDJBTQA1Do8akfj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":816.2082691192627,"y":239.48790216445923,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.362020492553711,"height":8.482694864273071,"seed":965613465,"groupIds":["sXcjfWb-V7pPldkw9zSZa","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[6.362020492553711,6.362020969390869],[6.362020492553711,2.1206741333007812],[2.1206741333007812,-2.120673894882202],[0,0]]},{"type":"line","version":51,"versionNonce":1456779669,"isDeleted":true,"id":"83VPt72M016rTWs1RVsZX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":818.3399696350098,"y":258.5666160583496,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.350994110107422,"height":8.475345611572266,"seed":2142472823,"groupIds":["sXcjfWb-V7pPldkw9zSZa","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.230319976806641,-4.230321884155273],[4.219295501708984,-8.475345611572266],[-2.1206741333007812,-2.1206741333007812],[0,0]]},{"type":"ellipse","version":51,"versionNonce":859348539,"isDeleted":true,"id":"XJZF_fPLZHY97hJplvM8R","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":806.6597242355347,"y":246.8973970413208,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":2.1243491172790527,"height":2.1243491172790527,"seed":788118649,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"}},{"type":"ellipse","version":51,"versionNonce":819181301,"isDeleted":true,"id":"q3n7JxcBUywJlOBd3PvY7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":810.9047479629517,"y":246.8973970413208,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":2.1243491172790527,"height":2.1243491172790527,"seed":602481559,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"}},{"type":"ellipse","version":51,"versionNonce":1084169947,"isDeleted":true,"id":"L4fjmWmI0dtlS24VwxTnH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":815.1350688934326,"y":246.8973970413208,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":2.1243491172790527,"height":2.1243491172790527,"seed":1163773273,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830717274,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"}},{"type":"rectangle","version":59,"versionNonce":213567221,"isDeleted":false,"id":"U7PrUpBPQmmZHCqASI-Ow","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":140,"y":229,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":23934073,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":51,"versionNonce":1181814491,"isDeleted":false,"id":"df1Faj6grA5YWJUMLbUA1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":156,"y":245,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":2122918807,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":7,"versionNonce":1566823031,"isDeleted":true,"id":"ASGqLNn49E-gUlySKgcYM","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":358,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1789017433,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":9,"versionNonce":2035414137,"isDeleted":true,"id":"emDs8xtXVHbWyvKwkTM9f","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":385,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":5,"seed":900571319,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[104,-5],[208,0]]},{"type":"text","version":7,"versionNonce":1951427479,"isDeleted":true,"id":"7u-q_aNjsr1SCZUOEAsqc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":393,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":2114136633,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1682981442478,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"rectangle","version":51,"versionNonce":1611669589,"isDeleted":false,"id":"HI8XpVJa93L_74TifTQLb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":249,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":918974935,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":12614523,"isDeleted":false,"id":"gGGmgRo83p1-2H5J38a55","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":360,"y":249,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1416854297,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":51,"versionNonce":1177767349,"isDeleted":false,"id":"-2RO9tA6FGEBIw2H_mtS2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":362,"y":249,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":2062032631,"groupIds":["dQXXRBrWO75fnfmcVT3bh","bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":51,"versionNonce":1673090075,"isDeleted":false,"id":"yo6K94viLy_PPMYCDxaLY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":249,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":510046201,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":1313459989,"isDeleted":false,"id":"ezaojXbWYhQga4qYlfmzt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":252,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1687627799,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":1867389115,"isDeleted":false,"id":"tK-D_0iO_1bTx_Z1GVpl1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":355,"y":251,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":836782297,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":113845365,"isDeleted":false,"id":"va_ItxtgBqfQSYGhL3rIk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":258,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":298323255,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":18958683,"isDeleted":false,"id":"vcZT6diRIGFDTvY8xkolW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":360,"y":258,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1483982265,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":51,"versionNonce":326553045,"isDeleted":false,"id":"VtXn2cbFQ1T-MGWEQ8jIi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":362,"y":258,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1843351127,"groupIds":["zpEsK7al1Y_UkOXBBh-N3","bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":51,"versionNonce":512058875,"isDeleted":false,"id":"gd2cQasVNlwDg78iYzVAB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":258,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1564780185,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":57166645,"isDeleted":false,"id":"FLWXw4vgo7IYe6T8vJNGc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":261,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":61959031,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":51,"versionNonce":2122116763,"isDeleted":false,"id":"Gg9lMQYTOBZY2u2m89x54","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":355,"y":260,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1527147385,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1690830728818,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"id":"OVEN37Iv__GljxDhpz1EK","type":"text","x":760.3124999999998,"y":24.885742187500227,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1222193593,"version":4,"versionNonce":1241605785,"isDeleted":true,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"BPEGt1BNZwBAG_7GLkhpJ","type":"text","x":475.3125,"y":729.8857421875,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":78713145,"version":4,"versionNonce":1579199351,"isDeleted":true,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"3EleidzYjikUW9ZkNfEPT","type":"arrow","x":260,"y":340,"width":0,"height":140,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":485615671,"version":14,"versionNonce":304819065,"isDeleted":false,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"points":[[0,0],[0,140]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0,"gap":1},"endBinding":{"elementId":"ziTJLMTGXBaihpVo72h8a","focus":0.3,"gap":16},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"eA4HsqtnkUBOc8YEdHjwl","type":"arrow","x":380,"y":520,"width":220,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":290329817,"version":11,"versionNonce":1510614167,"isDeleted":false,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"points":[[0,0],[220,0]],"lastCommittedPoint":null,"startBinding":{"elementId":"D6aJ_2_A95YlU4x7pRShZ","focus":0.3333333333333333,"gap":1},"endBinding":{"elementId":"5TTFh6lcnxiCqjt7mWQwt","focus":-1.4,"gap":16},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"xP_gJ8bJaZVmg5KJ-HN1p","type":"line","x":400,"y":260,"width":200,"height":0,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":571006489,"version":14,"versionNonce":1049187417,"isDeleted":false,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"points":[[0,0],[200,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"2e-mxha5cZ4ATXu5ZeyDi","type":"line","x":300,"y":360,"width":400,"height":0,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2131584057,"version":21,"versionNonce":1218935223,"isDeleted":false,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"points":[[0,0],[400,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"Xhd-6J2LDGQhKMuer4my7","type":"line","x":700,"y":360,"width":0,"height":80,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":43393273,"version":8,"versionNonce":317677881,"isDeleted":false,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"points":[[0,0],[0,-80]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"YUf3D1bcc1sqJLuyl7Rsa","type":"line","x":300,"y":360,"width":0,"height":120,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1083042423,"version":14,"versionNonce":1595747031,"isDeleted":false,"boundElements":null,"updated":1682981442478,"link":null,"locked":false,"points":[[0,0],[0,120]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":64,"versionNonce":2137030395,"isDeleted":false,"id":"cf5kRJdL23c-AqV-Ynthp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":600,"y":229,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":354115579,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"container"}},{"type":"text","version":61,"versionNonce":69681717,"isDeleted":false,"id":"bk_slvsh0EiQYE1UI6Kcv","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":616,"y":245,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":1690759477,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"Workflows","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Workflows"},{"type":"text","version":36,"versionNonce":307807541,"isDeleted":true,"id":"Ovkx8aiMC4KKm106WRMHH","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1056,"y":278,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1682155675,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1690830712710,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":37,"versionNonce":2075139701,"isDeleted":true,"id":"oUQ9BshUrmSpQEaE5P6R4","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1056,"y":304,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":832373397,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830710233,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":36,"versionNonce":91129813,"isDeleted":true,"id":"OwVka1Gpgm6ALFwQtLAIu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1056,"y":313,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":77192507,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1690830711577,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":61,"versionNonce":646768539,"isDeleted":false,"id":"55F44ecfbmIhmusMYkgEl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.7122302055359,"y":264.10791397094727,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.2503600120544434,"height":2.071941375732422,"seed":275376117,"groupIds":["0qXjVyivUhvA_qoqjWSGq","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.011690616607666016,0.2695140838623047],[-0.04604291915893555,0.5330944061279297],[-0.10197877883911133,0.7891197204589844],[-0.17841720581054688,1.035970687866211],[2.0719428062438965,1.035970687866211],[2.0719428062438965,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.10197877883911133,-0.7891178131103516],[-0.04604291915893555,-0.5330944061279297],[-0.011690616607666016,-0.2695140838623047],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":46871445,"isDeleted":false,"id":"Zzu7zNaCZYYP2lylhQYYj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":816.1784172058105,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.250359535217285,"height":2.0719425678253174,"seed":1904246235,"groupIds":["0qXjVyivUhvA_qoqjWSGq","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.250359535217285,0],[-2.250359535217285,2.0719425678253174],[0,2.0719425678253174],[0,2.0719425678253174],[-0.07643890380859375,1.8250901699066162],[-0.13237380981445312,1.5690648555755615],[-0.16672706604003906,1.3054859638214111],[-0.17841720581054688,1.0359714031219482],[-0.16672706604003906,0.7664568424224854],[-0.13237380981445312,0.502877950668335],[-0.07643890380859375,0.24685263633728027],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1231240251,"isDeleted":false,"id":"gaevSpU4AwPGp25XXMvjV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":819.1079139709473,"y":252.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.215827941894531,"height":6.2158273458480835,"seed":1127424341,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754493713378906,-0.016060352325439453],[-0.6259651184082031,-0.06319713592529297],[-0.9236984252929688,-0.13984060287475586],[-1.2091712951660156,-0.24442386627197266],[-1.4808197021484375,-0.3753790855407715],[-1.7370719909667969,-0.5311374664306641],[-1.9763622283935547,-0.7101306915283203],[-2.1971206665039062,-0.9107909202575684],[-2.3977813720703125,-1.1315503120422363],[-2.5767765045166016,-1.3708405494689941],[-2.732534408569336,-1.6270933151245117],[-2.8634891510009766,-1.8987407684326172],[-2.9680728912353516,-2.1842145919799805],[-3.0447158813476562,-2.4819464683532715],[-3.0918521881103516,-2.7903690338134766],[-3.1079139709472656,-3.1079134941101074],[-3.0918521881103516,-3.4254579544067383],[-3.0447158813476562,-3.7338805198669434],[-2.9680728912353516,-4.031612396240234],[-2.8634891510009766,-4.317086219787598],[-2.732534408569336,-4.588733673095703],[-2.5767765045166016,-4.844986438751221],[-2.3977813720703125,-5.084276437759399],[-2.1971206665039062,-5.305035829544067],[-1.9763622283935547,-5.5056962966918945],[-1.7370719909667969,-5.68468976020813],[-1.4808197021484375,-5.840447902679443],[-1.2091712951660156,-5.9714027643203735],[-0.9236984252929688,-6.075986266136169],[-0.6259651184082031,-6.15263032913208],[-0.31754493713378906,-6.199766755104065],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236984252929688,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.4808197021484375,-5.840447902679443],[1.7370738983154297,-5.68468976020813],[1.9763622283935547,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317086219787598],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338805198669434],[3.0918540954589844,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819464683532715],[2.9680728912353516,-2.1842145919799805],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236984252929688,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1588197621,"isDeleted":false,"id":"Vl8V0Qc7l6kb06mnE9s-T","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":819.1079139709473,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.071941375732422,"height":2.0719425678253174,"seed":369756795,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":868613339,"isDeleted":false,"id":"SZw0N7E_X3GSTq3UqD50u","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":804.6043167114258,"y":267.21582794189453,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.2158273458480835,"height":6.215827941894531,"seed":793652917,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754446029663086,-0.01605987548828125],[-0.6259670257568359,-0.06319808959960938],[-0.923698902130127,-0.13984107971191406],[-1.2091727256774902,-0.24442481994628906],[-1.4808201789855957,-0.3753795623779297],[-1.7370729446411133,-0.5311374664306641],[-1.976362943649292,-0.7101306915283203],[-2.19712233543396,-0.9107913970947266],[-2.397782802581787,-1.131551742553711],[-2.5767762660980225,-1.370840072631836],[-2.732534408569336,-1.6270942687988281],[-2.863489270210266,-1.8987407684326172],[-2.968072772026062,-2.184215545654297],[-3.0447168350219727,-2.4819469451904297],[-3.0918532609939575,-2.7903690338134766],[-3.107913851737976,-3.1079139709472656],[-3.0918532609939575,-3.4254589080810547],[-3.0447168350219727,-3.7338790893554688],[-2.968072772026062,-4.031612396240234],[-2.863489270210266,-4.317085266113281],[-2.732534408569336,-4.588733673095703],[-2.5767762660980225,-4.8449859619140625],[-2.397782802581787,-5.08427619934082],[-2.19712233543396,-5.305034637451172],[-1.976362943649292,-5.505695343017578],[-1.7370729446411133,-5.684690475463867],[-1.4808201789855957,-5.840448379516602],[-1.2091727256774902,-5.971403121948242],[-0.923698902130127,-6.075986862182617],[-0.6259670257568359,-6.152629852294922],[-0.31754446029663086,-6.199766159057617],[0,-6.215827941894531],[0.31754446029663086,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.923698902130127,-6.075986862182617],[1.2091727256774902,-5.971403121948242],[1.4808201789855957,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.976363182067871,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.397782802581787,-5.08427619934082],[2.5767760276794434,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634896278381348,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447163581848145,-3.7338790893554688],[3.091853141784668,-3.4254589080810547],[3.1079134941101074,-3.1079139709472656],[3.091853141784668,-2.7903690338134766],[3.0447163581848145,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634896278381348,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767760276794434,-1.370840072631836],[2.397782802581787,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.4808201789855957,-0.3753795623779297],[1.2091727256774902,-0.24442481994628906],[0.923698902130127,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754446029663086,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1363743317,"isDeleted":false,"id":"N3XaQF7l8QxJcpcTGd_j5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":804.6043167114258,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.0719425678253174,"height":2.071941375732422,"seed":1459159835,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":289909115,"isDeleted":false,"id":"4dYmIXJilkPA3F2c7d4hC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":819.1079139709473,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.071941375732422,"height":2.0719425678253174,"seed":1935708181,"groupIds":["O_gDphGotOhyglk6tWjQK","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1199439797,"isDeleted":false,"id":"K2mEKwjnLZhsqV8fY69MQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":804.6043167114258,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.0719425678253174,"height":2.071941375732422,"seed":1556080571,"groupIds":["O_gDphGotOhyglk6tWjQK","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1999290907,"isDeleted":false,"id":"XUqgauL4CO0lGWWcexOdZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.8906478881836,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":6.394245028495789,"height":9.225899696350098,"seed":1029686645,"groupIds":["DxfRCauXFy8msjzZEeeV_","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.2503600120544434,0],[-2.2503600120544434,0],[-2.462372303009033,-0.010685920715332031],[-2.668221950531006,-0.042052268981933594],[-2.8668718338012695,-0.0930624008178711],[-3.057284355163574,-0.16267967224121094],[-3.2384233474731445,-0.24986648559570312],[-3.4092516899108887,-0.35358524322509766],[-3.568732261657715,-0.47280120849609375],[-3.7158279418945312,-0.6064748764038086],[-3.849501132965088,-0.753570556640625],[-3.968716621398926,-0.913050651550293],[-4.0724358558654785,-1.083878517150879],[-4.159622669219971,-1.2650175094604492],[-4.2292397022247314,-1.4554309844970703],[-4.280249834060669,-1.6540803909301758],[-4.31161642074585,-1.8599300384521484],[-4.322302579879761,-2.0719423294067383],[-4.322302579879761,-3.1079134941101074],[-4.322302579879761,-3.1079134941101074],[-4.316173315048218,-3.2672781944274902],[-4.298089265823364,-3.4234819412231445],[-4.268505811691284,-3.5760602951049805],[-4.227878093719482,-3.724550247192383],[-4.176661252975464,-3.8684868812561035],[-4.1153106689453125,-4.007407188415527],[-4.044281721115112,-4.140848159790039],[-3.96402907371521,-4.268344879150391],[-3.7776756286621094,-4.503653049468994],[-3.5598926544189453,-4.709621906280518],[-3.314321517944336,-4.882542610168457],[-3.182253360748291,-4.955450057983398],[-3.044604778289795,-5.018704414367676],[-3.1479320526123047,-5.301258563995361],[-3.223741054534912,-5.5956830978393555],[-3.270413875579834,-5.9008989334106445],[-3.2863311767578125,-6.215826988220215],[-3.276798725128174,-6.459532260894775],[-3.2489209175109863,-6.697841644287109],[-3.203777313232422,-6.929675817489624],[-3.142446517944336,-7.153956413269043],[-3.485318183898926,-7.062928199768066],[-3.815906524658203,-6.9439857006073],[-4.132853746414185,-6.798486232757568],[-4.434802532196045,-6.6277875900268555],[-4.720395803451538,-6.433246612548828],[-4.98827600479126,-6.216220378875732],[-5.237085819244385,-5.978066921234131],[-5.465467929840088,-5.7201433181762695],[-5.672065019607544,-5.443807601928711],[-5.855519771575928,-5.150415897369385],[-6.014474511146545,-4.841325759887695],[-6.14757227897644,-4.517895221710205],[-6.2534555196762085,-4.18148136138916],[-6.330767035484314,-3.833441734313965],[-6.3781492710113525,-3.4751334190368652],[-6.394245028495789,-3.1079134941101074],[-6.394245028495789,-2.0719423294067383],[-6.394245028495789,-2.0719423294067383],[-6.3728097677230835,-1.6488656997680664],[-6.3099037408828735,-1.2378711700439453],[-6.207625985145569,-0.8410558700561523],[-6.068075895309448,-0.46052074432373047],[-5.893352746963501,-0.09836578369140625],[-5.685555696487427,0.24331188201904297],[-5.446784019470215,0.5624113082885742],[-5.1791369915008545,0.8568344116210938],[-4.884714126586914,1.1244821548461914],[-4.5656139850616455,1.3632535934448242],[-4.223936557769775,1.5710506439208984],[-3.8617806434631348,1.7457733154296875],[-3.481245994567871,1.8853235244750977],[-3.0844311714172363,1.9876022338867188],[-2.673436164855957,2.0505075454711914],[-2.2503600120544434,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[-0.07643890380859375,1.8250904083251953],[-0.13237428665161133,1.5690650939941406],[-0.16672706604003906,1.3054866790771484],[-0.17841768264770508,1.0359716415405273],[-0.16672706604003906,0.7664575576782227],[-0.13237428665161133,0.5028781890869141],[-0.07643890380859375,0.24685287475585938],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":2003714325,"isDeleted":false,"id":"fXJ-CiuQhZHHjJ7WrqoJE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":818.0892086029053,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.369785308837891,"height":9.231654167175293,"seed":495007835,"groupIds":["guWTa5FsNBzzhwnMSb8ee","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.2316551208496094,0],[-1.2316551208496094,0],[-1.1552162170410156,0.24685287475585938],[-1.0992794036865234,0.5028781890869141],[-1.0649280548095703,0.7664575576782227],[-1.0532379150390625,1.0359716415405273],[-1.0649280548095703,1.3054866790771484],[-1.0992794036865234,1.5690650939941406],[-1.1552162170410156,1.8250904083251953],[-1.2316551208496094,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[0.21201133728027344,2.0826292037963867],[0.4178638458251953,2.1139955520629883],[0.6165122985839844,2.165006637573242],[0.8069248199462891,2.2346229553222656],[0.9880638122558594,2.321809768676758],[1.1588916778564453,2.4255285263061523],[1.3183727264404297,2.5447444915771484],[1.4654693603515625,2.6784181594848633],[1.599142074584961,2.8255138397216797],[1.7183570861816406,2.9849939346313477],[1.8220748901367188,3.1558218002319336],[1.9092636108398438,3.336960792541504],[1.9788799285888672,3.527374267578125],[2.0298900604248047,3.7260236740112305],[2.0612564086914062,3.931873321533203],[2.071941375732422,4.143885612487793],[2.071941375732422,5.179856300354004],[2.071941375732422,5.179856300354004],[2.065746307373047,5.341246604919434],[2.0474605560302734,5.499213218688965],[2.0175399780273438,5.653304100036621],[1.9764385223388672,5.803057670593262],[1.9246139526367188,5.948025703430176],[1.8625221252441406,6.087746620178223],[1.7906169891357422,6.221772193908691],[1.7093524932861328,6.349640846252441],[1.6191864013671875,6.470900535583496],[1.5205707550048828,6.585095405578613],[1.4139633178710938,6.691769599914551],[1.2998199462890625,6.790467262268066],[1.1785945892333984,6.880736351013184],[1.0507431030273438,6.962119102478027],[0.916717529296875,7.0341596603393555],[0.7769775390625,7.096402168273926],[0.8769798278808594,7.378058433532715],[0.951080322265625,7.670504570007324],[0.9971237182617188,7.973742485046387],[1.012948989868164,8.28777027130127],[1.0033283233642578,8.53156566619873],[0.9748191833496094,8.77050495147705],[0.9279670715332031,9.004048347473145],[0.8633098602294922,9.231654167175293],[1.2083377838134766,9.141573905944824],[1.5410652160644531,9.02332592010498],[1.8601150512695312,8.87828540802002],[2.1641178131103516,8.707823753356934],[2.4516983032226562,8.513319969177246],[2.7214832305908203,8.29614543914795],[2.9720935821533203,8.057673454284668],[3.202157974243164,7.799281120300293],[3.4103031158447266,7.522339820861816],[3.595155715942383,7.228226661682129],[3.755338668823242,6.918313026428223],[3.8894805908203125,6.593976020812988],[3.9962024688720703,6.256587028503418],[4.074134826660156,5.9075212478637695],[4.1219024658203125,5.548151969909668],[4.138130187988281,5.179856300354004],[4.138130187988281,4.143885612487793],[4.138130187988281,4.143885612487793],[4.117706298828125,3.720808982849121],[4.055688858032227,3.309814453125],[3.9541778564453125,2.912999153137207],[3.815288543701172,2.532464027404785],[3.641122817993164,2.170309066772461],[3.4337902069091797,1.8286314010620117],[3.1954002380371094,1.5095319747924805],[2.9280567169189453,1.215108871459961],[2.6338729858398438,0.9474611282348633],[2.314950942993164,0.7086896896362305],[1.9734001159667969,0.5008926391601562],[1.6113319396972656,0.3261699676513672],[1.2308483123779297,0.18661975860595703],[0.8340606689453125,0.08434104919433594],[0.4230766296386719,0.02143573760986328],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":778159803,"isDeleted":false,"id":"YHfyWO5eXQXRriHiMk4tx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":810.820143699646,"y":252.7122302055359,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.2158273458480835,"seed":1620135637,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079134941101074,0],[-3.1079134941101074,0],[-3.4254579544067383,-0.016060352325439453],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984060287475586],[-4.317086219787598,-0.24442386627197266],[-4.588733196258545,-0.3753790855407715],[-4.8449859619140625,-0.5311374664306641],[-5.0842766761779785,-0.7101306915283203],[-5.3050360679626465,-0.9107909202575684],[-5.5056962966918945,-1.1315503120422363],[-5.684689521789551,-1.3708405494689941],[-5.840447425842285,-1.6270933151245117],[-5.971402645111084,-1.8987407684326172],[-6.075986385345459,-2.1842145919799805],[-6.15263032913208,-2.4819464683532715],[-6.199766635894775,-2.7903690338134766],[-6.215826988220215,-3.1079134941101074],[-6.199766635894775,-3.4254579544067383],[-6.15263032913208,-3.7338805198669434],[-6.075986385345459,-4.031612396240234],[-5.971402645111084,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986438751221],[-5.5056962966918945,-5.084276437759399],[-5.3050360679626465,-5.305035829544067],[-5.0842766761779785,-5.5056962966918945],[-4.8449859619140625,-5.68468976020813],[-4.588733196258545,-5.840447902679443],[-4.317086219787598,-5.9714027643203735],[-4.031612396240234,-6.075986266136169],[-3.733880043029785,-6.15263032913208],[-3.4254579544067383,-6.199766755104065],[-3.1079134941101074,-6.2158273458480835],[0,-6.2158273458480835],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236993789672852,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.480820655822754,-5.840447902679443],[1.7370729446411133,-5.68468976020813],[1.976363182067871,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.863490104675293,-4.317086219787598],[2.968073844909668,-4.031612396240234],[3.0447168350219727,-3.7338805198669434],[3.091853141784668,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.091853141784668,-2.7903690338134766],[3.0447168350219727,-2.4819464683532715],[2.968073844909668,-2.1842145919799805],[2.863490104675293,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236993789672852,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":915363445,"isDeleted":false,"id":"fBwyxJittaoXBr1qKJJG1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.7122302055359,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719425678253174,"seed":655324411,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1032795995,"isDeleted":false,"id":"pVBKUtII5j_yrGy4XhACo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":813.9280576705933,"y":259.9640293121338,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.323740482330322,"height":6.215827941894531,"seed":730508341,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079139709472656,0],[-3.1079139709472656,0],[-3.4254579544067383,-0.016060829162597656],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984203338623047],[-4.317086219787598,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.084277153015137,-0.7101316452026367],[-5.305035591125488,-0.9107913970947266],[-5.5056962966918945,-1.1315507888793945],[-5.684689521789551,-1.3708410263061523],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987417221069336],[-6.075986385345459,-2.1842145919799805],[-6.152629852294922,-2.4819469451904297],[-6.199766635894775,-2.790369987487793],[-6.215827465057373,-3.1079139709472656],[-6.199766635894775,-3.4254579544067383],[-6.152629852294922,-3.7338809967041016],[-6.075986385345459,-4.031613349914551],[-5.971403121948242,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986915588379],[-5.5056962966918945,-5.084277153015137],[-5.305035591125488,-5.305036544799805],[-5.084277153015137,-5.5056962966918945],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317086219787598,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152630805969238],[-3.4254579544067383,-6.199767112731934],[-3.1079139709472656,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199767112731934],[0.6259670257568359,-6.152630805969238],[0.9236984252929688,-6.075986862182617],[1.209172248840332,-5.971403121948242],[1.480820655822754,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.9763622283935547,-5.5056962966918945],[2.1971216201782227,-5.305036544799805],[2.397782325744629,-5.084277153015137],[2.576775550842285,-4.844986915588379],[2.7325353622436523,-4.588733673095703],[2.86348819732666,-4.317086219787598],[2.968071937561035,-4.031613349914551],[3.0447168350219727,-3.7338809967041016],[3.091853141784668,-3.4254579544067383],[3.107913017272949,-3.1079139709472656],[3.091853141784668,-2.790369987487793],[3.0447168350219727,-2.4819469451904297],[2.968071937561035,-2.1842145919799805],[2.86348819732666,-1.8987417221069336],[2.7325353622436523,-1.6270942687988281],[2.576775550842285,-1.3708410263061523],[2.397782325744629,-1.1315507888793945],[2.1971216201782227,-0.9107913970947266],[1.9763622283935547,-0.7101316452026367],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753795623779297],[1.209172248840332,-0.24442481994628906],[0.9236984252929688,-0.13984203338623047],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060829162597656],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":262586325,"isDeleted":false,"id":"4W5b2WnomGWlG-_ecbA-P","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":810.820143699646,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719432830810547,"seed":686628251,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":856003579,"isDeleted":false,"id":"tmE6NELc-6XLDk7VonVB-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":816,"y":267.21582794189453,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.215827941894531,"seed":2117164437,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.107913017272949,0],[-3.107913017272949,0],[-3.4254579544067383,-0.01605987548828125],[-3.733880043029785,-0.06319808959960938],[-4.031612396240234,-0.13984107971191406],[-4.317085266113281,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.08427619934082,-0.7101306915283203],[-5.305035591125488,-0.9107913970947266],[-5.505695343017578,-1.131551742553711],[-5.684689521789551,-1.370840072631836],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987407684326172],[-6.075985908508301,-2.184215545654297],[-6.152629852294922,-2.4819469451904297],[-6.199766159057617,-2.7903690338134766],[-6.215826988220215,-3.1079139709472656],[-6.199766159057617,-3.4254589080810547],[-6.152629852294922,-3.7338790893554688],[-6.075985908508301,-4.031612396240234],[-5.971403121948242,-4.317085266113281],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.8449859619140625],[-5.505695343017578,-5.08427619934082],[-5.305035591125488,-5.305034637451172],[-5.08427619934082,-5.505695343017578],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317085266113281,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152629852294922],[-3.4254579544067383,-6.199766159057617],[-3.107913017272949,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.9236984252929688,-6.075986862182617],[1.2091732025146484,-5.971403121948242],[1.4808197021484375,-5.840448379516602],[1.7370738983154297,-5.684690475463867],[1.9763622283935547,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.3977832794189453,-5.08427619934082],[2.5767765045166016,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338790893554688],[3.0918540954589844,-3.4254589080810547],[3.1079139709472656,-3.1079139709472656],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767765045166016,-1.370840072631836],[2.3977832794189453,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753795623779297],[1.2091732025146484,-0.24442481994628906],[0.9236984252929688,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754493713378906,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":415890741,"isDeleted":false,"id":"CGXh-loQKSyBrtIOQE4J1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":812.892086982727,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.1798553466796875,"height":2.071941375732422,"seed":1045213755,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":784817307,"isDeleted":false,"id":"5Shs53ryaksO2TYohoyjc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":809.7841730117798,"y":252.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.2158273458480835,"seed":532341493,"groupIds":["QY21_TNcA3YRTDUdFPLUv","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.2800469398498535,-2.0930867195129395],[-2.4741907119750977,-2.153687000274658],[-2.6501240730285645,-2.2494940757751465],[-2.8035974502563477,-2.3762588500976562],[-2.9303622245788574,-2.5297322273254395],[-3.0261693000793457,-2.7056655883789062],[-3.0867695808410645,-2.899808883666992],[-3.1079139709472656,-3.1079134941101074],[-3.0867695808410645,-3.316018581390381],[-3.0261693000793457,-3.5101613998413086],[-2.9303622245788574,-3.6860947608947754],[-2.8035974502563477,-3.8395683765411377],[-2.6501240730285645,-3.9663331508636475],[-2.4741907119750977,-4.062140226364136],[-2.2800469398498535,-4.1227405071258545],[-2.0719428062438965,-4.143884897232056],[0,-4.143884897232056],[0,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.3894872665405273,-6.199766755104065],[-2.697909355163574,-6.15263032913208],[-2.9956417083740234,-6.075986266136169],[-3.2811155319213867,-5.9714027643203735],[-3.552762508392334,-5.840447902679443],[-3.8090152740478516,-5.68468976020813],[-4.048305988311768,-5.5056962966918945],[-4.2690653800964355,-5.305035829544067],[-4.469725608825684,-5.084276437759399],[-4.64871883392334,-4.844986438751221],[-4.804476737976074,-4.588733673095703],[-4.935431957244873,-4.317086219787598],[-5.040015697479248,-4.031612396240234],[-5.116659641265869,-3.7338805198669434],[-5.1637959480285645,-3.4254579544067383],[-5.179856300354004,-3.1079134941101074],[-5.1637959480285645,-2.7903690338134766],[-5.116659641265869,-2.4819464683532715],[-5.040015697479248,-2.1842145919799805],[-4.935431957244873,-1.8987407684326172],[-4.804476737976074,-1.6270933151245117],[-4.64871883392334,-1.3708405494689941],[-4.469725608825684,-1.1315503120422363],[-4.2690653800964355,-0.9107909202575684],[-4.048305988311768,-0.7101306915283203],[-3.8090152740478516,-0.5311374664306641],[-3.552762508392334,-0.3753790855407715],[-3.2811155319213867,-0.24442386627197266],[-2.9956417083740234,-0.13984060287475586],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060352325439453],[-2.0719428062438965,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":157191829,"isDeleted":false,"id":"jDyLpIHDzg07QXtPLfndT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":812.892086982727,"y":259.9640293121338,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856777191162,"height":6.215827941894531,"seed":2014360283,"groupIds":["QY21_TNcA3YRTDUdFPLUv","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.2800474166870117,-2.0930871963500977],[-2.4741907119750977,-2.1536874771118164],[-2.6501235961914062,-2.2494945526123047],[-2.8035974502563477,-2.3762598037719727],[-2.9303627014160156,-2.5297327041625977],[-3.0261688232421875,-2.7056655883789062],[-3.0867700576782227,-2.8998098373413086],[-3.1079139709472656,-3.1079139709472656],[-3.0867700576782227,-3.3160181045532227],[-3.0261688232421875,-3.510162353515625],[-2.9303627014160156,-3.6860952377319336],[-2.8035974502563477,-3.8395681381225586],[-2.6501235961914062,-3.9663333892822266],[-2.4741907119750977,-4.062140464782715],[-2.2800474166870117,-4.122740745544434],[-2.0719432830810547,-4.143885612487793],[0,-4.143885612487793],[0,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.3894872665405273,-6.199767112731934],[-2.697909355163574,-6.152630805969238],[-2.9956417083740234,-6.075986862182617],[-3.2811155319213867,-5.971403121948242],[-3.552762985229492,-5.840448379516602],[-3.8090152740478516,-5.684690475463867],[-4.048306465148926,-5.5056962966918945],[-4.269064903259277,-5.305036544799805],[-4.469725608825684,-5.084277153015137],[-4.64871883392334,-4.844986915588379],[-4.804476737976074,-4.588733673095703],[-4.935432434082031,-4.317086219787598],[-5.040015697479248,-4.031613349914551],[-5.116659164428711,-3.7338809967041016],[-5.1637959480285645,-3.4254579544067383],[-5.179856777191162,-3.1079139709472656],[-5.1637959480285645,-2.790369987487793],[-5.116659164428711,-2.4819469451904297],[-5.040015697479248,-2.1842145919799805],[-4.935432434082031,-1.8987417221069336],[-4.804476737976074,-1.6270942687988281],[-4.64871883392334,-1.3708410263061523],[-4.469725608825684,-1.1315507888793945],[-4.269064903259277,-0.9107913970947266],[-4.048306465148926,-0.7101316452026367],[-3.8090152740478516,-0.5311374664306641],[-3.552762985229492,-0.3753795623779297],[-3.2811155319213867,-0.24442481994628906],[-2.9956417083740234,-0.13984203338623047],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060829162597656],[-2.0719432830810547,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":747049275,"isDeleted":false,"id":"3Dg108XJt_D-k6_OgawNc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":812.892086982727,"y":265.1438846588135,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.215827941894531,"seed":1420606549,"groupIds":["QY21_TNcA3YRTDUdFPLUv","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,-0.021142959594726562],[-0.4022483825683594,-0.08174514770507812],[-0.578181266784668,-0.17755126953125],[-0.7316551208496094,-0.30431556701660156],[-0.8584194183349609,-0.45778846740722656],[-0.9542264938354492,-0.6337223052978516],[-1.014826774597168,-0.8278656005859375],[-1.0359716415405273,-1.035970687866211],[-1.014826774597168,-1.2440757751464844],[-0.9542264938354492,-1.4382190704345703],[-0.8584194183349609,-1.6141510009765625],[-0.7316551208496094,-1.7676258087158203],[-0.578181266784668,-1.8943901062011719],[-0.4022483825683594,-1.9901962280273438],[-0.20810508728027344,-2.0507984161376953],[0,-2.071941375732422],[2.0719423294067383,-2.071941375732422],[2.0719423294067383,-4.143884658813477],[0,-4.143884658813477],[0,-4.143884658813477],[-0.31754493713378906,-4.1278228759765625],[-0.6259670257568359,-4.080686569213867],[-0.9236993789672852,-4.0040435791015625],[-1.209172248840332,-3.8994598388671875],[-1.480820655822754,-3.768505096435547],[-1.7370729446411133,-3.6127471923828125],[-1.976363182067871,-3.4337520599365234],[-2.197122573852539,-3.233091354370117],[-2.397782325744629,-3.0123329162597656],[-2.5767765045166016,-2.773042678833008],[-2.732534408569336,-2.5167903900146484],[-2.863490104675293,-2.2451419830322266],[-2.9680728912353516,-1.9596691131591797],[-3.0447168350219727,-1.661935806274414],[-3.091853141784668,-1.353515625],[-3.1079139709472656,-1.035970687866211],[-3.091853141784668,-0.7184257507324219],[-3.0447168350219727,-0.410003662109375],[-2.9680728912353516,-0.11227226257324219],[-2.863490104675293,0.1732025146484375],[-2.732534408569336,0.44484901428222656],[-2.5767765045166016,0.7011032104492188],[-2.397782325744629,0.9403915405273438],[-2.197122573852539,1.1611518859863281],[-1.976363182067871,1.3618125915527344],[-1.7370729446411133,1.5408058166503906],[-1.480820655822754,1.696563720703125],[-1.209172248840332,1.8275184631347656],[-0.9236993789672852,1.9321022033691406],[-0.6259670257568359,2.0087451934814453],[-0.31754493713378906,2.0558834075927734],[0,2.0719432830810547],[2.0719423294067383,2.0719432830810547],[2.0719423294067383,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":270136309,"isDeleted":false,"id":"UtYbbmhpVAzruPQHPMEMi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.7122302055359,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719425678253174,"seed":650878843,"groupIds":["hY8yel9PHEihLfNSD9abo","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":229061083,"isDeleted":false,"id":"-oqjkQ_dCJCSaC5GME7oI","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":810.820143699646,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719432830810547,"seed":886860213,"groupIds":["hY8yel9PHEihLfNSD9abo","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1761717589,"isDeleted":false,"id":"-lkkjPRBgR5740RwdIdyw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":812.892086982727,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.1798553466796875,"height":2.071941375732422,"seed":1690302491,"groupIds":["hY8yel9PHEihLfNSD9abo","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1690830724023,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]}],"files":{}}} +{"version":"0.2.3","resources":[["UHRN8URZWaOiEoegPEZvR",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"UHRN8URZWaOiEoegPEZvR","isDeleted":true,"resource":"region"}],["xL5R-mC3JM90QTsSNUJjX",{"documentation_url":"https://cloud.google.com/resource-manager/docs/creating-managing-projects","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"billing_account":{"type":"string","description":"The alphanumeric ID of the billing account this project belongs to. The user or service account performing this operation with Terraform must have Billing Account Administrator privileges (roles/billing.admin) in the organization. See Google Cloud Billing API Access Control for more details.","description_kind":"plain","optional":true,"placeholder":"011DC8-DA44DB-216504","display":true},"folder_id":{"type":"string","description":"The numeric ID of the folder this project should be created under. Only one of org_id or folder_id may be specified. If the folder_id is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder.","description_kind":"plain","placeholder":"191953190635","optional":true,"display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"org_id":{"type":"string","description":"The numeric ID of the organization this project belongs to. Changing this forces a new project to be created. Only one of org_id or folder_id may be specified. If the org_id is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization.","description_kind":"plain","placeholder":"991249987803","optional":true,"display":true},"project_id":{"type":"string","field_type":"single-select","description":"The project ID. Changing this forces a new project to be created.","description_kind":"plain","required":true,"display":true,"placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","representative":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"xL5R-mC3JM90QTsSNUJjX","isDeleted":true,"resource":"google_project"}],["vqRNLI_Kb6tOOTPDWKqb4",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"vqRNLI_Kb6tOOTPDWKqb4","isDeleted":true,"resource":"region"}],["fbaE_gb4igPrw0Kv6UKau",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"fbaE_gb4igPrw0Kv6UKau","isDeleted":true,"resource":"region"}],["iaxbfHV-ny455ElfBgSN0",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"iaxbfHV-ny455ElfBgSN0","isDeleted":true,"resource":"region"}],["Zlb5FtWCuto_voxL_bzkO",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"Zlb5FtWCuto_voxL_bzkO","isDeleted":true,"resource":"region"}],["LKICWKVtjNK_KOm00c4ac",{"documentation_url":"https://cloud.google.com/resource-manager/docs/creating-managing-projects","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"billing_account":{"type":"string","description":"The alphanumeric ID of the billing account this project belongs to. The user or service account performing this operation with Terraform must have Billing Account Administrator privileges (roles/billing.admin) in the organization. See Google Cloud Billing API Access Control for more details.","description_kind":"plain","optional":true,"placeholder":"011DC8-DA44DB-216504","display":true},"folder_id":{"type":"string","description":"The numeric ID of the folder this project should be created under. Only one of org_id or folder_id may be specified. If the folder_id is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder.","description_kind":"plain","placeholder":"191953190635","optional":true,"display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"org_id":{"type":"string","description":"The numeric ID of the organization this project belongs to. Changing this forces a new project to be created. Only one of org_id or folder_id may be specified. If the org_id is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization.","description_kind":"plain","placeholder":"991249987803","optional":true,"display":true},"project_id":{"type":"string","field_type":"single-select","description":"The project ID. Changing this forces a new project to be created.","description_kind":"plain","required":true,"display":true,"placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","representative":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"LKICWKVtjNK_KOm00c4ac","isDeleted":true,"resource":"google_project"}],["BmLdO74YV04wW-ZaLwn-t",{"documentation_url":"https://cloud.google.com/run/docs/deploying","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the cloud run instance. eg us-central1","description_kind":"plain","required":true,"display":true,"placeholder":"us-central1","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region"},"name":{"type":"string","description":"Name must be unique within a namespace, within a Cloud Run region. Is required when creating resources. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names","description_kind":"plain","required":true,"display":true,"placeholder":"webservice","validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$"},"project":{"type":"string","description_kind":"plain","field_type":"single-select","required":true,"computed":true,"display":true,"gcp_resource":"project","placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"template":{"nesting_mode":"list","display":true,"display_label":"Template","block":{"block_types":{"spec":{"nesting_mode":"list","display":true,"display_label":"Spec","block":{"block_types":{"containers":{"nesting_mode":"list","display":true,"display_label":"Container spec","block":{"attributes":{"image":{"type":"string","description":"Docker image name. This is most often a reference to a container located in the container registry, such as gcr.io/cloudrun/hello More info: https://kubernetes.io/docs/concepts/containers/images","description_kind":"plain","required":true,"placeholder":"gcr.io/cloudrun/hello","display":true}},"block_types":{"ports":{"nesting_mode":"list","display":true,"display_label":"Ports","block":{"attributes":{"container_port":{"type":"number","description":"Port number the container listens on. This must be a valid port number, 0 < x < 65536.","description_kind":"plain","optional":true,"placeholder":"3000","display":true}},"description":"List of open ports in the container. More Info: https://cloud.google.com/run/docs/reference/rest/v1/RevisionSpec#ContainerPort","description_kind":"plain"}}},"description":"Container defines the unit of execution for this Revision. In the context of a Revision, we disallow a number of the fields of this Container, including: name, ports, and volumeMounts. The runtime contract is documented here: https://github.com/knative/serving/blob/main/docs/runtime-contract.md","description_kind":"plain"},"min_items":1}},"description":"RevisionSpec holds the desired state of the Revision (from the client).","description_kind":"plain"},"max_items":1,"min_items":1}},"description":"template holds the latest specification for the Revision to be stamped out. The template references the container image, and may also include labels and annotations that should be attached to the Revision. To correlate a Revision, and/or to force a Revision to be created when the spec doesn't otherwise change, a nonce label may be provided in the template metadata. For more details, see: https://github.com/knative/serving/blob/main/docs/client-conventions.md#associate-modifications-with-revisions Cloud Run does not currently support referencing a build that is responsible for materializing the container image from source.","description_kind":"plain"},"max_items":1,"min_items":1}}},"boxId":"BmLdO74YV04wW-ZaLwn-t","isDeleted":true,"resource":"google_cloud_run_service"}],["23Zvzt8Up1N1pOkvrcj-R",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region"},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"boxId":"23Zvzt8Up1N1pOkvrcj-R","isDeleted":true,"resource":"google_bigquery_dataset"}],["a7jxO9KBbu7x0PTSp8V8R",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"a7jxO9KBbu7x0PTSp8V8R","isDeleted":true,"resource":"region"}],["RypXleBEkT_Umab_0FLYS",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region"},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"boxId":"RypXleBEkT_Umab_0FLYS","isDeleted":true,"resource":"google_bigquery_dataset"}],["p0S5NKIgKqSfDkV9tM2wc",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"p0S5NKIgKqSfDkV9tM2wc","isDeleted":true,"resource":"region"}],["QzD_9h41xrBE4QdwJfF-N",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"QzD_9h41xrBE4QdwJfF-N","isDeleted":true,"resource":"google_storage_bucket"}],["d4dZQFNnizOH4OIitFRg0",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"d4dZQFNnizOH4OIitFRg0","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["AdNAjJY_mPmLqaqxUTb82",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"AdNAjJY_mPmLqaqxUTb82","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["ytWIU5Fbiq4oKMskS45VV",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"ytWIU5Fbiq4oKMskS45VV","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["T_mshNLa6Cv_keTTXyg9N",{"documentation_url":"https://cloud.google.com/pubsub/docs/admin","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the topic.","description_kind":"plain","placeholder":"pubsub-topic","display":true,"required":true},"labels":{"type":["map","string"],"description":"A set of key/value label pairs to assign to this Topic.","description_kind":"plain","display":true,"optional":true},"message_retention_duration":{"type":"string","description":"Indicates the minimum duration to retain a message after it is published to the topic. If this field is set, messages published to the topic in the last messageRetentionDuration are always available to subscribers. For instance, it allows any attached subscription to seek to a timestamp that is up to messageRetentionDuration in the past. If this field is not set, message retention is controlled by settings on individual subscriptions. Cannot be more than 7 days or less than 10 minutes.","description_kind":"plain","placeholder":"86600s","display":true,"optional":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"schema_settings":{"nesting_mode":"list","display":true,"display_label":"Schema Settings","block":{"attributes":{"encoding":{"type":"string","field_type":"single-select","description":"The encoding of messages validated against schema. Default value: \"ENCODING_UNSPECIFIED\" Possible values: [\"ENCODING_UNSPECIFIED\", \"JSON\", \"BINARY\"]","description_kind":"plain","placeholder":"JSON","display":true,"optional":true,"values":["ENCODING_UNSPECIFIED","JSON","BINARY"]},"schema":{"type":"string","description":"The name of the schema that messages published should be validated against. Format is projects/{project}/schemas/{schema}. The value of this field will be _deleted-schema_ if the schema has been deleted.","description_kind":"plain","placedholder":"projects/{project}/schemas/{schema}","display":true,"required":true}},"description":"Settings for validating messages published against a schema.","description_kind":"plain"},"max_items":1}},"description_kind":"plain"},"boxId":"T_mshNLa6Cv_keTTXyg9N","isDeleted":true,"resource":"google_pubsub_topic"}],["rJJmXdPlRXtLrEaOFUoaQ",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"rJJmXdPlRXtLrEaOFUoaQ","isDeleted":true,"resource":"google_storage_bucket"}],["q530R61UTLOj7TzT77YrD",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":""},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"q530R61UTLOj7TzT77YrD","isDeleted":true,"resource":"google_compute_network"}],["ytmbL65ING_a2IF5e25Mc",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"ytmbL65ING_a2IF5e25Mc","isDeleted":true,"resource":"google_compute_network"}],["qWT4rflNgdOfouksxcANl",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"},"value":""},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"qWT4rflNgdOfouksxcANl","isDeleted":true,"resource":"gke"}],["NQh75nyHB1usHUHR1z4Ot",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","value":""},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"NQh75nyHB1usHUHR1z4Ot","isDeleted":true,"resource":"google_compute_network"}],["iKMbPK-SQF1Wpw3bvJSpa",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"iKMbPK-SQF1Wpw3bvJSpa","isDeleted":true,"resource":"gke"}],["1ZffgxEm7iEhX_jh3uJ65",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"1ZffgxEm7iEhX_jh3uJ65","isDeleted":true,"resource":"google_compute_network"}],["FBRQR79WCfzcDxQf2qSz1",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"},"value":""},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"FBRQR79WCfzcDxQf2qSz1","isDeleted":true,"resource":"gke"}],["quGgT6MXOAo7I1GUdu618",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"quGgT6MXOAo7I1GUdu618","isDeleted":true,"resource":"gke"}],["xUiJL3UPVgR8Msy3NuSMX",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"xUiJL3UPVgR8Msy3NuSMX","isDeleted":true,"resource":"gke"}],["rRg18D8ZBs9CfX193c9q8",{"documentation_url":"https://cloud.google.com/kubernetes-engine/docs/deploy-app-cluster","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The location of the kubernetes cluster","description_kind":"plain","placeholder":"us-central1","required":true,"gcp_resource":"region","display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","placeholder":"k9s-cluster-a","required":true,"display":true},"project":{"type":"string","field_type":"single-select","description":"The project ID of the GKE cluster","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"network":{"type":"string","field_type":"single-select","description":"Network of the GKE cluster","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"subnetwork":{"type":"string","field_type":"single-select","description":"Subnet of the GKE cluster","description_kind":"plain","placeholder":"subnetwork-a","required":true,"display":true,"gcp_resource":"subnet","api_dependency":{"project":"block.attributes.project","region":"block.attributes.location"}},"pods_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for pods in the GKE cluster","description_kind":"plain","placeholder":"sec-range-a","required":true,"display":true},"services_secondary_range_name":{"type":"string","description":"Name of the secondary IP range for services in the GKE cluster","description_kind":"plain","placeholder":"sec-range-b","required":true,"display":true},"min_master_version":{"type":"string","description":"The minimum version of the master. GKE will auto-update the master to new versions, so this does not guarantee the current master version","description_kind":"plain","placeholder":"1.9.7-gke.N","display":true},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"node_pools":{"display_label":"Node Pools","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"Name of the node pool","description_kind":"plain","placeholder":"node-pool-a","display":true},"node_count":{"type":"number","description":"Number of nodes in the pool","description_kind":"plain","display":true},"node_locations":{"type":["set","string"],"description":"Node Locations","description_kind":"plain","display":true},"preemptible":{"type":"bool","description":"Nodes will be preemtible if true","description_kind":"plain","display":true},"machine_type":{"type":"string","description":"Machine type of the nodes","description_kind":"plain","placeholder":"e2-medium","display":true},"image_type":{"type":"string","description":"Image type of the nodes","description_kind":"plain","placeholder":"UBUNTU_CONTAINERD","display":true},"gke_version":{"type":"string","description":"Version of GKE","description_kind":"plain","placeholder":"1.9.7-gke.N","required":true,"display":true},"service_account":{"type":"string","field_type":"single-select","description":"Service account to be attached to the nodes in the nodepool","description_kind":"plain","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"scopes":{"type":["set","string"],"field_type":"multi-select","values":["cloud-platform"],"description":"OAuth scopes of the VMs in the nodepool","description_kind":"plain","display":true}}}}}},"boxId":"rRg18D8ZBs9CfX193c9q8","isDeleted":true,"resource":"gke"}],["AAf3trC5P8q_OHT59SwTB",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"boxId":"AAf3trC5P8q_OHT59SwTB","isDeleted":true,"resource":"google_compute_network"}],["XOMy8QrxWZ0K4rehh5TUj",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"XOMy8QrxWZ0K4rehh5TUj","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["hzpvJNZ8CpRAPAjCV7wET",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"hzpvJNZ8CpRAPAjCV7wET","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["kLidXBsuXTZeh2Z2UdLlI",{"documentation_url":"https://cloud.google.com/build/docs/build-push-docker-image","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","description":"Name of the trigger. Must be unique within the project.","description_kind":"plain","optional":true,"placeholder":"cb_git_trigger","computed":true,"display":true},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"gcp_resource":"project","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"service_account":{"type":"string","field_type":"single-select","description":"The service account used for all user-controlled operations including triggers.patch, triggers.run, builds.create, and builds.cancel. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.","placeholder":"adt-backend@prj-adt-terraform-1f1d1.iam.gserviceaccount.com","description_kind":"plain","optional":true,"display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"git_file_source":{"nesting_mode":"list","display":true,"display_label":"git_file_source","block":{"attributes":{"path":{"type":"string","description":"The path of the file, with the repo root as the root of the path.","description_kind":"plain","required":true,"placeholder":"cloudbuild.yaml","display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"revision":{"type":"string","description":"The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.","description_kind":"plain","placeholder":"refs/heads/main","optional":true,"display":true},"uri":{"type":"string","description":"The URI of the repo (optional). If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","optional":true,"display":true}},"description":"The file source describing the local or remote Build template.","description_kind":"plain"},"max_items":1,"min_items":1},"source_to_build":{"nesting_mode":"list","display":true,"display_label":"source_to_build","block":{"attributes":{"ref":{"type":"string","description":"The branch or tag to use. Must start with \"refs/\" (required).","description_kind":"plain","placeholder":"refs/heads/main","required":true,"display":true},"repo_type":{"type":"string","field_type":"single-select","description":"The type of the repo, since it may not be explicit from the repo field (e.g from a URL). Values can be UNKNOWN, CLOUD_SOURCE_REPOSITORIES, GITHUB Possible values: [\"UNKNOWN\", \"CLOUD_SOURCE_REPOSITORIES\", \"GITHUB\"]","description_kind":"plain","placeholder":"GITHUB","required":true,"display":true,"values":["UNKNOWN","CLOUD_SOURCE_REPOSITORIES","GITHUB"]},"uri":{"type":"string","description":"The URI of the repo (required).","description_kind":"plain","placeholder":"https://hashicorp/terraform-provider-google-beta","required":true,"display":true}},"description":"The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1},"webhook_config":{"nesting_mode":"list","display":true,"display_label":"webhook_config","block":{"attributes":{"secret":{"type":"resource","field_type":"resource","resource":"secret_manager_single_version","description":"Resource name for the secret required as a URL parameter.","description_kind":"plain","display":true}},"description":"WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL. One of 'trigger_template', 'github', 'pubsub_config' 'webhook_config' or 'source_to_build' must be provided.","description_kind":"plain"},"max_items":1,"min_items":1}},"description_kind":"plain"},"boxId":"kLidXBsuXTZeh2Z2UdLlI","isDeleted":true,"resource":"cloudbuild_git_trigger"}],["FV69FXJ4PIlJiH340IvLT",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"FV69FXJ4PIlJiH340IvLT","isDeleted":true,"resource":"google_storage_bucket"}],["rCkbsZl5tCzAsNPaJki8x",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region","message":""},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project","message":"Required"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"boxId":"rCkbsZl5tCzAsNPaJki8x","isDeleted":true,"resource":"google_bigquery_dataset"}],["xKHUnyB9oVjnPJ1dqEWl3",{"documentation_url":"https://cloud.google.com/functions/docs/writing","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"docker_registry":{"type":"string","field_type":"single-select","description":"Docker Registry to use for storing the function's Docker images. Allowed values are CONTAINER_REGISTRY (default) and ARTIFACT_REGISTRY.","description_kind":"plain","optional":true,"computed":true,"placeholder":"CONTAINER_REGISTRY","display":true,"values":["CONTAINER_REGISTRY","ARTIFACT_REGISTRY"]},"docker_repository":{"type":"string","description":"User managed repository created in Artifact Registry optionally with a customer managed encryption key. If specified, deployments will use Artifact Registry for storing images built with Cloud Build.","description_kind":"plain","optional":true,"placeholder":"gcr.io/cloudrun","display":true},"entry_point":{"type":"string","description":"Name of the function that will be executed when the Google Cloud Function is triggered.","description_kind":"plain","optional":true,"placeholder":"entrypoint_method","display":true},"name":{"type":"string","description":"A user-defined name of the function. Function names must be unique globally.","description_kind":"plain","required":true,"display":true,"placeholder":"appservice-method","validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$"},"project":{"type":"string","field_type":"single-select","description":"Project of the function. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"computed":true,"display":true,"gcp_resource":"project","placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","message":"Required"},"region":{"type":"string","field_type":"single-select","description":"Region of function. If it is not provided, the provider region is used.","description_kind":"plain","optional":true,"computed":true,"display":true,"gcp_resource":"region","placeholder":"us-central1","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Invalid format"},"runtime":{"type":"string","field_type":"single-select","description":"The runtime in which the function is going to run. Eg. \"nodejs8\", \"nodejs10\", \"python37\", \"go111\".","description_kind":"plain","required":true,"placeholder":"python37","display":true,"values":["nodejs8","nodejs10","python37","go111"]},"source_archive_bucket":{"type":"string","field_type":"single-select","description":"The GCS bucket containing the zip archive which contains the function.","description_kind":"plain","optional":true,"placeholder":"source_cf_bucket","display":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"source_archive_object":{"type":"string","description":"The source archive object (file) in archive bucket.","description_kind":"plain","optional":true,"placeholder":"cf_objects/helloworld","display":true},"trigger_http":{"type":"bool","field_type":"single-select","description":"Boolean variable. Any HTTP request (of a supported type) to the endpoint will trigger function execution. Supported HTTP request types are: POST, PUT, GET, DELETE, and OPTIONS. Endpoint is returned as https_trigger_url. Cannot be used with trigger_bucket and trigger_topic.","description_kind":"plain","optional":true,"placeholder":"GET","display":true,"values":["POST","PUT","GET","DELETE","OPTIONS"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"pubsub_event_trigger":{"nesting_mode":"list","display":true,"display_label":"pubsub event trigger","block":{"attributes":{"event_type":{"type":"string","display":true,"description":"The type of event to observe. For example: \"google.storage.object.finalize\". See the documentation on calling Cloud Functions for a full reference of accepted triggers.","description_kind":"plain","placeholder":"google.storage.object.finalize","required":true},"resource":{"type":"resource","field_type":"resource","resource":"google_pubsub_topic","description":"pubsub topic.","description_kind":"plain","display":true,"required":true}},"block_types":{},"description":"A source that fires events in response to a condition in another service. Cannot be used with trigger_http.","description_kind":"plain"},"max_items":1},"cloud_storage_event_trigger":{"nesting_mode":"list","display":true,"display_label":"cloud storage event trigger","block":{"attributes":{"event_type":{"type":"string","description":"The type of event to observe. For example: \"google.storage.object.finalize\". See the documentation on calling Cloud Functions for a full reference of accepted triggers.","description_kind":"plain","placeholder":"google.storage.object.finalize","required":true,"display":true},"resource":{"type":"resource","field_type":"resource","resource":"google_storage_bucket","description":"storage bucket.","description_kind":"plain","display":true,"required":true}},"block_types":{},"description":"A source that fires events in response to a condition in another service. Cannot be used with trigger_http.","description_kind":"plain"},"max_items":1},"source_repository":{"nesting_mode":"list","display":true,"display_label":"Source repository","block":{"attributes":{"url":{"type":"string","description":"The URL pointing to the hosted repository where the function is defined. There are supported Cloud Source Repository URLs in the following formats","description_kind":"plain","placeholder":"https://source.developers.google.com/projects/prj-adt-terraform/repos/helloworld","required":true,"display":true}},"description":"Represents parameters related to source repository where a function is hosted. Cannot be set alongside source_archive_bucket or source_archive_object.","description_kind":"plain"},"max_items":1,"min_items":1},"blockTypeLists":{"source_repository":[{"key":"_3jRQfb3WLZOeHNTTjCO0","value":{"nesting_mode":"list","display":true,"display_label":"Source repository","block":{"attributes":{"url":{"type":"string","description":"The URL pointing to the hosted repository where the function is defined. There are supported Cloud Source Repository URLs in the following formats","description_kind":"plain","placeholder":"https://source.developers.google.com/projects/prj-adt-terraform/repos/helloworld","required":true,"display":true}},"description":"Represents parameters related to source repository where a function is hosted. Cannot be set alongside source_archive_bucket or source_archive_object.","description_kind":"plain"},"max_items":1,"min_items":1}}]}}},"boxId":"xKHUnyB9oVjnPJ1dqEWl3","isDeleted":true,"resource":"google_cloudfunctions_function"}],["rLR6xsPDNiM8uM_dWPxfI",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Required"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":"Required"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"boxId":"rLR6xsPDNiM8uM_dWPxfI","isDeleted":true,"resource":"google_storage_bucket"}],["FEZbF8emwr8sBIQIdLqP6",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"FEZbF8emwr8sBIQIdLqP6","isDeleted":true}],["5ES4MFO4ILeOhE5czPW70",{"documentation_url":"https://cloud.google.com/resource-manager/docs/creating-managing-projects","version":1,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"billing_account":{"type":"string","description":"The alphanumeric ID of the billing account this project belongs to. The user or service account performing this operation with Terraform must have Billing Account Administrator privileges (roles/billing.admin) in the organization. See Google Cloud Billing API Access Control for more details.","description_kind":"plain","optional":true,"placeholder":"011DC8-DA44DB-216504","display":true},"folder_id":{"type":"string","description":"The numeric ID of the folder this project should be created under. Only one of org_id or folder_id may be specified. If the folder_id is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder.","description_kind":"plain","placeholder":"191953190635","optional":true,"display":true},"name":{"type":"string","description":"The display name of the project.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)"},"org_id":{"type":"string","description":"The numeric ID of the organization this project belongs to. Changing this forces a new project to be created. Only one of org_id or folder_id may be specified. If the org_id is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization.","description_kind":"plain","placeholder":"991249987803","optional":true,"display":true},"project_id":{"type":"string","field_type":"single-select","description":"The project ID. Changing this forces a new project to be created.","description_kind":"plain","required":true,"display":true,"placeholder":"prj-adt-terraform","validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","representative":true,"gcp_resource":"project"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"google_project","boxId":"5ES4MFO4ILeOhE5czPW70","isDeleted":true}],["eMQXcLzYgKT5owHVTU7js",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"eMQXcLzYgKT5owHVTU7js","isDeleted":true}],["_xHOs6O_f0-L1-0bjUp1d",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"_xHOs6O_f0-L1-0bjUp1d","isDeleted":true}],["KdbyS0y_Vhwiuzl-dkmH3",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"KdbyS0y_Vhwiuzl-dkmH3","isDeleted":true}],["8pNX46VkoXMp4RbBRMw3D",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"8pNX46VkoXMp4RbBRMw3D","isDeleted":true}],["h3pxPecv7fjSj5K6Z5Gk2",{"documentation_url":"https://cloud.google.com/vpc/docs/vpc","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"name":{"type":"string","field_type":"single-select","description":"Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.","description_kind":"plain","placeholder":"network-a","required":true,"display":true,"validation_regex":"^(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)$","representative":true,"gcp_resource":"network","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description_kind":"plain","optional":true,"computed":true,"placeholder":"prj-adt-terraform","display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":""},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"routes":{"display_label":"Routes","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","placeholder":"route-to-proxy","description":"Name of the route","description_kind":"plain","display":true},"dest_range":{"type":"string","description":"CIDR range of the destination","description_kind":"plain","placeholder":"10.0.0.0/24","display":true},"next_hop_ip":{"type":"string","description":"Next hop IP address","description_kind":"plain","placeholder":"10.1.0.0","display":true}}}},"fw_rules":{"display_label":"Ingress Firewall rules","nesting_mode":"list","display":true,"block":{"attributes":{"name":{"type":"string","description":"name of the fw rule","description_kind":"plain","placeholder":"allow-ssh","display":true},"source_ranges":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist","description_kind":"plain","display":true},"ports":{"type":["set","string"],"optional":true,"description":"Source ranges to whitelist, Protocol is TCP","description_kind":"plain","display":true},"protocol":{"type":"string","field_type":"single-select","required":true,"description":"The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule","description_kind":"plain","display":true,"values":["tcp","udp","icmp","all"]},"target_service_accounts":{"type":["set","string"],"field_type":"multi-select","optional":true,"description":"The service accounts where this rule will be applied","description_kind":"plain","display":true,"gcp_resource":"service_account","api_dependency":{"project":"block.attributes.project"}}},"description":"Fw rules for the VPC","description_kind":"plain"}}}},"resource":"google_compute_network","boxId":"h3pxPecv7fjSj5K6Z5Gk2","isDeleted":true}],["qs-YJyCmmB9OUljffRRju",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Required"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":"Required"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"google_storage_bucket","boxId":"qs-YJyCmmB9OUljffRRju","isDeleted":true}],["rkmLEAcAmdweSG5IfBg2F",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"rkmLEAcAmdweSG5IfBg2F","isDeleted":true}],["bJnODD4H6mYBEBOuchIfG",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Required"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":"Required"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"google_storage_bucket","boxId":"bJnODD4H6mYBEBOuchIfG","isDeleted":true}],["rCN2dA6OQ5J36e7vnIvfV",{"documentation_url":"https://cloud.google.com/compute/docs/regions-zones","deployable":false,"block":{"attributes":{"region":{"type":"string","field_type":"single-select","description":"Region","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","gcp_resource":"region","api_dependency":{"project":""}},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"region","boxId":"rCN2dA6OQ5J36e7vnIvfV","isDeleted":true}],["3gFsZXR9GmruBeduu2j_0",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region","message":""},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project","message":"Required"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}},"blockTypeLists":{}},"description_kind":"plain"},"resource":"google_bigquery_dataset","boxId":"3gFsZXR9GmruBeduu2j_0","isDeleted":true}],["tEHMDJW1BQg7FaZVYB0Mv",{"documentation_url":"https://cloud.google.com/bigquery/docs/datasets#terraform","version":0,"block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"dataset_id":{"type":"string","description":"A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.","description_kind":"plain","placeholder":"foo","display":true,"required":true},"friendly_name":{"type":"string","description":"Friendly name.","description_kind":"plain","display":true,"placeholder":"foo","optional":true},"location":{"type":"string","field_type":"single-select","description":"The geographic location where the dataset should reside. See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations). There are two types of locations, regional or multi-regional. A regional location is a specific geographic place, such as Tokyo, and a multi-regional location is a large geographic area, such as the United States, that contains at least two geographic places. The default value is multi-regional location 'US'. Changing this forces a new resource to be created.","description_kind":"plain","display":true,"placeholder":"US","optional":true,"gcp_resource":"region","message":""},"project":{"type":"string","field_type":"single-select","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","display":true,"computed":true,"gcp_resource":"project","message":"Required"},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}},"block_types":{"tables":{"nesting_mode":"list","display":true,"display_label":"tables","block":{"attributes":{"friendly_name":{"type":"string","description":"A descriptive name for the table.","placeholder":"table-a","display":true,"description_kind":"plain","optional":true},"schema":{"type":"string","description":"A JSON schema for the table.","description_kind":"plain","display":true,"optional":true,"computed":true},"table_id":{"type":"string","description":"A unique ID for the resource. Changing this forces a new resource to be created.","description_kind":"plain","placeholder":"sheet","display":true,"required":true}}}}},"description_kind":"plain"},"resource":"google_bigquery_dataset","boxId":"tEHMDJW1BQg7FaZVYB0Mv","isDeleted":true}],["dEjwXMcHNQX6p0ysPgXGU",{"documentation_url":"https://cloud.google.com/storage/docs/buckets","block":{"attributes":{"exists":{"type":"bool","description_kind":"plain","display":true},"location":{"type":"string","field_type":"single-select","description":"The Google Cloud Storage location","description_kind":"plain","required":true,"placeholder":"us-central1","display":true,"gcp_resource":"region","validation_regex":"[a-z]-[a-z]+[0-9]{1}?$","message":"Required"},"name":{"type":"string","field_type":"single-select","description":"The name of the bucket.","description_kind":"plain","required":true,"placeholder":"helloworld-bucket","display":true,"validation_regex":"^(?!goog)(?!.*google).*(?:[a-z](?:[\\-_.a-z0-9]{2,61}[a-z0-9])?)","representative":true,"gcp_resource":"gcs_bucket","api_dependency":{"project":"block.attributes.project"}},"project":{"type":"string","field_type":"single-select","description":"The ID of the project in which the resource belongs. If it is not provided, the provider project is used.","description_kind":"plain","required":true,"placeholder":"prj-adt-terraform","computed":true,"display":true,"validation_regex":"(^(?=.{6,30}$)[a-z]([-a-z0-9]*[a-z0-9])?$)","gcp_resource":"project","message":"Required"},"storage_class":{"type":"string","field_type":"single-select","description":"The Storage Class of the new bucket. Supported values include: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.","description_kind":"plain","optional":true,"placeholder":"STANDARD","display":true,"validation_regex":"(NEARLINE|ARCHIVE|COLDLINE|STANDARD)","values":["STANDARD","NEARLINE","COLDLINE","ARCHIVE"]},"team":{"type":"string","description":"The team name that will manage this resource. Its always a good idea to have teams maange their own infrastructure. Specifying a team for this resource will create a logical segregation in terraform for that specific team for better operational efficiency, security and scalability. Choosing to keep this blank will not create any logical segregation","description_kind":"plain","placeholder":"paymentsSRE","display":true,"non_validation_regex":"[^0-9A-Za-z_-]"},"environment":{"type":"string","description":"The environment in which the resource should be deployed. Its always a good idea to isolate the management of infrastructure based on environments. For example, if you have environments dev, qa and prod, the management of dev infrastructure should be isolated from qa and prod. If you are not sure about the environment or are just willing to try things out, go ahead and choose dev","description_kind":"plain","placeholder":"dev","dropdown":true,"field_type":"single-select","values":["dev","qa","prod","staging"],"display":true,"non_validation_regex":"[^0-9A-Za-z_-]"}}},"resource":"google_storage_bucket","boxId":"dEjwXMcHNQX6p0ysPgXGU","isDeleted":true}]],"canvasElements":{"elements":[{"type":"rectangle","version":787,"versionNonce":1195640018,"isDeleted":true,"id":"TweuPsQzOu7c7aHV7ONZf","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-940,"y":-160,"strokeColor":"#d5d7dc","backgroundColor":"#FFF","width":1020,"height":880,"seed":2045804161,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829076,"link":null,"locked":false,"customData":{"boxId":"UHRN8URZWaOiEoegPEZvR","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":589,"versionNonce":1116268878,"isDeleted":true,"id":"wKTrcpxO8PsdclzHx7PUv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-920,"y":40,"strokeColor":"#FFFFFF","backgroundColor":"#f1f3f4","width":980,"height":660,"seed":977102351,"groupIds":["F0_vNv7sRzKFZ64C9vadj"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829076,"link":null,"locked":false,"customData":{"boxId":"xL5R-mC3JM90QTsSNUJjX","label":"Project","resource":"google_project","type":"container"}},{"type":"text","version":297,"versionNonce":902797970,"isDeleted":true,"id":"CcjLsb-15L9oGdL1Ke4aF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":-900,"y":60,"strokeColor":"#202124","backgroundColor":"transparent","width":191,"height":23,"seed":524224097,"groupIds":["F0_vNv7sRzKFZ64C9vadj"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829076,"link":null,"locked":false,"customData":{"boxId":"xL5R-mC3JM90QTsSNUJjX","label":"Project","resource":"google_project","type":"child"},"fontSize":20,"fontFamily":2,"text":"Google Cloud Project","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Cloud Project"},{"type":"rectangle","version":660,"versionNonce":75141006,"isDeleted":true,"id":"_whdePPavnbZlToM2QxIB","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-900,"y":100,"strokeColor":"#4285f4","backgroundColor":"#d2e3fc","width":940,"height":580,"seed":1021561903,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829076,"link":null,"locked":false,"customData":{"boxId":"vqRNLI_Kb6tOOTPDWKqb4","label":"Region","resource":"region","type":"container"}},{"type":"text","version":338,"versionNonce":31619154,"isDeleted":true,"id":"ofS3NZ8EAbsLNLqCrXDI6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":-480,"y":120,"strokeColor":"#202124","backgroundColor":"transparent","width":106,"height":19,"seed":1295094337,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"vqRNLI_Kb6tOOTPDWKqb4","label":"Region","resource":"region","type":"child"},"fontSize":16,"fontFamily":2,"text":"APPLICATION","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"APPLICATION"},{"type":"rectangle","version":632,"versionNonce":1574792654,"isDeleted":true,"id":"nuE-AcFQrwLl8JaHXKzu4","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-920,"y":-140,"strokeColor":"#4285f4","backgroundColor":"#d2e3fc","width":980,"height":160,"seed":102264399,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"fbaE_gb4igPrw0Kv6UKau","label":"Region","resource":"region","type":"container"}},{"type":"text","version":452,"versionNonce":190029330,"isDeleted":true,"id":"pYI7fsbeQMcJFPj3LG4fy","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":-480,"y":-120,"strokeColor":"#202124","backgroundColor":"transparent","width":127,"height":19,"seed":1487381025,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"iaxbfHV-ny455ElfBgSN0","label":"Region","resource":"region","type":"child"},"fontSize":16.444444444444446,"fontFamily":2,"text":"DATA SOURCES","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA SOURCES"},{"type":"arrow","version":973,"versionNonce":1003127822,"isDeleted":true,"id":"5NHi5KE_nu-zXqdTwd3J_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":40,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":166.73200709877102,"seed":548654191,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,166.73200709877102]],"fontFamily":2},{"type":"ellipse","version":348,"versionNonce":521800658,"isDeleted":true,"id":"IEhGqxbkEOsoOOko2ME6x","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-660,"y":40,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1318106625,"groupIds":["66Cio6jsLLNEz3glASI5T"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"DFr5kjaC9Tw49svyYpGo5","label":"Step Circle","type":"child"}},{"type":"text","version":308,"versionNonce":3854926,"isDeleted":true,"id":"f5Tc1omoRGkO-YgcHdYpW","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-649.5,"y":48,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":679372431,"groupIds":["66Cio6jsLLNEz3glASI5T"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"DFr5kjaC9Tw49svyYpGo5","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"1","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"1"},{"type":"rectangle","version":721,"versionNonce":1397539218,"isDeleted":true,"id":"W4vr0jThzdyF3CaN5h1QJ","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":0,"y":-200,"strokeColor":"#d5d7dc","backgroundColor":"#d5d7dc","width":1020,"height":60,"seed":1911311841,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"Zlb5FtWCuto_voxL_bzkO","label":"Region","resource":"region","type":"container"}},{"type":"text","version":372,"versionNonce":1711757454,"isDeleted":true,"id":"PO9qh5wN3DWqz1Vt032UR","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":420,"y":-180,"strokeColor":"#202124","backgroundColor":"transparent","width":182,"height":32,"seed":741391535,"groupIds":["IMp4GXHDCtP_Gy4P2k2fO"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"LKICWKVtjNK_KOm00c4ac","label":"Project","resource":"google_project","type":"child"},"fontSize":28,"fontFamily":2,"text":"Secure CI/CD ","baseline":26,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Secure CI/CD "},{"type":"rectangle","version":170,"versionNonce":1663221586,"isDeleted":true,"id":"9pzAwHcckCuZ_EMGiVVQq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":260,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":2043275713,"groupIds":["AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"}},{"type":"text","version":166,"versionNonce":1692997326,"isDeleted":true,"id":"Q311PDWZw9PW8V80hkp_D","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":50,"height":18,"seed":1332956879,"groupIds":["AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"fontSize":16,"fontFamily":2,"text":"Device","baseline":16,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Device"},{"type":"line","version":166,"versionNonce":183698706,"isDeleted":true,"id":"XoXx3D3wW5XiWPsl4QhxE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":289,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":256444833,"groupIds":["QEqo_gwTrA3-V6ydHHo8Y","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":166,"versionNonce":360254734,"isDeleted":true,"id":"ptOdQewgnuJSoCC1clAJO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293,"y":-38,"strokeColor":"#00000000","backgroundColor":"#000","width":22,"height":16,"seed":752786671,"groupIds":["CZm-QNXBD8d0En35hLhF3","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[18,0],[18,-2],[0,-2],[0,-2],[-0.7765624523162842,-1.8421874046325684],[-1.4124999046325684,-1.4124999046325684],[-1.8421874046325684,-0.7765626907348633],[-2,0],[-2,11],[-4,11],[-4,14],[10,14],[10,11],[0,11],[0,0],[0,0]]},{"type":"line","version":166,"versionNonce":1681167058,"isDeleted":true,"id":"NT-NqKGTJBsGwibyEy7Ql","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312,"y":-36,"strokeColor":"#00000000","backgroundColor":"#000","width":8,"height":12,"seed":194588033,"groupIds":["fyU8-sdx7-c6xfZW8EBDS","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-6,0],[-6,0],[-6.706249237060547,0.2937498092651367],[-7,1],[-7,11],[-7,11],[-6.706249237060547,11.706249237060547],[-6,12],[0,12],[0,12],[0.7062492370605469,11.706249237060547],[1,11],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":166,"versionNonce":355482446,"isDeleted":true,"id":"AkJ-v9WWRpMGCuf_JSIz4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":311,"y":-27,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":7,"seed":2012948239,"groupIds":["vrqri4vUUNiHiWzwJSJxk","AYv0wsur7fEYqlhjXsubW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GZbAXxKnLefTL2_PFb4xy"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4,0],[-4,-7],[0,-7],[0,0]]},{"type":"rectangle","version":182,"versionNonce":1098803346,"isDeleted":true,"id":"Xm7gToxpr-sVr11kMHVM4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":140,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":102,"height":82,"seed":1979307361,"groupIds":["rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"}},{"type":"text","version":182,"versionNonce":1785176462,"isDeleted":true,"id":"cIuXwKzygEx4l3DSWFSAW","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":156,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":70,"height":18,"seed":1598123311,"groupIds":["rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"fontSize":16,"fontFamily":2,"text":"Smartphone","baseline":16,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Smartphone"},{"type":"line","version":182,"versionNonce":176653906,"isDeleted":true,"id":"JEZ2zhXk1X9Ri2C1PkDaD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":179,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1102741825,"groupIds":["8B999aCWu1gA7cfQVCLTU","rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":182,"versionNonce":1750613966,"isDeleted":true,"id":"rOgNvBrY1dgHN3QvMloKB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":196,"y":-42.99000000953674,"strokeColor":"#00000000","backgroundColor":"#000","width":14,"height":22,"seed":773451599,"groupIds":["Egcas7g2wzLiiDDJALbrC","rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-10,-0.009999990463256836],[-10,-0.009999990463256836],[-10.776562690734863,0.14781248569488525],[-11.412499904632568,0.5774999856948853],[-11.842187404632568,1.213437557220459],[-12,1.9900000095367432],[-12,19.990000009536743],[-12,19.990000009536743],[-11.842187404632568,20.76656174659729],[-11.412499904632568,21.40250039100647],[-10.776562690734863,21.83218789100647],[-10,21.990000009536743],[0,21.990000009536743],[0,21.990000009536743],[0.7765617370605469,21.83218789100647],[1.4125003814697266,21.40250039100647],[1.8421878814697266,20.76656174659729],[2,19.990000009536743],[2,1.9900000095367432],[2,1.9900000095367432],[1.8421878814697266,1.2149999141693115],[1.4125003814697266,0.5824999809265137],[0.7765617370605469,0.15625],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":405203986,"isDeleted":true,"id":"dulO0U0TqP5glSmxyckdR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":196,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":10,"height":14,"seed":1278914849,"groupIds":["aBRY9H2ZzFj4G_23qtGHG","rQeV_g3OWSj1SHD41qU1D"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"ksfDfvDIIVSAO6pAVNPDH"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-10,0],[-10,-14],[0,-14],[0,0]]},{"type":"rectangle","version":122,"versionNonce":320542222,"isDeleted":true,"id":"byvCKjxxAty1f_CZXJuMy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":786247023,"groupIds":["qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"}},{"type":"text","version":122,"versionNonce":273914322,"isDeleted":true,"id":"i4AwcWIUW3TXCC3rZZt3p","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":50,"height":18,"seed":451536129,"groupIds":["qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"fontSize":16,"fontFamily":2,"text":"Cloud","baseline":16,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Cloud"},{"type":"line","version":122,"versionNonce":61416526,"isDeleted":true,"id":"0_kmf_IlAE3siPbBQb6HG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":649,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1288939407,"groupIds":["RA4yD3gjppwfLfztnQB9j","qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":122,"versionNonce":1109692306,"isDeleted":true,"id":"EaLQgzk8PlTKjqkP-_dy1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.3500003814697,"y":-33.96000003814697,"strokeColor":"#00000000","backgroundColor":"#000","width":24,"height":16,"seed":1497865441,"groupIds":["VPXYg6IZraSE6-jP90a6O","qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.3617572784423828,-1.2500581741333008],[-0.9234371185302734,-2.3992185592651367],[-1.6646480560302734,-3.4272069931030273],[-2.565000534057617,-4.31374979019165],[-3.60410213470459,-5.03857421875],[-4.761563301086426,-5.581406116485596],[-6.016992568969727,-5.921972751617432],[-7.350000381469727,-6.039999961853027],[-9.432500839233398,-5.746250152587891],[-11.289999961853027,-4.920000076293945],[-12.84000015258789,-3.6437501907348633],[-14.000000476837158,-2],[-15.094082355499268,-1.7787694931030273],[-16.10578155517578,-1.368281364440918],[-17.015527725219727,-0.7883396148681641],[-17.80375039577484,-0.058750152587890625],[-18.450879275798798,0.8006839752197266],[-18.937344133853912,1.770155906677246],[-19.24357459694147,2.8298635482788086],[-19.350000381469727,3.9600000381469727],[-19.22794959694147,5.168144226074219],[-18.87796914577484,6.293906211853027],[-18.32431674003601,7.313027381896973],[-17.5912504196167,8.201249122619629],[-16.703027725219727,8.93431568145752],[-15.683906555175781,9.487969398498535],[-14.55814504623413,9.8379487991333],[-13.350000381469727,9.960000038146973],[-0.35000038146972656,9.960000038146973],[-0.35000038146972656,9.960000038146973],[0.6572647094726562,9.858359336853027],[1.5956249237060547,9.566874504089355],[2.4449214935302734,9.10570240020752],[3.184999465942383,8.494999885559082],[3.7957019805908203,7.754921913146973],[4.256874084472656,6.905625343322754],[4.548358917236328,5.9672651290893555],[4.649999618530273,4.960000038146973],[4.2890625,3.096562385559082],[3.299999237060547,1.557499885559082],[1.8234367370605469,0.4796876907348633],[0,0],[0,0]]},{"type":"line","version":122,"versionNonce":1272670862,"isDeleted":true,"id":"o84xlrlSa8of6cUbVxl5k","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668,"y":-26,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":20,"height":12,"seed":1983241647,"groupIds":["Xx9ZNke2qHoENg1oIcJ5D","qsyu7MtD9a5m5jeFTiFdw"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-13,0],[-13,0],[-14.55734395980835,-0.31421852111816406],[-15.828749895095825,-1.1712493896484375],[-16.685781240463257,-2.4426565170288086],[-17,-4],[-16.685781240463257,-5.557343482971191],[-15.828749895095825,-6.828749656677246],[-14.55734395980835,-7.685781478881836],[-13,-8],[-12.289999961853027,-8],[-12.289999961853027,-8],[-11.539374828338623,-9.599531173706055],[-10.342499732971191,-10.866250038146973],[-8.796875,-11.699843883514404],[-7,-12],[-5.890859603881836,-11.888359546661377],[-4.858124732971191,-11.568124771118164],[-3.923828125,-11.061327934265137],[-3.109999656677246,-10.389999866485596],[-2.438671112060547,-9.576171875],[-1.931875228881836,-8.641875267028809],[-1.6116409301757812,-7.609140396118164],[-1.5,-6.5],[-1.5,-6],[0,-6],[0,-6],[1.1690616607666016,-5.764687538146973],[2.122499465942383,-5.122500419616699],[2.7646865844726562,-4.169062614440918],[3,-3],[2.7646865844726562,-1.8309383392333984],[2.122499465942383,-0.8775005340576172],[1.1690616607666016,-0.23531341552734375],[0,0],[0,0]]},{"type":"rectangle","version":124,"versionNonce":30461266,"isDeleted":true,"id":"SoBS8Cr_TmMR_SYRMqFR5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":740,"y":-60,"strokeColor":"#202124","backgroundColor":"#FFF","width":109,"height":82,"seed":383998145,"groupIds":["Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"round","boundElements":[{"id":"oeXAa8J4xvSm11RODwd77","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"}},{"type":"text","version":136,"versionNonce":1516955854,"isDeleted":true,"id":"-YYU90TuMypu6oINlESLH","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":747.5,"y":-12,"strokeColor":"#202124","backgroundColor":"transparent","width":94,"height":19,"seed":1043091407,"groupIds":["Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"fontSize":16,"fontFamily":2,"text":"On-Premises","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"On-Premises"},{"type":"line","version":122,"versionNonce":78598930,"isDeleted":true,"id":"f9RKzSCBcckRDZFiQm3nz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":782.5,"y":-44,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1163696289,"groupIds":["vhehBs-6eZAAW8QZm4RNB","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":122,"versionNonce":1592827662,"isDeleted":true,"id":"XP7PHm854gGRDhP6d-sl_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":794.5,"y":-37,"strokeColor":"#00000000","backgroundColor":"#000","width":20,"height":18,"seed":1053785583,"groupIds":["9-G26wZQWCx0gX6JdF49S","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-4],[-10,-4],[-10,14],[10,14],[10,0],[0,0]]},{"type":"line","version":122,"versionNonce":1027023058,"isDeleted":true,"id":"4WNkpeeiw8tmX8Gv1LRO_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1986190465,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":770018638,"isDeleted":true,"id":"7ruYDoI_fovS_QE9cb7iF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-29,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":992471055,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":922695314,"isDeleted":true,"id":"8UjOZluHYSF1Qfddzeznd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-33,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1505076321,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":614642574,"isDeleted":true,"id":"K1C4qeBqz-4FxqDcBLWm4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":788.5,"y":-37,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":19795503,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":1925092434,"isDeleted":true,"id":"7hGTdHrNk14cB9HYG3QHR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":2065985601,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":224465358,"isDeleted":true,"id":"VCaHhW2LYWP0VXWs-rolH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-29,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":197816399,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":1112291858,"isDeleted":true,"id":"9ZClsnKA-4hZ5CQfbG02n","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-33,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1083097121,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":54110222,"isDeleted":true,"id":"-0r8kSCpT8RoA4jygqHce","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":792.5,"y":-37,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":2,"height":2,"seed":1691717231,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,-2],[0,-2],[0,0]]},{"type":"line","version":122,"versionNonce":614410194,"isDeleted":true,"id":"k73ssyB--pVLNh8n362KZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":802.5,"y":-25,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":8,"height":10,"seed":669258753,"groupIds":["E8-jgfXzT0OnjMMeNpV79","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-8,0],[-8,-2],[-6,-2],[-6,-4],[-8,-4],[-8,-6],[-6,-6],[-6,-8],[-8,-8],[-8,-10],[0,-10],[0,0]]},{"type":"line","version":122,"versionNonce":1445295694,"isDeleted":true,"id":"AjpdrOL6SDvHftKF0AR9W","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":800.5,"y":-33,"strokeColor":"#00000000","backgroundColor":"#000","width":2,"height":2,"seed":1192749199,"groupIds":["ve0oKS5tqVeFQ29waG9z_","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,2],[0,2],[0,0]]},{"type":"line","version":122,"versionNonce":567172498,"isDeleted":true,"id":"KutwLAggp0K8lhJUL8tOY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":800.5,"y":-29,"strokeColor":"#00000000","backgroundColor":"#000","width":2,"height":2,"seed":1159982049,"groupIds":["ve0oKS5tqVeFQ29waG9z_","Qc--kXmmttTCboUtyd-hL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"CzZ9F4q79qwKQ2iL3t3Sw"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,2],[0,2],[0,0]]},{"type":"rectangle","version":160,"versionNonce":1862106254,"isDeleted":true,"id":"qSr1VhlJ9kDLU0Wu5DDyA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":120,"y":200,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":4849327,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"},{"id":"N3M63cNjcTvZhPHB36J_k","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"container"}},{"type":"text","version":155,"versionNonce":655416146,"isDeleted":true,"id":"uLD9bucbaaLwNLwcmkNi9","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":216,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":6145985,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Run","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Run"},{"type":"line","version":154,"versionNonce":863681230,"isDeleted":true,"id":"Upi9t59zAXCVJgZpvFFAF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.90666675567627,"y":218.6266667842865,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":12.466668128967285,"height":9.373333215713501,"seed":320098511,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.1133337020874023,9.373333215713501],[12.466668128967285,9.373333215713501],[0,0],[0,0]]},{"type":"line","version":154,"versionNonce":1656594706,"isDeleted":true,"id":"dDipeLK-2vH_BX6HOlQrE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":341.37333488464355,"y":228,"strokeColor":"transparent","backgroundColor":"#4285f4","width":12.466668128967285,"height":9.373334884643555,"seed":330377121,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.353334426879883,0],[-12.466668128967285,9.373334884643555],[0,0],[0,0]]},{"type":"line","version":154,"versionNonce":1781936398,"isDeleted":true,"id":"M-fclitvDquwg89F_bCCo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":323.44000005722046,"y":237.37333488464355,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.4666666984558105,"height":9.373334884643555,"seed":420437743,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.126667022705078,-1.5600013732910156],[5.4666666984558105,-9.373334884643555],[2.3400001525878906,-9.373334884643555],[0,0],[0,0]]},{"type":"line","version":154,"versionNonce":541830866,"isDeleted":true,"id":"JnUQVgBTw67kOouHX77FB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":323.44000005722046,"y":218.6266667842865,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":5.4666666984558105,"height":9.373333215713501,"seed":1229818753,"groupIds":["kvo-YFp39a3f2qxF2qRAn","99c2RTyACu1auxe7YAEW7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"BmLdO74YV04wW-ZaLwn-t","label":"Cloud Run","resource":"google_cloud_run_service","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3400001525878906,9.373333215713501],[5.4666666984558105,9.373333215713501],[3.126667022705078,1.5600001811981201],[0,0],[0,0]]},{"type":"rectangle","version":141,"versionNonce":514383694,"isDeleted":true,"id":"npx8Hz75hgm3swD6_2iyY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":120,"y":320,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1690544399,"groupIds":["4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"round","boundElements":[{"id":"N3M63cNjcTvZhPHB36J_k","type":"arrow"}],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"container"}},{"type":"text","version":136,"versionNonce":609354898,"isDeleted":true,"id":"Yn_yBP7W7hT9OU-eZWLT1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":336,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":2037543777,"groupIds":["4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"round","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Logging","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Logging"},{"type":"line","version":136,"versionNonce":86754702,"isDeleted":true,"id":"obw8Pi0-DPdzn1NgbmCtO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":329.85806465148926,"y":349.35914039611816,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":6.4645161628723145,"height":15.083869934082031,"seed":1672064815,"groupIds":["Ii9EPx28h_2Ltznm9_g0T","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.154839515686035],[-4.309677600860596,-2.154839515686035],[-4.309677600860596,-7.539785385131836],[-6.4645161628723145,-7.539785385131836],[-6.4645161628723145,7.544084548950195],[0,7.544084548950195],[0,5.389245986938477],[-4.309677600860596,5.389245986938477],[-4.309677600860596,0],[0,0]]},{"type":"line","version":136,"versionNonce":143106642,"isDeleted":true,"id":"roVzUmE4QUgv__jXKAUDE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.7784948348999,"y":342.8946237564087,"strokeColor":"#00000000","backgroundColor":"#669df6","width":14.004302024841309,"height":4.3053765296936035,"seed":1215258433,"groupIds":["y1d7xwHyjE-wliVKC9fCt","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[14.004302024841309,0],[14.004302024841309,-4.3053765296936035],[0,-4.3053765296936035],[0,0]]},{"type":"line","version":136,"versionNonce":1593304014,"isDeleted":true,"id":"zeyftvOIg5-jMFJNT8R1n","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.7784948348999,"y":350.4387102127075,"strokeColor":"#00000000","backgroundColor":"#669df6","width":14.004302024841309,"height":4.309678077697754,"seed":1076490575,"groupIds":["y1d7xwHyjE-wliVKC9fCt","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[14.004302024841309,0],[14.004302024841309,-4.309678077697754],[0,-4.309678077697754],[0,0]]},{"type":"line","version":136,"versionNonce":398690322,"isDeleted":true,"id":"WLZfwEGcl4O_fuH5GgVhR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":328.7784948348999,"y":357.97849464416504,"strokeColor":"#00000000","backgroundColor":"#669df6","width":14.004302024841309,"height":4.3096771240234375,"seed":614715169,"groupIds":["y1d7xwHyjE-wliVKC9fCt","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[14.004302024841309,0],[14.004302024841309,-4.3096771240234375],[0,-4.3096771240234375],[0,0]]},{"type":"line","version":136,"versionNonce":1579563534,"isDeleted":true,"id":"5FvriNfwi-1VwsyQcmJkR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":321.23870968818665,"y":343.9741930961609,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.4645164012908936,"height":6.464515686035156,"seed":1134358383,"groupIds":["HTBdtz_iv6ftotiAP86yr","4KcMZfDg7XA7JXBlV6j7B","kdkeQgqkGrfZXLwKw2Uhe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829077,"link":null,"locked":false,"customData":{"boxId":"GirKlt7Zo5ODVe-S2b3sz","label":"Cloud Logging","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[6.4645164012908936,0],[6.4645164012908936,-6.464515686035156],[0,-6.464515686035156],[0,0]]},{"type":"rectangle","version":192,"versionNonce":704427474,"isDeleted":true,"id":"jKFQ6AEoQ5G3FvmeJjBI1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":440,"y":300,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":75449089,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":210,"versionNonce":162515022,"isDeleted":true,"id":"6Gdn1-ng_LCJrHZIbTqmO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":316,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":118,"height":37,"seed":2018191759,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"BigQuery Data \nTransfer Service","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery Data \nTransfer Service"},{"type":"line","version":186,"versionNonce":4860818,"isDeleted":true,"id":"C16nNj6hnqQBox7nKvHRt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":658.421215057373,"y":332.79999923706055,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":1686190817,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":186,"versionNonce":560828046,"isDeleted":true,"id":"xTkpgHgrFLJKDkIak8Ujw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":651.2549142837524,"y":317.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":191700911,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":186,"versionNonce":551741778,"isDeleted":true,"id":"R8Nu8_bMJEvE8mMgtaKWR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":651.2549142837524,"y":334.25647354125977,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":87635649,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":186,"versionNonce":35163342,"isDeleted":true,"id":"YNy3njIQrlUC1ZhWk3Fk6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":651.2549142837524,"y":334.25647354125977,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":1865109967,"groupIds":["t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":186,"versionNonce":857599762,"isDeleted":true,"id":"9Qlb4tuIKcoYZQzzSThZK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":646.7132601737976,"y":326.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":1766241953,"groupIds":["Ds0GI30dPCA8HPusc2b__","t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":186,"versionNonce":155829006,"isDeleted":true,"id":"eno2qBddipOxHBYCGD-1j","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":650.0755071640015,"y":324.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":1017004015,"groupIds":["Qf4Uw2dD1cBOrt0fhhU2o","t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":186,"versionNonce":1534213330,"isDeleted":true,"id":"kgGBcS9PhnR92Ey-YuDpV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":654.0630264282227,"y":328.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":324614785,"groupIds":["3Vqpitu9fWBXXWT5hUCOd","t0lbLuhQRZhhxlNOYQpuv","Fenm7E6hyXki9PIfw1618"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"23Zvzt8Up1N1pOkvrcj-R","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"arrow","version":130,"versionNonce":2038051150,"isDeleted":true,"id":"N3M63cNjcTvZhPHB36J_k","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":261,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":58,"seed":1439590927,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,58]],"fontFamily":2},{"type":"rectangle","version":1265,"versionNonce":393663122,"isDeleted":true,"id":"DYaaB9-Upcbvgkx-N9rbN","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-880,"y":400,"strokeColor":"#34a853","backgroundColor":"#ceead6","width":900,"height":260,"seed":70271585,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"PiqrL0eWlHBfTKdGN3bVH","type":"arrow"}],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"a7jxO9KBbu7x0PTSp8V8R","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":145,"versionNonce":1577244558,"isDeleted":true,"id":"nL2lT2KxwSWQfETys3YkU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":460,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1202999343,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"round","boundElements":[{"id":"4kXwJH1dLqUAAORSO3NPX","type":"arrow"},{"id":"0jBnfLa8x-7PG-dHNSIyq","type":"arrow"}],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":144,"versionNonce":434286674,"isDeleted":true,"id":"rasyQ0CHhsp3CsEfuzqpg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":296,"y":476,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":2023444033,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"BigQuery","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery"},{"type":"text","version":155,"versionNonce":1864152526,"isDeleted":true,"id":"jv2zzqV6Bhp1slRGCSA_c","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":296,"y":498,"strokeColor":"#202124","backgroundColor":"transparent","width":120,"height":19,"seed":1815638607,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"Data Warehouse","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Data Warehouse"},{"type":"line","version":140,"versionNonce":646764050,"isDeleted":true,"id":"g_8oGPIIfJ26l2d6DYb_r","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":498.42121505737305,"y":492.79999923706055,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":1736039969,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":140,"versionNonce":1977666574,"isDeleted":true,"id":"usRDjBw5ws4B7H-WHKaeX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":491.25491428375244,"y":477.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":1278431343,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":140,"versionNonce":1852589010,"isDeleted":true,"id":"rmVF8p_ePYCrvy5d1mwk8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":491.25491428375244,"y":494.25647354125977,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":1069249025,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":140,"versionNonce":810031694,"isDeleted":true,"id":"cbIBZylvCmBG1E6rhpd6R","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":491.25491428375244,"y":494.25647354125977,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":1097689743,"groupIds":["v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":140,"versionNonce":1805121938,"isDeleted":true,"id":"f4tuTGE4Jh1gzQ70-xIN_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":486.7132601737976,"y":486.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":1717537249,"groupIds":["kt5YX_q77_IepwRy7W0dT","v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":140,"versionNonce":892051598,"isDeleted":true,"id":"uAQjzSIMVu7foiNKig1Ua","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":490.07550716400146,"y":484.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":1486831791,"groupIds":["bvKsdz5PYT61BwaiJ78bc","v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":140,"versionNonce":1028061010,"isDeleted":true,"id":"sMoTA5a160FCKmlnFJo55","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":494.06302642822266,"y":488.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":1953867201,"groupIds":["PwHcwbiCZw-OC4KjfEQzg","v8lQ__53E0vPA8v-5gan6","aTDwA9ewNATgCq8fU7PSE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"RypXleBEkT_Umab_0FLYS","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"rectangle","version":124,"versionNonce":1480875726,"isDeleted":true,"id":"iHAHXdGWgA7lLPLlYdzk4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":460,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1936806607,"groupIds":["aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"round","boundElements":[{"id":"0jBnfLa8x-7PG-dHNSIyq","type":"arrow"}],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"container"}},{"type":"text","version":120,"versionNonce":63978770,"isDeleted":true,"id":"xz3-NJXbvk7bJrFHdyA7W","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":476,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":891110817,"groupIds":["aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"fontSize":16,"fontFamily":2,"text":"Looker Studio","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Looker Studio"},{"type":"text","version":139,"versionNonce":237720846,"isDeleted":true,"id":"Ja-6sfaquNvBjyxhpayRh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":498,"strokeColor":"#202124","backgroundColor":"transparent","width":99,"height":19,"seed":712777967,"groupIds":["aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"fontSize":16,"fontFamily":2,"text":"Visualizations","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Visualizations"},{"type":"line","version":120,"versionNonce":1017826002,"isDeleted":true,"id":"lv3E4PkfO4Mfz0QfMGIDG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":831.934796333313,"y":478.25,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":3.444951057434082,"height":3.3636693954467773,"seed":1669720449,"groupIds":["RJ9HV3J7GAggYoRpmTAKv","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.17994022369384766,0.008455276489257812],[-0.3534507751464844,0.03334450721740723],[-0.5198154449462891,0.07395315170288086],[-0.6783208847045898,0.12956690788269043],[-0.8282508850097656,0.19947099685668945],[-0.9688930511474609,0.28295135498046875],[-1.099532127380371,0.37929272651672363],[-1.2194528579711914,0.4877810478210449],[-1.3279409408569336,0.6077020168304443],[-1.4242830276489258,0.7383408546447754],[-1.5077619552612305,0.8789827823638916],[-1.577667236328125,1.0289134979248047],[-1.6332807540893555,1.1874184608459473],[-1.67388916015625,1.3537836074829102],[-1.6987791061401367,1.5272934436798096],[-1.7072334289550781,1.7072343826293945],[-1.6907224655151367,1.9511208534240723],[-1.668654441833496,2.0730676651000977],[-1.6361074447631836,2.1950159072875977],[-1.5921268463134766,2.3169636726379395],[-1.5357608795166016,2.438910484313965],[-1.4660577774047852,2.5608553886413574],[-1.3820619583129883,2.6827969551086426],[-0.650390625,1.951125144958496],[-0.650390625,1.7072343826293945],[-0.650390625,1.7072343826293945],[-0.6356239318847656,1.5590853691101074],[-0.5932302474975586,1.4214184284210205],[-0.5260677337646484,1.2970912456512451],[-0.43699169158935547,1.1889610290527344],[-0.3288612365722656,1.0998854637145996],[-0.20453453063964844,1.032721996307373],[-0.06686687469482422,0.9903287887573242],[0.08128070831298828,0.975562334060669],[0.2294301986694336,0.9903287887573242],[0.3670969009399414,1.032721996307373],[0.491424560546875,1.0998854637145996],[0.5995550155639648,1.1889610290527344],[0.6886301040649414,1.2970912456512451],[0.7557945251464844,1.4214184284210205],[0.7981882095336914,1.5590853691101074],[0.812952995300293,1.7072343826293945],[0.7981882095336914,1.8553833961486816],[0.7557945251464844,1.9930505752563477],[0.6886301040649414,2.117377758026123],[0.5995550155639648,2.2255077362060547],[0.491424560546875,2.3145833015441895],[0.3670969009399414,2.381746292114258],[0.2294301986694336,2.424139976501465],[0.08128070831298828,2.438906192779541],[-0.16260910034179688,2.438906192779541],[-0.8942804336547852,3.089296817779541],[-0.8942804336547852,3.089296817779541],[-0.739192008972168,3.1731338500976562],[-0.5795764923095703,3.241727828979492],[-0.4166259765625,3.2950782775878906],[-0.25153160095214844,3.3331851959228516],[-0.08548355102539062,3.356049060821533],[0.08032703399658203,3.3636693954467773],[0.24470806121826172,3.3560471534729004],[0.40647029876708984,3.333181381225586],[0.5644235610961914,3.2950730323791504],[0.717371940612793,3.2417216300964355],[0.8641300201416016,3.1731271743774414],[1.003504753112793,3.0892906188964844],[1.134303092956543,2.99021053314209],[1.2553377151489258,2.875887870788574],[1.3654146194458008,2.7463231086730957],[1.463343620300293,2.601515769958496],[1.5471820831298828,2.4464268684387207],[1.6157751083374023,2.2868118286132812],[1.6691255569458008,2.123861312866211],[1.7072334289550781,1.9587664604187012],[1.7300958633422852,1.7927179336547852],[1.737717628479004,1.6269078254699707],[1.7300939559936523,1.4625258445739746],[1.707228660583496,1.3007636070251465],[1.6691198348999023,1.1428120136260986],[1.615769386291504,0.9898619651794434],[1.547175407409668,0.843104362487793],[1.4633378982543945,0.703730583190918],[1.3642587661743164,0.5729315280914307],[1.2499361038208008,0.45189762115478516],[1.1203699111938477,0.34182024002075195],[0.9755620956420898,0.24389052391052246],[0.8802938461303711,0.18672418594360352],[0.7774038314819336,0.13718199729919434],[0.6668920516967773,0.09526300430297852],[0.5487604141235352,0.06096673011779785],[0.4230051040649414,0.03429293632507324],[0.2896261215209961,0.015241146087646484],[0.14862537384033203,0.0038101673126220703],[0,0],[0,0]]},{"type":"line","version":120,"versionNonce":1348043598,"isDeleted":true,"id":"hi-sManixaxYkyjn_NM49","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":831.2844533920288,"y":483.2091407775879,"strokeColor":"#00000000","backgroundColor":"#669df6","width":1.7072343826293945,"height":3.902249813079834,"seed":1867000591,"groupIds":["XKXrpiSYsFd_sg-EA4r4W","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.007622718811035156,-0.2132415771484375],[-0.030488967895507812,-0.4255342483520508],[-0.06859874725341797,-0.6359243392944336],[-0.12195110321044922,-0.8434572219848633],[-0.19054698944091797,-1.04718017578125],[-0.274383544921875,-1.2461400032043457],[-0.3734626770019531,-1.4393820762634277],[-0.4877815246582031,-1.625953197479248],[-1.463343620300293,-0.650390625],[-1.463343620300293,-0.650390625],[-1.4036455154418945,-0.48017311096191406],[-1.3515586853027344,-0.3251953125],[-1.3147125244140625,-0.17021846771240234],[-1.3043880462646484,-0.0879669189453125],[-1.300734519958496,0],[-1.3081979751586914,0.14862489700317383],[-1.3299531936645508,0.2896270751953125],[-1.365046501159668,0.4230051040649414],[-1.4125261306762695,0.5487594604492188],[-1.4714374542236328,0.6668920516967773],[-1.540827751159668,0.7774033546447754],[-1.6197443008422852,0.8802928924560547],[-1.7072343826293945,0.9755620956420898],[-1.2194528579711914,2.276296615600586],[-1.2194528579711914,2.276296615600586],[-1.0717878341674805,2.180173873901367],[-0.9336481094360352,2.075118064880371],[-0.8050355911254883,1.9617271423339844],[-0.6859493255615234,1.8405942916870117],[-0.5763893127441406,1.7123165130615234],[-0.47635650634765625,1.5774898529052734],[-0.3858489990234375,1.4367084503173828],[-0.3048696517944336,1.290567398071289],[-0.23341655731201172,1.1396656036376953],[-0.17148971557617188,0.9845943450927734],[-0.11909008026123047,0.8259515762329102],[-0.0762186050415039,0.664332389831543],[-0.04287242889404297,0.5003318786621094],[-0.019054412841796875,0.3345456123352051],[-0.004763603210449219,0.1675701141357422],[0,0],[0,0]]},{"type":"line","version":120,"versionNonce":510501010,"isDeleted":true,"id":"RqM-RGkzd6CkH7bjvD5bI","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":828.6829376220703,"y":484.5911560058594,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.471312999725342,"height":5.365593910217285,"seed":686756193,"groupIds":["bwrehPALZbZq3dciq3XNx","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.13609695434570312,-0.00656890869140625],[-0.2694549560546875,-0.025880813598632812],[-0.39924144744873047,-0.057338714599609375],[-0.5246210098266602,-0.10034751892089844],[-0.6447620391845703,-0.1543130874633789],[-0.7588291168212891,-0.21863937377929688],[-0.8659892082214355,-0.29272937774658203],[-0.9654083251953125,-0.3759899139404297],[-1.056253433227539,-0.46782493591308594],[-1.137690544128418,-0.5676383972167969],[-1.2088861465454102,-0.674835205078125],[-1.2690067291259766,-0.7888202667236328],[-1.31721830368042,-0.9089984893798828],[-1.352686882019043,-1.0347728729248047],[-1.3745794296264648,-1.1655502319335938],[-1.3820629119873047,-1.3007335662841797],[-1.375493049621582,-1.4368314743041992],[-1.3561820983886719,-1.5701894760131836],[-1.324723243713379,-1.6999750137329102],[-1.2817144393920898,-1.8253555297851562],[-1.2277488708496094,-1.9454960823059082],[-1.1634235382080078,-2.0595626831054688],[-1.0893325805664062,-2.1667232513427734],[-1.0060720443725586,-2.2661423683166504],[-0.9142374992370605,-2.356987953186035],[-0.8144245147705078,-2.438424587249756],[-0.7072277069091797,-2.5096206665039062],[-0.5932426452636719,-2.5697402954101562],[-0.4730644226074219,-2.617952346801758],[-0.3472890853881836,-2.653421401977539],[-0.21651172637939453,-2.675313949584961],[-0.08132743835449219,-2.6827964782714844],[0.013623237609863281,-2.6789865493774414],[0.11429023742675781,-2.667555809020996],[0.3251485824584961,-2.6218299865722656],[0.5360069274902344,-2.5456151962280273],[0.6366739273071289,-2.4960718154907227],[0.7316246032714844,-2.438905715942383],[1.7071876525878906,-3.3331871032714844],[1.7071876525878906,-3.3331871032714844],[1.4936275482177734,-3.5046730041503906],[1.2791128158569336,-3.6532936096191406],[1.0626907348632812,-3.779049873352051],[0.843409538269043,-3.881941318511963],[0.6203193664550781,-3.961967945098877],[0.39246654510498047,-4.019129753112793],[0.15890121459960938,-4.053426742553711],[-0.08132743835449219,-4.064859390258789],[-0.35260868072509766,-4.050806999206543],[-0.6167440414428711,-4.0096025466918945],[-0.8723058700561523,-3.9426755905151367],[-1.117863655090332,-3.851454734802246],[-1.3519887924194336,-3.7373695373535156],[-1.5732526779174805,-3.6018481254577637],[-1.780226230621338,-3.446320056915283],[-1.971480369567871,-3.272214889526367],[-2.1455860137939453,-3.080960750579834],[-2.301114082336426,-2.8739871978759766],[-2.4366350173950195,-2.6527228355407715],[-2.5507211685180664,-2.41859769821167],[-2.6419410705566406,-2.173039436340332],[-2.7088685035705566,-1.917478084564209],[-2.750072956085205,-1.6533427238464355],[-2.764125347137451,-1.3820619583129883],[-2.7509660720825195,-1.1107816696166992],[-2.7122020721435547,-0.8466458320617676],[-2.64890718460083,-0.5910854339599609],[-2.5621509552001953,-0.34552669525146484],[-2.4530067443847656,-0.11140155792236328],[-2.322545051574707,0.1098623275756836],[-2.171839714050293,0.3168363571166992],[-2.0019612312316895,0.5080900192260742],[-1.813981056213379,0.6821956634521484],[-1.6089725494384766,0.8377237319946289],[-1.3880057334899902,0.9732446670532227],[-1.1521539688110352,1.0873308181762695],[-0.9024887084960938,1.1785516738891602],[-0.640080451965332,1.2454776763916016],[-0.36600399017333984,1.28668212890625],[-0.08132743835449219,1.300734519958496],[0.053328514099121094,1.2994651794433594],[0.20322036743164062,1.2905750274658203],[0.3531036376953125,1.266444206237793],[0.42327880859375,1.2462825775146484],[0.4877347946166992,1.2194538116455078],[-0.00004673004150390625,0],[0,0]]},{"type":"line","version":120,"versionNonce":19392910,"isDeleted":true,"id":"ZDa5aYhmxJOkXlzeYdjTY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832.0161247253418,"y":485.6480464935303,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":12.04841136932373,"height":12.080839157104492,"seed":1850601775,"groupIds":["o-BtIZ21gP2H5JvBLlRQd","aoKZODF-OayrU79mHUl_c","17m6ln345brAeK1O4uDqG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"GdJxz75HD8Kp3UUxJcpGK","label":"Looker Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.4268035888671875,0.015241622924804688],[-0.8536167144775391,0.060967445373535156],[-1.2804298400878906,0.13718223571777344],[-1.7072334289550781,0.24389076232910156],[-0.9755620956420898,2.032406806945801],[-0.9755620956420898,2.032406806945801],[-0.7316761016845703,2.0197067260742188],[-0.4877805709838867,1.9917659759521484],[-0.24388599395751953,1.9638252258300781],[0,1.9511260986328125],[0.21193504333496094,1.9565563201904297],[0.4207725524902344,1.9726600646972656],[0.6262760162353516,1.999155044555664],[0.8282089233398438,2.035757064819336],[1.0263290405273438,2.082183837890625],[1.2204017639160156,2.138153076171875],[1.410186767578125,2.2033815383911133],[1.5954465866088867,2.277585983276367],[1.7759437561035156,2.360483169555664],[1.9514389038085938,2.451791763305664],[2.121694564819336,2.551227569580078],[2.2864723205566406,2.65850830078125],[2.445535659790039,2.773350715637207],[2.5986413955688477,2.8954734802246094],[2.745555877685547,3.0245914459228516],[2.8860416412353516,3.16042423248291],[3.019857406616211,3.3026866912841797],[3.1467647552490234,3.4510974884033203],[3.266529083251953,3.6053733825683594],[3.378908157348633,3.7652320861816406],[3.4836654663085938,3.9303884506225586],[3.580564498901367,4.10056209564209],[3.6693649291992188,4.275468826293945],[3.7498302459716797,4.454828262329102],[3.8217201232910156,4.638354301452637],[3.8847970962524414,4.825765609741211],[3.938823699951172,5.016780853271484],[3.983560562133789,5.211113929748535],[4.018772125244141,5.408483505249023],[4.044218063354492,5.608607292175293],[4.059659957885742,5.811202049255371],[4.064859390258789,6.015983581542969],[4.059429168701172,6.22791862487793],[4.043325424194336,6.436758041381836],[4.0168304443359375,6.64225959777832],[3.9802284240722656,6.8441925048828125],[3.93380069732666,7.042314529418945],[3.8778324127197266,7.236387252807617],[3.812602996826172,7.426172256469727],[3.7383995056152344,7.611433029174805],[3.6555023193359375,7.791929244995117],[3.5641937255859375,7.967424392700195],[3.4647579193115234,8.137680053710938],[3.357476234436035,8.302457809448242],[3.242633819580078,8.461519241333008],[3.120512008666992,8.614625930786133],[2.991392135620117,8.761541366577148],[2.8555612564086914,8.90202522277832],[2.713298797607422,9.03584098815918],[2.564887046813965,9.162750244140625],[2.410612106323242,9.282512664794922],[2.250753402709961,9.394891738891602],[2.085597038269043,9.499650955200195],[1.9154224395751953,9.596549987792969],[1.7405147552490234,9.68535041809082],[1.5611572265625,9.765813827514648],[1.3776302337646484,9.837703704833984],[1.1902179718017578,9.900781631469727],[0.9992046356201172,9.954809188842773],[0.8048715591430664,9.99954605102539],[0.6075019836425781,10.034757614135742],[0.4073781967163086,10.060201644897461],[0.20478343963623047,10.075643539428711],[0,10.080842971801758],[-0.21193408966064453,10.075414657592773],[-0.4207725524902344,10.059309005737305],[-0.6262760162353516,10.032814025878906],[-0.8282070159912109,9.996212005615234],[-1.0263290405273438,9.949785232543945],[-1.2204017639160156,9.893815994262695],[-1.410186767578125,9.828588485717773],[-1.5954465866088867,9.754384994506836],[-1.7759437561035156,9.671485900878906],[-1.9514389038085938,9.580177307128906],[-2.121694564819336,9.480741500854492],[-2.2864723205566406,9.37346076965332],[-2.4455337524414062,9.25861930847168],[-2.5986413955688477,9.136495590209961],[-2.745555877685547,9.007377624511719],[-2.886040687561035,8.871545791625977],[-3.0198564529418945,8.72928237915039],[-3.1467647552490234,8.58087158203125],[-3.2665281295776367,8.426595687866211],[-3.3789072036743164,8.26673698425293],[-3.4836654663085938,8.101581573486328],[-3.580564498901367,7.931407928466797],[-3.6693649291992188,7.756500244140625],[-3.7498292922973633,7.577140808105469],[-3.821718215942383,7.39361572265625],[-3.884796142578125,7.206203460693359],[-3.938823699951172,7.015188217163086],[-3.983560562133789,6.820856094360352],[-4.018771648406982,6.62348747253418],[-4.044217109680176,6.423362731933594],[-4.059658527374268,6.220767974853516],[-4.064859390258789,6.015983581542969],[-4.055392265319824,5.728410720825195],[-4.027228355407715,5.44548225402832],[-3.9807252883911133,5.16802978515625],[-3.916240692138672,4.896888732910156],[-3.83413028717041,4.632892608642578],[-3.7347536087036133,4.376873970031738],[-3.6184654235839844,4.129669189453125],[-3.4856252670288086,3.8921079635620117],[-3.336587905883789,3.665027618408203],[-3.1717119216918945,3.449258804321289],[-2.991353988647461,3.2456369400024414],[-2.795872688293457,3.054995536804199],[-2.585622787475586,2.8781681060791016],[-2.360963821411133,2.7159881591796875],[-2.122251510620117,2.5692901611328125],[-1.8698434829711914,2.4389076232910156],[-2.6015148162841797,0.650390625],[-2.6015148162841797,0.650390625],[-2.8782453536987305,0.7939214706420898],[-3.144331932067871,0.9497756958007812],[-3.3996124267578125,1.1174211502075195],[-3.643922805786133,1.2963199615478516],[-3.8770971298217773,1.4859371185302734],[-4.098974704742432,1.685734748840332],[-4.309389114379883,1.8951797485351562],[-4.5081787109375,2.1137351989746094],[-4.695178031921387,2.3408641815185547],[-4.870224952697754,2.5760316848754883],[-5.033154487609863,2.8187007904052734],[-5.183803081512451,3.068338394165039],[-5.322007179260254,3.3244056701660156],[-5.447603225708008,3.586367607116699],[-5.560426712036133,3.853689193725586],[-5.660314559936523,4.125831604003906],[-5.747101783752441,4.402263641357422],[-5.820626735687256,4.682445526123047],[-5.88072395324707,4.96584415435791],[-5.927229881286621,5.251920700073242],[-5.959981441497803,5.540142059326172],[-5.978815078735352,5.829970359802246],[-5.983565330505371,6.120870590209961],[-5.974069595336914,6.4123077392578125],[-5.950164794921875,6.703742980957031],[-5.911684989929199,6.9946441650390625],[-5.858469009399414,7.28447151184082],[-5.790351390838623,7.57269287109375],[-5.7071685791015625,7.858770370483398],[-5.608757019042969,8.142168045043945],[-5.494953632354736,8.42234992980957],[-5.365592956542969,8.698781967163086],[-5.2220635414123535,8.975515365600586],[-5.0662078857421875,9.241607666015625],[-4.898563385009766,9.496889114379883],[-4.719664573669434,9.741201400756836],[-4.53004789352417,9.97437858581543],[-4.330248832702637,10.196256637573242],[-4.120804309844971,10.406675338745117],[-3.902250289916992,10.605464935302734],[-3.6751203536987305,10.792465209960938],[-3.439952850341797,10.967512130737305],[-3.1972827911376953,11.130441665649414],[-2.9476470947265625,11.281089782714844],[-2.691579818725586,11.419294357299805],[-2.429616928100586,11.54488754272461],[-2.1622962951660156,11.657711029052734],[-1.8901519775390625,11.757596969604492],[-1.6137208938598633,11.844385147094727],[-1.3335380554199219,11.91790771484375],[-1.050140380859375,11.978004455566406],[-0.7640628814697266,12.024507522583008],[-0.4758424758911133,12.057258605957031],[-0.18601417541503906,12.076089859008789],[0.10488700866699219,12.080839157104492],[0.39632320404052734,12.071342468261719],[0.6877584457397461,12.047435760498047],[0.9786586761474609,12.008955001831055],[1.2684879302978516,11.955738067626953],[1.5567083358764648,11.88762092590332],[1.8427867889404297,11.804435729980469],[2.12618350982666,11.706024169921875],[2.4063663482666016,11.592218399047852],[2.6827964782714844,11.462860107421875],[2.9595279693603516,11.319330215454102],[3.225614547729492,11.163475036621094],[3.4808950424194336,10.995828628540039],[3.725203514099121,10.816930770874023],[3.9583797454833984,10.627313613891602],[4.180255889892578,10.427515029907227],[4.3906707763671875,10.218070983886719],[4.589460372924805,9.999517440795898],[4.776460647583008,9.77238655090332],[4.951507568359375,9.537220001220703],[5.114437103271484,9.294549942016602],[5.265085220336914,9.044912338256836],[5.403289794921875,8.788846969604492],[5.5288848876953125,8.526884078979492],[5.6417083740234375,8.259561538696289],[5.741596221923828,7.987417221069336],[5.8283843994140625,7.710987091064453],[5.901908874511719,7.430803298950195],[5.962005615234375,7.147407531738281],[6.008510589599609,6.861330032348633],[6.041263580322266,6.573108673095703],[6.060096740722656,6.283281326293945],[6.064846038818359,5.992380142211914],[6.055351257324219,5.700943946838379],[6.03144645690918,5.409507751464844],[5.99296760559082,5.1186065673828125],[5.939750671386719,4.828778266906738],[5.871633529663086,4.540557861328125],[5.788450241088867,4.254480361938477],[5.690040588378906,3.9710826873779297],[5.576234817504883,3.6909008026123047],[5.446876525878906,3.414468765258789],[5.236549377441406,3.0411930084228516],[5.002763748168945,2.6842308044433594],[4.746826171875,2.3446550369262695],[4.4700469970703125,2.0235366821289062],[4.173738479614258,1.7219486236572266],[3.8592090606689453,1.4409618377685547],[3.527769088745117,1.181650161743164],[3.180727005004883,0.9450826644897461],[2.8193931579589844,0.7323322296142578],[2.445079803466797,0.5444717407226562],[2.0590953826904297,0.3825712203979492],[1.6627492904663086,0.24770355224609375],[1.2573509216308594,0.14094161987304688],[0.8442134857177734,0.0633554458618164],[0.42464447021484375,0.016017913818359375],[-0.0000476837158203125,0],[0,0]]},{"type":"line","version":124,"versionNonce":1959771730,"isDeleted":true,"id":"QvDFKQuoYBb8QKTP-szuw","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":200,"y":380,"strokeColor":"#000000","backgroundColor":"transparent","width":0,"height":120,"seed":1520975169,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,120]],"fontFamily":2},{"type":"text","version":391,"versionNonce":1339000782,"isDeleted":true,"id":"hnC_bsf2Afagia8FOc5FB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":460,"y":680,"strokeColor":"#202124","backgroundColor":"transparent","width":124,"height":19,"seed":821424975,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"p0S5NKIgKqSfDkV9tM2wc","label":"Region","resource":"region","type":"child"},"fontSize":16.444444444444446,"fontFamily":2,"text":"DATA ANALYSIS","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA ANALYSIS"},{"type":"rectangle","version":132,"versionNonce":2091394066,"isDeleted":true,"id":"UbTdotD4BefGl3ikKibHf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":160,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":2014375201,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":124,"versionNonce":476667406,"isDeleted":true,"id":"ZruJ0Dr4CXrrcS3v5JbbF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":176,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":2140713327,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":134,"versionNonce":1072550354,"isDeleted":true,"id":"Gx1803BvWzRHZzU4lHskY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":198,"strokeColor":"#202124","backgroundColor":"transparent","width":74,"height":19,"seed":1754833153,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Data Lake","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Data Lake"},{"type":"rectangle","version":124,"versionNonce":1542351950,"isDeleted":true,"id":"HRvci0cWXPKn_nWSmNbOi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":180,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":58633103,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1907869586,"isDeleted":true,"id":"LywRVvMkWXe1OQXIDWI4J","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":840,"y":180,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":2042550497,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":124,"versionNonce":2084024974,"isDeleted":true,"id":"oSdFKzdYPmvznI_tHpb6s","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":842,"y":180,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":685793711,"groupIds":["IH1KPRANnsiP1tsa3xD8k","ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":124,"versionNonce":1245513042,"isDeleted":true,"id":"VndU5Z2yer77e2BhpirKa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":180,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":487789761,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1207840974,"isDeleted":true,"id":"pwG-8shbFVZi3pmwR6OGY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":826,"y":183,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1088836559,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1658096402,"isDeleted":true,"id":"7REEO6xhenBL-dRxy7oOZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":835,"y":182,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1714738337,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1255859982,"isDeleted":true,"id":"fTopVi_tyi1Rqvh6JCFi7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":189,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1672020463,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":301291730,"isDeleted":true,"id":"bg70mrO7enesWDllTvU4_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":840,"y":189,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1221826689,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":124,"versionNonce":893834574,"isDeleted":true,"id":"9s1bLMBaGYxrz7ltyS9lb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":842,"y":189,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":305196047,"groupIds":["YbOeYVwfD8p5X2CLELLai","ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":124,"versionNonce":1194749586,"isDeleted":true,"id":"b_DfqH7PtMbxEm0GHMtOl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822,"y":189,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":380559457,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1083898766,"isDeleted":true,"id":"X-aTibOLxLtCuD-u6BgQ4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":826,"y":192,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":410423855,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":124,"versionNonce":1733217362,"isDeleted":true,"id":"4zlmqfIt4KyH5Fhp0-pBa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":835,"y":191,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1033251905,"groupIds":["ucBR21mRwjJKPh7u5uTFE","xRQ6CUkQXr2lza9OcgRV7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"QzD_9h41xrBE4QdwJfF-N","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"arrow","version":144,"versionNonce":319838670,"isDeleted":true,"id":"4kXwJH1dLqUAAORSO3NPX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":200,"y":500,"strokeColor":"#202124","backgroundColor":"#202124","width":79,"height":0,"seed":794981455,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[79,0]],"fontFamily":2},{"type":"arrow","version":122,"versionNonce":672494098,"isDeleted":true,"id":"0jBnfLa8x-7PG-dHNSIyq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":500,"strokeColor":"#202124","backgroundColor":"#202124","width":100,"height":0,"seed":1164508193,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[100,0]],"fontFamily":2},{"type":"arrow","version":120,"versionNonce":599781390,"isDeleted":true,"id":"aQLxPaQ8P9w9EYGk6G49s","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":120,"seed":1590497903,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":{"focus":0.3,"gap":16,"elementId":"rasyQ0CHhsp3CsEfuzqpg"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,120]],"fontFamily":2},{"type":"line","version":115,"versionNonce":1820418002,"isDeleted":true,"id":"aTYsV-Ig4m1PW-zIZof3B","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":340,"strokeColor":"#000000","backgroundColor":"transparent","width":40,"height":0,"seed":236376065,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[40,0]],"fontFamily":2},{"type":"arrow","version":117,"versionNonce":513982030,"isDeleted":true,"id":"bglfe1poYP5Gp9RwIy5pd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":780,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":100,"height":0,"seed":528411791,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[-100,0]],"fontFamily":2},{"type":"line","version":118,"versionNonce":547984786,"isDeleted":true,"id":"xw6Kr6s7f0SdHNoJp5uKl","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":780,"y":240,"strokeColor":"#000000","backgroundColor":"transparent","width":0,"height":100,"seed":1302276065,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,100]],"fontFamily":2},{"type":"arrow","version":124,"versionNonce":1217512590,"isDeleted":true,"id":"oeXAa8J4xvSm11RODwd77","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":720,"y":-75.04587155963304,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":234.04587155963304,"seed":1026589359,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"startBinding":null,"endBinding":{"focus":-0.16666666666666666,"gap":1,"elementId":"UbTdotD4BefGl3ikKibHf"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,234.04587155963304]],"fontFamily":2},{"type":"ellipse","version":398,"versionNonce":365237074,"isDeleted":true,"id":"WgcYDxo58a2wE9xsAIF3n","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":180,"y":220,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1309770689,"groupIds":["sKoYG8z0zStXephHuji8q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829078,"link":null,"locked":false,"customData":{"boxId":"UDl3vtAfeea5HacfMqrtg","label":"Step Circle","type":"child"}},{"type":"text","version":358,"versionNonce":1665532622,"isDeleted":true,"id":"x-TabJO45EGrpsmvJVsFn","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":190.5,"y":228,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":2022331599,"groupIds":["sKoYG8z0zStXephHuji8q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"UDl3vtAfeea5HacfMqrtg","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"2","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"2"},{"type":"text","version":114,"versionNonce":1579866386,"isDeleted":true,"id":"VcmfJFPr2XDMD5oP86qvT","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":225,"y":426,"strokeColor":"#000000","backgroundColor":"transparent","width":22,"height":23,"seed":1804428193,"groupIds":["sKoYG8z0zStXephHuji8q"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"fontSize":20,"fontFamily":2,"text":"","baseline":19,"textAlign":"center","verticalAlign":"middle","containerId":"oXmrarFjLAOt0by1KTAta","originalText":""},{"type":"ellipse","version":424,"versionNonce":291010830,"isDeleted":true,"id":"Sv27OUEcC8ZY5BOLPXlhv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":340,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1764025071,"groupIds":["O7LUIBeCSIuGQHsVEA7Px"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"GmS_6aXjOFF1P2_aEunVZ","label":"Step Circle","type":"child"}},{"type":"text","version":385,"versionNonce":693233362,"isDeleted":true,"id":"yXcilfDK0J6A66339SCbG","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":350.5,"y":348,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1380075393,"groupIds":["O7LUIBeCSIuGQHsVEA7Px"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"GmS_6aXjOFF1P2_aEunVZ","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"3","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"3"},{"type":"text","version":114,"versionNonce":977413966,"isDeleted":true,"id":"iLXMrKx8RLV-Sos1eskeo","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1165,"y":360,"strokeColor":"#000000","backgroundColor":"transparent","width":22,"height":23,"seed":529050895,"groupIds":["O7LUIBeCSIuGQHsVEA7Px"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"fontSize":20,"fontFamily":2,"text":"","baseline":19,"textAlign":"center","verticalAlign":"middle","containerId":"oXmrarFjLAOt0by1KTAta","originalText":""},{"type":"ellipse","version":399,"versionNonce":533806226,"isDeleted":true,"id":"Q4D7JXQYit9b5nxW3hn4j","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":260,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":2087694177,"groupIds":["ZuqjW4EZk1UumFp3fWMgl"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"_n40AdILG9y0GGRud2SzX","label":"Step Circle","type":"child"}},{"type":"text","version":361,"versionNonce":1851526542,"isDeleted":true,"id":"AnTMx6V9LgtkW2Fp_hryv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":410.5,"y":268,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":120468271,"groupIds":["ZuqjW4EZk1UumFp3fWMgl"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"_n40AdILG9y0GGRud2SzX","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"4","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"4"},{"type":"ellipse","version":450,"versionNonce":1063246418,"isDeleted":true,"id":"FUIj7F7KR2AQBZ9sHxitX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":220,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1885674305,"groupIds":["rZKDvg7YKfG9oHP82cudH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"_kQwilXDXKZFR2PtPYdN_","label":"Step Circle","type":"child"}},{"type":"text","version":414,"versionNonce":1256139726,"isDeleted":true,"id":"0rJf4nz36yEZg2zbeKDba","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":630.5,"y":228,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":142472527,"groupIds":["rZKDvg7YKfG9oHP82cudH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"_kQwilXDXKZFR2PtPYdN_","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"5","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"5"},{"type":"rectangle","version":128,"versionNonce":919912466,"isDeleted":true,"id":"TYqgrS7MVCDyXgTBUof2z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":420,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1450900623,"groupIds":["U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{}},{"type":"text","version":136,"versionNonce":1575256590,"isDeleted":true,"id":"EM8ByicYxiVyFWTjY7F0v","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":424,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":74,"height":19,"seed":539760609,"groupIds":["U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{},"fontSize":16,"fontFamily":2,"text":"Developer","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Developer"},{"type":"line","version":126,"versionNonce":1109847506,"isDeleted":true,"id":"AKKBb6Y5tEIZWOevQlLQw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":449,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1512739503,"groupIds":["K8d5DhR8_PNGXDPvOqVfM","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":126,"versionNonce":174395470,"isDeleted":true,"id":"Dkr7uNNPrn_WRd-elpKU0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":465.5,"y":-52,"strokeColor":"#00000000","backgroundColor":"#000","width":4.989999771118164,"height":5,"seed":562066369,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[0.9712505340576172,-0.1965627670288086],[1.7625007629394531,-0.7325000762939453],[2.2950000762939453,-1.5271873474121094],[2.489999771118164,-2.5],[2.2950000762939453,-3.4728126525878906],[1.7625007629394531,-4.267499923706055],[0.9712505340576172,-4.80343770980835],[0,-5],[-0.9728126525878906,-4.80343770980835],[-1.7674999237060547,-4.267499923706055],[-2.3034372329711914,-3.4728126525878906],[-2.5,-2.5],[-2.3034372329711914,-1.5271873474121094],[-1.7674999237060547,-0.7325000762939453],[-0.9728126525878906,-0.1965627670288086],[0,0],[0,0]]},{"type":"line","version":126,"versionNonce":107832210,"isDeleted":true,"id":"uQ-etcTLk09BlvRW4HgF7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":458,"y":-53,"strokeColor":"#00000000","backgroundColor":"#000","width":5.989999771118164,"height":6,"seed":197289167,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[1.1674995422363281,-0.23531246185302734],[2.1175003051757812,-0.8774995803833008],[2.7562503814697266,-1.830937385559082],[2.989999771118164,-3],[2.7562503814697266,-4.169062614440918],[2.1175003051757812,-5.122499942779541],[1.1674995422363281,-5.764687538146973],[0,-6],[-1.169062614440918,-5.764687538146973],[-2.122499942779541,-5.122499942779541],[-2.7646875381469727,-4.169062614440918],[-3,-3],[-2.7646875381469727,-1.830937385559082],[-2.122499942779541,-0.8774995803833008],[-1.169062614440918,-0.23531246185302734],[0,0],[0,0]]},{"type":"line","version":126,"versionNonce":1815729806,"isDeleted":true,"id":"ZGf4wiy2xRo8kbHiZvHAO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":465.5,"y":-50,"strokeColor":"#00000000","backgroundColor":"#000","width":11,"height":5,"seed":1402885025,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-1.6314058303833008,0.17234420776367188],[-3.4362497329711914,0.6887502670288086],[-4.897968292236328,1.5482816696166992],[-5.338730812072754,2.106426239013672],[-5.5,2.75],[-5.5,5],[5.5,5],[5.5,2.75],[5.5,2.75],[5.3387298583984375,2.106426239013672],[4.897968292236328,1.5482816696166992],[3.436250686645508,0.6887502670288086],[1.6314067840576172,0.17234420776367188],[0,0],[0,0]]},{"type":"line","version":126,"versionNonce":1843339602,"isDeleted":true,"id":"vwLofSoJ4tkD5cjUQ-9OC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":458,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":9.369999885559082,"height":6,"seed":2061169391,"groupIds":["5zuHH6g7_6MZroZNqkN6A","U8woTKgdrEwJaRN1Aomu3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.9697456359863281,0.054823875427246094],[-2.076718807220459,0.21921920776367188],[-4.37375020980835,0.8762502670288086],[-5.399511814117432,1.36865234375],[-6.233906269073486,1.9701566696166992],[-6.794785261154175,2.680644989013672],[-7,3.5],[-7,6],[0,6],[0,3.75],[0,3.75],[0.08343791961669922,3.0081253051757812],[0.4200000762939453,2.119999885559082],[1.1390628814697266,1.1793746948242188],[2.369999885559082,0.2799997329711914],[1.1062498092651367,0.07250022888183594],[0,0],[0,0]]},{"type":"rectangle","version":132,"versionNonce":1008456910,"isDeleted":true,"id":"8lyzvlLPRT1neo7PNl089","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":734074543,"groupIds":["4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"round","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"}},{"type":"text","version":140,"versionNonce":64169746,"isDeleted":true,"id":"Kk08iw9Jk2r_Bzsvjt5n1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":524,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":74,"height":19,"seed":1032073153,"groupIds":["4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"fontSize":16,"fontFamily":2,"text":"Developer","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Developer"},{"type":"line","version":130,"versionNonce":866388750,"isDeleted":true,"id":"es-hr1HCnkN1aSsNv04sB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":549,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1877502159,"groupIds":["XDjRWsuEDPeRzPM0kU76T","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":130,"versionNonce":1354790098,"isDeleted":true,"id":"Q9Yz_yZmLRgNwA0Mcu3Zf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":565.5,"y":-52,"strokeColor":"#00000000","backgroundColor":"#000","width":4.989999771118164,"height":5,"seed":801804193,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[0.9712505340576172,-0.1965627670288086],[1.7625007629394531,-0.7325000762939453],[2.2950000762939453,-1.5271873474121094],[2.489999771118164,-2.5],[2.2950000762939453,-3.4728126525878906],[1.7625007629394531,-4.267499923706055],[0.9712505340576172,-4.80343770980835],[0,-5],[-0.9728126525878906,-4.80343770980835],[-1.7674999237060547,-4.267499923706055],[-2.3034372329711914,-3.4728126525878906],[-2.5,-2.5],[-2.3034372329711914,-1.5271873474121094],[-1.7674999237060547,-0.7325000762939453],[-0.9728126525878906,-0.1965627670288086],[0,0],[0,0]]},{"type":"line","version":130,"versionNonce":1900771662,"isDeleted":true,"id":"2BzQDMLI6fWdDtqNWcI4C","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":558,"y":-53,"strokeColor":"#00000000","backgroundColor":"#000","width":5.989999771118164,"height":6,"seed":1939896047,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[1.1674995422363281,-0.23531246185302734],[2.1175003051757812,-0.8774995803833008],[2.7562503814697266,-1.830937385559082],[2.989999771118164,-3],[2.7562503814697266,-4.169062614440918],[2.1175003051757812,-5.122499942779541],[1.1674995422363281,-5.764687538146973],[0,-6],[-1.169062614440918,-5.764687538146973],[-2.122499942779541,-5.122499942779541],[-2.7646875381469727,-4.169062614440918],[-3,-3],[-2.7646875381469727,-1.830937385559082],[-2.122499942779541,-0.8774995803833008],[-1.169062614440918,-0.23531246185302734],[0,0],[0,0]]},{"type":"line","version":130,"versionNonce":910035602,"isDeleted":true,"id":"VmqYStP0_LLB8uoPsOA_X","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":565.5,"y":-50,"strokeColor":"#00000000","backgroundColor":"#000","width":11,"height":5,"seed":1845097345,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-1.6314058303833008,0.17234420776367188],[-3.4362497329711914,0.6887502670288086],[-4.897968292236328,1.5482816696166992],[-5.338730812072754,2.106426239013672],[-5.5,2.75],[-5.5,5],[5.5,5],[5.5,2.75],[5.5,2.75],[5.3387298583984375,2.106426239013672],[4.897968292236328,1.5482816696166992],[3.436250686645508,0.6887502670288086],[1.6314067840576172,0.17234420776367188],[0,0],[0,0]]},{"type":"line","version":130,"versionNonce":1550524302,"isDeleted":true,"id":"r4hN_E-Fc0Ig40ByeOjdq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":558,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":9.369999885559082,"height":6,"seed":2104606991,"groupIds":["B0C5TjghhcUZfFfOKrANO","4MJpwYGKEmLPjhC4L-XaG"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"zNWBGw3v8bijUbxL8x0YA"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.9697456359863281,0.054823875427246094],[-2.076718807220459,0.21921920776367188],[-4.37375020980835,0.8762502670288086],[-5.399511814117432,1.36865234375],[-6.233906269073486,1.9701566696166992],[-6.794785261154175,2.680644989013672],[-7,3.5],[-7,6],[0,6],[0,3.75],[0,3.75],[0.08343791961669922,3.0081253051757812],[0.4200000762939453,2.119999885559082],[1.1390628814697266,1.1793746948242188],[2.369999885559082,0.2799997329711914],[1.1062498092651367,0.07250022888183594],[0,0],[0,0]]},{"id":"k6zdvt2zAnaMd8R6qj8Rx","type":"text","x":546.8183925010219,"y":537.2186897277455,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1872986753,"version":110,"versionNonce":1258481746,"isDeleted":true,"boundElements":null,"updated":1697744829079,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"rectangle","version":123,"versionNonce":154926542,"isDeleted":true,"id":"z2UJS9aaoqYGgVA3eupzG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":120,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1972446351,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"}],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"container"}},{"type":"text","version":120,"versionNonce":921046546,"isDeleted":true,"id":"o1vDnEM4wH0z6uoeTTS6Y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":136,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":33,"seed":1122791393,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow"}],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Source \nRepositories ","baseline":30,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Source \nRepositories "},{"type":"text","version":109,"versionNonce":483857422,"isDeleted":true,"id":"4AWkHeZ1eGEI_8hWxHgoB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":193,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":71023279,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":110,"versionNonce":249461714,"isDeleted":true,"id":"XS6f5cSIQWdqTx8UbrMKZ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":220,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":980798401,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":109,"versionNonce":825582158,"isDeleted":true,"id":"Rbmm8OMBPPYtrIy5lF4oL","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":136,"y":228,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":695110863,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":118,"versionNonce":822292882,"isDeleted":true,"id":"jPPUQCeo821lbiK1s-bTe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":301.9375,"y":138.0625,"strokeColor":"transparent","backgroundColor":"#4285f4","width":19.875,"height":19.875,"seed":1411951521,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,19.875],[-19.875,19.875],[-19.875,0],[0,0],[0,0]]},{"type":"line","version":118,"versionNonce":959441038,"isDeleted":true,"id":"wnWtOA1uCxc9iB27eC1Bp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292,"y":142.64687538146973,"strokeColor":"transparent","backgroundColor":"#4285f4","width":15.29062557220459,"height":9.937498092651367,"seed":1623333615,"groupIds":["7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.329864501953125,0.013018131256103516],[-0.652587890625,0.05141592025756836],[-0.9671821594238281,0.11420249938964844],[-1.2726554870605469,0.20038986206054688],[-1.568023681640625,0.308990478515625],[-1.852294921875,0.4390130043029785],[-2.124481201171875,0.5894713401794434],[-2.383594512939453,0.7593746185302734],[-2.628643035888672,0.9477348327636719],[-2.858642578125,1.153564453125],[-3.072601318359375,1.3758716583251953],[-3.26953125,1.6136722564697266],[-3.448444366455078,1.8659725189208984],[-3.608348846435547,2.131786346435547],[-3.748260498046875,2.410125732421875],[-3.8671875,2.6999988555908203],[-4.026562213897705,2.6999988555908203],[-4.026562213897705,2.6999988555908203],[-4.21263313293457,2.7047128677368164],[-4.396277904510498,2.7187023162841797],[-4.577268600463867,2.74173641204834],[-4.755376815795898,2.773590087890625],[-4.930375099182129,2.814032554626465],[-5.102035045623779,2.8628368377685547],[-5.434423446655273,2.984619140625],[-5.750717639923096,3.137105941772461],[-6.049090385437012,3.3184757232666016],[-6.327714920043945,3.526897430419922],[-6.584765434265137,3.7605457305908203],[-6.818414688110352,4.017597198486328],[-7.026837348937988,4.296220779418945],[-7.208205223083496,4.594594955444336],[-7.360692977905273,4.910888671875],[-7.482474327087402,5.243276596069336],[-7.53127908706665,5.4149370193481445],[-7.571722030639648,5.589934349060059],[-7.603575706481934,5.768043518066406],[-7.62661075592041,5.949033737182617],[-7.640598773956299,6.132678985595703],[-7.645312309265137,6.318750381469727],[-7.640598773956299,6.504819869995117],[-7.62661075592041,6.688464164733887],[-7.603575706481934,6.869455337524414],[-7.571722030639648,7.047563552856445],[-7.53127908706665,7.222562789916992],[-7.482474327087402,7.394221305847168],[-7.360692977905273,7.72661018371582],[-7.208205223083496,8.042905807495117],[-7.026837348937988,8.341277122497559],[-6.818414688110352,8.619901657104492],[-6.584765434265137,8.876952171325684],[-6.327714920043945,9.110601425170898],[-6.049090385437012,9.319025039672852],[-5.750717639923096,9.500391006469727],[-5.434423446655273,9.65287971496582],[-5.102035045623779,9.774660110473633],[-4.930375099182129,9.823465347290039],[-4.755376815795898,9.863908767700195],[-4.577268600463867,9.895761489868164],[-4.396277904510498,9.918798446655273],[-4.21263313293457,9.932785034179688],[-4.026562213897705,9.937498092651367],[4.026561737060547,9.937498092651367],[4.026561737060547,9.937498092651367],[4.21263313293457,9.932785034179688],[4.396278381347656,9.918798446655273],[4.577268600463867,9.895761489868164],[4.755378723144531,9.863908767700195],[4.9303741455078125,9.823465347290039],[5.1020355224609375,9.774660110473633],[5.434425354003906,9.65287971496582],[5.7507171630859375,9.500391006469727],[6.049091339111328,9.319025039672852],[6.327716827392578,9.110601425170898],[6.584766387939453,8.876952171325684],[6.818416595458984,8.619901657104492],[7.026836395263672,8.341277122497559],[7.2082061767578125,8.042905807495117],[7.360694885253906,7.72661018371582],[7.482475280761719,7.394221305847168],[7.531280517578125,7.222562789916992],[7.571723937988281,7.047563552856445],[7.60357666015625,6.869455337524414],[7.626609802246094,6.688464164733887],[7.640598297119141,6.504819869995117],[7.645313262939453,6.318750381469727],[7.640598297119141,6.132678985595703],[7.626609802246094,5.949033737182617],[7.60357666015625,5.768043518066406],[7.571723937988281,5.589934349060059],[7.531280517578125,5.4149370193481445],[7.482475280761719,5.243276596069336],[7.360694885253906,4.910888671875],[7.2082061767578125,4.594594955444336],[7.026836395263672,4.296220779418945],[6.818416595458984,4.017597198486328],[6.584766387939453,3.7605457305908203],[6.327716827392578,3.526897430419922],[6.049091339111328,3.3184757232666016],[5.7507171630859375,3.137105941772461],[5.434425354003906,2.984619140625],[5.1020355224609375,2.8628368377685547],[4.9303741455078125,2.814032554626465],[4.755378723144531,2.773590087890625],[4.577268600463867,2.74173641204834],[4.396278381347656,2.7187023162841797],[4.21263313293457,2.7047128677368164],[4.026561737060547,2.6999988555908203],[3.8671875,2.6999988555908203],[3.8671875,2.6999988555908203],[3.748260498046875,2.410125732421875],[3.608348846435547,2.131786346435547],[3.448444366455078,1.8659725189208984],[3.26953125,1.6136722564697266],[3.072601318359375,1.3758716583251953],[2.858642578125,1.153564453125],[2.628643035888672,0.9477348327636719],[2.383594512939453,0.7593746185302734],[2.124481201171875,0.5894713401794434],[1.852294921875,0.4390130043029785],[1.568023681640625,0.308990478515625],[1.2726554870605469,0.20038986206054688],[0.9671821594238281,0.11420249938964844],[0.652587890625,0.05141592025756836],[0.329864501953125,0.013018131256103516],[0,0],[0,0]]},{"type":"line","version":118,"versionNonce":545992530,"isDeleted":true,"id":"AXAnd-RlpMjmEMNe7iLGL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.9734377861023,"y":145.34687423706055,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.29062557220459,"height":9.937498092651367,"seed":406097793,"groupIds":["PYiwqszrmiOJ4wmq8-O5G","7LxDMulsif7cVqRN1RhNr","6Q9_vbAqAkMudOmvp55ea"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"t4TGrO1ZoAsJ_419-MJ1o","label":"Cloud Source Repositories","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.15937471389770508,0],[0.15937471389770508,0],[0.2783017158508301,-0.2898731231689453],[0.4182133674621582,-0.5682125091552734],[0.578117847442627,-0.8340263366699219],[0.7570309638977051,-1.0863265991210938],[0.9539608955383301,-1.324127197265625],[1.167919635772705,-1.5464344024658203],[1.3979191780090332,-1.7522640228271484],[1.642967700958252,-1.9406242370605469],[1.90208101272583,-2.110527515411377],[2.174267292022705,-2.260985851287842],[2.45853853225708,-2.3910083770751953],[2.753906726837158,-2.4996089935302734],[3.059380054473877,-2.585796356201172],[3.373974323272705,-2.648582935333252],[3.69669771194458,-2.686980724334717],[4.026562213897705,-2.6999988555908203],[4.35642671585083,-2.686980724334717],[4.679150104522705,-2.648582935333252],[4.993744373321533,-2.585796356201172],[5.299217700958252,-2.4996089935302734],[5.59458589553833,-2.3910083770751953],[5.878857135772705,-2.260985851287842],[6.15104341506958,-2.110527515411377],[6.410156726837158,-1.9406242370605469],[6.655205249786377,-1.7522640228271484],[6.885204792022705,-1.5464344024658203],[7.09916353225708,-1.324127197265625],[7.296093463897705,-1.0863265991210938],[7.475006580352783,-0.8340263366699219],[7.634911060333252,-0.5682125091552734],[7.77482271194458,-0.2898731231689453],[7.893749713897705,0],[8.053123950958252,0],[8.053123950958252,0],[8.239195346832275,0.004714012145996094],[8.422840595245361,0.018703460693359375],[8.603830814361572,0.04173755645751953],[8.781940937042236,0.07359123229980469],[8.956936359405518,0.11403369903564453],[9.128597736358643,0.16283798217773438],[9.460987567901611,0.2846202850341797],[9.777279376983643,0.4371070861816406],[10.075653553009033,0.6184768676757812],[10.354279041290283,0.8268985748291016],[10.611328601837158,1.060546875],[10.84497880935669,1.3175983428955078],[11.053398609161377,1.596221923828125],[11.234768390655518,1.8945960998535156],[11.387257099151611,2.2108898162841797],[11.509037494659424,2.5432777404785156],[11.55784273147583,2.714938163757324],[11.598286151885986,2.8899354934692383],[11.630138874053955,3.068044662475586],[11.653172016143799,3.249034881591797],[11.667160511016846,3.432680130004883],[11.671875476837158,3.6187515258789062],[11.667160511016846,3.804821014404297],[11.653172016143799,3.9884653091430664],[11.630138874053955,4.169456481933594],[11.598286151885986,4.347564697265625],[11.55784273147583,4.522563934326172],[11.509037494659424,4.694222450256348],[11.387257099151611,5.026611328125],[11.234768390655518,5.342906951904297],[11.053398609161377,5.641278266906738],[10.84497880935669,5.919902801513672],[10.611328601837158,6.176953315734863],[10.354279041290283,6.410602569580078],[10.075653553009033,6.619026184082031],[9.777279376983643,6.800392150878906],[9.460987567901611,6.952880859375],[9.128597736358643,7.0746612548828125],[8.956936359405518,7.123466491699219],[8.781940937042236,7.163909912109375],[8.603830814361572,7.195762634277344],[8.422840595245361,7.218799591064453],[8.239195346832275,7.232786178588867],[8.053123950958252,7.237499237060547],[0,7.237499237060547],[0,7.237499237060547],[-0.18607091903686523,7.232786178588867],[-0.36971569061279297,7.218799591064453],[-0.5507063865661621,7.195762634277344],[-0.7288146018981934,7.163909912109375],[-0.9038128852844238,7.123466491699219],[-1.0754728317260742,7.0746612548828125],[-1.4078612327575684,6.952880859375],[-1.7241554260253906,6.800392150878906],[-2.0225281715393066,6.619026184082031],[-2.3011527061462402,6.410602569580078],[-2.5582032203674316,6.176953315734863],[-2.7918524742126465,5.919902801513672],[-3.000275135040283,5.641278266906738],[-3.181643009185791,5.342906951904297],[-3.3341307640075684,5.026611328125],[-3.4559121131896973,4.694222450256348],[-3.5047168731689453,4.522563934326172],[-3.5451598167419434,4.347564697265625],[-3.5770134925842285,4.169456481933594],[-3.600048542022705,3.9884653091430664],[-3.6140365600585938,3.804821014404297],[-3.6187500953674316,3.6187515258789062],[-3.6140365600585938,3.432680130004883],[-3.600048542022705,3.249034881591797],[-3.5770134925842285,3.068044662475586],[-3.5451598167419434,2.8899354934692383],[-3.5047168731689453,2.714938163757324],[-3.4559121131896973,2.5432777404785156],[-3.3341307640075684,2.2108898162841797],[-3.181643009185791,1.8945960998535156],[-3.000275135040283,1.596221923828125],[-2.7918524742126465,1.3175983428955078],[-2.5582032203674316,1.060546875],[-2.3011527061462402,0.8268985748291016],[-2.0225281715393066,0.6184768676757812],[-1.7241554260253906,0.4371070861816406],[-1.4078612327575684,0.2846202850341797],[-1.0754728317260742,0.16283798217773438],[-0.9038128852844238,0.11403369903564453],[-0.7288146018981934,0.07359123229980469],[-0.5507063865661621,0.04173755645751953],[-0.36971569061279297,0.018703460693359375],[-0.18607091903686523,0.004714012145996094],[0,0],[0,0]]},{"id":"GEETmhI04uB-ATh_54zNc","type":"text","x":198.75295764789348,"y":235.3471243150013,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1490353135,"version":110,"versionNonce":1686087374,"isDeleted":true,"boundElements":null,"updated":1697744829079,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"rectangle","version":134,"versionNonce":1640854802,"isDeleted":true,"id":"xLgm8STTmBoi2noXkeBgB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":260,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1707782223,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow"},{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow"},{"id":"tzltvz06MYsY6b9U8_x56","type":"arrow"}],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":126,"versionNonce":62758158,"isDeleted":true,"id":"67mB0ysx2uIMadWnnwogP","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":276,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":900890657,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":109,"versionNonce":1447101138,"isDeleted":true,"id":"mDWzCVLzScAS8FlszVJxa","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":318,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":349032047,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":109,"versionNonce":1818413902,"isDeleted":true,"id":"UrVI046bXViPoPwcX38jA","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":345,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1116722177,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":109,"versionNonce":410835090,"isDeleted":true,"id":"k-kpC1RkWMfw7jXjZKVzo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":353,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1309157519,"groupIds":["_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":125,"versionNonce":1556623758,"isDeleted":true,"id":"9W7qdwd3FX5dHliEgRl9r","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":292.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":341289953,"groupIds":["BlvlnjADUJqveEMw6MxJ4","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":125,"versionNonce":1480062546,"isDeleted":true,"id":"3YyEimQe5UpwHAKqQjayQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":286.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1060257455,"groupIds":["Y8qBqUjTbYesUsl3KLAGx","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":125,"versionNonce":1613156302,"isDeleted":true,"id":"9oHapoHmHjIeTFKzFR0Yl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":293.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":857311169,"groupIds":["IHEhD0D_DpRcnceyUUfUa","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":125,"versionNonce":910777362,"isDeleted":true,"id":"zdOjHpwFgpRtDle1HA139","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":284.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":1257541839,"groupIds":["IHEhD0D_DpRcnceyUUfUa","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":125,"versionNonce":848799246,"isDeleted":true,"id":"_9zT0ankzZpeluu9CBFr0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":291.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":2029316001,"groupIds":["IHEhD0D_DpRcnceyUUfUa","_qSL7eT4DTL_hY5ClALu2","xxoABigzgNfWeg-F-Ddj6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"d4dZQFNnizOH4OIitFRg0","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":165,"versionNonce":547883474,"isDeleted":true,"id":"wdJbcKQ7xeYqt5eFLleXz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":640,"y":140,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":515423823,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"container"}},{"type":"text","version":156,"versionNonce":622048334,"isDeleted":true,"id":"pPqYJBtRLhDrbu_5iSbGK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":656,"y":156,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1425297953,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"Binary Authorization","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Binary Authorization"},{"type":"text","version":117,"versionNonce":778764178,"isDeleted":true,"id":"u1R5P2xj1yICzOEIATkTW","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":536,"y":198,"strokeColor":"#202124","backgroundColor":"transparent","width":90,"height":19,"seed":1623858287,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":117,"versionNonce":24377998,"isDeleted":true,"id":"aAHWDRc-e_7or1oNdNmKh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":536,"y":225,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":2110219777,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":117,"versionNonce":2076786002,"isDeleted":true,"id":"_rXMayfVA8JEL8yw1zi1K","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":536,"y":233,"strokeColor":"#202124","backgroundColor":"transparent","width":91,"height":14,"seed":826979983,"groupIds":["oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"round","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":11,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":154,"versionNonce":1852930254,"isDeleted":true,"id":"bK5JdwD9MWZB7L2uHW0g9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":852.6638898849487,"y":167.52171230316162,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.067220687866211,"height":13.477689743041992,"seed":1724710369,"groupIds":["YU1J8xw87tjmiAN0hnbMS","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3271865844726562,0],[2.3271865844726562,0],[2.3155136108398438,0.6361570358276367],[2.2813262939453125,1.2466144561767578],[2.225862503051758,1.8318605422973633],[2.1503658294677734,2.3923826217651367],[2.0560789108276367,2.9286632537841797],[1.9442415237426758,3.4411935806274414],[1.8160982131958008,3.930455207824707],[1.6728887557983398,4.396936416625977],[1.3462371826171875,5.263503074645996],[0.9742250442504883,6.044783592224121],[0.5667839050292969,6.744668006896973],[0.1338481903076172,7.367043495178223],[-0.31464576721191406,7.915802955627441],[-0.7687664031982422,8.394835472106934],[-1.2185783386230469,8.808030128479004],[-1.6541500091552734,9.159279823303223],[-2.0655431747436523,9.452471733093262],[-2.4428253173828125,9.691496849060059],[-2.776063919067383,9.880244255065918],[-3.055323600769043,10.022604942321777],[-3.055323600769043,11.807255744934082],[-2.755502700805664,11.707316398620605],[-2.755502700805664,11.707316398620605],[-2.712222099304199,11.691277503967285],[-2.6347970962524414,11.661320686340332],[-2.5255584716796875,11.616576194763184],[-2.3868331909179688,11.556178092956543],[-2.220950126647949,11.47925853729248],[-2.030240058898926,11.3849515914917],[-1.8170318603515625,11.272383689880371],[-1.5836553573608398,11.1406888961792],[-1.0657119750976562,10.816454887390137],[-0.49504566192626953,10.405303001403809],[0.109710693359375,9.900286674499512],[0.7299222946166992,9.294468879699707],[1.0400018692016602,8.951586723327637],[1.3469552993774414,8.580899238586426],[1.6484565734863281,8.181540489196777],[1.9421758651733398,7.752638816833496],[2.2257823944091797,7.293332099914551],[2.4969482421875,6.802746772766113],[2.753342628479004,6.280014991760254],[2.9926376342773438,5.724270820617676],[3.212505340576172,5.134648323059082],[3.4106130599975586,4.510275840759277],[3.5846338272094727,3.850287437438965],[3.732235908508301,3.1538143157958984],[3.8510942459106445,2.419989585876465],[3.938876152038574,1.647944450378418],[3.9932546615600586,0.8368129730224609],[4.011897087097168,-0.014277458190917969],[4.011897087097168,-1.6704339981079102],[-0.8423547744750977,-1.6704339981079102],[0,0],[0,0]]},{"type":"line","version":154,"versionNonce":102351634,"isDeleted":true,"id":"To4E9WoQeCK8HoFfrZaXk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":851.8072566986084,"y":165.8512783050537,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.052944183349609,"height":19.131469160318375,"seed":1995639983,"groupIds":["L3pheg2oEI7odsuPbIZ_r","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.8280792236328125,-1.5704936981201172],[0.8280792236328125,-9.38013020157814],[-0.4854249954223633,-8.366447925567627],[-0.4854249954223633,-8.366447925567627],[-1.0193290710449219,-7.942404866218567],[-1.552311897277832,-7.47975492477417],[-2.079440116882324,-6.980045318603516],[-2.595775604248047,-6.444823980331421],[-3.0963850021362305,-5.875638484954834],[-3.57633113861084,-5.274036884307861],[-4.030677795410156,-4.641565799713135],[-4.454490661621094,-3.97977352142334],[-4.842833995819092,-3.290207862854004],[-5.190771579742432,-2.574415683746338],[-5.493367671966553,-1.8339462280273438],[-5.7456865310668945,-1.0703449249267578],[-5.942792892456055,-0.28516101837158203],[-6.079751014709473,0.5200586318969727],[-6.151625156402588,1.343766212463379],[-6.15347957611084,2.184414863586426],[-6.126155376434326,2.7413511276245117],[-6.066059589385986,3.292348861694336],[-5.973881721496582,3.836151123046875],[-5.850311756134033,4.3715057373046875],[-5.696040630340576,4.897154808044434],[-5.511757850646973,5.411846160888672],[-5.298153877258301,5.914322853088379],[-5.0559186935424805,6.403331756591797],[-4.785742282867432,6.877616882324219],[-4.488315582275391,7.33592414855957],[-4.164328098297119,7.776998519897461],[-3.8144702911376953,8.199583053588867],[-3.439432144165039,8.602428436279297],[-3.039902687072754,8.984272003173828],[-2.616575241088867,9.343866348266602],[-2.1701364517211914,9.679952621459961],[-2.0416412353515625,9.751338958740234],[-1.1850080490112305,8.366447448730469],[-1.2992267608642578,8.295063018798828],[-1.2992267608642578,8.295063018798828],[-1.7935752868652344,7.897085189819336],[-2.2557992935180664,7.466983795166016],[0.8994646072387695,5.6823320388793945],[0.8994646072387695,1.6847124099731445],[0,0],[0,0]]},{"type":"line","version":154,"versionNonce":1403334414,"isDeleted":true,"id":"Q3q4AQ1Rz85uehe3PzE36","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":850.9934558868408,"y":167.52171230316162,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.6835217475891113,"height":11.964307069778442,"seed":1863621057,"groupIds":["L3pheg2oEI7odsuPbIZ_r","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829079,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":154,"versionNonce":131305682,"isDeleted":true,"id":"ghl2PwLIMIrZE6R49Oj0x","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":850.9934558868408,"y":167.52171230316162,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.6835217475891113,"height":11.964307069778442,"seed":762027727,"groupIds":["e6Fw3u0vLi4Fy2r1FinA6","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":154,"versionNonce":1032330574,"isDeleted":true,"id":"jjTCQ4MRJf2eWkQuWVF5y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":849.6085662841797,"y":177.61570358276367,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.637927174568176,"height":13.63473892211914,"seed":1740487073,"groupIds":["ESTghUcPXoLSsqYmZ4ncB","oyjUDIsKDQhTAdfByi1Q_","vrVAZh2mvPoDVLeLf5Js8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"2U_pB52jYPVp4fY61XVUs","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.6996078491210938,-0.3905677795410156],[-1.362553596496582,-0.8270187377929688],[-1.9873113632202148,-1.3067207336425781],[-2.572352886199951,-1.8270378112792969],[-3.116152763366699,-2.385334014892578],[-3.617182731628418,-2.978975296020508],[-4.073917865753174,-3.6053237915039062],[-4.484830379486084,-4.261747360229492],[-4.84839391708374,-4.945611953735352],[-5.163082122802734,-5.654278755187988],[-5.427367210388184,-6.385114669799805],[-5.639723539352417,-7.135483741760254],[-5.798623561859131,-7.902751922607422],[-5.902541399002075,-8.684283256530762],[-5.949949741363525,-9.477441787719727],[-5.939321756362915,-10.279594421386719],[-5.939321756362915,-11.850088119506836],[-7.624033451080322,-11.850088119506836],[-7.624033451080322,-10.279594421386719],[-7.624033451080322,-10.279594421386719],[-7.637927174568176,-9.323471069335938],[-7.579249858856201,-8.379413604736328],[-7.450050592422485,-7.45079231262207],[-7.252379655838013,-6.540971755981445],[-6.988286018371582,-5.6533203125],[-6.659819602966309,-4.791204452514648],[-6.269029378890991,-3.9579906463623047],[-5.817965745925903,-3.1570472717285156],[-5.308677673339844,-2.391742706298828],[-4.7432146072387695,-1.6654434204101562],[-4.123627185821533,-0.9815139770507812],[-3.451963424682617,-0.3433208465576172],[-2.730273723602295,0.24576377868652344],[-1.9606080055236816,0.7823753356933594],[-1.145014762878418,1.2631454467773438],[-0.28554439544677734,1.6847114562988281],[-0.014278411865234375,1.7846508026123047]]},{"type":"rectangle","version":152,"versionNonce":1418569362,"isDeleted":true,"id":"naTolb6WaI_4qh01Vb529","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":720,"y":260,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1847933057,"groupIds":["mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"round","boundElements":[{"id":"7ovtTjRzZj2EWDoBAM3Je","type":"arrow"}],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"container"}},{"type":"text","version":146,"versionNonce":1098072974,"isDeleted":true,"id":"bVJU8cxnqdqPRmwxxtwIY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":736,"y":276,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1548307471,"groupIds":["mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"Binary Authorization","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Binary Authorization"},{"type":"line","version":145,"versionNonce":889128018,"isDeleted":true,"id":"EMX6axmwwTaGWYJ8JsPBR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":932.6638898849487,"y":287.5217123031616,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.067220687866211,"height":13.477689743041992,"seed":1624014945,"groupIds":["ahZmMdnKVl6pltCjJsnmR","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3271865844726562,0],[2.3271865844726562,0],[2.3155136108398438,0.6361570358276367],[2.2813262939453125,1.2466144561767578],[2.225862503051758,1.8318605422973633],[2.1503658294677734,2.3923826217651367],[2.0560789108276367,2.9286632537841797],[1.9442415237426758,3.4411935806274414],[1.8160982131958008,3.930455207824707],[1.6728887557983398,4.396936416625977],[1.3462371826171875,5.263503074645996],[0.9742250442504883,6.044783592224121],[0.5667839050292969,6.744668006896973],[0.1338481903076172,7.367043495178223],[-0.31464576721191406,7.915802955627441],[-0.7687664031982422,8.394835472106934],[-1.2185783386230469,8.808030128479004],[-1.6541500091552734,9.159279823303223],[-2.0655431747436523,9.452471733093262],[-2.4428253173828125,9.691496849060059],[-2.776063919067383,9.880244255065918],[-3.055323600769043,10.022604942321777],[-3.055323600769043,11.807255744934082],[-2.755502700805664,11.707316398620605],[-2.755502700805664,11.707316398620605],[-2.712222099304199,11.691277503967285],[-2.6347970962524414,11.661320686340332],[-2.5255584716796875,11.616576194763184],[-2.3868331909179688,11.556178092956543],[-2.220950126647949,11.47925853729248],[-2.030240058898926,11.3849515914917],[-1.8170318603515625,11.272383689880371],[-1.5836553573608398,11.1406888961792],[-1.0657119750976562,10.816454887390137],[-0.49504566192626953,10.405303001403809],[0.109710693359375,9.900286674499512],[0.7299222946166992,9.294468879699707],[1.0400018692016602,8.951586723327637],[1.3469552993774414,8.580899238586426],[1.6484565734863281,8.181540489196777],[1.9421758651733398,7.752638816833496],[2.2257823944091797,7.293332099914551],[2.4969482421875,6.802746772766113],[2.753342628479004,6.280014991760254],[2.9926376342773438,5.724270820617676],[3.212505340576172,5.134648323059082],[3.4106130599975586,4.510275840759277],[3.5846338272094727,3.850287437438965],[3.732235908508301,3.1538143157958984],[3.8510942459106445,2.419989585876465],[3.938876152038574,1.647944450378418],[3.9932546615600586,0.8368129730224609],[4.011897087097168,-0.014277458190917969],[4.011897087097168,-1.6704339981079102],[-0.8423547744750977,-1.6704339981079102],[0,0],[0,0]]},{"type":"line","version":145,"versionNonce":1637851598,"isDeleted":true,"id":"4Rgz5mPyWJbEckISWZFiw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":931.8072566986084,"y":285.8512783050537,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.052944183349609,"height":19.131469160318375,"seed":1082323503,"groupIds":["2ro6xTgbt40tkQT6M24ZK","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.8280792236328125,-1.5704936981201172],[0.8280792236328125,-9.38013020157814],[-0.4854249954223633,-8.366447925567627],[-0.4854249954223633,-8.366447925567627],[-1.0193290710449219,-7.942404866218567],[-1.552311897277832,-7.47975492477417],[-2.079440116882324,-6.980045318603516],[-2.595775604248047,-6.444823980331421],[-3.0963850021362305,-5.875638484954834],[-3.57633113861084,-5.274036884307861],[-4.030677795410156,-4.641565799713135],[-4.454490661621094,-3.97977352142334],[-4.842833995819092,-3.290207862854004],[-5.190771579742432,-2.574415683746338],[-5.493367671966553,-1.8339462280273438],[-5.7456865310668945,-1.0703449249267578],[-5.942792892456055,-0.28516101837158203],[-6.079751014709473,0.5200586318969727],[-6.151625156402588,1.343766212463379],[-6.15347957611084,2.184414863586426],[-6.126155376434326,2.7413511276245117],[-6.066059589385986,3.292348861694336],[-5.973881721496582,3.836151123046875],[-5.850311756134033,4.3715057373046875],[-5.696040630340576,4.897154808044434],[-5.511757850646973,5.411846160888672],[-5.298153877258301,5.914322853088379],[-5.0559186935424805,6.403331756591797],[-4.785742282867432,6.877616882324219],[-4.488315582275391,7.33592414855957],[-4.164328098297119,7.776998519897461],[-3.8144702911376953,8.199583053588867],[-3.439432144165039,8.602428436279297],[-3.039902687072754,8.984272003173828],[-2.616575241088867,9.343866348266602],[-2.1701364517211914,9.679952621459961],[-2.0416412353515625,9.751338958740234],[-1.1850080490112305,8.366447448730469],[-1.2992267608642578,8.295063018798828],[-1.2992267608642578,8.295063018798828],[-1.7935752868652344,7.897085189819336],[-2.2557992935180664,7.466983795166016],[0.8994646072387695,5.6823320388793945],[0.8994646072387695,1.6847124099731445],[0,0],[0,0]]},{"type":"line","version":145,"versionNonce":1123985938,"isDeleted":true,"id":"feTFNzevzJymCGgKE3bfi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":930.9934558868408,"y":287.5217123031616,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.6835217475891113,"height":11.964307069778442,"seed":855624769,"groupIds":["2ro6xTgbt40tkQT6M24ZK","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":145,"versionNonce":1898330126,"isDeleted":true,"id":"U8_S-xD5G6ShXhChfTdH8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":930.9934558868408,"y":287.5217123031616,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.6835217475891113,"height":11.964307069778442,"seed":1457706063,"groupIds":["EZVDA10mwKOAas4r1bT65","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":145,"versionNonce":1166251986,"isDeleted":true,"id":"e3ILYmBHudGAy7JEpzQQu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":929.6085662841797,"y":297.6157035827637,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.637927174568176,"height":13.63473892211914,"seed":480156705,"groupIds":["TabXR4fX_ycdxCCRJ1PSD","mMWIZLiz1Fp21LFuhY-Fr","doOUm7RmlgfFfU49D8dnf"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"VMEzO5TJRg0sI-Q6N5846","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.6996078491210938,-0.3905677795410156],[-1.362553596496582,-0.8270187377929688],[-1.9873113632202148,-1.3067207336425781],[-2.572352886199951,-1.8270378112792969],[-3.116152763366699,-2.385334014892578],[-3.617182731628418,-2.978975296020508],[-4.073917865753174,-3.6053237915039062],[-4.484830379486084,-4.261747360229492],[-4.84839391708374,-4.945611953735352],[-5.163082122802734,-5.654278755187988],[-5.427367210388184,-6.385114669799805],[-5.639723539352417,-7.135483741760254],[-5.798623561859131,-7.902751922607422],[-5.902541399002075,-8.684283256530762],[-5.949949741363525,-9.477441787719727],[-5.939321756362915,-10.279594421386719],[-5.939321756362915,-11.850088119506836],[-7.624033451080322,-11.850088119506836],[-7.624033451080322,-10.279594421386719],[-7.624033451080322,-10.279594421386719],[-7.637927174568176,-9.323471069335938],[-7.579249858856201,-8.379413604736328],[-7.450050592422485,-7.45079231262207],[-7.252379655838013,-6.540971755981445],[-6.988286018371582,-5.6533203125],[-6.659819602966309,-4.791204452514648],[-6.269029378890991,-3.9579906463623047],[-5.817965745925903,-3.1570472717285156],[-5.308677673339844,-2.391742706298828],[-4.7432146072387695,-1.6654434204101562],[-4.123627185821533,-0.9815139770507812],[-3.451963424682617,-0.3433208465576172],[-2.730273723602295,0.24576377868652344],[-1.9606080055236816,0.7823753356933594],[-1.145014762878418,1.2631454467773438],[-0.28554439544677734,1.6847114562988281],[-0.014278411865234375,1.7846508026123047]]},{"type":"rectangle","version":138,"versionNonce":2013267534,"isDeleted":true,"id":"RuGEK4rcEUcwCLLrUn_cn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":460,"y":260,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1480478863,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow"}],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"container"}},{"type":"text","version":132,"versionNonce":212127122,"isDeleted":true,"id":"e-IikHBmMP7dH46_e0XBM","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":476,"y":276,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":234357729,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[{"id":"0mG0njKLae7Xs8hf0tM2V","type":"arrow"}],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"fontSize":16,"fontFamily":2,"text":"Artifact Registry","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Artifact Registry"},{"type":"text","version":107,"versionNonce":386272398,"isDeleted":true,"id":"U8ubw7xR7epzJIBuXQt7B","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":356,"y":238,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1885562543,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":107,"versionNonce":1301891922,"isDeleted":true,"id":"J4Iuvpov_jJVQF_KmXhp7","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":356,"y":265,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1190059969,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":107,"versionNonce":1810975438,"isDeleted":true,"id":"HkzioyOGmH7eH1I0BHd8y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":356,"y":273,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":197179599,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":130,"versionNonce":2125992210,"isDeleted":true,"id":"-wqdtGth6S4mFp4qi1meQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":666.0481100082397,"y":277.1546391248703,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.072165012359619,"height":20.646048665046692,"seed":408895393,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.487972617149353],[-3.0378007888793945,4.2474223375320435],[-3.0378007888793945,16.39862549304962],[0,18.158074498176575],[0,20.646048665046692],[-5.072165012359619,17.718213200569153],[-5.072165012359619,2.9278351068496704],[0,0],[0,0]]},{"type":"line","version":130,"versionNonce":1968881934,"isDeleted":true,"id":"7zW47HdSR4jCTCd33crgb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":678.185567855835,"y":277.1546391248703,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.058418273925781,"height":20.632302403450012,"seed":267306735,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[5.058418273925781,2.914089322090149],[5.058418273925781,17.704466938972473],[0,20.632302403450012],[0,18.144328236579895],[3.0377979278564453,16.39862549304962],[3.0377979278564453,4.2474223375320435],[0,2.487972617149353],[0,0],[0,0]]},{"type":"line","version":130,"versionNonce":863510226,"isDeleted":true,"id":"yuNCILiawn8kBTBvdAUVO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":672.0955324172974,"y":280.5773196220398,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.965635299682617,"height":3.340205669403076,"seed":1081648001,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.9828176498413086,1.6632304191589355],[0,3.340205669403076],[2.9828176498413086,1.6632304191589355],[0,0]]},{"type":"line","version":130,"versionNonce":1991995214,"isDeleted":true,"id":"fqvhoK69LLr9Bb4o1bePP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":672.4941577911377,"y":287.8213052749634,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.9140892028808594,"height":5.017181873321533,"seed":460722447,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.9140892028808594,-1.6907215118408203],[2.9140892028808594,-5.017181873321533],[0,-3.3264598846435547],[0,0]]},{"type":"line","version":130,"versionNonce":2020635794,"isDeleted":true,"id":"Ki5ezdaMi_W-4k7hFiU-C","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":671.7518901824951,"y":284.4948453903198,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.900343894958496,"height":5.017181873321533,"seed":192580449,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.900343894958496,-1.6907219886779785],[-2.900343894958496,1.6357383728027344],[0,3.3264598846435547],[0,0]]},{"type":"line","version":130,"versionNonce":1550603662,"isDeleted":true,"id":"FP6tyMSCnN9XkavbpJv73","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.6391754150391,"y":286.7221984863281,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.7044677734375,"height":3.3264617919921875,"seed":1741625135,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.85910701751709,1.6632299423217773],[0,3.3264617919921875],[2.84536075592041,1.6632299423217773],[0,0]]},{"type":"line","version":130,"versionNonce":794301010,"isDeleted":true,"id":"TAwMHpMZi6Zb2hBHUPChz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.9003438949585,"y":293.96618461608887,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.9003429412841797,"height":5.017181396484375,"seed":297039681,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.9003429412841797,-1.6907215118408203],[2.9003429412841797,-5.017181396484375],[0,-3.3264598846435547],[0,0]]},{"type":"line","version":130,"versionNonce":531002318,"isDeleted":true,"id":"EZTKHPvvH1WJAms4yM35Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":668.364260673523,"y":290.6397247314453,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.900343418121338,"height":5.017181396484375,"seed":1801607503,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.900343418121338,-1.6907215118408203],[-2.900343418121338,1.6357383728027344],[0,3.3264598846435547],[0,0]]},{"type":"line","version":130,"versionNonce":1795553298,"isDeleted":true,"id":"Bc5f6g3LuglmuwaKjANZZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":675.607834815979,"y":286.7221984863281,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5.7044677734375,"height":3.3264617919921875,"seed":897967905,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.84536075592041,1.6632299423217773],[0,3.3264617919921875],[2.85910701751709,1.6632299423217773],[0,0]]},{"type":"line","version":130,"versionNonce":713214478,"isDeleted":true,"id":"2b0Pn04S62gSfjd5gP1Ya","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":675.8827486038208,"y":293.96618461608887,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.900343894958496,"height":5.017181396484375,"seed":998791023,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.900343894958496,-1.6907215118408203],[2.900343894958496,-5.017181396484375],[0,-3.3264598846435547],[0,0]]},{"type":"line","version":130,"versionNonce":1265706450,"isDeleted":true,"id":"YWGJVK4IJ04ntzoH2THqy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":675.3466672897339,"y":290.6397247314453,"strokeColor":"transparent","backgroundColor":"#4285f4","width":2.9003448486328125,"height":5.017181396484375,"seed":1633573633,"groupIds":["Gr5_-u_-W7Wi4LQBpohhf","1N-Onp8yV6O0sTW9KEcg1"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"3aO77mjuVdoCQqzyCUFZU","label":"Artifact Registry","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.9003448486328125,-1.6907215118408203],[-2.9003448486328125,1.6357383728027344],[0,3.3264598846435547],[0,0]]},{"type":"rectangle","version":149,"versionNonce":1006262350,"isDeleted":true,"id":"thqVsWnvipTNZJpePsNIH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":420,"y":500,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":2014138401,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"container"}},{"type":"text","version":134,"versionNonce":1504746386,"isDeleted":true,"id":"q24c5b0SNKehIqImEz2XH","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":516,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1447558767,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[{"id":"8rQyLaKxAoB8tQIxvtlYK","type":"arrow"}],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Deploy","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Deploy"},{"type":"text","version":107,"versionNonce":1273372302,"isDeleted":true,"id":"N4McaglBdk1jBYP4GtPmq","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":558,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":286303233,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":108,"versionNonce":1677416786,"isDeleted":true,"id":"3-qkHmQllFe2BHFbWLmr2","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":580,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1086085263,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":108,"versionNonce":1862212814,"isDeleted":true,"id":"iZt8fPuewYbqId6bNe2se","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":276,"y":588,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":2050915297,"groupIds":["1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":132,"versionNonce":1504206610,"isDeleted":true,"id":"nlxN5IO4YrwpinAgxkzvx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":640.3866672515869,"y":534.2400016784668,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":8.866666793823242,"height":15.353334903717041,"seed":736128687,"groupIds":["BulxHPWSNPwaWyKnIMqHT","1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-10.2333345413208],[-8.866666793823242,-15.353334903717041],[-8.866666793823242,-10.693335056304932],[-4.013334274291992,-7.920001983642578],[-4.039999008178711,-2.333333969116211],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":987648782,"isDeleted":true,"id":"sfHPa3akyg6THwvmP65X_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":634.7933340072632,"y":535.8533344268799,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.466667175292969,"height":12.933334350585938,"seed":1403410369,"groupIds":["syV6g5eenlL5K6TJDCNVa","1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-8.620000839233398],[-7.466667175292969,-12.933334350585938],[-7.466667175292969,-8.913333892822266],[-3.4600000381469727,-6.620000839233398],[-3.473334312438965,-2.0066661834716797],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":657370322,"isDeleted":true,"id":"rlNmR8rExBmt-xo_AXcZC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":629.7600002288818,"y":537.1466674804688,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.066666841506958,"height":10.513334274291992,"seed":1650245839,"groupIds":["272FODIO794pUv3mUl5iO","1LdZ3Y2U-7aeozaGgposf","5KC3q9V00HBxGjsr3T8oP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"rgbsKGp957DPl0B7CCfRk","label":"Cloud Deploy","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-7.0066680908203125],[-6.066666841506958,-10.513334274291992],[-6.066666841506958,-7.14666748046875],[-2.9000000953674316,-5.333333969116211],[-2.913332939147949,-1.6800003051757812],[0,0],[0,0]]},{"type":"rectangle","version":162,"versionNonce":704430414,"isDeleted":true,"id":"MSXfs0Xk2_LjCTY3Hg-Rx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":500,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":460747599,"groupIds":["9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"}],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":156,"versionNonce":304431762,"isDeleted":true,"id":"pJjBwLQBEfoOJoKXk4IGs","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":516,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1406692641,"groupIds":["9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"line","version":155,"versionNonce":2142463886,"isDeleted":true,"id":"sw7SE6srkKKhE6Q2FMncS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":892.1500005722046,"y":532.2449989318848,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":1175007599,"groupIds":["kV8e1WylUomyvYulKnMDw","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":356720722,"isDeleted":true,"id":"VDIh4Pof5NgFCRyir95Jq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":888.6324996948242,"y":526.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1601184001,"groupIds":["lmx_ycXo4-on5viF-t28N","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":742081998,"isDeleted":true,"id":"dX6Pqzs0azghRQ6OjNxL-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.460000038147,"y":533.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":668937103,"groupIds":["Ox-4gFf3F-V_AeQ8wXEyR","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":1012876818,"isDeleted":true,"id":"hCd9IIDNcW7lpLboRvgUP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":887.9274997711182,"y":524.9475002288818,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":698767585,"groupIds":["Ox-4gFf3F-V_AeQ8wXEyR","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":816667662,"isDeleted":true,"id":"kues_hSWogBQD6-KaUAHd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":897.0625,"y":531.0150003433228,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":1831920047,"groupIds":["Ox-4gFf3F-V_AeQ8wXEyR","9zSlK443xOkhk6KXMK1_7","BbdCn4mmVbLgBRnb5LDrC"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"AdNAjJY_mPmLqaqxUTb82","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":144,"versionNonce":7386066,"isDeleted":true,"id":"5JXsJyqt37VvHbAO7yjq8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":360,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":913245039,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"},{"id":"7mHnYCMq-L6XCjXQ8F8pG","type":"arrow"}],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"container"}},{"type":"text","version":134,"versionNonce":50506318,"isDeleted":true,"id":"e83CFcBwIYTAuc95n2cLu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":376,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1854435073,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"fontSize":16,"fontFamily":2,"text":"Pub/Sub","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Pub/Sub"},{"type":"text","version":106,"versionNonce":596535698,"isDeleted":true,"id":"fly9gQq0puGBf4HHSkH9M","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":358,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1874509199,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":106,"versionNonce":1913925774,"isDeleted":true,"id":"j5rKv1Pd5h3liy23h6eMQ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":385,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":210036449,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":106,"versionNonce":217016146,"isDeleted":true,"id":"6R33SYvjgdRj74SVOY0x-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":393,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":399127471,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"ellipse","version":133,"versionNonce":161148622,"isDeleted":true,"id":"czCXciJ4NVyKB8L5zYnz-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":897.25,"y":382.48999977111816,"strokeColor":"transparent","backgroundColor":"#669df6","width":3.440000057220459,"height":3.440000057220459,"seed":1206346433,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829080,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":133,"versionNonce":619359506,"isDeleted":true,"id":"zY6B4Pfpo8cWEWxwMRSlD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":883.3099999427795,"y":382.48999977111816,"strokeColor":"transparent","backgroundColor":"#669df6","width":3.440000057220459,"height":3.440000057220459,"seed":382068175,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":133,"versionNonce":1982850318,"isDeleted":true,"id":"NVJ4nLTNvDASzOqbgNszL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":890.2799997329712,"y":394.5599994659424,"strokeColor":"transparent","backgroundColor":"#669df6","width":3.440000057220459,"height":3.440000057220459,"seed":223306401,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"line","version":133,"versionNonce":821508818,"isDeleted":true,"id":"CKSWA16qP6GG72fknomB3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.6459999084473,"y":388.85999965667725,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.790000915527344,"height":5.403999328613281,"seed":1002853359,"groupIds":["DnD_Ns3fXS6v4km0IZNAe","BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.7950000762939453,-1.3839998245239258],[7.790000915527344,2.636000633239746],[6.995000839233398,4.0199995040893555],[0,0]]},{"type":"line","version":133,"versionNonce":1766593358,"isDeleted":true,"id":"Es5f-BBw6SqeSh7Z2nzsE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":884.6329998970032,"y":391.57299995422363,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.757999897003174,"height":5.397000312805176,"seed":158099073,"groupIds":["ybysXVHqq-isWTJn0Bydp","BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[6.9629998207092285,-4.0199995040893555],[7.757999897003174,-2.6429996490478516],[0.7950000762939453,1.3770008087158203],[0,0]]},{"type":"line","version":133,"versionNonce":799805586,"isDeleted":true,"id":"R67PEtAZsWEg2H7jd8GHP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.1999998092651,"y":380.19000005722046,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.5900001525878906,"height":8.03999948501587,"seed":1590951439,"groupIds":["PZufmkT5w54eY_Zqh9FXR","BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[1.5900001525878906,0],[1.5900001525878906,8.03999948501587],[0,8.03999948501587],[0,0]]},{"type":"ellipse","version":133,"versionNonce":2101901710,"isDeleted":true,"id":"x-SXhsXV7NIWwYee8YCVk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":889.2200002670288,"y":385.44999980926514,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":5.559999942779541,"height":5.559999942779541,"seed":654175841,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":133,"versionNonce":885010002,"isDeleted":true,"id":"AdnrckW6rKfw8jfyB45z7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":882.8399999141693,"y":390.0600004196167,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":4.380000114440918,"height":4.380000114440918,"seed":1122460719,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":133,"versionNonce":425596878,"isDeleted":true,"id":"aXzdzYNAPnHJYuXIt_f-Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":896.7800006866455,"y":390.0600004196167,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":4.380000114440918,"height":4.380000114440918,"seed":1288927809,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"ellipse","version":134,"versionNonce":1158321170,"isDeleted":true,"id":"zwtYWwdyIbm2-OQQ1LQ3T","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":889.8100004196167,"y":378,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":4.380000114440918,"height":4.380000114440918,"seed":938018383,"groupIds":["BpG1x-O9OLHHoC7nbrOsy","-4bnv8htQ4DlHkz2d9LyZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"T_mshNLa6Cv_keTTXyg9N","label":"Pub/Sub","resource":"google_pubsub_topic","type":"child"}},{"type":"rectangle","version":179,"versionNonce":1436937742,"isDeleted":true,"id":"nV1AI5bHHC26YAjup5RIv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":140,"y":120,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":443582607,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":172,"versionNonce":847397330,"isDeleted":true,"id":"ITrKp6V6S9Cmg6mW98Vtw","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":156,"y":136,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1764051937,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[{"id":"gISyGfHd3ExlrEzh0Hj-0","type":"arrow"}],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":111,"versionNonce":1595472974,"isDeleted":true,"id":"yvoOLMHERKAqDoCfiPE8y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":376,"y":418,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":529440431,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":112,"versionNonce":2017343378,"isDeleted":true,"id":"PdNXdlYF9b4_kpVydHyZz","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":445,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":1563633601,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":112,"versionNonce":1536180878,"isDeleted":true,"id":"jPXYS3JtzQvdr23DbZrGb","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":453,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":549777615,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"rectangle","version":170,"versionNonce":376796498,"isDeleted":true,"id":"qcPNVRi7vG5Nt3qDHFBmx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":140,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1859815329,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":1304740046,"isDeleted":true,"id":"06XSh5RVwY5GrgZt6k0_E","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":360,"y":140,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1739325167,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":170,"versionNonce":1853815570,"isDeleted":true,"id":"tto4WaJazHBfz9I4BM-dm","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":362,"y":140,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":944434049,"groupIds":["aLCKileQ88_F43nfE-jrr","lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":170,"versionNonce":2035250958,"isDeleted":true,"id":"30BD-7pkdLJq4dKVPvr07","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":140,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1993099535,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":517064914,"isDeleted":true,"id":"AsWzomLr_TpEZ1XaAWQfZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":143,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1640223585,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":1185506638,"isDeleted":true,"id":"9NeR01rWGvckIOKWadwgF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":355,"y":142,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1805537071,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":1594154642,"isDeleted":true,"id":"o1HJ3vZjC8885RZH_MZSP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":149,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1603583809,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":657165198,"isDeleted":true,"id":"-LBbcAJ3Z-allbkmHMmgg","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":360,"y":149,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":545952079,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":170,"versionNonce":1540308050,"isDeleted":true,"id":"57oOuYWAkPM5-Z9B0pILx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":362,"y":149,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1880960801,"groupIds":["v2uJpNgXmsqU8tAXRtiGd","lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":170,"versionNonce":2031020494,"isDeleted":true,"id":"BT7xlYtwISLlfc7CGjOMO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":342,"y":149,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":250187631,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":319283730,"isDeleted":true,"id":"WQn4xZDN583Gr8s_yXrmz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":152,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1506583297,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":170,"versionNonce":1802272782,"isDeleted":true,"id":"IVsPD4aph7lxKkupcnsJK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":355,"y":151,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1896073615,"groupIds":["lpCFOWtkVrhqR-TY1YGq_","atYHvAauKJPBDvWmtEw_u"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"rJJmXdPlRXtLrEaOFUoaQ","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":144,"versionNonce":799395794,"isDeleted":true,"id":"VjU1bGi9YYnINIC6WYz7H","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":720,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":595769167,"groupIds":["OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"round","boundElements":[{"id":"Sj_PH5cNVlsYPvn1BMMmF","type":"arrow"}],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"container"}},{"type":"text","version":139,"versionNonce":1648184910,"isDeleted":true,"id":"FplAVudSsCZGAJEhDZZ6O","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":396,"y":736,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":1419929889,"groupIds":["OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"round","boundElements":[{"id":"Sj_PH5cNVlsYPvn1BMMmF","type":"arrow"}],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud VPN","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud VPN"},{"type":"line","version":138,"versionNonce":1707083154,"isDeleted":true,"id":"9X0FETu3qIydvnv2NqAQe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":598.5022354125977,"y":741.5054316520691,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.033864974975586,"height":12.816612720489502,"seed":200078703,"groupIds":["sPyePw-9Rb6FulWsVVSMK","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.647284030914307],[-3.5233211517333984,5.647284030914307],[-3.5233211517333984,7.157826900482178],[0,7.157826900482178],[0,12.816612720489502],[1.5105438232421875,12.816612720489502],[1.5105438232421875,0],[0,0]]},{"type":"line","version":138,"versionNonce":1515869326,"isDeleted":true,"id":"0B_QP6ie9QXoEd3RA4L-m","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":586.4945683479309,"y":747.1527156829834,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.6849846839904785,"height":1.510542869567871,"seed":765107457,"groupIds":["sPyePw-9Rb6FulWsVVSMK","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.6849846839904785,0],[4.6849846839904785,1.510542869567871],[0,1.510542869567871],[0,0]]},{"type":"line","version":138,"versionNonce":1317897042,"isDeleted":true,"id":"IwhAOWPulY5eWbxWXa34Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":593.0849828720093,"y":750.3194885253906,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.815336227416992,"height":4.815335273742676,"seed":78278543,"groupIds":["prQXe_W-ewXqczASNUKdv","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.24627304077148438,-0.012423515319824219],[-0.4854106903076172,-0.048890113830566406],[-0.7162008285522461,-0.10819053649902344],[-0.93743896484375,-0.1891164779663086],[-1.1479177474975586,-0.2904653549194336],[-1.3464269638061523,-0.4110240936279297],[-1.5317630767822266,-0.5495901107788086],[-1.702713966369629,-0.7049522399902344],[-1.858077049255371,-0.8759040832519531],[-1.9966421127319336,-1.061239242553711],[-2.117201805114746,-1.259749412536621],[-2.2185497283935547,-1.4702281951904297],[-2.2994766235351562,-1.6914663314819336],[-2.3587770462036133,-1.9222564697265625],[-2.3952436447143555,-2.161393165588379],[-2.4076671600341797,-2.4076671600341797],[-2.3952436447143555,-2.653942108154297],[-2.3587770462036133,-2.893077850341797],[-2.2994766235351562,-3.123868942260742],[-2.2185497283935547,-3.345107078552246],[-2.117201805114746,-3.5555849075317383],[-1.9966421127319336,-3.754096031188965],[-1.858077049255371,-3.9394302368164062],[-1.702713966369629,-4.110383033752441],[-1.5317630767822266,-4.265745162963867],[-1.3464269638061523,-4.40431022644043],[-1.1479177474975586,-4.524870872497559],[-0.93743896484375,-4.626217842102051],[-0.7162008285522461,-4.707145690917969],[-0.4854106903076172,-4.766446113586426],[-0.24627304077148438,-4.802911758422852],[0,-4.815335273742676],[0.2462759017944336,-4.802911758422852],[0.4854116439819336,-4.766446113586426],[0.7162027359008789,-4.707145690917969],[0.9374408721923828,-4.626217842102051],[1.147918701171875,-4.524870872497559],[1.3464288711547852,-4.40431022644043],[1.531764030456543,-4.265745162963867],[1.7027158737182617,-4.110383033752441],[1.858078956604004,-3.9394302368164062],[1.99664306640625,-3.754096031188965],[2.117203712463379,-3.5555849075317383],[2.218550682067871,-3.345107078552246],[2.299478530883789,-3.123868942260742],[2.358778953552246,-2.893077850341797],[2.395244598388672,-2.653942108154297],[2.4076690673828125,-2.4076671600341797],[2.3966827392578125,-2.162698745727539],[2.3616552352905273,-1.9246149063110352],[2.3037919998168945,-1.6946420669555664],[2.224302291870117,-1.4740009307861328],[2.124392509460449,-1.2639188766479492],[2.005270004272461,-1.0656204223632812],[1.868143081665039,-0.8803262710571289],[1.7142181396484375,-0.7092647552490234],[1.544703483581543,-0.5536584854125977],[1.3608064651489258,-0.4147310256958008],[1.1637334823608398,-0.29370784759521484],[0.9546937942504883,-0.19181251525878906],[0.734893798828125,-0.11027050018310547],[0.5055398941040039,-0.050304412841796875],[0.2678413391113281,-0.013138771057128906],[0.023003578186035156,0],[0,0],[0,0]]},{"type":"line","version":138,"versionNonce":1300009678,"isDeleted":true,"id":"PIMB0qSiX_iDVay2ZGs-S","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":593.0849828720093,"y":746.4089450836182,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.021085739135742,"height":3.021085739135742,"seed":1159812321,"groupIds":["prQXe_W-ewXqczASNUKdv","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":138,"versionNonce":1147488530,"isDeleted":true,"id":"Rc6202_7VyhMuock2BXSp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":593.0849828720093,"y":746.4089450836182,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.021085739135742,"height":3.021085739135742,"seed":401843631,"groupIds":["TnPYRXIe8OpvgMtu4FLr6","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":138,"versionNonce":373098766,"isDeleted":true,"id":"vluAdiyiCrvYQy6fr1ey_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":597.00319480896,"y":753.766134262085,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122043609619141,"seed":1321603265,"groupIds":["zWYSy2pvGQM0cYdLRcCwF","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024200439453125],[4.679801940917969,0.05256462097167969],[4.725238800048828,0.09009552001953125],[4.762767791748047,0.13553237915039062],[4.791133880615234,0.1876201629638672],[4.809074401855469,0.24509811401367188],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.815334320068359],[4.815334320068359,4.815334320068359],[4.809074401855469,4.876947402954102],[4.791133880615234,4.934425354003906],[4.762767791748047,4.98651123046875],[4.725238800048828,5.031949996948242],[4.679801940917969,5.069478988647461],[4.627714157104492,5.097843170166016],[4.57023811340332,5.115785598754883],[4.508625030517578,5.122043609619141],[0,5.122043609619141],[0,5.122043609619141],[-0.061611175537109375,5.115785598754883],[-0.11909103393554688,5.097843170166016],[-0.17117691040039062,5.069478988647461],[-0.21661376953125,5.031949996948242],[-0.25414276123046875,4.98651123046875],[-0.28250885009765625,4.934425354003906],[-0.3004493713378906,4.876947402954102],[-0.30670928955078125,4.815334320068359],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509811401367188],[-0.28250885009765625,0.1876201629638672],[-0.25414276123046875,0.13553237915039062],[-0.21661376953125,0.09009552001953125],[-0.17117691040039062,0.05256462097167969],[-0.11909103393554688,0.024200439453125],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":138,"versionNonce":1052661458,"isDeleted":true,"id":"8XM3bICf5dgghzLTwOeYk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":597.00319480896,"y":736.9968050718307,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122044682502747,"seed":1961957327,"groupIds":["zWYSy2pvGQM0cYdLRcCwF","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024201273918151855],[4.679801940917969,0.052565932273864746],[4.725238800048828,0.0900958776473999],[4.762767791748047,0.13553321361541748],[4.791133880615234,0.18761980533599854],[4.809074401855469,0.24509775638580322],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.8153358697891235],[4.815334320068359,4.8153358697891235],[4.809074401855469,4.876947045326233],[4.791133880615234,4.934424996376038],[4.762767791748047,4.986511826515198],[4.725238800048828,5.031948685646057],[4.679801940917969,5.0694791078567505],[4.627714157104492,5.097843289375305],[4.57023811340332,5.115784764289856],[4.508625030517578,5.122044682502747],[0,5.122044682502747],[0,5.122044682502747],[-0.061611175537109375,5.115784764289856],[-0.11909103393554688,5.097843289375305],[-0.17117691040039062,5.0694791078567505],[-0.21661376953125,5.031948685646057],[-0.25414276123046875,4.986511826515198],[-0.28250885009765625,4.934424996376038],[-0.3004493713378906,4.876947045326233],[-0.30670928955078125,4.8153358697891235],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509775638580322],[-0.28250885009765625,0.18761980533599854],[-0.25414276123046875,0.13553321361541748],[-0.21661376953125,0.0900958776473999],[-0.17117691040039062,0.052565932273864746],[-0.11909103393554688,0.024201273918151855],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":138,"versionNonce":1410643790,"isDeleted":true,"id":"DFCVsXz7Z_9W78QSv9Y7t","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":582.4766771793365,"y":745.3469648361206,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122044801712036,"height":5.122044563293457,"seed":1613254817,"groupIds":["zWYSy2pvGQM0cYdLRcCwF","OWuNUjBSN-6_rltscNRsi","ZvdVgd3lQD-gdXzTQj2Pp"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"TeSsPVhf1rBYk5OOuRG0w","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508626222610474,0],[4.508626222610474,0],[4.570237874984741,0.006259918212890625],[4.627715349197388,0.024200439453125],[4.679802179336548,0.052565574645996094],[4.725239992141724,0.09009552001953125],[4.762769460678101,0.13553333282470703],[4.791134595870972,0.1876201629638672],[4.809075117111206,0.24509716033935547],[4.815335512161255,0.30670928955078125],[4.815335512161255,4.815335273742676],[4.815335512161255,4.815335273742676],[4.809075117111206,4.876946449279785],[4.791134595870972,4.934425354003906],[4.762769460678101,4.98651123046875],[4.725239992141724,5.031948089599609],[4.679802179336548,5.0694780349731445],[4.627715349197388,5.097843170166016],[4.570237874984741,5.115784645080566],[4.508626222610474,5.122044563293457],[0,5.122044563293457],[0,5.122044563293457],[-0.06161141395568848,5.115784645080566],[-0.11908936500549316,5.097843170166016],[-0.17117619514465332,5.0694780349731445],[-0.2166132926940918,5.031948089599609],[-0.25414323806762695,4.98651123046875],[-0.28250789642333984,4.934425354003906],[-0.3004491329193115,4.876946449279785],[-0.30670928955078125,4.815335273742676],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.2993483543395996,0.24509716033935547],[-0.28089046478271484,0.1876201629638672],[-0.2524585723876953,0.13553333282470703],[-0.21517562866210938,0.09009552001953125],[-0.1701653003692627,0.052565574645996094],[-0.11855030059814453,0.024200439453125],[-0.061454057693481445,0.006259918212890625],[0,0],[0,0]]},{"type":"rectangle","version":530,"versionNonce":774876306,"isDeleted":true,"id":"alQMHesl-G0NviYi6f0BX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-820,"y":140,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":280,"height":200,"seed":1716867951,"groupIds":["ogT50GayQ-Q5VOFc-AmYk"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"q530R61UTLOj7TzT77YrD","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":370,"versionNonce":1331469710,"isDeleted":true,"id":"b5uFYKYQ9YtB2lM0PEZyK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":-720,"y":160,"strokeColor":"#202124","backgroundColor":"transparent","width":86,"height":19,"seed":1391402753,"groupIds":["ogT50GayQ-Q5VOFc-AmYk"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"q530R61UTLOj7TzT77YrD","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DATA LAKE","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA LAKE"},{"type":"rectangle","version":152,"versionNonce":1483754066,"isDeleted":true,"id":"FT082wzi3l6l370pE96ew","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":440,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1691381167,"groupIds":["UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"round","boundElements":[{"id":"FdOpZc3X7dy5DyT_pEmQC","type":"arrow"}],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":146,"versionNonce":1565375438,"isDeleted":true,"id":"HCnCXOttU8ehwY6NpOb8p","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":456,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1626982593,"groupIds":["UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"line","version":145,"versionNonce":878129170,"isDeleted":true,"id":"qnoivhRwFrwRQaMY62xBC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":472.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":452255695,"groupIds":["zjNY1k-_e8YdoAPpOwx-d","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":145,"versionNonce":1140920846,"isDeleted":true,"id":"tYz1f2llDug-UmmXNJkQy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":466.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1663371425,"groupIds":["1QhsszbburjDVfud0jRW6","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":145,"versionNonce":1172004306,"isDeleted":true,"id":"W_X2ubNjxVbV8qqsWwPI9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":473.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":335941103,"groupIds":["8iUz2p4Dw9gUraW5Q9xI8","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":145,"versionNonce":510632014,"isDeleted":true,"id":"-Pnu17ChbzpRuPLVzrqUR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":464.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":563956865,"groupIds":["8iUz2p4Dw9gUraW5Q9xI8","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":145,"versionNonce":2048119698,"isDeleted":true,"id":"zLIKVElOrHefm_fiJ385D","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":471.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":1259108367,"groupIds":["8iUz2p4Dw9gUraW5Q9xI8","UiMOJK8pH8PtRU08sXlNA","AvV-fXW-o6BbE7fIp-hnW"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"ytWIU5Fbiq4oKMskS45VV","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":132,"versionNonce":1081239182,"isDeleted":true,"id":"dHskVG81JjltL_ZxuSSjx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":520,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1937532833,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"container"}},{"type":"text","version":128,"versionNonce":53973330,"isDeleted":true,"id":"4kX7ZHc9Z1C8xui4L-zoa","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":536,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":1587027695,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud VPN","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud VPN"},{"type":"text","version":107,"versionNonce":448947406,"isDeleted":true,"id":"MfmT9lKDEdoZQbk35YiYr","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":618,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":229690241,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":107,"versionNonce":882743058,"isDeleted":true,"id":"nxNG_QURvrXE6Rd7fD7UC","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":645,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":2067032335,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":107,"versionNonce":519609102,"isDeleted":true,"id":"q_0DJMYKrr2pRJnf5aPhv","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":653,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1332589409,"groupIds":["7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"round","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":127,"versionNonce":1589437650,"isDeleted":true,"id":"3Dg7jnOk3bOSOMZFoqKt3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":298.50223541259766,"y":541.5054316520691,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.033864974975586,"height":12.816612720489502,"seed":1845653295,"groupIds":["c19rpFEgeCSueG-OZXWEW","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.647284030914307],[-3.5233211517333984,5.647284030914307],[-3.5233211517333984,7.157826900482178],[0,7.157826900482178],[0,12.816612720489502],[1.5105438232421875,12.816612720489502],[1.5105438232421875,0],[0,0]]},{"type":"line","version":127,"versionNonce":596511054,"isDeleted":true,"id":"BCgnFR8vzYoT4-tErlrL5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":286.4945683479309,"y":547.1527156829834,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.6849846839904785,"height":1.510542869567871,"seed":1023582017,"groupIds":["c19rpFEgeCSueG-OZXWEW","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829081,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.6849846839904785,0],[4.6849846839904785,1.510542869567871],[0,1.510542869567871],[0,0]]},{"type":"line","version":127,"versionNonce":724335250,"isDeleted":true,"id":"ocQ8B2FefnUZoexD-aIiU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293.0849828720093,"y":550.3194885253906,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.815336227416992,"height":4.815335273742676,"seed":23769423,"groupIds":["FjY58-QGxkNdDH_oopjJn","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.24627304077148438,-0.012423515319824219],[-0.4854106903076172,-0.048890113830566406],[-0.7162008285522461,-0.10819053649902344],[-0.93743896484375,-0.1891164779663086],[-1.1479177474975586,-0.2904653549194336],[-1.3464269638061523,-0.4110240936279297],[-1.5317630767822266,-0.5495901107788086],[-1.702713966369629,-0.7049522399902344],[-1.858077049255371,-0.8759040832519531],[-1.9966421127319336,-1.061239242553711],[-2.117201805114746,-1.259749412536621],[-2.2185497283935547,-1.4702281951904297],[-2.2994766235351562,-1.6914663314819336],[-2.3587770462036133,-1.9222564697265625],[-2.3952436447143555,-2.161393165588379],[-2.4076671600341797,-2.4076671600341797],[-2.3952436447143555,-2.653942108154297],[-2.3587770462036133,-2.893077850341797],[-2.2994766235351562,-3.123868942260742],[-2.2185497283935547,-3.345107078552246],[-2.117201805114746,-3.5555849075317383],[-1.9966421127319336,-3.754096031188965],[-1.858077049255371,-3.9394302368164062],[-1.702713966369629,-4.110383033752441],[-1.5317630767822266,-4.265745162963867],[-1.3464269638061523,-4.40431022644043],[-1.1479177474975586,-4.524870872497559],[-0.93743896484375,-4.626217842102051],[-0.7162008285522461,-4.707145690917969],[-0.4854106903076172,-4.766446113586426],[-0.24627304077148438,-4.802911758422852],[0,-4.815335273742676],[0.2462759017944336,-4.802911758422852],[0.4854116439819336,-4.766446113586426],[0.7162027359008789,-4.707145690917969],[0.9374408721923828,-4.626217842102051],[1.147918701171875,-4.524870872497559],[1.3464288711547852,-4.40431022644043],[1.531764030456543,-4.265745162963867],[1.7027158737182617,-4.110383033752441],[1.858078956604004,-3.9394302368164062],[1.99664306640625,-3.754096031188965],[2.117203712463379,-3.5555849075317383],[2.218550682067871,-3.345107078552246],[2.299478530883789,-3.123868942260742],[2.358778953552246,-2.893077850341797],[2.395244598388672,-2.653942108154297],[2.4076690673828125,-2.4076671600341797],[2.3966827392578125,-2.162698745727539],[2.3616552352905273,-1.9246149063110352],[2.3037919998168945,-1.6946420669555664],[2.224302291870117,-1.4740009307861328],[2.124392509460449,-1.2639188766479492],[2.005270004272461,-1.0656204223632812],[1.868143081665039,-0.8803262710571289],[1.7142181396484375,-0.7092647552490234],[1.544703483581543,-0.5536584854125977],[1.3608064651489258,-0.4147310256958008],[1.1637334823608398,-0.29370784759521484],[0.9546937942504883,-0.19181251525878906],[0.734893798828125,-0.11027050018310547],[0.5055398941040039,-0.050304412841796875],[0.2678413391113281,-0.013138771057128906],[0.023003578186035156,0],[0,0],[0,0]]},{"type":"line","version":127,"versionNonce":1205579662,"isDeleted":true,"id":"LsoXac9281hSmo4L4V7Xq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293.0849828720093,"y":546.4089450836182,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.021085739135742,"height":3.021085739135742,"seed":617549601,"groupIds":["FjY58-QGxkNdDH_oopjJn","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":127,"versionNonce":2023970898,"isDeleted":true,"id":"OskPc8Jo_2UfOzL3gNrtV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":293.0849828720093,"y":546.4089450836182,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.021085739135742,"height":3.021085739135742,"seed":516271983,"groupIds":["oVhjKvkzPvFKalZPj53Q6","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.15433025360107422,0.002124786376953125],[-0.3048133850097656,0.019514083862304688],[-0.45065879821777344,0.0514373779296875],[-0.5910730361938477,0.09716415405273438],[-0.7252655029296875,0.15596675872802734],[-0.852442741394043,0.22711181640625],[-0.9718132019042969,0.30987071990966797],[-1.0825872421264648,0.4035148620605469],[-1.1839704513549805,0.5073118209838867],[-1.2751712799072266,0.6205329895019531],[-1.3553991317749023,0.7424468994140625],[-1.4238605499267578,0.8723239898681641],[-1.4797658920288086,1.0094356536865234],[-1.5223207473754883,1.153050422668457],[-1.5507354736328125,1.302438735961914],[-1.5642166137695312,1.456869125366211],[-1.5620918273925781,1.6118316650390625],[-1.5447025299072266,1.7627849578857422],[-1.5127792358398438,1.9089527130126953],[-1.4670524597167969,2.0495615005493164],[-1.408249855041504,2.1838340759277344],[-1.3371047973632812,2.3109970092773438],[-1.2543458938598633,2.430276870727539],[-1.1607017517089844,2.5408945083618164],[-1.056905746459961,2.6420793533325195],[-0.9436845779418945,2.7330522537231445],[-0.8217697143554688,2.8130407333374023],[-0.6918926239013672,2.881270408630371],[-0.5547809600830078,2.9369640350341797],[-0.4111671447753906,2.9793481826782227],[-0.2617778778076172,3.0076475143432617],[-0.10734748840332031,3.021085739135742],[0.04761505126953125,3.0189619064331055],[0.19856834411621094,3.001572608947754],[0.34473609924316406,2.969649314880371],[0.48534488677978516,2.923922538757324],[0.6196174621582031,2.8651199340820312],[0.7467803955078125,2.7939748764038086],[0.8660602569580078,2.7112159729003906],[0.9766778945922852,2.6175718307495117],[1.0778617858886719,2.513774871826172],[1.1688356399536133,2.4005537033081055],[1.248824119567871,2.278639793395996],[1.3170537948608398,2.1487627029418945],[1.3727474212646484,2.011651039123535],[1.4151315689086914,1.8680362701416016],[1.4434309005737305,1.7186479568481445],[1.456869125366211,1.5642175674438477],[1.456869125366211,1.5335464477539062],[1.456869125366211,1.5335464477539062],[1.4520912170410156,1.380782127380371],[1.4324817657470703,1.2320938110351562],[1.3987531661987305,1.0882368087768555],[1.351618766784668,0.9499607086181641],[1.2917909622192383,0.8180198669433594],[1.2199859619140625,0.6931667327880859],[1.136916160583496,0.5761528015136719],[1.0432920455932617,0.46773242950439453],[0.9398288726806641,0.36865711212158203],[0.8272390365600586,0.2796783447265625],[0.70623779296875,0.20154953002929688],[0.5775375366210938,0.1350250244140625],[0.4418497085571289,0.08085441589355469],[0.29988861083984375,0.03979206085205078],[0.15236759185791016,0.012589454650878906],[0,0],[0,0]]},{"type":"line","version":127,"versionNonce":1478135246,"isDeleted":true,"id":"RCQ5IEX35PV-19fq4vhSK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.00319480895996,"y":553.766134262085,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122043609619141,"seed":1564640001,"groupIds":["toKOci7VtTgiLI8XDmuVU","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024200439453125],[4.679801940917969,0.05256462097167969],[4.725238800048828,0.09009552001953125],[4.762767791748047,0.13553237915039062],[4.791133880615234,0.1876201629638672],[4.809074401855469,0.24509811401367188],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.815334320068359],[4.815334320068359,4.815334320068359],[4.809074401855469,4.876947402954102],[4.791133880615234,4.934425354003906],[4.762767791748047,4.98651123046875],[4.725238800048828,5.031949996948242],[4.679801940917969,5.069478988647461],[4.627714157104492,5.097843170166016],[4.57023811340332,5.115785598754883],[4.508625030517578,5.122043609619141],[0,5.122043609619141],[0,5.122043609619141],[-0.061611175537109375,5.115785598754883],[-0.11909103393554688,5.097843170166016],[-0.17117691040039062,5.069478988647461],[-0.21661376953125,5.031949996948242],[-0.25414276123046875,4.98651123046875],[-0.28250885009765625,4.934425354003906],[-0.3004493713378906,4.876947402954102],[-0.30670928955078125,4.815334320068359],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509811401367188],[-0.28250885009765625,0.1876201629638672],[-0.25414276123046875,0.13553237915039062],[-0.21661376953125,0.09009552001953125],[-0.17117691040039062,0.05256462097167969],[-0.11909103393554688,0.024200439453125],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":127,"versionNonce":922254866,"isDeleted":true,"id":"G4SZsMNza64EdTCiiAQZi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.00319480895996,"y":536.9968050718307,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122043609619141,"height":5.122044682502747,"seed":1885071759,"groupIds":["toKOci7VtTgiLI8XDmuVU","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508625030517578,0],[4.508625030517578,0],[4.57023811340332,0.006259918212890625],[4.627714157104492,0.024201273918151855],[4.679801940917969,0.052565932273864746],[4.725238800048828,0.0900958776473999],[4.762767791748047,0.13553321361541748],[4.791133880615234,0.18761980533599854],[4.809074401855469,0.24509775638580322],[4.815334320068359,0.30670928955078125],[4.815334320068359,4.8153358697891235],[4.815334320068359,4.8153358697891235],[4.809074401855469,4.876947045326233],[4.791133880615234,4.934424996376038],[4.762767791748047,4.986511826515198],[4.725238800048828,5.031948685646057],[4.679801940917969,5.0694791078567505],[4.627714157104492,5.097843289375305],[4.57023811340332,5.115784764289856],[4.508625030517578,5.122044682502747],[0,5.122044682502747],[0,5.122044682502747],[-0.061611175537109375,5.115784764289856],[-0.11909103393554688,5.097843289375305],[-0.17117691040039062,5.0694791078567505],[-0.21661376953125,5.031948685646057],[-0.25414276123046875,4.986511826515198],[-0.28250885009765625,4.934424996376038],[-0.3004493713378906,4.876947045326233],[-0.30670928955078125,4.8153358697891235],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.3004493713378906,0.24509775638580322],[-0.28250885009765625,0.18761980533599854],[-0.25414276123046875,0.13553321361541748],[-0.21661376953125,0.0900958776473999],[-0.17117691040039062,0.052565932273864746],[-0.11909103393554688,0.024201273918151855],[-0.061611175537109375,0.006259918212890625],[0,0],[0,0]]},{"type":"line","version":127,"versionNonce":828613646,"isDeleted":true,"id":"SrZumm_5zg7QDqje7tMwV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282.47667717933655,"y":545.3469648361206,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.122044801712036,"height":5.122044563293457,"seed":1121745633,"groupIds":["toKOci7VtTgiLI8XDmuVU","7PZctueu-OUkf697Lunp5","ei3PZDTsz5Y4iwULDaaE6"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"eODzaX2FgZNAffoJ2BXyK","label":"Cloud VPN","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.508626222610474,0],[4.508626222610474,0],[4.570237874984741,0.006259918212890625],[4.627715349197388,0.024200439453125],[4.679802179336548,0.052565574645996094],[4.725239992141724,0.09009552001953125],[4.762769460678101,0.13553333282470703],[4.791134595870972,0.1876201629638672],[4.809075117111206,0.24509716033935547],[4.815335512161255,0.30670928955078125],[4.815335512161255,4.815335273742676],[4.815335512161255,4.815335273742676],[4.809075117111206,4.876946449279785],[4.791134595870972,4.934425354003906],[4.762769460678101,4.98651123046875],[4.725239992141724,5.031948089599609],[4.679802179336548,5.0694780349731445],[4.627715349197388,5.097843170166016],[4.570237874984741,5.115784645080566],[4.508626222610474,5.122044563293457],[0,5.122044563293457],[0,5.122044563293457],[-0.06161141395568848,5.115784645080566],[-0.11908936500549316,5.097843170166016],[-0.17117619514465332,5.0694780349731445],[-0.2166132926940918,5.031948089599609],[-0.25414323806762695,4.98651123046875],[-0.28250789642333984,4.934425354003906],[-0.3004491329193115,4.876946449279785],[-0.30670928955078125,4.815335273742676],[-0.30670928955078125,0.30670928955078125],[-0.30670928955078125,0.30670928955078125],[-0.2993483543395996,0.24509716033935547],[-0.28089046478271484,0.1876201629638672],[-0.2524585723876953,0.13553333282470703],[-0.21517562866210938,0.09009552001953125],[-0.1701653003692627,0.052565574645996094],[-0.11855030059814453,0.024200439453125],[-0.061454057693481445,0.006259918212890625],[0,0],[0,0]]},{"type":"rectangle","version":487,"versionNonce":1126362066,"isDeleted":true,"id":"TXEjIo4mN5S32oecI7i3C","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":800,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":272.7272727272727,"height":160.00000000000003,"seed":1833713473,"groupIds":["v4Kyrx3gvgGfINYNqD0Sk"],"strokeSharpness":"sharp","boundElements":[{"id":"shJ__kxr9Uyo_Kc4UCS2e","type":"arrow"}],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"ytmbL65ING_a2IF5e25Mc","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":353,"versionNonce":632287822,"isDeleted":true,"id":"aN_qxEMolrKsxMGTyvEUg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":160,"y":820,"strokeColor":"#202124","backgroundColor":"transparent","width":103,"height":19,"seed":202051919,"groupIds":["v4Kyrx3gvgGfINYNqD0Sk"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"ytmbL65ING_a2IF5e25Mc","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DEV SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DEV SUBNET"},{"type":"rectangle","version":121,"versionNonce":1127850386,"isDeleted":true,"id":"Gxohmm-MpUgfliDHgZjIh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":100,"y":860,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":381678785,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":143,"versionNonce":1608022158,"isDeleted":true,"id":"i5O_IyW22NKqiIgyLj2lZ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":116,"y":876,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":142,"height":37,"seed":754414543,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"text","version":111,"versionNonce":41131858,"isDeleted":true,"id":"7WccvBfTqmal1klF43ZeK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":260,"y":880,"strokeColor":"#202124","backgroundColor":"transparent","width":5,"height":19,"seed":1464186017,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":111,"versionNonce":1201026766,"isDeleted":true,"id":"F4UBAUOPiNih_1NgGEvLL","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":260,"y":907,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":7,"seed":1888887279,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[100,-7],[208,0]]},{"type":"text","version":106,"versionNonce":1294460178,"isDeleted":true,"id":"-IeM8tVDqUrkJh2of4d2v","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":256,"y":913,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":617117825,"groupIds":["PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":116,"versionNonce":1703030030,"isDeleted":true,"id":"oY2PfKMrZHLT05GNwLL5x","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.16421031951904,"y":876.9347368478775,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":1148849167,"groupIds":["symsiy-U2zHp1U5qqqHr6","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":116,"versionNonce":1288532690,"isDeleted":true,"id":"LR4ZjxL5mAHDg9Av8-evk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.1705255508423,"y":879.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":1627897953,"groupIds":["Yws3MTy8lJJuOr9m4VEqD","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":116,"versionNonce":1192581966,"isDeleted":true,"id":"LqdEvJDdiakzhgvG6Xwfy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.6568412780762,"y":888.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":1687925295,"groupIds":["0ez8K_H2m5dafIPVeHgnu","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":116,"versionNonce":1677412498,"isDeleted":true,"id":"60tBT7iJjm8hMhKRNVmMv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":307.62947368621826,"y":885.0505266189575,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":164826177,"groupIds":["1gjXPZD-ZIlSfvGZ6YeyB","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":116,"versionNonce":1655226766,"isDeleted":true,"id":"ml1WD2o_me_Fsw5JlTvex","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":307.20631551742554,"y":885.9284210205078,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":2044957775,"groupIds":["vS0jRmQ94PLOCtN6aPZFt","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":116,"versionNonce":174614098,"isDeleted":true,"id":"-xPj0VZlsgdNgj__S5-0E","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":312.6568412780762,"y":883.0989475250244,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.016840934753418,"height":3.7010529041290283,"seed":923393057,"groupIds":["Y0h2PLPgYarjxlQEpTljD","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-3.429474115371704],[-0.4863157272338867,-3.7010529041290283],[-1.016840934753418,-3.3915791511535645],[-1.016840934753418,0],[0,0]]},{"type":"line","version":116,"versionNonce":2071289806,"isDeleted":true,"id":"YneCxdebDNYckI3qjj2i-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":319.9768409729004,"y":892.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":2083140207,"groupIds":["GPTSD5mCh3LqiitCPI0h6","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":116,"versionNonce":686541842,"isDeleted":true,"id":"m3XL1a736tD5XpAbbkCLS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":307.7999997138977,"y":890.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":1486598145,"groupIds":["JMrHQdOqUFVZ017rg4xwg","PFbVPQCfXimzo3r1MIFvQ","wbPi58CFWCI2Wep2Jdsdc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"qWT4rflNgdOfouksxcANl","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"type":"rectangle","version":502,"versionNonce":93599246,"isDeleted":true,"id":"yXmE5IfkXtfLBNXzyC9-u","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":380,"y":800,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":272.7272727272727,"height":160.00000000000003,"seed":1596056111,"groupIds":["7n9Cse3WWz7efRfcJX32D"],"strokeSharpness":"sharp","boundElements":[{"id":"uw9uafUImq_py2-_G2vYB","type":"arrow"}],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"NQh75nyHB1usHUHR1z4Ot","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":374,"versionNonce":1971091922,"isDeleted":true,"id":"PL3KGhBNLFBGRWqBH21oo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":460,"y":820,"strokeColor":"#202124","backgroundColor":"transparent","width":93,"height":19,"seed":101178433,"groupIds":["7n9Cse3WWz7efRfcJX32D"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"NQh75nyHB1usHUHR1z4Ot","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"QA SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"QA SUBNET"},{"type":"rectangle","version":138,"versionNonce":167658574,"isDeleted":true,"id":"It6Fg91kutUsPimMteqbG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":860,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":606323791,"groupIds":["VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":163,"versionNonce":1328639890,"isDeleted":true,"id":"ouGPfMM4Cwyo_TXxpI0BI","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":416,"y":876,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":142,"height":37,"seed":1948560417,"groupIds":["VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"line","version":133,"versionNonce":176982670,"isDeleted":true,"id":"KPd5j8UH0pjX178W7d956","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.164210319519,"y":876.9347368478775,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":1323590255,"groupIds":["iudIHUbJJMTVpR1r16jf4","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":133,"versionNonce":440511826,"isDeleted":true,"id":"x-Pl_3-Af0IxHMPTMvdDe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.1705255508423,"y":879.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":1239187457,"groupIds":["A6rGJ8bmCMkJWDug0G1y6","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":133,"versionNonce":1710753998,"isDeleted":true,"id":"_hDUEtPCKFfxqd50LXyNw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.6568412780762,"y":888.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":808205455,"groupIds":["VpiryfaYxmEW-iRtoSyNh","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":133,"versionNonce":470037266,"isDeleted":true,"id":"dxUQ_0nIzzdBXj90rLsuE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":607.6294736862183,"y":885.0505266189575,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":1697568737,"groupIds":["GIufUB0abrByh237Rselw","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":133,"versionNonce":1004125966,"isDeleted":true,"id":"cTBh7MDUkceYd-znE2DRw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":607.2063155174255,"y":885.9284210205078,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":1806946991,"groupIds":["BfcgeILTW7tP_tCcmjd3d","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":133,"versionNonce":1458569426,"isDeleted":true,"id":"x3ff1XK6td6g0gkQYkjcx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.6568412780762,"y":883.0989475250244,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.016840934753418,"height":3.7010529041290283,"seed":942355393,"groupIds":["k1dJRprUzoWoHFgEBz4gP","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-3.429474115371704],[-0.4863157272338867,-3.7010529041290283],[-1.016840934753418,-3.3915791511535645],[-1.016840934753418,0],[0,0]]},{"type":"line","version":133,"versionNonce":1353362766,"isDeleted":true,"id":"pydGRoKbh_IcQBu2GWyPl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":619.9768409729004,"y":892.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":438543567,"groupIds":["YYDtsfctbswzMmq2Ck_hl","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":133,"versionNonce":1721505426,"isDeleted":true,"id":"r-zQGoMMm4RalpkJEN_BW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":607.7999997138977,"y":890.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":1190204321,"groupIds":["Ls7-fi6Fuk9XnmHC_zttG","VbZbn7vj2IsY6EYlXO24A","jlc5t66PYxG-LjU53w-2q"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"iKMbPK-SQF1Wpw3bvJSpa","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"type":"rectangle","version":490,"versionNonce":1908659086,"isDeleted":true,"id":"Ewm3TZnx9dyQaz23xd6bv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":800,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":272.7272727272727,"height":160.00000000000003,"seed":2050733249,"groupIds":["rSFcwUCe--C834beUoAU3"],"strokeSharpness":"sharp","boundElements":[{"id":"pdPc6K8gQxSjcdIstC2GM","type":"arrow"}],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"1ZffgxEm7iEhX_jh3uJ65","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":358,"versionNonce":1539273810,"isDeleted":true,"id":"cd-uFgDtoVNcZEN5CUivs","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":760,"y":819,"strokeColor":"#202124","backgroundColor":"transparent","width":117,"height":19,"seed":538424271,"groupIds":["rSFcwUCe--C834beUoAU3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"1ZffgxEm7iEhX_jh3uJ65","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"PROD SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"PROD SUBNET"},{"type":"rectangle","version":126,"versionNonce":1499345358,"isDeleted":true,"id":"0ajDR25Afe-RD7-13RV7b","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":700,"y":860,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1430877345,"groupIds":["wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":148,"versionNonce":405871122,"isDeleted":true,"id":"-PSE6nWEp2ao7NJv59m6y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":716,"y":876,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":142,"height":37,"seed":363749871,"groupIds":["wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"line","version":121,"versionNonce":311609358,"isDeleted":true,"id":"ByJOBBW2IbSWy4wtKza_B","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.164210319519,"y":876.9347368478775,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":743716993,"groupIds":["b9dbaO3WwhieMnXG8nm9I","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":121,"versionNonce":719849426,"isDeleted":true,"id":"JgWyKACsRPawr-S3NQQdo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.1705255508423,"y":879.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":478825487,"groupIds":["uvMswIquB-8Ddm5DyJPV3","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":121,"versionNonce":1566217806,"isDeleted":true,"id":"xz41JtPeNaAvZSJh3liyN","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.6568412780762,"y":888.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":18579553,"groupIds":["hbLrWE4JqNj8WeNJyUGS4","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":121,"versionNonce":737885586,"isDeleted":true,"id":"xaf2lcJgKYxdMKNnY9BgM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907.6294736862183,"y":885.0505266189575,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":1352921647,"groupIds":["Ovw0AjCeRdpiFhxnyeYvO","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":121,"versionNonce":311336078,"isDeleted":true,"id":"4KXDyWRnqxcbBJ1zMaxUe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907.2063155174255,"y":885.9284210205078,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":1903086657,"groupIds":["fYQLeW_yRkFQzoLgoU2ZM","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":121,"versionNonce":413252434,"isDeleted":true,"id":"YOTTEKbnLE_k4SmWl-4xO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":912.6568412780762,"y":883.0989475250244,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.016840934753418,"height":3.7010529041290283,"seed":988009551,"groupIds":["eCKJxopZhDZj0H6OACCGs","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-3.429474115371704],[-0.4863157272338867,-3.7010529041290283],[-1.016840934753418,-3.3915791511535645],[-1.016840934753418,0],[0,0]]},{"type":"line","version":121,"versionNonce":132635342,"isDeleted":true,"id":"sWRajSP2f_et519CONdbB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":919.9768409729004,"y":892.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":892181537,"groupIds":["YFNlw9FuEnzJ0PmU-6qMN","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":121,"versionNonce":791838994,"isDeleted":true,"id":"C4vqvoT-8NzPxX2w0QQ-7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907.7999997138977,"y":890.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":857895535,"groupIds":["CxnKLIwp_Agt5XYWFZB59","wnVqv5F3oA8Ye6ViED9T-","oIR8EvobXIbVBrLozfTQS"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"FBRQR79WCfzcDxQf2qSz1","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"type":"rectangle","version":171,"versionNonce":1946112270,"isDeleted":true,"id":"A3eKhBGrcZNinQ6GBlfEY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":1160,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":54644289,"groupIds":["5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"round","boundElements":[{"id":"BcSy_szos-cbUBAyvULcw","type":"arrow"}],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"container"}},{"type":"text","version":167,"versionNonce":1260687058,"isDeleted":true,"id":"CcUymMemIT_7lt1klmA5Z","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":416,"y":1175.5,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":143,"height":19,"seed":624554575,"groupIds":["5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"round","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"fontSize":16,"fontFamily":2,"text":"Binary Authorization","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Binary Authorization"},{"type":"line","version":161,"versionNonce":1380843342,"isDeleted":true,"id":"OvpO8lQw6LgY0H05qao8z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":612.6638898849487,"y":1187.5217123031616,"strokeColor":"#00000000","backgroundColor":"#669df6","width":7.067220687866211,"height":13.477689743041992,"seed":1498439201,"groupIds":["EAmG0SzGFJnanXwsVjKnG","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[2.3271865844726562,0],[2.3271865844726562,0],[2.3155136108398438,0.6361570358276367],[2.2813262939453125,1.2466144561767578],[2.225862503051758,1.8318605422973633],[2.1503658294677734,2.3923826217651367],[2.0560789108276367,2.9286632537841797],[1.9442415237426758,3.4411935806274414],[1.8160982131958008,3.930455207824707],[1.6728887557983398,4.396936416625977],[1.3462371826171875,5.263503074645996],[0.9742250442504883,6.044783592224121],[0.5667839050292969,6.744668006896973],[0.1338481903076172,7.367043495178223],[-0.31464576721191406,7.915802955627441],[-0.7687664031982422,8.394835472106934],[-1.2185783386230469,8.808030128479004],[-1.6541500091552734,9.159279823303223],[-2.0655431747436523,9.452471733093262],[-2.4428253173828125,9.691496849060059],[-2.776063919067383,9.880244255065918],[-3.055323600769043,10.022604942321777],[-3.055323600769043,11.807255744934082],[-2.755502700805664,11.707316398620605],[-2.755502700805664,11.707316398620605],[-2.712222099304199,11.691277503967285],[-2.6347970962524414,11.661320686340332],[-2.5255584716796875,11.616576194763184],[-2.3868331909179688,11.556178092956543],[-2.220950126647949,11.47925853729248],[-2.030240058898926,11.3849515914917],[-1.8170318603515625,11.272383689880371],[-1.5836553573608398,11.1406888961792],[-1.0657119750976562,10.816454887390137],[-0.49504566192626953,10.405303001403809],[0.109710693359375,9.900286674499512],[0.7299222946166992,9.294468879699707],[1.0400018692016602,8.951586723327637],[1.3469552993774414,8.580899238586426],[1.6484565734863281,8.181540489196777],[1.9421758651733398,7.752638816833496],[2.2257823944091797,7.293332099914551],[2.4969482421875,6.802746772766113],[2.753342628479004,6.280014991760254],[2.9926376342773438,5.724270820617676],[3.212505340576172,5.134648323059082],[3.4106130599975586,4.510275840759277],[3.5846338272094727,3.850287437438965],[3.732235908508301,3.1538143157958984],[3.8510942459106445,2.419989585876465],[3.938876152038574,1.647944450378418],[3.9932546615600586,0.8368129730224609],[4.011897087097168,-0.014277458190917969],[4.011897087097168,-1.6704339981079102],[-0.8423547744750977,-1.6704339981079102],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":1091495058,"isDeleted":true,"id":"0EL5KyBxTwftFrlcVBH_6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":611.8072566986084,"y":1185.8512783050537,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":7.052944183349609,"height":19.131469160318375,"seed":1761923183,"groupIds":["WI9e2s0e1dMwm1-AfPXsA","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0.8280792236328125,-1.5704936981201172],[0.8280792236328125,-9.38013020157814],[-0.4854249954223633,-8.366447925567627],[-0.4854249954223633,-8.366447925567627],[-1.0193290710449219,-7.942404866218567],[-1.552311897277832,-7.47975492477417],[-2.079440116882324,-6.980045318603516],[-2.595775604248047,-6.444823980331421],[-3.0963850021362305,-5.875638484954834],[-3.57633113861084,-5.274036884307861],[-4.030677795410156,-4.641565799713135],[-4.454490661621094,-3.97977352142334],[-4.842833995819092,-3.290207862854004],[-5.190771579742432,-2.574415683746338],[-5.493367671966553,-1.8339462280273438],[-5.7456865310668945,-1.0703449249267578],[-5.942792892456055,-0.28516101837158203],[-6.079751014709473,0.5200586318969727],[-6.151625156402588,1.343766212463379],[-6.15347957611084,2.184414863586426],[-6.126155376434326,2.7413511276245117],[-6.066059589385986,3.292348861694336],[-5.973881721496582,3.836151123046875],[-5.850311756134033,4.3715057373046875],[-5.696040630340576,4.897154808044434],[-5.511757850646973,5.411846160888672],[-5.298153877258301,5.914322853088379],[-5.0559186935424805,6.403331756591797],[-4.785742282867432,6.877616882324219],[-4.488315582275391,7.33592414855957],[-4.164328098297119,7.776998519897461],[-3.8144702911376953,8.199583053588867],[-3.439432144165039,8.602428436279297],[-3.039902687072754,8.984272003173828],[-2.616575241088867,9.343866348266602],[-2.1701364517211914,9.679952621459961],[-2.0416412353515625,9.751338958740234],[-1.1850080490112305,8.366447448730469],[-1.2992267608642578,8.295063018798828],[-1.2992267608642578,8.295063018798828],[-1.7935752868652344,7.897085189819336],[-2.2557992935180664,7.466983795166016],[0.8994646072387695,5.6823320388793945],[0.8994646072387695,1.6847124099731445],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":1194124686,"isDeleted":true,"id":"jStVys1h_1ZIcjxldecmh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":610.9934558868408,"y":1187.5217123031616,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.6835217475891113,"height":11.964307069778442,"seed":851571201,"groupIds":["WI9e2s0e1dMwm1-AfPXsA","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":161,"versionNonce":984121938,"isDeleted":true,"id":"UpU6inBmpPX0iFyPyh6_V","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":610.9934558868408,"y":1187.5217123031616,"strokeColor":"#00000000","backgroundColor":"#fff","width":3.6835217475891113,"height":11.964307069778442,"seed":1208937103,"groupIds":["f4J7dG4CuvfaLccpN73gR","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829082,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.998215675354004],[-2.4842357635498047,4.440215110778809],[-2.4842357635498047,4.440215110778809],[-2.7565345764160156,3.982088088989258],[-2.9948692321777344,3.5084028244018555],[-3.198737621307373,3.020998001098633],[-3.36763858795166,2.521714210510254],[-3.5010690689086914,2.0123910903930664],[-3.5985279083251953,1.4948692321777344],[-3.659512519836426,0.9709901809692383],[-3.6835217475891113,0.4425945281982422],[-3.660844326019287,-0.1255941390991211],[-3.609179973602295,-0.6890983581542969],[-3.528989315032959,-1.246912956237793],[-3.420731544494629,-1.7980365753173828],[-3.284867763519287,-2.3414621353149414],[-3.1218581199645996,-2.8761892318725586],[-2.932162284851074,-3.401211738586426],[-2.716240882873535,-3.915525436401367],[-2.4745521545410156,-4.418128490447998],[-2.2075586318969727,-4.908015727996826],[-1.9157190322875977,-5.384182929992676],[-1.5994939804077148,-5.845627307891846],[-1.2593441009521484,-6.291343688964844],[-0.8957281112670898,-6.720329284667969],[-0.5091075897216797,-7.131580352783203],[-0.09994029998779297,-7.524091958999634],[-0.09994029998779297,-3.6264123916625977],[-2.013087272644043,0],[0,0]]},{"type":"line","version":161,"versionNonce":64291790,"isDeleted":true,"id":"FG1H8YjDrU5dPeviu8Ret","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":609.6085662841797,"y":1197.6157035827637,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.637927174568176,"height":13.63473892211914,"seed":882248161,"groupIds":["U-oABaPB0qCDdWNM_UnpL","5aC8-slfVfNHl6N6rCHaE","BXBHfaiNo2PEjRMcjKh0O"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"RW1qDNxOAU18dHq0ijb14","label":"Binary Authorization","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.6996078491210938,-0.3905677795410156],[-1.362553596496582,-0.8270187377929688],[-1.9873113632202148,-1.3067207336425781],[-2.572352886199951,-1.8270378112792969],[-3.116152763366699,-2.385334014892578],[-3.617182731628418,-2.978975296020508],[-4.073917865753174,-3.6053237915039062],[-4.484830379486084,-4.261747360229492],[-4.84839391708374,-4.945611953735352],[-5.163082122802734,-5.654278755187988],[-5.427367210388184,-6.385114669799805],[-5.639723539352417,-7.135483741760254],[-5.798623561859131,-7.902751922607422],[-5.902541399002075,-8.684283256530762],[-5.949949741363525,-9.477441787719727],[-5.939321756362915,-10.279594421386719],[-5.939321756362915,-11.850088119506836],[-7.624033451080322,-11.850088119506836],[-7.624033451080322,-10.279594421386719],[-7.624033451080322,-10.279594421386719],[-7.637927174568176,-9.323471069335938],[-7.579249858856201,-8.379413604736328],[-7.450050592422485,-7.45079231262207],[-7.252379655838013,-6.540971755981445],[-6.988286018371582,-5.6533203125],[-6.659819602966309,-4.791204452514648],[-6.269029378890991,-3.9579906463623047],[-5.817965745925903,-3.1570472717285156],[-5.308677673339844,-2.391742706298828],[-4.7432146072387695,-1.6654434204101562],[-4.123627185821533,-0.9815139770507812],[-3.451963424682617,-0.3433208465576172],[-2.730273723602295,0.24576377868652344],[-1.9606080055236816,0.7823753356933594],[-1.145014762878418,1.2631454467773438],[-0.28554439544677734,1.6847114562988281],[-0.014278411865234375,1.7846508026123047]]},{"type":"rectangle","version":147,"versionNonce":315123730,"isDeleted":true,"id":"MuZFZCmHJJEbcEIjywlCC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":100,"y":980,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":820694369,"groupIds":["7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"round","boundElements":[{"type":"text","id":"yiSd-6J4jgLJiBXNHfydg"}],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":143,"versionNonce":710892046,"isDeleted":true,"id":"Iv7Zr6CX_0Qp2QhAjv2c6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-380,"y":716,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":142,"height":37,"seed":1107031343,"groupIds":["7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"round","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"fontSize":16,"fontFamily":2,"text":"Google Kubernetes \nEngine","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Kubernetes \nEngine"},{"type":"line","version":117,"versionNonce":828741074,"isDeleted":true,"id":"tB_Ogmif9URHzZiXW390t","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-190.02736854553223,"y":720,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":19.932629585266113,"height":22.642104506492615,"seed":1674344769,"groupIds":["KcPhkf3grzfz53QJDgWXT","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-9.972631454467773,5.665263056755066],[-9.972631454467773,16.9705251455307],[-0.018947601318359375,22.642104506492615],[9.95999813079834,16.932631850242615],[9.95999813079834,5.557894587516785],[0,0]]},{"type":"line","version":116,"versionNonce":834988110,"isDeleted":true,"id":"TGefFVrUt9IsDRMAMvaRj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-187.82947444915771,"y":719.3978946208954,"strokeColor":"#00000000","backgroundColor":"#fff","width":15.637893676757812,"height":17.709473848342896,"seed":1749251919,"groupIds":["Uldw-GGSx5RRgcNl5Db3l","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.831578254699707,4.452631711959839],[-7.831578254699707,13.256842851638794],[-0.031579017639160156,17.709473848342896],[7.8063154220581055,13.225262880325317],[7.8063154220581055,4.357895135879517],[0,0]]},{"type":"line","version":116,"versionNonce":1737952146,"isDeleted":true,"id":"Kn_Iuud7eCCo5EtyfAoyh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-187.34315872192383,"y":728.5242109298706,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.4273681640625,"height":7.882104873657227,"seed":1229826337,"groupIds":["IfsDmn0DKHuXmZBIs0DdT","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,5.261052131652832],[4.4273681640625,2.665262222290039],[4.4273681640625,-2.6210527420043945],[0,0]]},{"type":"line","version":117,"versionNonce":1239330446,"isDeleted":true,"id":"Z7IZ5gJiTc-Dcq8VzoEOB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-200,"y":722.5831580162048,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":9.056841850280762,"height":5.185263156890869,"seed":2056631663,"groupIds":["I1kykiLW8b4vVleFm5B3L","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.49052619934082,2.602105140686035],[9.056841850280762,-0.006316184997558594],[4.49052619934082,-2.583158016204834],[0,0]]},{"type":"line","version":118,"versionNonce":1267976530,"isDeleted":true,"id":"-SVMcUrVmIPfAkooy5knx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-195.96842098236084,"y":720,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.427368640899658,"height":7.856842041015625,"seed":1792924929,"groupIds":["YWNsXNokjyuoXcr0epgZ_","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.395789623260498,2.6273679733276367],[4.395789623260498,7.856842041015625],[-0.031579017639160156,5.178946495056152],[0,0]]},{"type":"line","version":116,"versionNonce":1063627982,"isDeleted":true,"id":"sMliTHwcs_b4ZmT97xcb4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-180.0231590270996,"y":732.1999988555908,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.0673675537109375,"height":2.848422050476074,"seed":2013041889,"groupIds":["89eCKlsgNvrAuL0_E1Pxc","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.5936832427978516,-2.0905256271362305],[-4.0673675537109375,-1.2694730758666992],[-0.5810508728027344,0.7578964233398438],[0,0.4231586456298828],[0,0]]},{"type":"line","version":116,"versionNonce":347262738,"isDeleted":true,"id":"144zNrE3im2mc_dXejVJw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-192.2000002861023,"y":730.128420829773,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.947368621826172,"height":2.8484201431274414,"seed":57435567,"groupIds":["rNFdxS5lNSvzBc6zfx6n0","7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"quGgT6MXOAo7I1GUdu618","label":"GKE","resource":"gke","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.461052417755127,2.0842103958129883],[-3.461052417755127,2.5263166427612305],[-2.898947238922119,2.8484201431274414],[0.4863162040710449,0.8147373199462891],[0,0]]},{"id":"x2TzVX21UZ6TkxzZnI_6h","type":"text","x":-228.8644100388231,"y":879.9587936303021,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":96651247,"version":103,"versionNonce":1609753358,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"yiSd-6J4jgLJiBXNHfydg","type":"text","x":105,"y":1000.5,"width":230,"height":19,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["7goKnoCkbt_cuWzF4vvKs","DSNXsvfCWEeo93qlQiuXP"],"strokeSharpness":"round","seed":4539969,"version":182,"versionNonce":2003508434,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"text":"Required attestations build","fontSize":16,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":15,"containerId":"MuZFZCmHJJEbcEIjywlCC","originalText":"Required attestations build"},{"type":"rectangle","version":173,"versionNonce":1577013582,"isDeleted":true,"id":"lCjQZyTEArtBR_ssx6ki2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":980,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":595785231,"groupIds":["xFs4WMh6FTah8k0J_52vO","8Dl5bYzZf9cBe4Y4nRoQU"],"strokeSharpness":"round","boundElements":[{"id":"ncF8YT_z_OTOSl0cG4gIc","type":"text"},{"type":"text","id":"ncF8YT_z_OTOSl0cG4gIc"},{"id":"BcSy_szos-cbUBAyvULcw","type":"arrow"}],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"xUiJL3UPVgR8Msy3NuSMX","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":214,"versionNonce":22262418,"isDeleted":true,"id":"ncF8YT_z_OTOSl0cG4gIc","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":405,"y":991,"strokeColor":"#000000","backgroundColor":"transparent","width":230,"height":38,"seed":47871585,"groupIds":["xFs4WMh6FTah8k0J_52vO","8Dl5bYzZf9cBe4Y4nRoQU"],"strokeSharpness":"round","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"Required attestations build, \nsecurity","baseline":34,"textAlign":"center","verticalAlign":"middle","containerId":"lCjQZyTEArtBR_ssx6ki2","originalText":"Required attestations build, security"},{"type":"rectangle","version":181,"versionNonce":887355278,"isDeleted":true,"id":"0TmYeCcEoQcGV9jC2m4fX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":700,"y":980,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1020477217,"groupIds":["4pSlmnjQZibOs130E-Sb3","UupQjrOPAx6gu7EpGXjmJ"],"strokeSharpness":"round","boundElements":[{"id":"_TyuzdC_cxtRROfaAnnue","type":"text"},{"id":"_TyuzdC_cxtRROfaAnnue","type":"text"},{"type":"text","id":"_TyuzdC_cxtRROfaAnnue"}],"updated":1697744829083,"link":null,"locked":false,"customData":{"boxId":"rRg18D8ZBs9CfX193c9q8","label":"GKE","resource":"gke","type":"container"}},{"type":"text","version":233,"versionNonce":1965264978,"isDeleted":true,"id":"_TyuzdC_cxtRROfaAnnue","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":705,"y":991,"strokeColor":"#000000","backgroundColor":"transparent","width":230,"height":38,"seed":475823983,"groupIds":["4pSlmnjQZibOs130E-Sb3","UupQjrOPAx6gu7EpGXjmJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"Required attestations build, \nsecurity, quality","baseline":34,"textAlign":"center","verticalAlign":"middle","containerId":"0TmYeCcEoQcGV9jC2m4fX","originalText":"Required attestations build, security, quality"},{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow","x":-680,"y":21.250000000000014,"width":0,"height":118.74999999999999,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1520277185,"version":922,"versionNonce":215602638,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,118.74999999999999]],"lastCommittedPoint":null,"startBinding":{"elementId":"nuE-AcFQrwLl8JaHXKzu4","focus":0.5102040816326531,"gap":1.2500000000000142},"endBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow","x":260,"y":179.24695076595958,"width":0,"height":59.75304923404042,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1723920495,"version":402,"versionNonce":649180690,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,59.75304923404042]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0.4285714285714287,"gap":21},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow","x":320,"y":280,"width":140,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1492273537,"version":403,"versionNonce":519695374,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[140,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"0mG0njKLae7Xs8hf0tM2V","type":"arrow","x":680,"y":201,"width":0,"height":59,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1374805217,"version":158,"versionNonce":1458906066,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,59]],"lastCommittedPoint":null,"startBinding":{"elementId":"wdJbcKQ7xeYqt5eFLleXz","focus":0.6666666666666666,"gap":1},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"Ox5mUOuHGzYA12cNbxFFk","type":"line","x":380,"y":300,"width":0,"height":220,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2024543439,"version":132,"versionNonce":423443022,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,220]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"8rQyLaKxAoB8tQIxvtlYK","type":"arrow","x":380,"y":520,"width":41.16760302580866,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":978531009,"version":137,"versionNonce":268753298,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[41.16760302580866,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"gISyGfHd3ExlrEzh0Hj-0","type":"arrow","x":380,"y":400,"width":67.38461538461536,"height":219,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":204379183,"version":328,"versionNonce":41730190,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[-67.38461538461536,-219]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"w7G5c3bssSr0pDxV4UMRh","type":"line","x":600,"y":460,"width":0,"height":40,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":936183265,"version":112,"versionNonce":18339666,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,40]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"igogTZJwWzncygOnqfIbj","type":"arrow","x":751.2,"y":459,"width":28.799999999999955,"height":21,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":158035855,"version":174,"versionNonce":510754510,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[28.799999999999955,21]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow","x":840.0000000274126,"y":421,"width":2.69479869530187e-8,"height":58,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1148000065,"version":333,"versionNonce":1518673170,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[-2.69479869530187e-8,58]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"m9NP4e0V2NbJQI-NmR7jU","type":"text","x":930.3055778938806,"y":383.8664631304317,"width":7,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1468806017,"version":91,"versionNonce":1370780942,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"7mHnYCMq-L6XCjXQ8F8pG","type":"arrow","x":760,"y":460,"width":0,"height":39,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":198032527,"version":96,"versionNonce":700689106,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,-39]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"SEQW2KpBeU2Er3-0YvvU1","type":"line","x":920,"y":540,"width":20,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":136688367,"version":96,"versionNonce":96379726,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[20,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"7ovtTjRzZj2EWDoBAM3Je","type":"arrow","x":940,"y":540,"width":0,"height":219,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1088699169,"version":108,"versionNonce":896172178,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,-219]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"tzltvz06MYsY6b9U8_x56","type":"arrow","x":220,"y":262.1818181818182,"width":0,"height":62.18181818181819,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1391174767,"version":411,"versionNonce":216598926,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,-62.18181818181819]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"L_LKWVirTjHH4Ncix2DfT","type":"line","x":420,"y":540,"width":60,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":218084783,"version":107,"versionNonce":1496358482,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[-60,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"OwudwDvG4os7Lw0sCo-im","type":"line","x":360,"y":540,"width":0,"height":80,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1481369135,"version":107,"versionNonce":107784142,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,-80]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"FdOpZc3X7dy5DyT_pEmQC","type":"arrow","x":280.7235142118863,"y":336.66666666666663,"width":59.27648578811369,"height":123.33333333333337,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1570074561,"version":673,"versionNonce":1642923026,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[59.27648578811369,123.33333333333337]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","gap":16.666666666666664,"focus":0.16666666666666666},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"ASBL7QH_7dby1mNlRmSJK","type":"line","x":380,"y":540,"width":0,"height":40,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":232319745,"version":104,"versionNonce":1113751054,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,40]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"JGgM9Egr-cGxclIxeIH8n","type":"line","x":380,"y":580,"width":420,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1514809807,"version":113,"versionNonce":1771483602,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[220,0],[420,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"k9iST2Ww6ZFCoqs5qXDsx","type":"line","x":800,"y":580,"width":0,"height":20,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":958149089,"version":102,"versionNonce":633572430,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,-20]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"ax1y3gkL5MjprHkh-fIU3","type":"line","x":540,"y":560,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1621332353,"version":105,"versionNonce":860137362,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"NUpcmeUGsowAIlJzvOmbm","type":"line","x":320,"y":620,"width":560,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1196654817,"version":138,"versionNonce":241750670,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[560,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"pdPc6K8gQxSjcdIstC2GM","type":"arrow","x":880,"y":620,"width":0,"height":180,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1877976833,"version":101,"versionNonce":120448338,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,180]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"uw9uafUImq_py2-_G2vYB","type":"arrow","x":640,"y":620,"width":131.8947368421052,"height":179,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1226359905,"version":163,"versionNonce":923488462,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[131.8947368421052,179]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"9S5avaATpAiJMjsYiewcz","focus":0.6666666666666666,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"shJ__kxr9Uyo_Kc4UCS2e","type":"arrow","x":376.212961495801,"y":338.1818181818182,"width":56.21296149580098,"height":460.7272727272727,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":473193185,"version":543,"versionNonce":245984018,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[-56.21296149580098,460.7272727272727]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","gap":18.18181818181818,"focus":-0.8571428571428571},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"FMBTmNCSBwDRjjSH0lqCr","type":"arrow","x":260,"y":1100,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1446154753,"version":117,"versionNonce":457443086,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[0,-60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":0.5555555555555556,"gap":20},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"arrow","version":107,"versionNonce":808335570,"isDeleted":true,"id":"Y1BOjhXuHuS3ur54qYzON","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":1100,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":59,"seed":1970080129,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"startBinding":null,"endBinding":{"elementId":"lCjQZyTEArtBR_ssx6ki2","focus":0,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,-59]],"fontFamily":2},{"type":"arrow","version":138,"versionNonce":1535898958,"isDeleted":true,"id":"SmTDDfA1bsDdxpj6TSeh5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":1159,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":118,"seed":47789007,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"startBinding":{"elementId":"A3eKhBGrcZNinQ6GBlfEY","focus":0,"gap":1},"endBinding":{"elementId":"lCjQZyTEArtBR_ssx6ki2","focus":0,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,-118]],"fontFamily":2},{"type":"arrow","version":118,"versionNonce":1800621714,"isDeleted":true,"id":"7WlAZM0LQ2icqPKQK9bAh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":820,"y":1100,"strokeColor":"#202124","backgroundColor":"#202124","width":0,"height":59,"seed":608166383,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829083,"link":null,"locked":false,"startBinding":null,"endBinding":{"elementId":"0TmYeCcEoQcGV9jC2m4fX","focus":0,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[0,-59]],"fontFamily":2},{"id":"1nrFbf4Db13TekgDqhtK1","type":"line","x":260,"y":1100,"width":560,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1308437281,"version":114,"versionNonce":557587342,"isDeleted":true,"boundElements":null,"updated":1697744829083,"link":null,"locked":false,"points":[[0,0],[560,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"EHPHkg1qlxCE8U79Uzvvb","type":"arrow","x":200,"y":600,"width":0,"height":40,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1745442095,"version":97,"versionNonce":886025298,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"points":[[0,0],[0,40]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0,"gap":1},"endBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":-0.6888888888888889,"gap":20},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"Sj_PH5cNVlsYPvn1BMMmF","type":"arrow","x":77.35783594644624,"y":650.0649342600939,"width":301.6421640535538,"height":88.84339907323942,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":966489217,"version":218,"versionNonce":42826190,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"points":[[0,0],[301.6421640535538,88.84339907323942]],"lastCommittedPoint":null,"startBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":0.2,"gap":20},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"3OVxnvHgvYdzGxLVmKgk5","type":"arrow","x":180,"y":640.5681818181818,"width":39.184702084876704,"height":320.56818181818176,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":161534095,"version":752,"versionNonce":1383748114,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"points":[[0,0],[39.184702084876704,-320.56818181818176]],"lastCommittedPoint":null,"startBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":-0.7507962533212257,"gap":19.431818181818244},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"CVd8PMrfxHntfy0L8WE7V","type":"line","x":180,"y":640,"width":240,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1201180943,"version":113,"versionNonce":1721307150,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"points":[[0,0],[240,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":466,"versionNonce":927612882,"isDeleted":true,"id":"78Wctym-9y0ecv2s18Suj","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":400,"y":460,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":664002191,"groupIds":["yIXsaARoztc3ErlCISyV8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"qlWGZXu5w60raOSOrI44S","label":"Step Circle","type":"child"}},{"type":"text","version":431,"versionNonce":1767366222,"isDeleted":true,"id":"CsY-U-O3NloGTsyC4N_u8","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":410.5,"y":468,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":856315361,"groupIds":["yIXsaARoztc3ErlCISyV8"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"qlWGZXu5w60raOSOrI44S","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"6","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"6"},{"type":"ellipse","version":494,"versionNonce":1599501714,"isDeleted":true,"id":"SQqnNx10EYOgX9sTwlC09","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":540,"y":460,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":46022337,"groupIds":["dMtH3VaEcU5zbjmDq4RS4"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"uENvUshk8qf7zm8ydjU02","label":"Step Circle","type":"child"}},{"type":"text","version":460,"versionNonce":1067639950,"isDeleted":true,"id":"LHtehNjXKY0j42Scq6N1H","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":550.5,"y":468,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1046137295,"groupIds":["dMtH3VaEcU5zbjmDq4RS4"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"uENvUshk8qf7zm8ydjU02","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"7","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"7"},{"type":"ellipse","version":516,"versionNonce":735441746,"isDeleted":true,"id":"2wFSii_UEdNj0bs9Hccju","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":940,"y":380,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1148066735,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"qXhMc50XiP9gGZgWCu8RH","label":"Step Circle","type":"child"}},{"type":"text","version":482,"versionNonce":456336078,"isDeleted":true,"id":"srizKmCc_9FI7A91P3WwT","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":950.5,"y":388,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":366344897,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"qXhMc50XiP9gGZgWCu8RH","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"8","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"8"},{"id":"ZJZo43039jVVxfsk2ceXw","type":"text","x":945,"y":386,"width":22,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"round","seed":1298507681,"version":91,"versionNonce":1059043602,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":19,"containerId":"2wFSii_UEdNj0bs9Hccju","originalText":""},{"id":"4HGeJfVzni_9Ykz0cxFjn","type":"text","x":945,"y":386,"width":22,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["L_DSv2S_0pUqtZNNxeaGo"],"strokeSharpness":"round","seed":837734863,"version":88,"versionNonce":245471502,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":19,"containerId":"2wFSii_UEdNj0bs9Hccju","originalText":""},{"type":"ellipse","version":469,"versionNonce":1487587026,"isDeleted":true,"id":"X7ycdTkB9P_U4NG-rs4pl","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":2024578721,"groupIds":["rJzwglZhAlrEVjemXNN75"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"fvgf6kD4ul62xACCrvpGj","label":"Step Circle","type":"child"}},{"type":"text","version":434,"versionNonce":1902593870,"isDeleted":true,"id":"VwQg3CLetAv0KyHTeFZJk","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":290.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":753588207,"groupIds":["rJzwglZhAlrEVjemXNN75"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"fvgf6kD4ul62xACCrvpGj","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"6","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"6"},{"type":"ellipse","version":480,"versionNonce":823008402,"isDeleted":true,"id":"dH6mWSq7_6oPcsot9biDB","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":660,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1427148225,"groupIds":["L8nbqNJreSPzQOYQDtkHr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"tspEGr9ui0pQMyti_LAgw","label":"Step Circle","type":"child"}},{"type":"text","version":446,"versionNonce":1138568590,"isDeleted":true,"id":"yzcm-i9sCNwGYffZCXOme","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":670.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":744024783,"groupIds":["L8nbqNJreSPzQOYQDtkHr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"tspEGr9ui0pQMyti_LAgw","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"9","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"9"},{"type":"ellipse","version":488,"versionNonce":1442888274,"isDeleted":true,"id":"UZveLYbMK6MFTIRLte6g7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":900,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":555401839,"groupIds":["Mp4AZ36gw6YcN83NHxZ3E"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"_J3UUmmCABTjwsFyreQs3","label":"Step Circle","type":"child"}},{"type":"text","version":456,"versionNonce":322718670,"isDeleted":true,"id":"J9VAaI6kejeX2J2eD_Bq7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":906.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":616308737,"groupIds":["Mp4AZ36gw6YcN83NHxZ3E"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"_J3UUmmCABTjwsFyreQs3","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"10","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"10"},{"type":"ellipse","version":503,"versionNonce":106536978,"isDeleted":true,"id":"CtIeGm_0J0ZwgXEGqeaT7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":560,"y":1120,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":1259242543,"groupIds":["IjVz8Jyj9wjgoQtbidhFE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"Koa7RuVQRpC3YjZBDzcgx","label":"Step Circle","type":"child"}},{"type":"text","version":471,"versionNonce":1570611726,"isDeleted":true,"id":"3asuPQOuzubGWMxwfrB9o","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":567,"y":1128,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":16,"height":16,"seed":372136513,"groupIds":["IjVz8Jyj9wjgoQtbidhFE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"Koa7RuVQRpC3YjZBDzcgx","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"11","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"11"},{"id":"psR2OrDD9UVhhLE8qIasW","type":"text","x":-297.9651744985325,"y":622.7972508918074,"width":7,"height":23,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":78079887,"version":86,"versionNonce":235916754,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"ellipse","version":532,"versionNonce":1979330638,"isDeleted":true,"id":"i_UJISUT9aobixuJNgIVL","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":160,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":35,"seed":186361871,"groupIds":["DYKkFL0PVBanZIJj8EwyE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"JtclH-XJZ-XZePWv-u5vO","label":"Step Circle","type":"child"}},{"type":"text","version":502,"versionNonce":574243730,"isDeleted":true,"id":"fDr6bwLRei8m6nO9XKb3l","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":166.5,"y":348,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":64873569,"groupIds":["DYKkFL0PVBanZIJj8EwyE"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"JtclH-XJZ-XZePWv-u5vO","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"12","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"12"},{"type":"ellipse","version":447,"versionNonce":1747646094,"isDeleted":true,"id":"x5Pa38vqOFZy3lNJ389sX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-380,"y":200,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":58966837,"groupIds":["N6wIb8neExP8RGaioqiue"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"q_x4vNsCAxDX_x_EuMU_y","label":"Step Circle","type":"child"}},{"type":"text","version":408,"versionNonce":1024459090,"isDeleted":true,"id":"SEQamGre3PGTErj8bDluV","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-369.5,"y":208,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":972355227,"groupIds":["N6wIb8neExP8RGaioqiue"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"q_x4vNsCAxDX_x_EuMU_y","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"2","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"2"},{"type":"ellipse","version":352,"versionNonce":1558770894,"isDeleted":true,"id":"qNnIErxgfuV1BVkCyDL7b","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":160,"y":340,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":9267541,"groupIds":["tAvrdlE1qfkglhmYdkWYa"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"8YPcJJ6foKsJz74dVQC9L","label":"Step Circle","type":"child"}},{"type":"text","version":314,"versionNonce":2045249298,"isDeleted":true,"id":"tzcr4uTlnt1iS-LesRC0m","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":166.5,"y":348,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":676872827,"groupIds":["tAvrdlE1qfkglhmYdkWYa"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"8YPcJJ6foKsJz74dVQC9L","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"12","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"12"},{"type":"ellipse","version":437,"versionNonce":2110597902,"isDeleted":true,"id":"nlbYwb8ZxMrYUYDOAuQKA","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-840,"y":500,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":916897595,"groupIds":["75IRW1WjqOLiaStc0Ge1X"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"cX6_g5IRqptzU_mt4U-MX","label":"Step Circle","type":"child"}},{"type":"text","version":399,"versionNonce":1899582674,"isDeleted":true,"id":"TWu3gk1lMvvvZhguHlyEf","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-829.5,"y":508,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":2073306613,"groupIds":["75IRW1WjqOLiaStc0Ge1X"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"cX6_g5IRqptzU_mt4U-MX","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"4","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"4"},{"type":"ellipse","version":424,"versionNonce":1498454350,"isDeleted":true,"id":"ySves-RdNXqjcjwUKoCHi","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-720,"y":360,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1094769243,"groupIds":["ZToeJWayNv_1EdeRtK05m"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"qPCpsxGBwLGCOo5WKe8sR","label":"Step Circle","type":"child"}},{"type":"text","version":386,"versionNonce":345696914,"isDeleted":true,"id":"TbgPgnwdAuKVpTK4Rcl4L","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-709.5,"y":368,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":328518869,"groupIds":["ZToeJWayNv_1EdeRtK05m"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"qPCpsxGBwLGCOo5WKe8sR","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"3","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"3"},{"type":"ellipse","version":426,"versionNonce":1187790734,"isDeleted":true,"id":"eDNaee2-ziNKllxdYkwwc","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-340,"y":560,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":344326523,"groupIds":["-vRojK5P1iyf5s1nLk9FH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"yg_3yGKDcFztvdWz4Vy3R","label":"Step Circle","type":"child"}},{"type":"text","version":388,"versionNonce":180602962,"isDeleted":true,"id":"jFnlhC-vmj6T4zpxZ1_OQ","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-329.5,"y":568,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1609639861,"groupIds":["-vRojK5P1iyf5s1nLk9FH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"yg_3yGKDcFztvdWz4Vy3R","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"5","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"5"},{"type":"ellipse","version":360,"versionNonce":1249451470,"isDeleted":true,"id":"Wj7iDVYYlca3W0P3dXayl","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1140,"y":-80,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":302980085,"groupIds":["dIwiZvGV45gQvqMX3CF5e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"TpClCuqxTynKKfDAatPAJ","label":"Step Circle","type":"child"}},{"type":"text","version":322,"versionNonce":193654290,"isDeleted":true,"id":"8QdOVk_21qmgqx3OfCoPk","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1150.5,"y":-72,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":788040155,"groupIds":["dIwiZvGV45gQvqMX3CF5e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"TpClCuqxTynKKfDAatPAJ","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"6","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"6"},{"type":"ellipse","version":344,"versionNonce":2037396494,"isDeleted":true,"id":"3s9tAcNFDQcygVCxHFpMm","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":560,"y":460,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":813040341,"groupIds":["i_L8V6YNBUmR0hHAjrMwi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"1Bu_dDZftxqNUQVcXnGRb","label":"Step Circle","type":"child"}},{"type":"text","version":307,"versionNonce":1005018066,"isDeleted":true,"id":"K1mM9woJILebWzCpFR_u-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":570.5,"y":468,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":1006633211,"groupIds":["i_L8V6YNBUmR0hHAjrMwi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"1Bu_dDZftxqNUQVcXnGRb","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"8","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"8"},{"type":"ellipse","version":358,"versionNonce":1571455566,"isDeleted":true,"id":"jUA3TKshK_2tNTzX_WLJv","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1380,"y":380,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":366543899,"groupIds":["zDXWOmmc1ZC9RxRHVEVkT"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"LMa-w_IS3LJdeuq5ShOn0","label":"Step Circle","type":"child"}},{"type":"text","version":324,"versionNonce":166728082,"isDeleted":true,"id":"6BNlMUM31taBa1QEJJyhI","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1390.5,"y":388,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":322772757,"groupIds":["zDXWOmmc1ZC9RxRHVEVkT"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"LMa-w_IS3LJdeuq5ShOn0","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"9","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"9"},{"type":"ellipse","version":343,"versionNonce":1510017166,"isDeleted":true,"id":"QyyW29zaWzdyFBq0Dn3v1","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":900,"y":720,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":339728565,"groupIds":["nhvhvCjfKZCr-D7JKDisx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"cKcwg3JiT2txYous4-0B_","label":"Step Circle","type":"child"}},{"type":"text","version":308,"versionNonce":148639570,"isDeleted":true,"id":"B2VEnlnHe8GpA_hX7pbKG","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":907,"y":728,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":16,"height":16,"seed":852424987,"groupIds":["nhvhvCjfKZCr-D7JKDisx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"cKcwg3JiT2txYous4-0B_","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"11","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"11"},{"type":"ellipse","version":343,"versionNonce":237815502,"isDeleted":true,"id":"3FtIkVI1A_3wC1OCgEMU3","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":660,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1739122747,"groupIds":["8QPIG6RUyjbA1-SJ9b-kr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"WVoBhS9H_LVIQRzrNbK7h","label":"Step Circle","type":"child"}},{"type":"text","version":310,"versionNonce":1291998482,"isDeleted":true,"id":"gIxw9UejSwTnlKaz_V-Cs","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":666.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":1910836469,"groupIds":["8QPIG6RUyjbA1-SJ9b-kr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"WVoBhS9H_LVIQRzrNbK7h","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"10","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"10"},{"type":"ellipse","version":343,"versionNonce":986103054,"isDeleted":true,"id":"d1e0Oenb-v5dDUCf83OEY","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":700,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1467306965,"groupIds":["yV5YDSGRcP2-ufwRUukhN"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"MPcXP6eO_0VR7uPGzSbcC","label":"Step Circle","type":"child"}},{"type":"text","version":306,"versionNonce":1205461714,"isDeleted":true,"id":"7ZuVhaLvVu1wJk0aO3zQK","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":290.5,"y":708,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":68829179,"groupIds":["yV5YDSGRcP2-ufwRUukhN"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"MPcXP6eO_0VR7uPGzSbcC","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"7","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"7"},{"type":"ellipse","version":360,"versionNonce":625470286,"isDeleted":true,"id":"d9-BH4z0RtpPfGpI5Zg5m","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":200,"y":1060,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":715907867,"groupIds":["LPhhXdIsU9hsikPcWyT6H"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"kys11FcxCb6KpS0oZVjPc","label":"Step Circle","type":"child"}},{"type":"text","version":324,"versionNonce":603568274,"isDeleted":true,"id":"clhrnS2e9TZS9VFuM0mhf","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":210.5,"y":1068,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":9,"height":16,"seed":281784341,"groupIds":["LPhhXdIsU9hsikPcWyT6H"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"kys11FcxCb6KpS0oZVjPc","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"7","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"7"},{"type":"text","version":359,"versionNonce":2080985486,"isDeleted":true,"id":"eanvCRctDGqeRlnbsdImu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":160,"y":820,"strokeColor":"#202124","backgroundColor":"transparent","width":103,"height":19,"seed":1065355388,"groupIds":["v4Kyrx3gvgGfINYNqD0Sk"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"AAf3trC5P8q_OHT59SwTB","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DEV SUBNET","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DEV SUBNET"},{"id":"uhhZPNIvPGXYzmzoL3709","type":"text","x":-760,"y":600,"width":149,"height":19,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":653384572,"version":195,"versionNonce":555275858,"isDeleted":true,"boundElements":null,"updated":1697744829084,"link":null,"locked":false,"text":"DATA WAREHOUSE","fontSize":16,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":15,"containerId":null,"originalText":"DATA WAREHOUSE"},{"type":"ellipse","version":372,"versionNonce":977530830,"isDeleted":true,"id":"HWNst2nUxKk2Ub7IMNKkR","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":480,"y":1060,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":1725774076,"groupIds":["axztrPMqOSgjk_w9sjmye"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829084,"link":null,"locked":false,"customData":{"boxId":"1dqqZyQ61opbKGJ30kDvn","label":"Step Circle","type":"child"}},{"type":"text","version":340,"versionNonce":1879981074,"isDeleted":true,"id":"SI0sC_9keJi73ycQDfjCj","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":486.5,"y":1068,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":17,"height":16,"seed":1802233028,"groupIds":["axztrPMqOSgjk_w9sjmye"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"1dqqZyQ61opbKGJ30kDvn","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"10","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"10"},{"type":"ellipse","version":386,"versionNonce":202425870,"isDeleted":true,"id":"_F7fMv4ohWladS67CVOad","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":840,"y":1060,"strokeColor":"#202124","backgroundColor":"#202124","width":32,"height":32,"seed":472021956,"groupIds":["y2umzz-Xlk8G-IspTOE4C"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"_a_b-dfbVazRfX9b7IO1s","label":"Step Circle","type":"child"}},{"type":"text","version":358,"versionNonce":248572370,"isDeleted":true,"id":"dTbCFHCPvb9Nf6ucwG9jS","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":847,"y":1068,"strokeColor":"#FFFFFF","backgroundColor":"#202124","width":16,"height":16,"seed":170332796,"groupIds":["y2umzz-Xlk8G-IspTOE4C"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"_a_b-dfbVazRfX9b7IO1s","label":"Step Circle","type":"child"},"fontSize":14,"fontFamily":2,"text":"11","baseline":13,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"11"},{"id":"ghqypfbEJh-dvnDTHAIcH","type":"line","x":380,"y":300,"width":0,"height":140,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":448502084,"version":82,"versionNonce":845730894,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,-140]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow","x":381,"y":160,"width":258,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1451183812,"version":359,"versionNonce":611835794,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[258,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":89,"versionNonce":1730484878,"isDeleted":true,"id":"DNRYALDqi1CMZ407YFMI3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":420,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1065392836,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":84,"versionNonce":1564089682,"isDeleted":true,"id":"eJomFSVxjUy8CA021T_nR","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":436,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":1786667900,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":98,"versionNonce":1090427086,"isDeleted":true,"id":"VLzUJ4pIQ5osVXVSLrklz","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":458,"strokeColor":"#202124","backgroundColor":"transparent","width":87,"height":19,"seed":1302897220,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Worker pool","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Worker pool"},{"type":"line","version":82,"versionNonce":1181655826,"isDeleted":true,"id":"1WZz9VqXfMJsELdp7dHOI","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":460,"strokeColor":"#202124","backgroundColor":"transparent","width":16,"height":1,"seed":945591292,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":82,"versionNonce":395202318,"isDeleted":true,"id":"KcciNXEB3h0zkb2cQNrhE","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":468,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":2019801540,"groupIds":["YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":12,"fontFamily":2,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":84,"versionNonce":713846994,"isDeleted":true,"id":"SppQSCjT74DPScg_ORU8q","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":452.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":2082518140,"groupIds":["iD44Czl413s4ESjNAkWSd","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":84,"versionNonce":1733115214,"isDeleted":true,"id":"fV_EDs7iZL8hrvyi9Fxgz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":446.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1523573060,"groupIds":["F_IN6YnFoXW-TRgDyaHYI","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":84,"versionNonce":1831503506,"isDeleted":true,"id":"WTdjlv2OVRXBRiMvdiKWW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":453.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":1670169852,"groupIds":["p1tkBs4iKH9bp4frqFQhp","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":84,"versionNonce":898917262,"isDeleted":true,"id":"4BOD-jvJBDDY5i2T9hUbn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":444.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":2085296324,"groupIds":["p1tkBs4iKH9bp4frqFQhp","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":84,"versionNonce":1728046162,"isDeleted":true,"id":"XP0An1VsdfWFa8QHfliLY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":451.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":337823100,"groupIds":["p1tkBs4iKH9bp4frqFQhp","YbF1VhtR5IoWi-lYIGAqS","jAGgxaV68qTEiVpHo7G2W"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"XOMy8QrxWZ0K4rehh5TUj","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":111,"versionNonce":1956430286,"isDeleted":true,"id":"kc7mdb2IBHnKZYCbJMjm7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":680,"y":480,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1120254844,"groupIds":["y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"}],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":103,"versionNonce":1105431058,"isDeleted":true,"id":"dJ2tzvuRAJfFvfjIPzVFe","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":496,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":35834436,"groupIds":["y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":124,"versionNonce":1736398862,"isDeleted":true,"id":"xaTOtMZ49dWyeSGmOtO0Y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":696,"y":518,"strokeColor":"#202124","backgroundColor":"transparent","width":51,"height":19,"seed":1039723516,"groupIds":["y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Trigger","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Trigger"},{"type":"line","version":103,"versionNonce":1422686162,"isDeleted":true,"id":"xoHKFM0mjusJ07kR_cD56","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":892.1500005722046,"y":512.2449989318848,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":1800987076,"groupIds":["Gz74dBPzSm8cjaUL9CuMO","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":103,"versionNonce":104146510,"isDeleted":true,"id":"doVXqdwVU7_lwMNGCtN_R","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":888.6324996948242,"y":506.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":1014107260,"groupIds":["FTqAmV2doIlHqdn-7Kim7","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":103,"versionNonce":2144447890,"isDeleted":true,"id":"PETMVXYIvr8UywI69DQlM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":891.460000038147,"y":513.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":81791300,"groupIds":["5Q1wX-u5k25t96EfH9sB3","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":103,"versionNonce":1637297294,"isDeleted":true,"id":"ZLBR81rFBmSV2Z2WCLOBf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":887.9274997711182,"y":504.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":1072897276,"groupIds":["5Q1wX-u5k25t96EfH9sB3","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":103,"versionNonce":136981330,"isDeleted":true,"id":"jxLN7FHPXy1Yg35NSz4gt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":897.0625,"y":511.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":1108754628,"groupIds":["5Q1wX-u5k25t96EfH9sB3","y5nDgA5JRqobTXiU7MXqs","Dj6qBs0PK6pIuGVHjR54n"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"hzpvJNZ8CpRAPAjCV7wET","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"type":"rectangle","version":145,"versionNonce":123628238,"isDeleted":true,"id":"rW2PTmqX4Ggypk0jdCJFh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":240,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":409952252,"groupIds":["V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"round","boundElements":[{"id":"DfIrtZP8buaaSUfiDxtCo","type":"arrow"},{"id":"W9R12Uosv_ysCejW7Zfn5","type":"arrow"},{"id":"wzTbZ3Gv04CVnyVobOJbO","type":"arrow"},{"id":"tzltvz06MYsY6b9U8_x56","type":"arrow"}],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"container"}},{"type":"text","version":133,"versionNonce":1949102354,"isDeleted":true,"id":"Hd7aQLoWFzaz1ovM4ixkd","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":256,"strokeColor":"#1A73F8","backgroundColor":"transparent","width":160,"height":18,"seed":1890823620,"groupIds":["V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Build","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Build"},{"type":"text","version":154,"versionNonce":1713627406,"isDeleted":true,"id":"lquLK_i34OYzBzJDvwRPO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":278,"strokeColor":"#202124","backgroundColor":"transparent","width":51,"height":19,"seed":1744437372,"groupIds":["V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"fontSize":16,"fontFamily":2,"text":"Trigger","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Trigger"},{"type":"line","version":133,"versionNonce":1733361362,"isDeleted":true,"id":"ce5H79HhQCRlJ6nwTv27P","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":292.1500005722046,"y":272.24499893188477,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":4.709999084472656,"height":6.779998779296875,"seed":755062084,"groupIds":["_zMTF_ElLblJuEEBpa78C","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.524998664855957,-2.032498359680176],[3.524998664855957,-6.097498893737793],[2.339999198913574,-6.779998779296875],[-1.1850004196166992,-0.6824989318847656],[0,0],[0,0]]},{"type":"line","version":133,"versionNonce":828411726,"isDeleted":true,"id":"mCjrIe1iRb2FYIaBqMEjR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":288.6324996948242,"y":266.147500038147,"strokeColor":"#00000000","backgroundColor":"#669df6","width":4.70250129699707,"height":6.780000686645508,"seed":509382908,"groupIds":["dQkU7M0ztXto41TUnazEv","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,4.065000534057617],[1.1850004196166992,4.747500419616699],[4.70250129699707,-1.3500003814697266],[3.517500877380371,-2.0325002670288086],[0,0],[0,0]]},{"type":"line","version":133,"versionNonce":2116899986,"isDeleted":true,"id":"MtXUnnRu-UI3yVxYGZaH2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":291.460000038147,"y":273.4449996948242,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.972499847412109,"height":13.80749797821045,"seed":1882066116,"groupIds":["7i0FLwIjkps9d5C-bB4hW","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.222500324249268,-2.429999351501465],[-4.222500324249268,-7.297499656677246],[-7.972499847412109,-9.464999198913574],[-7.972499847412109,-0.2625007629394531],[0,4.342498779296875],[0,0],[0,0]]},{"type":"line","version":133,"versionNonce":1164801422,"isDeleted":true,"id":"URHHJwUyPV5oRPyZPHNEe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":287.92749977111816,"y":264.94750022888184,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":15.952500820159912,"height":6.772500038146973,"seed":2065240444,"groupIds":["7i0FLwIjkps9d5C-bB4hW","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.222500801086426,-2.4375],[8.444999694824219,0],[12.20250129699707,-2.1675004959106445],[4.222500801086426,-6.772500038146973],[-3.749999523162842,-2.1675004959106445],[0,0],[0,0]]},{"type":"line","version":133,"versionNonce":712569426,"isDeleted":true,"id":"xO75XndnkfOvqb82uhQpQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":297.0625,"y":271.01500034332275,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":7.965000152587891,"height":13.80749797821045,"seed":735564868,"groupIds":["7i0FLwIjkps9d5C-bB4hW","V2bk2rXnXCzbu-MyaIj_J","7Yn47CKRjpTbKs88WzXej"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"kLidXBsuXTZeh2Z2UdLlI","label":"Cloud Build","resource":"cloudbuild_git_trigger","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.215000152587891,2.429999351501465],[-4.215000152587891,6.77249813079834],[3.75,2.1674985885620117],[3.75,-7.034999847412109],[0,-4.867500305175781],[0,0],[0,0]]},{"id":"XBtPrrKjt-IYFDzTFgmrF","type":"line","x":260,"y":1040,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":557421380,"version":73,"versionNonce":193172430,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"6QHaaka5rNhpcRtNPhcSl","type":"line","x":520,"y":1040,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":799253500,"version":71,"versionNonce":252368914,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"ShpizXL49uz-ODMS8A3gc","type":"line","x":820,"y":1040,"width":0,"height":60,"angle":0,"strokeColor":"#202124","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1828784324,"version":74,"versionNonce":1572596238,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,60]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"BcSy_szos-cbUBAyvULcw","type":"arrow","x":520,"y":781,"width":0,"height":378,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1193576132,"version":178,"versionNonce":1541014994,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,378]],"lastCommittedPoint":null,"startBinding":{"elementId":"DYaaB9-Upcbvgkx-N9rbN","focus":-0.022222222222222223,"gap":21},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"8USQIac6tvkAE-1mcKOT-","type":"line","x":600,"y":460,"width":160,"height":0,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1735818366,"version":76,"versionNonce":1796175950,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[160,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"i8pIgAaXwDjUT4tCQU6ap","type":"line","x":360,"y":500,"width":0,"height":80,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1938641314,"version":77,"versionNonce":704478098,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,-40],[0,40]],"lastCommittedPoint":[0,-40],"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"loRDMdwvBp_wHXFbuRIXd","type":"line","x":360,"y":460,"width":0,"height":80,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":219925310,"version":73,"versionNonce":458702478,"isDeleted":true,"boundElements":null,"updated":1697744829085,"link":null,"locked":false,"points":[[0,0],[0,40],[0,80]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":89,"versionNonce":1470904658,"isDeleted":true,"id":"LJk2XCvI5nymX1bvvY-K5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-560,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1667954679,"groupIds":["OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{}},{"type":"text","version":100,"versionNonce":1934376142,"isDeleted":true,"id":"Oao7PNEfHAidyLqMR0UZe","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-536.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":383379193,"groupIds":["OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":89,"versionNonce":1681735442,"isDeleted":true,"id":"ebm5I-ffxunqTEdQET6aV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-531,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1230430487,"groupIds":["1jwBp00-X1LvsFMNfgM1i","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":89,"versionNonce":2022142734,"isDeleted":true,"id":"JGPcvZGwBXATHwBd9fFag","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-511,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":1154785241,"groupIds":["LCCtG2EFzC8Ei0I0_l7Vl","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":89,"versionNonce":1277660370,"isDeleted":true,"id":"WmvhC96coCpe8dr5Mjny6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-524,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":405317175,"groupIds":["mV96xTNDSUGyXTkpNyXSd","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":89,"versionNonce":360833358,"isDeleted":true,"id":"sJ2uzvF4adnQV8bL5K1V_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-511,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":1489321145,"groupIds":["KgBJiZNE_14Hk6ZktT8tm","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":89,"versionNonce":1694638738,"isDeleted":true,"id":"xxyH-bIwD3xzAYM63lint","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-524,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":1858389847,"groupIds":["4Bx09aiAdKrALiVoXrAIL","OAWkqXeW9V9QnRaA2Zf13"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":97,"versionNonce":2106886030,"isDeleted":true,"id":"XcWFGvwFHWeHat_0QxYqT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-460,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1663502903,"groupIds":["fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"}},{"type":"text","version":102,"versionNonce":964952146,"isDeleted":true,"id":"VXnomDYAaMYKVL5_ZIeRg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-436.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":240064697,"groupIds":["fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"round","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":97,"versionNonce":284714446,"isDeleted":true,"id":"9iqb-SYzoShcfP7QwItnt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-431,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":341224279,"groupIds":["EFmQgnMtLO1MJuQ0fMxGA","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":97,"versionNonce":1703159314,"isDeleted":true,"id":"9btzpZ2MwGv_siztDnLyo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-411,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":37591449,"groupIds":["2pYI9dMJHFDgFbfJcG3T0","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":97,"versionNonce":1086749710,"isDeleted":true,"id":"I1N-jf6unhLTizhB78PfQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-424,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":2100635767,"groupIds":["09tcDvUms1SzTHWhZVYmV","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829085,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":97,"versionNonce":1912181714,"isDeleted":true,"id":"YiWvovsyJ0LRPAT2oGYfY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-411,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":2053701241,"groupIds":["j2TCQ1qABDNdYb3DFD9Ek","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":97,"versionNonce":1928841806,"isDeleted":true,"id":"swnDs17DE0NL7dhh8CMfj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-424,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":2072445335,"groupIds":["d2MMvMq_3pVywE4K3yugn","fAu4Y2TuePjhZPAHGrCrc"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"Qad_ZwMF65Ad2td3ztjRq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":101,"versionNonce":821774738,"isDeleted":true,"id":"EfLUqG8VkbxWkqofNu1B6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-360,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":626560855,"groupIds":["pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"}},{"type":"text","version":106,"versionNonce":1717915790,"isDeleted":true,"id":"fa09_vxJI_A-2DtmwCGsy","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-336.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":1706816921,"groupIds":["pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":101,"versionNonce":432031570,"isDeleted":true,"id":"e-GkTlFxyJ-fqiVyoSwk7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-331,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1549438071,"groupIds":["ReLFbn2tftwCinmWPXlhG","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":101,"versionNonce":382209742,"isDeleted":true,"id":"5sCtVdicHMUOVfodqKu9Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-311,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":364632697,"groupIds":["LtHdkl7DN2Qa7V1yMnfk3","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":101,"versionNonce":614436114,"isDeleted":true,"id":"rmsIhDwyQUdOWXEqw0LMn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-324,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":408937879,"groupIds":["PEtvkJACkiUMhjCp1EJXh","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":101,"versionNonce":548996366,"isDeleted":true,"id":"rQvhMy4vcDVytMFvFpQB8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-311,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":170664793,"groupIds":["gCGplUD8yCEIPVgiWezp-","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":101,"versionNonce":655366866,"isDeleted":true,"id":"02d2aUGDcSfIxY6BIn6kW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-324,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":412949175,"groupIds":["lss6KLgOwy6qgYErilXsH","pDXzfPHgZzxxwtOMrtSpg"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"LoPiLQO2NSOPANfJRhWgB"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":209,"versionNonce":632369998,"isDeleted":true,"id":"rfo0vgI0WaVRshIqPSdJC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":80,"y":360,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":691709241,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"7f_aN7Y5o9pnUMQ7rmRx4","type":"arrow"}],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":202,"versionNonce":799600786,"isDeleted":true,"id":"dAUJF7WEtziGbQ3uyvZ2E","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":96,"y":376,"strokeColor":"#1a73e8","backgroundColor":"transparent","width":160,"height":18,"seed":421013207,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[{"id":"gISyGfHd3ExlrEzh0Hj-0","type":"arrow"}],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"rectangle","version":199,"versionNonce":805935502,"isDeleted":true,"id":"DPClQ7KUuT12YCCEymTVJ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":380,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1090754073,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":1646333522,"isDeleted":true,"id":"hpDrdXTPj8o9tyZIA0Kfd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":380,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1933259767,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":199,"versionNonce":385562574,"isDeleted":true,"id":"BavSg1cJoq_vXXJT4mLD-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":302,"y":380,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1480289017,"groupIds":["caOxQrXK9y3hN8mWh7_fl","BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":199,"versionNonce":1397715986,"isDeleted":true,"id":"skpoMvVatbUmCjoe8K85i","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":380,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1807719703,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":1654590990,"isDeleted":true,"id":"sneTMVr3u-qcwmfDnA-qq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":286,"y":383,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1734714329,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":1697325522,"isDeleted":true,"id":"_joX6HYG8CR5zAMWrbcQE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":295,"y":382,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1712972343,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":804133966,"isDeleted":true,"id":"C5ctS2MQQidHb5nm4_ILL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":389,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":177586361,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":583735186,"isDeleted":true,"id":"FXCNZFliDY_xW0NsKnRlB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":389,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1663992663,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":199,"versionNonce":348217998,"isDeleted":true,"id":"aWzWHJzcm-yYcaOIyP56W","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":302,"y":389,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":258949529,"groupIds":["4E-ATa57osK16LOiBqxdn","BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":199,"versionNonce":476468562,"isDeleted":true,"id":"fxpqr3CKhdPcffo4amL76","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":389,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1397882999,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":64086222,"isDeleted":true,"id":"m4I01ocnrd0dWScMYKrpD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":286,"y":392,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1126540921,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":199,"versionNonce":1129569042,"isDeleted":true,"id":"d72llA2G6JzkjWIuawbMC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":295,"y":391,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":675862935,"groupIds":["BvSX7YpaQgFV6wb08G3nE","HwTCCLwG4W0Nf8Sdmtinx"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"FV69FXJ4PIlJiH340IvLT","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"text","version":212,"versionNonce":817403662,"isDeleted":true,"id":"EM9xr5KsBCr4SK2RSCHMw","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-300,"y":600,"strokeColor":"#202124","backgroundColor":"transparent","width":120,"height":19,"seed":143092345,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"VISUALIZATION","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"VISUALIZATION"},{"type":"text","version":229,"versionNonce":1175103698,"isDeleted":true,"id":"g9ZP1GdyeFgArDXsAP7yG","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-500,"y":420,"strokeColor":"#202124","backgroundColor":"transparent","width":121,"height":19,"seed":531028089,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"DATA ANALYSIS","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA ANALYSIS"},{"type":"rectangle","version":124,"versionNonce":1945011534,"isDeleted":true,"id":"9S5avaATpAiJMjsYiewcz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-340,"y":480,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":817874903,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"container"}},{"type":"text","version":125,"versionNonce":1814150802,"isDeleted":true,"id":"5TTFh6lcnxiCqjt7mWQwt","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-324,"y":496,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":103,"height":20,"seed":300057881,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[{"id":"eA4HsqtnkUBOc8YEdHjwl","type":"arrow"}],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"fontSize":16,"fontFamily":5,"text":"Looker Studio","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Looker Studio"},{"type":"text","version":65,"versionNonce":785165198,"isDeleted":true,"id":"I4Xb6FpodIm3uSBY53pVF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":780,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1464251639,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":66,"versionNonce":1917852754,"isDeleted":true,"id":"rnrN3Odmd9WXmUDaXtfRt","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":807,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":761559545,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":64,"versionNonce":797706702,"isDeleted":true,"id":"lF517h0RQcr8ee7FCIdmT","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":456,"y":813,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":615710231,"groupIds":["qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":116,"versionNonce":1718403602,"isDeleted":true,"id":"2VyNtq4L4VK0KS1vxepg6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-132.03875017166138,"y":497.33350002765656,"strokeColor":"#00000000","backgroundColor":"#d2e3fc","width":3.7423171997070312,"height":3.734805941581726,"seed":1922355929,"groupIds":["1btVUiomdVH3Kr3B2_Z5g","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.5100312232971191,0.0662999153137207],[-0.9578003883361816,0.256449818611145],[-1.6157517433166504,0.9213823080062866],[-1.8722500801086426,1.8209623098373413],[-1.625687599182129,2.7813557386398315],[-1.5472497940063477,2.906999945640564],[-0.7537503242492676,2.1134999990463257],[-0.7537503242492676,2.1134999990463257],[-0.7934994697570801,1.8667501211166382],[-0.6784472465515137,1.459694266319275],[-0.3909187316894531,1.182958722114563],[-0.005667686462402344,1.078858494758606],[0.40255308151245117,1.1897085905075073],[0.6975464820861816,1.4928752183914185],[0.7934422492980957,1.8802498579025269],[0.6909708976745605,2.2659372091293335],[0.39086198806762695,2.564041018486023],[0,2.6670001745224],[-0.24749994277954102,2.6339999437332153],[-1.0394997596740723,3.413999915122986],[-1.0394997596740723,3.413999915122986],[-0.09706878662109375,3.734805941581726],[0.823235034942627,3.547327399253845],[1.539562702178955,2.9398897886276245],[1.7644085884094238,2.5062869787216187],[1.8700671195983887,2.000815749168396],[1.763500690460205,1.230448842048645],[1.3719353675842285,0.5925709009170532],[0.7621073722839355,0.15861141681671143],[0.0007500648498535156,0],[0,0]]},{"type":"line","version":116,"versionNonce":356884494,"isDeleted":true,"id":"CQqJXPRgjxn0OPYbwkbi8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-132.77899980545044,"y":502.76725006103516,"strokeColor":"#00000000","backgroundColor":"#5e97f6","width":1.8870000839233398,"height":4.200750827789307,"seed":1274618679,"groupIds":["eow4gkBPcRiPAVE1M738y","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.1371932029724121,-0.9175972938537598],[-0.553499698638916,-1.7467503547668457],[-1.6200003623962402,-0.7132501602172852],[-1.6200003623962402,-0.7132501602172852],[-1.4332499504089355,0],[-1.5482854843139648,0.5842504501342773],[-1.8870000839233398,1.0739998817443848],[-1.320000171661377,2.454000473022461],[-1.320000171661377,2.454000473022461],[-0.7648921012878418,1.9806079864501953],[-0.3492741584777832,1.3941383361816406],[-0.0890202522277832,0.7240996360778809],[0,0],[0,0]]},{"type":"line","version":116,"versionNonce":57585618,"isDeleted":true,"id":"Lyyk_etILK4xyblptFnVr","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-135.6725001335144,"y":504.2544994354248,"strokeColor":"#00000000","backgroundColor":"#5e97f6","width":4.788131952285767,"height":5.8241026401519775,"seed":1711738809,"groupIds":["8scWl7gGuaJ6VdTbSX0yj","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7686569690704346,-0.19264698028564453],[-1.3029444217681885,-0.7155532836914062],[-1.519442081451416,-1.4311113357543945],[-1.3347289562225342,-2.2017135620117188],[-0.9288370609283447,-2.6721296310424805],[-0.38905811309814453,-2.929086685180664],[0.20825529098510742,-2.9536781311035156],[0.7867498397827148,-2.726999282836914],[1.813499927520752,-3.7469992637634277],[1.813499927520752,-3.7469992637634277],[0.9519872665405273,-4.242705345153809],[-0.026999950408935547,-4.414499521255493],[-0.8281154632568359,-4.312613487243652],[-1.5320091247558594,-4.015993595123291],[-2.1186437606811523,-3.5587029457092285],[-2.567983627319336,-2.974803924560547],[-2.8599919080734253,-2.298361301422119],[-2.9746320247650146,-1.5634379386901855],[-2.891867995262146,-0.8040962219238281],[-2.591663122177124,-0.05439949035644531],[-2.0081441402435303,0.6735925674438477],[-1.2448241710662842,1.1711139678955078],[-0.365445613861084,1.4096031188964844],[0.5662503242492676,1.3605003356933594],[0,0]]},{"type":"line","version":116,"versionNonce":871525966,"isDeleted":true,"id":"a0aWqVR-G7zE22ypAuvJD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-131.9989995956421,"y":505.4409999847412,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":13.195429801940918,"height":13.228109359741211,"seed":763208791,"groupIds":["wsCQDBWJiABDfBMhhWxQH","qGozkT32hN_3hNcIKafRs","aehIdcQh8bj4SRS7sDpi2"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"q_T0s9QsnhtFIwhSerxq3","label":"Looker","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-1.9072504043579102,0.2805004119873047],[-1.0935001373291016,2.280750274658203],[-1.0935001373291016,2.280750274658203],[0,2.147250175476074],[1.225865364074707,2.3133630752563477],[2.3003673553466797,2.7765493392944336],[3.193240165710449,3.4843788146972656],[3.8742170333862305,4.384426116943359],[4.3130340576171875,5.42425537109375],[4.479426383972168,6.551445007324219],[4.343131065368652,7.713560104370117],[3.8738794326782227,8.858175277709961],[3.1170883178710938,9.836748123168945],[2.178708076477051,10.535699844360352],[1.1192741394042969,10.955032348632812],[-0.0006742477416992188,11.094751358032227],[-1.1206021308898926,10.954858779907227],[-2.1799707412719727,10.535362243652344],[-3.1182432174682617,9.836267471313477],[-3.874882698059082,8.857574462890625],[-4.254111051559448,8.009841918945312],[-4.4462738037109375,7.13081169128418],[-4.458913087844849,6.24669075012207],[-4.299572467803955,5.383687973022461],[-3.97579288482666,4.568010330200195],[-3.495117664337158,3.825863838195801],[-2.8650894165039062,3.1834583282470703],[-2.093250274658203,2.6669998168945312],[-2.9070005416870117,0.6667499542236328],[-2.9070005416870117,0.6667499542236328],[-4.429308652877808,1.68048095703125],[-5.558233737945557,2.9912586212158203],[-6.2874510288238525,4.509803771972656],[-6.610635757446289,6.1468400955200195],[-6.5214632749557495,7.813089370727539],[-6.013608932495117,9.419271469116211],[-5.080748081207275,10.876110076904297],[-3.7165560722351074,12.094327926635742],[-2.0774850845336914,12.905818939208984],[-0.3778553009033203,13.228109359741211],[1.3018522262573242,13.10035514831543],[2.8811588287353516,12.561723709106445],[4.279585838317871,11.651374816894531],[5.416653633117676,10.408468246459961],[6.211883544921875,8.872167587280273],[6.584794044494629,7.081634521484375],[6.536764144897461,5.680234909057617],[6.209012031555176,4.363650321960449],[5.630675315856934,3.1632137298583984],[4.830890655517578,2.110261917114258],[3.838794708251953,1.2361297607421875],[2.6835222244262695,0.5721530914306641],[1.394211769104004,0.14966392517089844],[0,0],[0,0]]},{"type":"rectangle","version":110,"versionNonce":225240466,"isDeleted":true,"id":"D6aJ_2_A95YlU4x7pRShZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-800,"y":480,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":2044467065,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":104,"versionNonce":2020308110,"isDeleted":true,"id":"ziTJLMTGXBaihpVo72h8a","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-784,"y":496,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":858650775,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[{"id":"3EleidzYjikUW9ZkNfEPT","type":"arrow"}],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":5,"text":"BigQuery","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery"},{"type":"text","version":63,"versionNonce":765354834,"isDeleted":true,"id":"yocS2x47D1cJJUeo8hyYV","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":236,"y":818,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1497153625,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":65,"versionNonce":1281995470,"isDeleted":true,"id":"UzhS7a9jmDHd0k787P82D","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":236,"y":845,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":5,"seed":1982909879,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[104,-5],[208,0]]},{"type":"text","version":63,"versionNonce":1314531602,"isDeleted":true,"id":"2a-zmsgTooCjG_D84EKDh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":236,"y":853,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1549094201,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":103,"versionNonce":2055612686,"isDeleted":true,"id":"RnleHxA9DF4HZsoQ1WmJ-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-581.578784942627,"y":512.7999992370605,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":945553111,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":103,"versionNonce":1998010066,"isDeleted":true,"id":"gMuURjq2cP6ln7sAdjHOH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-588.7450857162476,"y":497.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":176766489,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":103,"versionNonce":305780558,"isDeleted":true,"id":"___yOsTw0d-CbwANIKJGw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-588.7450857162476,"y":514.2564735412598,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":742657015,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":103,"versionNonce":678202514,"isDeleted":true,"id":"nJAGx2ce2HDuf3-pCujZv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-588.7450857162476,"y":514.2564735412598,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":852235001,"groupIds":["PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":103,"versionNonce":1272823182,"isDeleted":true,"id":"T9eojxue9EVUgk7Oey03w","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-593.2867398262024,"y":506.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":1038972183,"groupIds":["jPGKJN1GzmTpTm6AfSVZT","PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":103,"versionNonce":940649042,"isDeleted":true,"id":"89n2-VC6qO8C5B8xyHvFf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-589.9244928359985,"y":504.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":2040613849,"groupIds":["iBPzNQQ4IeLLh2JQ_rgVx","PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":103,"versionNonce":1823136718,"isDeleted":true,"id":"Wy6vgjoRbDyPDnecTv4nC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-585.9369735717773,"y":508.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":1691138615,"groupIds":["fZe_yjjcqfbUOpUWFfa0Y","PWn5snQqlVoHQ2RC5iCPd","pUP0qaCcZs3RD-8AgkWsr"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"rCkbsZl5tCzAsNPaJki8x","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"rectangle","version":115,"versionNonce":752619538,"isDeleted":true,"id":"uK_QKU4jqy7TvnkM2CY4t","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":600,"y":220,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":459172503,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"container"}},{"type":"text","version":106,"versionNonce":716845582,"isDeleted":true,"id":"hgbfKOar4KE5N2WAXKClX","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":616,"y":236,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":537161305,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"fontSize":16,"fontFamily":5,"text":"Cloud Functions","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Functions"},{"type":"text","version":63,"versionNonce":449068498,"isDeleted":true,"id":"x3F9Oozh31FgC97kyW-ao","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":518,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":595787703,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":64,"versionNonce":285524046,"isDeleted":true,"id":"upL8UrFxTxjnnHUzaKcoJ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":545,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":167197497,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":63,"versionNonce":2128655250,"isDeleted":true,"id":"TKv2chHuYkC9NW5E5DNua","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":436,"y":553,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":546828503,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"round","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":106,"versionNonce":1667466894,"isDeleted":true,"id":"e_0aKaymMGbZi_n_3BPUM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":801.3598774671555,"y":251.73782634735107,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.182848572731018,"height":12.727717876434326,"seed":1237150745,"groupIds":["bNhr7iDN4XSSspPjGYOg5","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829086,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.182848572731018,2.5874414443969727],[3.182848572731018,-10.140276432037354],[0,-7.563859939575195],[0,0]]},{"type":"line","version":106,"versionNonce":459829586,"isDeleted":true,"id":"_UiCJuGx2f4B0TZQ_2Q3X","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":801.3598774671555,"y":245.83889770507812,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.182848572731018,"height":4.241347789764404,"seed":1278328311,"groupIds":["afB47AaiErYunvnouMdGW","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[3.182848572731018,-2.1206741333007812],[3.182848572731018,-4.241347789764404],[0,0]]},{"type":"line","version":106,"versionNonce":42960078,"isDeleted":true,"id":"nPLg2WEhJMbCFuaAqy8Yr","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":804.5427260398865,"y":254.32526779174805,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.182848572731018,"height":4.245022773742676,"seed":390758649,"groupIds":["afB47AaiErYunvnouMdGW","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.1206741333007812],[-3.182848572731018,-4.245022773742676],[0,0]]},{"type":"line","version":106,"versionNonce":1404204818,"isDeleted":true,"id":"blnLWzn1758w9dyjNfa65","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":807.7218990325928,"y":256.4459419250488,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.362021565437317,"height":8.486371040344238,"seed":961865495,"groupIds":["6QzxFfPXbh10oTspJ3cBo","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-6.362021565437317,-6.365696907043457],[-6.362021565437317,-2.1206741333007812],[-2.1206741333007812,2.1206741333007812],[0,0]]},{"type":"line","version":106,"versionNonce":1344387854,"isDeleted":true,"id":"uUZMBe3_UIt4dc5ma7tx0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":805.59019947052,"y":237.36722826957703,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.3546706438064575,"height":8.471669435501099,"seed":1612839385,"groupIds":["6QzxFfPXbh10oTspJ3cBo","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-4.230322003364563,4.230321645736694],[-4.219295978546143,8.471669435501099],[2.1243486404418945,2.120673894882202],[0,0]]},{"type":"line","version":106,"versionNonce":137741522,"isDeleted":true,"id":"utkIFhJVyYPoIYOqZQTW8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822.5702896118164,"y":244.19601821899414,"strokeColor":"#00000000","backgroundColor":"#669df6","width":3.1791725158691406,"height":12.727717876434326,"seed":645262391,"groupIds":["4kNdp7PLUCQ8mDodij1mn","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1791725158691406,-2.587441921234131],[-3.1791725158691406,10.140275955200195],[0,7.571209907531738],[0,0]]},{"type":"line","version":106,"versionNonce":311634254,"isDeleted":true,"id":"dM1fGUjvqnUCAfLMy69y5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":822.5702896118164,"y":250.09127044677734,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.1791725158691406,"height":4.245023727416992,"seed":358045369,"groupIds":["ZJtKmHfIMPN2qjEyP2PB1","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1791725158691406,2.1206741333007812],[-3.1791725158691406,4.245023727416992],[0,0]]},{"type":"line","version":106,"versionNonce":1921604242,"isDeleted":true,"id":"dMP2F3iw49ja5d2mRGLhg","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":819.3911170959473,"y":241.60857629776,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.1791725158691406,"height":4.241346836090088,"seed":259607895,"groupIds":["ZJtKmHfIMPN2qjEyP2PB1","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.120673656463623],[3.1791725158691406,4.241346836090088],[0,0]]},{"type":"line","version":106,"versionNonce":1497157518,"isDeleted":true,"id":"OefPteHDJBTQA1Do8akfj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":816.2082691192627,"y":239.48790216445923,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.362020492553711,"height":8.482694864273071,"seed":965613465,"groupIds":["sXcjfWb-V7pPldkw9zSZa","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[6.362020492553711,6.362020969390869],[6.362020492553711,2.1206741333007812],[2.1206741333007812,-2.120673894882202],[0,0]]},{"type":"line","version":106,"versionNonce":23345234,"isDeleted":true,"id":"83VPt72M016rTWs1RVsZX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":818.3399696350098,"y":258.5666160583496,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.350994110107422,"height":8.475345611572266,"seed":2142472823,"groupIds":["sXcjfWb-V7pPldkw9zSZa","5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[4.230319976806641,-4.230321884155273],[4.219295501708984,-8.475345611572266],[-2.1206741333007812,-2.1206741333007812],[0,0]]},{"type":"ellipse","version":106,"versionNonce":1616358862,"isDeleted":true,"id":"XJZF_fPLZHY97hJplvM8R","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":806.6597242355347,"y":246.8973970413208,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":2.1243491172790527,"height":2.1243491172790527,"seed":788118649,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"}},{"type":"ellipse","version":106,"versionNonce":882728466,"isDeleted":true,"id":"q3n7JxcBUywJlOBd3PvY7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":810.9047479629517,"y":246.8973970413208,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":2.1243491172790527,"height":2.1243491172790527,"seed":602481559,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"}},{"type":"ellipse","version":106,"versionNonce":1962722318,"isDeleted":true,"id":"L4fjmWmI0dtlS24VwxTnH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":815.1350688934326,"y":246.8973970413208,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":2.1243491172790527,"height":2.1243491172790527,"seed":1163773273,"groupIds":["5R9cKCvLJ4g76ToM7MLJ1","3jrSiyr1R9hbmIXanWkCL"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"xKHUnyB9oVjnPJ1dqEWl3","label":"Cloud Functions","resource":"google_cloudfunctions_function","type":"child"}},{"type":"rectangle","version":130,"versionNonce":2032913362,"isDeleted":true,"id":"U7PrUpBPQmmZHCqASI-Ow","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-800,"y":229,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":23934073,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":122,"versionNonce":1495601742,"isDeleted":true,"id":"df1Faj6grA5YWJUMLbUA1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-784,"y":245,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":2122918807,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":62,"versionNonce":86409618,"isDeleted":true,"id":"ASGqLNn49E-gUlySKgcYM","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":358,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1789017433,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":64,"versionNonce":665426062,"isDeleted":true,"id":"emDs8xtXVHbWyvKwkTM9f","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":385,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":5,"seed":900571319,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[104,-5],[208,0]]},{"type":"text","version":62,"versionNonce":868515666,"isDeleted":true,"id":"7u-q_aNjsr1SCZUOEAsqc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":393,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":2114136633,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"rectangle","version":122,"versionNonce":943937230,"isDeleted":true,"id":"HI8XpVJa93L_74TifTQLb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-598,"y":249,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":918974935,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":1633469714,"isDeleted":true,"id":"gGGmgRo83p1-2H5J38a55","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-580,"y":249,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1416854297,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":122,"versionNonce":59460878,"isDeleted":true,"id":"-2RO9tA6FGEBIw2H_mtS2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-578,"y":249,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":2062032631,"groupIds":["dQXXRBrWO75fnfmcVT3bh","bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":122,"versionNonce":1197888210,"isDeleted":true,"id":"yo6K94viLy_PPMYCDxaLY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-598,"y":249,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":510046201,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":117078862,"isDeleted":true,"id":"ezaojXbWYhQga4qYlfmzt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-594,"y":252,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1687627799,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":1484269714,"isDeleted":true,"id":"tK-D_0iO_1bTx_Z1GVpl1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-585,"y":251,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":836782297,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":686416270,"isDeleted":true,"id":"va_ItxtgBqfQSYGhL3rIk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-598,"y":258,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":298323255,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":474564178,"isDeleted":true,"id":"vcZT6diRIGFDTvY8xkolW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-580,"y":258,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1483982265,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":122,"versionNonce":479363022,"isDeleted":true,"id":"VtXn2cbFQ1T-MGWEQ8jIi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-578,"y":258,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1843351127,"groupIds":["zpEsK7al1Y_UkOXBBh-N3","bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":122,"versionNonce":196127762,"isDeleted":true,"id":"gd2cQasVNlwDg78iYzVAB","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-598,"y":258,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1564780185,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":1175279118,"isDeleted":true,"id":"FLWXw4vgo7IYe6T8vJNGc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-594,"y":261,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":61959031,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":122,"versionNonce":1822775762,"isDeleted":true,"id":"Gg9lMQYTOBZY2u2m89x54","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-585,"y":260,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1527147385,"groupIds":["bIfo2S_slPgQcNFNMHHG8","WYywIWhO6_gsd9vfB_ZQR"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"rLR6xsPDNiM8uM_dWPxfI","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"id":"OVEN37Iv__GljxDhpz1EK","type":"text","x":760.3124999999998,"y":24.885742187500227,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1222193593,"version":59,"versionNonce":508781646,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"BPEGt1BNZwBAG_7GLkhpJ","type":"text","x":475.3125,"y":729.8857421875,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":78713145,"version":59,"versionNonce":775835538,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"3EleidzYjikUW9ZkNfEPT","type":"arrow","x":-680,"y":340,"width":0,"height":140,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":485615671,"version":182,"versionNonce":389917326,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"points":[[0,0],[0,140]],"lastCommittedPoint":null,"startBinding":{"elementId":"alQMHesl-G0NviYi6f0BX","focus":0,"gap":1},"endBinding":{"elementId":"D6aJ_2_A95YlU4x7pRShZ","focus":0,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"eA4HsqtnkUBOc8YEdHjwl","type":"arrow","x":-560,"y":520,"width":220,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":290329817,"version":178,"versionNonce":1152552274,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"points":[[0,0],[220,0]],"lastCommittedPoint":null,"startBinding":{"elementId":"D6aJ_2_A95YlU4x7pRShZ","focus":0.3333333333333333,"gap":1},"endBinding":{"elementId":"9S5avaATpAiJMjsYiewcz","focus":-0.3333333333333333,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"xP_gJ8bJaZVmg5KJ-HN1p","type":"line","x":-540,"y":260,"width":200,"height":0,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":571006489,"version":85,"versionNonce":2139433166,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"points":[[0,0],[200,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"2e-mxha5cZ4ATXu5ZeyDi","type":"line","x":-640,"y":360,"width":400,"height":0,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2131584057,"version":92,"versionNonce":89723666,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"points":[[0,0],[400,0]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"Xhd-6J2LDGQhKMuer4my7","type":"line","x":-240,"y":360,"width":0,"height":80,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":43393273,"version":79,"versionNonce":1724047118,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"points":[[0,0],[0,-80]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"YUf3D1bcc1sqJLuyl7Rsa","type":"line","x":-640,"y":360,"width":0,"height":120,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1083042423,"version":85,"versionNonce":44622034,"isDeleted":true,"boundElements":null,"updated":1697744829087,"link":null,"locked":false,"points":[[0,0],[0,120]],"lastCommittedPoint":null,"startBinding":null,"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":135,"versionNonce":24104270,"isDeleted":true,"id":"cf5kRJdL23c-AqV-Ynthp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-340,"y":229,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":354115579,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"container"}},{"type":"text","version":132,"versionNonce":1748563602,"isDeleted":true,"id":"bk_slvsh0EiQYE1UI6Kcv","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-324,"y":245,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":1690759477,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"Workflows","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Workflows"},{"type":"text","version":91,"versionNonce":216331150,"isDeleted":true,"id":"Ovkx8aiMC4KKm106WRMHH","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1056,"y":278,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1682155675,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":92,"versionNonce":1455445074,"isDeleted":true,"id":"oUQ9BshUrmSpQEaE5P6R4","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1056,"y":304,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":832373397,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":91,"versionNonce":861622734,"isDeleted":true,"id":"OwVka1Gpgm6ALFwQtLAIu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1056,"y":313,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":77192507,"groupIds":["gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"round","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":132,"versionNonce":1075182098,"isDeleted":true,"id":"55F44ecfbmIhmusMYkgEl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-132.2877697944641,"y":264.10791397094727,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.2503600120544434,"height":2.071941375732422,"seed":275376117,"groupIds":["0qXjVyivUhvA_qoqjWSGq","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.011690616607666016,0.2695140838623047],[-0.04604291915893555,0.5330944061279297],[-0.10197877883911133,0.7891197204589844],[-0.17841720581054688,1.035970687866211],[2.0719428062438965,1.035970687866211],[2.0719428062438965,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.10197877883911133,-0.7891178131103516],[-0.04604291915893555,-0.5330944061279297],[-0.011690616607666016,-0.2695140838623047],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1877731342,"isDeleted":true,"id":"Zzu7zNaCZYYP2lylhQYYj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-123.82158279418945,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.250359535217285,"height":2.0719425678253174,"seed":1904246235,"groupIds":["0qXjVyivUhvA_qoqjWSGq","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.250359535217285,0],[-2.250359535217285,2.0719425678253174],[0,2.0719425678253174],[0,2.0719425678253174],[-0.07643890380859375,1.8250901699066162],[-0.13237380981445312,1.5690648555755615],[-0.16672706604003906,1.3054859638214111],[-0.17841720581054688,1.0359714031219482],[-0.16672706604003906,0.7664568424224854],[-0.13237380981445312,0.502877950668335],[-0.07643890380859375,0.24685263633728027],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1127278546,"isDeleted":true,"id":"gaevSpU4AwPGp25XXMvjV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-120.89208602905273,"y":252.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.215827941894531,"height":6.2158273458480835,"seed":1127424341,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754493713378906,-0.016060352325439453],[-0.6259651184082031,-0.06319713592529297],[-0.9236984252929688,-0.13984060287475586],[-1.2091712951660156,-0.24442386627197266],[-1.4808197021484375,-0.3753790855407715],[-1.7370719909667969,-0.5311374664306641],[-1.9763622283935547,-0.7101306915283203],[-2.1971206665039062,-0.9107909202575684],[-2.3977813720703125,-1.1315503120422363],[-2.5767765045166016,-1.3708405494689941],[-2.732534408569336,-1.6270933151245117],[-2.8634891510009766,-1.8987407684326172],[-2.9680728912353516,-2.1842145919799805],[-3.0447158813476562,-2.4819464683532715],[-3.0918521881103516,-2.7903690338134766],[-3.1079139709472656,-3.1079134941101074],[-3.0918521881103516,-3.4254579544067383],[-3.0447158813476562,-3.7338805198669434],[-2.9680728912353516,-4.031612396240234],[-2.8634891510009766,-4.317086219787598],[-2.732534408569336,-4.588733673095703],[-2.5767765045166016,-4.844986438751221],[-2.3977813720703125,-5.084276437759399],[-2.1971206665039062,-5.305035829544067],[-1.9763622283935547,-5.5056962966918945],[-1.7370719909667969,-5.68468976020813],[-1.4808197021484375,-5.840447902679443],[-1.2091712951660156,-5.9714027643203735],[-0.9236984252929688,-6.075986266136169],[-0.6259651184082031,-6.15263032913208],[-0.31754493713378906,-6.199766755104065],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236984252929688,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.4808197021484375,-5.840447902679443],[1.7370738983154297,-5.68468976020813],[1.9763622283935547,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317086219787598],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338805198669434],[3.0918540954589844,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819464683532715],[2.9680728912353516,-2.1842145919799805],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236984252929688,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1922020942,"isDeleted":true,"id":"Vl8V0Qc7l6kb06mnE9s-T","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-120.89208602905273,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.071941375732422,"height":2.0719425678253174,"seed":369756795,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":136846738,"isDeleted":true,"id":"SZw0N7E_X3GSTq3UqD50u","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-135.39568328857422,"y":267.21582794189453,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.2158273458480835,"height":6.215827941894531,"seed":793652917,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754446029663086,-0.01605987548828125],[-0.6259670257568359,-0.06319808959960938],[-0.923698902130127,-0.13984107971191406],[-1.2091727256774902,-0.24442481994628906],[-1.4808201789855957,-0.3753795623779297],[-1.7370729446411133,-0.5311374664306641],[-1.976362943649292,-0.7101306915283203],[-2.19712233543396,-0.9107913970947266],[-2.397782802581787,-1.131551742553711],[-2.5767762660980225,-1.370840072631836],[-2.732534408569336,-1.6270942687988281],[-2.863489270210266,-1.8987407684326172],[-2.968072772026062,-2.184215545654297],[-3.0447168350219727,-2.4819469451904297],[-3.0918532609939575,-2.7903690338134766],[-3.107913851737976,-3.1079139709472656],[-3.0918532609939575,-3.4254589080810547],[-3.0447168350219727,-3.7338790893554688],[-2.968072772026062,-4.031612396240234],[-2.863489270210266,-4.317085266113281],[-2.732534408569336,-4.588733673095703],[-2.5767762660980225,-4.8449859619140625],[-2.397782802581787,-5.08427619934082],[-2.19712233543396,-5.305034637451172],[-1.976362943649292,-5.505695343017578],[-1.7370729446411133,-5.684690475463867],[-1.4808201789855957,-5.840448379516602],[-1.2091727256774902,-5.971403121948242],[-0.923698902130127,-6.075986862182617],[-0.6259670257568359,-6.152629852294922],[-0.31754446029663086,-6.199766159057617],[0,-6.215827941894531],[0.31754446029663086,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.923698902130127,-6.075986862182617],[1.2091727256774902,-5.971403121948242],[1.4808201789855957,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.976363182067871,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.397782802581787,-5.08427619934082],[2.5767760276794434,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634896278381348,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447163581848145,-3.7338790893554688],[3.091853141784668,-3.4254589080810547],[3.1079134941101074,-3.1079139709472656],[3.091853141784668,-2.7903690338134766],[3.0447163581848145,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634896278381348,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767760276794434,-1.370840072631836],[2.397782802581787,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.4808201789855957,-0.3753795623779297],[1.2091727256774902,-0.24442481994628906],[0.923698902130127,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754446029663086,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":69188750,"isDeleted":true,"id":"N3XaQF7l8QxJcpcTGd_j5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-135.39568328857422,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.0719425678253174,"height":2.071941375732422,"seed":1459159835,"groupIds":["Qs7KG9BInQJoqOnAuE_p6","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":473078610,"isDeleted":true,"id":"4dYmIXJilkPA3F2c7d4hC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-120.89208602905273,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.071941375732422,"height":2.0719425678253174,"seed":1935708181,"groupIds":["O_gDphGotOhyglk6tWjQK","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1783954126,"isDeleted":true,"id":"K2mEKwjnLZhsqV8fY69MQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-135.39568328857422,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.0719425678253174,"height":2.071941375732422,"seed":1556080571,"groupIds":["O_gDphGotOhyglk6tWjQK","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1302814994,"isDeleted":true,"id":"XUqgauL4CO0lGWWcexOdZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-132.1093521118164,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":6.394245028495789,"height":9.225899696350098,"seed":1029686645,"groupIds":["DxfRCauXFy8msjzZEeeV_","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.2503600120544434,0],[-2.2503600120544434,0],[-2.462372303009033,-0.010685920715332031],[-2.668221950531006,-0.042052268981933594],[-2.8668718338012695,-0.0930624008178711],[-3.057284355163574,-0.16267967224121094],[-3.2384233474731445,-0.24986648559570312],[-3.4092516899108887,-0.35358524322509766],[-3.568732261657715,-0.47280120849609375],[-3.7158279418945312,-0.6064748764038086],[-3.849501132965088,-0.753570556640625],[-3.968716621398926,-0.913050651550293],[-4.0724358558654785,-1.083878517150879],[-4.159622669219971,-1.2650175094604492],[-4.2292397022247314,-1.4554309844970703],[-4.280249834060669,-1.6540803909301758],[-4.31161642074585,-1.8599300384521484],[-4.322302579879761,-2.0719423294067383],[-4.322302579879761,-3.1079134941101074],[-4.322302579879761,-3.1079134941101074],[-4.316173315048218,-3.2672781944274902],[-4.298089265823364,-3.4234819412231445],[-4.268505811691284,-3.5760602951049805],[-4.227878093719482,-3.724550247192383],[-4.176661252975464,-3.8684868812561035],[-4.1153106689453125,-4.007407188415527],[-4.044281721115112,-4.140848159790039],[-3.96402907371521,-4.268344879150391],[-3.7776756286621094,-4.503653049468994],[-3.5598926544189453,-4.709621906280518],[-3.314321517944336,-4.882542610168457],[-3.182253360748291,-4.955450057983398],[-3.044604778289795,-5.018704414367676],[-3.1479320526123047,-5.301258563995361],[-3.223741054534912,-5.5956830978393555],[-3.270413875579834,-5.9008989334106445],[-3.2863311767578125,-6.215826988220215],[-3.276798725128174,-6.459532260894775],[-3.2489209175109863,-6.697841644287109],[-3.203777313232422,-6.929675817489624],[-3.142446517944336,-7.153956413269043],[-3.485318183898926,-7.062928199768066],[-3.815906524658203,-6.9439857006073],[-4.132853746414185,-6.798486232757568],[-4.434802532196045,-6.6277875900268555],[-4.720395803451538,-6.433246612548828],[-4.98827600479126,-6.216220378875732],[-5.237085819244385,-5.978066921234131],[-5.465467929840088,-5.7201433181762695],[-5.672065019607544,-5.443807601928711],[-5.855519771575928,-5.150415897369385],[-6.014474511146545,-4.841325759887695],[-6.14757227897644,-4.517895221710205],[-6.2534555196762085,-4.18148136138916],[-6.330767035484314,-3.833441734313965],[-6.3781492710113525,-3.4751334190368652],[-6.394245028495789,-3.1079134941101074],[-6.394245028495789,-2.0719423294067383],[-6.394245028495789,-2.0719423294067383],[-6.3728097677230835,-1.6488656997680664],[-6.3099037408828735,-1.2378711700439453],[-6.207625985145569,-0.8410558700561523],[-6.068075895309448,-0.46052074432373047],[-5.893352746963501,-0.09836578369140625],[-5.685555696487427,0.24331188201904297],[-5.446784019470215,0.5624113082885742],[-5.1791369915008545,0.8568344116210938],[-4.884714126586914,1.1244821548461914],[-4.5656139850616455,1.3632535934448242],[-4.223936557769775,1.5710506439208984],[-3.8617806434631348,1.7457733154296875],[-3.481245994567871,1.8853235244750977],[-3.0844311714172363,1.9876022338867188],[-2.673436164855957,2.0505075454711914],[-2.2503600120544434,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[-0.07643890380859375,1.8250904083251953],[-0.13237428665161133,1.5690650939941406],[-0.16672706604003906,1.3054866790771484],[-0.17841768264770508,1.0359716415405273],[-0.16672706604003906,0.7664575576782227],[-0.13237428665161133,0.5028781890869141],[-0.07643890380859375,0.24685287475585938],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1271427342,"isDeleted":true,"id":"fXJ-CiuQhZHHjJ7WrqoJE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-121.91079139709473,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.369785308837891,"height":9.231654167175293,"seed":495007835,"groupIds":["guWTa5FsNBzzhwnMSb8ee","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829087,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.2316551208496094,0],[-1.2316551208496094,0],[-1.1552162170410156,0.24685287475585938],[-1.0992794036865234,0.5028781890869141],[-1.0649280548095703,0.7664575576782227],[-1.0532379150390625,1.0359716415405273],[-1.0649280548095703,1.3054866790771484],[-1.0992794036865234,1.5690650939941406],[-1.1552162170410156,1.8250904083251953],[-1.2316551208496094,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[0.21201133728027344,2.0826292037963867],[0.4178638458251953,2.1139955520629883],[0.6165122985839844,2.165006637573242],[0.8069248199462891,2.2346229553222656],[0.9880638122558594,2.321809768676758],[1.1588916778564453,2.4255285263061523],[1.3183727264404297,2.5447444915771484],[1.4654693603515625,2.6784181594848633],[1.599142074584961,2.8255138397216797],[1.7183570861816406,2.9849939346313477],[1.8220748901367188,3.1558218002319336],[1.9092636108398438,3.336960792541504],[1.9788799285888672,3.527374267578125],[2.0298900604248047,3.7260236740112305],[2.0612564086914062,3.931873321533203],[2.071941375732422,4.143885612487793],[2.071941375732422,5.179856300354004],[2.071941375732422,5.179856300354004],[2.065746307373047,5.341246604919434],[2.0474605560302734,5.499213218688965],[2.0175399780273438,5.653304100036621],[1.9764385223388672,5.803057670593262],[1.9246139526367188,5.948025703430176],[1.8625221252441406,6.087746620178223],[1.7906169891357422,6.221772193908691],[1.7093524932861328,6.349640846252441],[1.6191864013671875,6.470900535583496],[1.5205707550048828,6.585095405578613],[1.4139633178710938,6.691769599914551],[1.2998199462890625,6.790467262268066],[1.1785945892333984,6.880736351013184],[1.0507431030273438,6.962119102478027],[0.916717529296875,7.0341596603393555],[0.7769775390625,7.096402168273926],[0.8769798278808594,7.378058433532715],[0.951080322265625,7.670504570007324],[0.9971237182617188,7.973742485046387],[1.012948989868164,8.28777027130127],[1.0033283233642578,8.53156566619873],[0.9748191833496094,8.77050495147705],[0.9279670715332031,9.004048347473145],[0.8633098602294922,9.231654167175293],[1.2083377838134766,9.141573905944824],[1.5410652160644531,9.02332592010498],[1.8601150512695312,8.87828540802002],[2.1641178131103516,8.707823753356934],[2.4516983032226562,8.513319969177246],[2.7214832305908203,8.29614543914795],[2.9720935821533203,8.057673454284668],[3.202157974243164,7.799281120300293],[3.4103031158447266,7.522339820861816],[3.595155715942383,7.228226661682129],[3.755338668823242,6.918313026428223],[3.8894805908203125,6.593976020812988],[3.9962024688720703,6.256587028503418],[4.074134826660156,5.9075212478637695],[4.1219024658203125,5.548151969909668],[4.138130187988281,5.179856300354004],[4.138130187988281,4.143885612487793],[4.138130187988281,4.143885612487793],[4.117706298828125,3.720808982849121],[4.055688858032227,3.309814453125],[3.9541778564453125,2.912999153137207],[3.815288543701172,2.532464027404785],[3.641122817993164,2.170309066772461],[3.4337902069091797,1.8286314010620117],[3.1954002380371094,1.5095319747924805],[2.9280567169189453,1.215108871459961],[2.6338729858398438,0.9474611282348633],[2.314950942993164,0.7086896896362305],[1.9734001159667969,0.5008926391601562],[1.6113319396972656,0.3261699676513672],[1.2308483123779297,0.18661975860595703],[0.8340606689453125,0.08434104919433594],[0.4230766296386719,0.02143573760986328],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":134049490,"isDeleted":true,"id":"YHfyWO5eXQXRriHiMk4tx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-129.179856300354,"y":252.7122302055359,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.2158273458480835,"seed":1620135637,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079134941101074,0],[-3.1079134941101074,0],[-3.4254579544067383,-0.016060352325439453],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984060287475586],[-4.317086219787598,-0.24442386627197266],[-4.588733196258545,-0.3753790855407715],[-4.8449859619140625,-0.5311374664306641],[-5.0842766761779785,-0.7101306915283203],[-5.3050360679626465,-0.9107909202575684],[-5.5056962966918945,-1.1315503120422363],[-5.684689521789551,-1.3708405494689941],[-5.840447425842285,-1.6270933151245117],[-5.971402645111084,-1.8987407684326172],[-6.075986385345459,-2.1842145919799805],[-6.15263032913208,-2.4819464683532715],[-6.199766635894775,-2.7903690338134766],[-6.215826988220215,-3.1079134941101074],[-6.199766635894775,-3.4254579544067383],[-6.15263032913208,-3.7338805198669434],[-6.075986385345459,-4.031612396240234],[-5.971402645111084,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986438751221],[-5.5056962966918945,-5.084276437759399],[-5.3050360679626465,-5.305035829544067],[-5.0842766761779785,-5.5056962966918945],[-4.8449859619140625,-5.68468976020813],[-4.588733196258545,-5.840447902679443],[-4.317086219787598,-5.9714027643203735],[-4.031612396240234,-6.075986266136169],[-3.733880043029785,-6.15263032913208],[-3.4254579544067383,-6.199766755104065],[-3.1079134941101074,-6.2158273458480835],[0,-6.2158273458480835],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236993789672852,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.480820655822754,-5.840447902679443],[1.7370729446411133,-5.68468976020813],[1.976363182067871,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.863490104675293,-4.317086219787598],[2.968073844909668,-4.031612396240234],[3.0447168350219727,-3.7338805198669434],[3.091853141784668,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.091853141784668,-2.7903690338134766],[3.0447168350219727,-2.4819464683532715],[2.968073844909668,-2.1842145919799805],[2.863490104675293,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236993789672852,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":334700366,"isDeleted":true,"id":"fBwyxJittaoXBr1qKJJG1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-132.2877697944641,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719425678253174,"seed":655324411,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":801883282,"isDeleted":true,"id":"pVBKUtII5j_yrGy4XhACo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-126.07194232940674,"y":259.9640293121338,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.323740482330322,"height":6.215827941894531,"seed":730508341,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079139709472656,0],[-3.1079139709472656,0],[-3.4254579544067383,-0.016060829162597656],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984203338623047],[-4.317086219787598,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.084277153015137,-0.7101316452026367],[-5.305035591125488,-0.9107913970947266],[-5.5056962966918945,-1.1315507888793945],[-5.684689521789551,-1.3708410263061523],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987417221069336],[-6.075986385345459,-2.1842145919799805],[-6.152629852294922,-2.4819469451904297],[-6.199766635894775,-2.790369987487793],[-6.215827465057373,-3.1079139709472656],[-6.199766635894775,-3.4254579544067383],[-6.152629852294922,-3.7338809967041016],[-6.075986385345459,-4.031613349914551],[-5.971403121948242,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986915588379],[-5.5056962966918945,-5.084277153015137],[-5.305035591125488,-5.305036544799805],[-5.084277153015137,-5.5056962966918945],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317086219787598,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152630805969238],[-3.4254579544067383,-6.199767112731934],[-3.1079139709472656,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199767112731934],[0.6259670257568359,-6.152630805969238],[0.9236984252929688,-6.075986862182617],[1.209172248840332,-5.971403121948242],[1.480820655822754,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.9763622283935547,-5.5056962966918945],[2.1971216201782227,-5.305036544799805],[2.397782325744629,-5.084277153015137],[2.576775550842285,-4.844986915588379],[2.7325353622436523,-4.588733673095703],[2.86348819732666,-4.317086219787598],[2.968071937561035,-4.031613349914551],[3.0447168350219727,-3.7338809967041016],[3.091853141784668,-3.4254579544067383],[3.107913017272949,-3.1079139709472656],[3.091853141784668,-2.790369987487793],[3.0447168350219727,-2.4819469451904297],[2.968071937561035,-2.1842145919799805],[2.86348819732666,-1.8987417221069336],[2.7325353622436523,-1.6270942687988281],[2.576775550842285,-1.3708410263061523],[2.397782325744629,-1.1315507888793945],[2.1971216201782227,-0.9107913970947266],[1.9763622283935547,-0.7101316452026367],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753795623779297],[1.209172248840332,-0.24442481994628906],[0.9236984252929688,-0.13984203338623047],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060829162597656],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1462633870,"isDeleted":true,"id":"4W5b2WnomGWlG-_ecbA-P","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-129.179856300354,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719432830810547,"seed":686628251,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":2127127122,"isDeleted":true,"id":"tmE6NELc-6XLDk7VonVB-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-124,"y":267.21582794189453,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.215827941894531,"seed":2117164437,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.107913017272949,0],[-3.107913017272949,0],[-3.4254579544067383,-0.01605987548828125],[-3.733880043029785,-0.06319808959960938],[-4.031612396240234,-0.13984107971191406],[-4.317085266113281,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.08427619934082,-0.7101306915283203],[-5.305035591125488,-0.9107913970947266],[-5.505695343017578,-1.131551742553711],[-5.684689521789551,-1.370840072631836],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987407684326172],[-6.075985908508301,-2.184215545654297],[-6.152629852294922,-2.4819469451904297],[-6.199766159057617,-2.7903690338134766],[-6.215826988220215,-3.1079139709472656],[-6.199766159057617,-3.4254589080810547],[-6.152629852294922,-3.7338790893554688],[-6.075985908508301,-4.031612396240234],[-5.971403121948242,-4.317085266113281],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.8449859619140625],[-5.505695343017578,-5.08427619934082],[-5.305035591125488,-5.305034637451172],[-5.08427619934082,-5.505695343017578],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317085266113281,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152629852294922],[-3.4254579544067383,-6.199766159057617],[-3.107913017272949,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.9236984252929688,-6.075986862182617],[1.2091732025146484,-5.971403121948242],[1.4808197021484375,-5.840448379516602],[1.7370738983154297,-5.684690475463867],[1.9763622283935547,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.3977832794189453,-5.08427619934082],[2.5767765045166016,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338790893554688],[3.0918540954589844,-3.4254589080810547],[3.1079139709472656,-3.1079139709472656],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767765045166016,-1.370840072631836],[2.3977832794189453,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753795623779297],[1.2091732025146484,-0.24442481994628906],[0.9236984252929688,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754493713378906,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":917644238,"isDeleted":true,"id":"CGXh-loQKSyBrtIOQE4J1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-127.10791301727295,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.1798553466796875,"height":2.071941375732422,"seed":1045213755,"groupIds":["MWx6-6ES4xGwnEFJPDbU8","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1607288850,"isDeleted":true,"id":"5Shs53ryaksO2TYohoyjc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-130.21582698822021,"y":252.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.2158273458480835,"seed":532341493,"groupIds":["QY21_TNcA3YRTDUdFPLUv","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.2800469398498535,-2.0930867195129395],[-2.4741907119750977,-2.153687000274658],[-2.6501240730285645,-2.2494940757751465],[-2.8035974502563477,-2.3762588500976562],[-2.9303622245788574,-2.5297322273254395],[-3.0261693000793457,-2.7056655883789062],[-3.0867695808410645,-2.899808883666992],[-3.1079139709472656,-3.1079134941101074],[-3.0867695808410645,-3.316018581390381],[-3.0261693000793457,-3.5101613998413086],[-2.9303622245788574,-3.6860947608947754],[-2.8035974502563477,-3.8395683765411377],[-2.6501240730285645,-3.9663331508636475],[-2.4741907119750977,-4.062140226364136],[-2.2800469398498535,-4.1227405071258545],[-2.0719428062438965,-4.143884897232056],[0,-4.143884897232056],[0,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.3894872665405273,-6.199766755104065],[-2.697909355163574,-6.15263032913208],[-2.9956417083740234,-6.075986266136169],[-3.2811155319213867,-5.9714027643203735],[-3.552762508392334,-5.840447902679443],[-3.8090152740478516,-5.68468976020813],[-4.048305988311768,-5.5056962966918945],[-4.2690653800964355,-5.305035829544067],[-4.469725608825684,-5.084276437759399],[-4.64871883392334,-4.844986438751221],[-4.804476737976074,-4.588733673095703],[-4.935431957244873,-4.317086219787598],[-5.040015697479248,-4.031612396240234],[-5.116659641265869,-3.7338805198669434],[-5.1637959480285645,-3.4254579544067383],[-5.179856300354004,-3.1079134941101074],[-5.1637959480285645,-2.7903690338134766],[-5.116659641265869,-2.4819464683532715],[-5.040015697479248,-2.1842145919799805],[-4.935431957244873,-1.8987407684326172],[-4.804476737976074,-1.6270933151245117],[-4.64871883392334,-1.3708405494689941],[-4.469725608825684,-1.1315503120422363],[-4.2690653800964355,-0.9107909202575684],[-4.048305988311768,-0.7101306915283203],[-3.8090152740478516,-0.5311374664306641],[-3.552762508392334,-0.3753790855407715],[-3.2811155319213867,-0.24442386627197266],[-2.9956417083740234,-0.13984060287475586],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060352325439453],[-2.0719428062438965,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1150843406,"isDeleted":true,"id":"jDyLpIHDzg07QXtPLfndT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-127.10791301727295,"y":259.9640293121338,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856777191162,"height":6.215827941894531,"seed":2014360283,"groupIds":["QY21_TNcA3YRTDUdFPLUv","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.2800474166870117,-2.0930871963500977],[-2.4741907119750977,-2.1536874771118164],[-2.6501235961914062,-2.2494945526123047],[-2.8035974502563477,-2.3762598037719727],[-2.9303627014160156,-2.5297327041625977],[-3.0261688232421875,-2.7056655883789062],[-3.0867700576782227,-2.8998098373413086],[-3.1079139709472656,-3.1079139709472656],[-3.0867700576782227,-3.3160181045532227],[-3.0261688232421875,-3.510162353515625],[-2.9303627014160156,-3.6860952377319336],[-2.8035974502563477,-3.8395681381225586],[-2.6501235961914062,-3.9663333892822266],[-2.4741907119750977,-4.062140464782715],[-2.2800474166870117,-4.122740745544434],[-2.0719432830810547,-4.143885612487793],[0,-4.143885612487793],[0,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.3894872665405273,-6.199767112731934],[-2.697909355163574,-6.152630805969238],[-2.9956417083740234,-6.075986862182617],[-3.2811155319213867,-5.971403121948242],[-3.552762985229492,-5.840448379516602],[-3.8090152740478516,-5.684690475463867],[-4.048306465148926,-5.5056962966918945],[-4.269064903259277,-5.305036544799805],[-4.469725608825684,-5.084277153015137],[-4.64871883392334,-4.844986915588379],[-4.804476737976074,-4.588733673095703],[-4.935432434082031,-4.317086219787598],[-5.040015697479248,-4.031613349914551],[-5.116659164428711,-3.7338809967041016],[-5.1637959480285645,-3.4254579544067383],[-5.179856777191162,-3.1079139709472656],[-5.1637959480285645,-2.790369987487793],[-5.116659164428711,-2.4819469451904297],[-5.040015697479248,-2.1842145919799805],[-4.935432434082031,-1.8987417221069336],[-4.804476737976074,-1.6270942687988281],[-4.64871883392334,-1.3708410263061523],[-4.469725608825684,-1.1315507888793945],[-4.269064903259277,-0.9107913970947266],[-4.048306465148926,-0.7101316452026367],[-3.8090152740478516,-0.5311374664306641],[-3.552762985229492,-0.3753795623779297],[-3.2811155319213867,-0.24442481994628906],[-2.9956417083740234,-0.13984203338623047],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060829162597656],[-2.0719432830810547,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1255044562,"isDeleted":true,"id":"3Dg108XJt_D-k6_OgawNc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-127.10791301727295,"y":265.1438846588135,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.215827941894531,"seed":1420606549,"groupIds":["QY21_TNcA3YRTDUdFPLUv","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,-0.021142959594726562],[-0.4022483825683594,-0.08174514770507812],[-0.578181266784668,-0.17755126953125],[-0.7316551208496094,-0.30431556701660156],[-0.8584194183349609,-0.45778846740722656],[-0.9542264938354492,-0.6337223052978516],[-1.014826774597168,-0.8278656005859375],[-1.0359716415405273,-1.035970687866211],[-1.014826774597168,-1.2440757751464844],[-0.9542264938354492,-1.4382190704345703],[-0.8584194183349609,-1.6141510009765625],[-0.7316551208496094,-1.7676258087158203],[-0.578181266784668,-1.8943901062011719],[-0.4022483825683594,-1.9901962280273438],[-0.20810508728027344,-2.0507984161376953],[0,-2.071941375732422],[2.0719423294067383,-2.071941375732422],[2.0719423294067383,-4.143884658813477],[0,-4.143884658813477],[0,-4.143884658813477],[-0.31754493713378906,-4.1278228759765625],[-0.6259670257568359,-4.080686569213867],[-0.9236993789672852,-4.0040435791015625],[-1.209172248840332,-3.8994598388671875],[-1.480820655822754,-3.768505096435547],[-1.7370729446411133,-3.6127471923828125],[-1.976363182067871,-3.4337520599365234],[-2.197122573852539,-3.233091354370117],[-2.397782325744629,-3.0123329162597656],[-2.5767765045166016,-2.773042678833008],[-2.732534408569336,-2.5167903900146484],[-2.863490104675293,-2.2451419830322266],[-2.9680728912353516,-1.9596691131591797],[-3.0447168350219727,-1.661935806274414],[-3.091853141784668,-1.353515625],[-3.1079139709472656,-1.035970687866211],[-3.091853141784668,-0.7184257507324219],[-3.0447168350219727,-0.410003662109375],[-2.9680728912353516,-0.11227226257324219],[-2.863490104675293,0.1732025146484375],[-2.732534408569336,0.44484901428222656],[-2.5767765045166016,0.7011032104492188],[-2.397782325744629,0.9403915405273438],[-2.197122573852539,1.1611518859863281],[-1.976363182067871,1.3618125915527344],[-1.7370729446411133,1.5408058166503906],[-1.480820655822754,1.696563720703125],[-1.209172248840332,1.8275184631347656],[-0.9236993789672852,1.9321022033691406],[-0.6259670257568359,2.0087451934814453],[-0.31754493713378906,2.0558834075927734],[0,2.0719432830810547],[2.0719423294067383,2.0719432830810547],[2.0719423294067383,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1742342222,"isDeleted":true,"id":"UtYbbmhpVAzruPQHPMEMi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-132.2877697944641,"y":248.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719425678253174,"seed":650878843,"groupIds":["hY8yel9PHEihLfNSD9abo","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":551807890,"isDeleted":true,"id":"-oqjkQ_dCJCSaC5GME7oI","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-129.179856300354,"y":255.820143699646,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719432830810547,"seed":886860213,"groupIds":["hY8yel9PHEihLfNSD9abo","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":132,"versionNonce":1078972046,"isDeleted":true,"id":"-lkkjPRBgR5740RwdIdyw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-127.10791301727295,"y":263.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.1798553466796875,"height":2.071941375732422,"seed":1690302491,"groupIds":["hY8yel9PHEihLfNSD9abo","gptzy46kGqAGwW9zR9NRE","DRI4DxqEjdWcCsN5R8YS7"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"kixQ5_825eshCxk7Ywn9a","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"rectangle","version":178,"versionNonce":138717522,"isDeleted":true,"id":"RJqU7o69YMl0eMokHK8S4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1100,"y":440,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":60,"seed":1298520629,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"container"}},{"type":"text","version":161,"versionNonce":179489998,"isDeleted":true,"id":"QAdeIc03yWnO1_xYiFmKc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1116,"y":456,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":136564635,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"fontSize":16,"fontFamily":5,"text":"Vertex AI","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Vertex AI"},{"type":"text","version":57,"versionNonce":1212657426,"isDeleted":true,"id":"PVqelgZ8R8boQ60M8lQTU","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":996,"y":278,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":1484180373,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":58,"versionNonce":77333262,"isDeleted":true,"id":"Uk4SyfG9yX0ye6Ipx9_qh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":996,"y":304,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":668804155,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":57,"versionNonce":627309778,"isDeleted":true,"id":"GTPRF5OX_Db5z6xB1RBzY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":996,"y":313,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":723685621,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":161,"versionNonce":1350857038,"isDeleted":true,"id":"TFTwrkNh6AqkDpjP111bw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1321.9633045196533,"y":470.2981653213501,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10.129972457885742,"height":8.601454734802246,"seed":2059592923,"groupIds":["r_suxakBPVegYcherpKXH","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.12380027770996094,-0.12568092346191406],[-0.2653388977050781,-0.22362327575683594],[-0.4204254150390625,-0.2931833267211914],[-0.5848636627197266,-0.33371543884277344],[-0.7544612884521484,-0.344573974609375],[-0.9250297546386719,-0.32511425018310547],[-1.0923709869384766,-0.2746915817260742],[-1.2522945404052734,-0.19266033172607422],[-9.96330451965332,6.206421852111816],[-9.96330451965332,6.48165225982666],[-9.96330451965332,6.48165225982666],[-9.780749320983887,6.479231834411621],[-9.607226371765137,6.511324882507324],[-9.446603775024414,6.575024604797363],[-9.302753448486328,6.667431831359863],[-9.179546356201172,6.785639762878418],[-9.080849647521973,6.926749229431152],[-9.010538101196289,7.087855339050293],[-8.972477912902832,7.266055107116699],[-8.970059394836426,7.448609352111816],[-9.002152442932129,7.622134208679199],[-9.065852165222168,7.782753944396973],[-9.158257484436035,7.926606178283691],[-9.276467323303223,8.049813270568848],[-9.41757583618164,8.14850902557373],[-9.578681945800781,8.218823432922363],[-9.756882667541504,8.256880760192871],[-9.96330451965332,8.256880760192871],[-9.665712356567383,8.206995964050293],[-9.399083137512207,8.064221382141113],[-0.16514015197753906,1.252293586730957],[-0.16514015197753906,1.252293586730957],[-0.04007530212402344,1.1279296875],[0.05611991882324219,0.985020637512207],[0.12296676635742188,0.828242301940918],[0.1599750518798828,0.6622714996337891],[0.16666793823242188,0.49178409576416016],[0.14255905151367188,0.3214597702026367],[0.08716392517089844,0.15597248077392578],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":1026593426,"isDeleted":true,"id":"VtgSaYKmn-2P48ghzHabn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1311.8348627090454,"y":478.4587154388428,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":10.1350257396698,"height":8.601454734802246,"seed":854501973,"groupIds":["GRhLGYuRdbNJsLZpzpDWY","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.17820072174072266,-0.03862190246582031],[-0.3393058776855469,-0.1103057861328125],[-0.48041439056396484,-0.2106952667236328],[-0.5986232757568359,-0.3354358673095703],[-0.6910295486450195,-0.48017311096191406],[-0.754730224609375,-0.6405525207519531],[-0.7868223190307617,-0.8122215270996094],[-0.7844028472900391,-0.9908256530761719],[-0.6966743469238281,-1.2817497253417969],[-0.5263757705688477,-1.5223617553710938],[-0.28899097442626953,-1.6933059692382812],[-0.1499786376953125,-1.746603012084961],[0,-1.775228500366211],[0,-2.050457000732422],[-8.724770784378052,-8.449540138244629],[-8.724770784378052,-8.449540138244629],[-8.880178689956665,-8.531572341918945],[-9.044294834136963,-8.581995010375977],[-9.212926626205444,-8.601454734802246],[-9.38188099861145,-8.590595245361328],[-9.546964883804321,-8.550063133239746],[-9.703985452651978,-8.480504035949707],[-9.84874963760376,-8.382560729980469],[-9.977064490318298,-8.256880760192871],[-10.06304681301117,-8.100908279418945],[-10.115324258804321,-7.935420989990234],[-10.1350257396698,-7.7650957107543945],[-10.123280048370361,-7.594610214233398],[-10.081216216087341,-7.4286394119262695],[-10.009963035583496,-7.271860122680664],[-9.910649299621582,-7.128951072692871],[-9.784404039382935,-7.004586219787598],[-0.5504589080810547,-0.1926593780517578],[-0.5504589080810547,-0.1926593780517578],[-0.2855501174926758,-0.06020545959472656],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":1506088846,"isDeleted":true,"id":"YJ_u1ogZ0n4NhBR3Q-jtf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1312,"y":475.8440361022949,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.660550117492676,"height":3.660552978515625,"seed":946311547,"groupIds":["imGG7UahrtDaDF3H8xXJ5","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36707115173339844,0.03744316101074219],[-0.7097902297973633,0.14471054077148438],[-1.0205793380737305,0.31422996520996094],[-1.2918577194213867,0.5384197235107422],[-1.5160465240478516,0.8096961975097656],[-1.6855649948120117,1.1204872131347656],[-1.7928333282470703,1.463205337524414],[-1.8302745819091797,1.8302764892578125],[-1.7928333282470703,2.197347640991211],[-1.6855649948120117,2.5400657653808594],[-1.5160465240478516,2.8508567810058594],[-1.2918577194213867,3.122133255004883],[-1.0205793380737305,3.346323013305664],[-0.7097902297973633,3.5158424377441406],[-0.36707115173339844,3.623109817504883],[0,3.660552978515625],[0.36707210540771484,3.623109817504883],[0.7097911834716797,3.5158424377441406],[1.0205793380737305,3.346323013305664],[1.2918586730957031,3.122133255004883],[1.5160455703735352,2.8508567810058594],[1.6855659484863281,2.5400657653808594],[1.7928342819213867,2.197347640991211],[1.830275535583496,1.8302764892578125],[1.7933998107910156,1.463205337524414],[1.6875009536743164,1.1204872131347656],[1.519674301147461,0.8096961975097656],[1.2970190048217773,0.5384197235107422],[1.026627540588379,0.31422996520996094],[0.7155971527099609,0.14471054077148438],[0.37102222442626953,0.03744316101074219],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":1650749522,"isDeleted":true,"id":"qqsVnw5eRi45MC2iAM-aU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1312,"y":478.55504608154297,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.7889909744262695,"height":1.788991928100586,"seed":280008629,"groupIds":["imGG7UahrtDaDF3H8xXJ5","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18067264556884766,-0.018115997314453125],[-0.3487663269042969,-0.07009696960449219],[-0.5007343292236328,-0.15239715576171875],[-0.6330270767211914,-0.26146697998046875],[-0.7420978546142578,-0.39376068115234375],[-0.8243980407714844,-0.5457286834716797],[-0.8763790130615234,-0.7138214111328125],[-0.894495964050293,-0.8944950103759766],[-0.8763790130615234,-1.0751686096191406],[-0.8243980407714844,-1.2432613372802734],[-0.7420978546142578,-1.3952312469482422],[-0.6330270767211914,-1.5275230407714844],[-0.5007343292236328,-1.6365947723388672],[-0.3487663269042969,-1.718893051147461],[-0.18067264556884766,-1.7708740234375],[0,-1.788991928100586],[0.18067359924316406,-1.7708740234375],[0.3487672805786133,-1.718893051147461],[0.5007343292236328,-1.6365947723388672],[0.6330280303955078,-1.5275230407714844],[0.7420978546142578,-1.3952312469482422],[0.8243989944458008,-1.2432613372802734],[0.8763799667358398,-1.0751686096191406],[0.8944950103759766,-0.8944950103759766],[0.8944950103759766,-0.8807334899902344],[0.8944950103759766,-0.8807334899902344],[0.8769445419311523,-0.7006511688232422],[0.8263339996337891,-0.5341167449951172],[0.7457265853881836,-0.3843536376953125],[0.638188362121582,-0.25458717346191406],[0.5067825317382812,-0.1480426788330078],[0.35457324981689453,-0.0679473876953125],[0.18462467193603516,-0.017522811889648438],[0,0],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":949417422,"isDeleted":true,"id":"gb3X65I7LB3M05YXhJTJy","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1312,"y":478.55504608154297,"strokeColor":"#00000000","backgroundColor":"#fff","width":1.7889909744262695,"height":1.788991928100586,"seed":34449947,"groupIds":["NZY30LGt0EmmuulY_qeYm","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18067264556884766,-0.018115997314453125],[-0.3487663269042969,-0.07009696960449219],[-0.5007343292236328,-0.15239715576171875],[-0.6330270767211914,-0.26146697998046875],[-0.7420978546142578,-0.39376068115234375],[-0.8243980407714844,-0.5457286834716797],[-0.8763790130615234,-0.7138214111328125],[-0.894495964050293,-0.8944950103759766],[-0.8763790130615234,-1.0751686096191406],[-0.8243980407714844,-1.2432613372802734],[-0.7420978546142578,-1.3952312469482422],[-0.6330270767211914,-1.5275230407714844],[-0.5007343292236328,-1.6365947723388672],[-0.3487663269042969,-1.718893051147461],[-0.18067264556884766,-1.7708740234375],[0,-1.788991928100586],[0.18067359924316406,-1.7708740234375],[0.3487672805786133,-1.718893051147461],[0.5007343292236328,-1.6365947723388672],[0.6330280303955078,-1.5275230407714844],[0.7420978546142578,-1.3952312469482422],[0.8243989944458008,-1.2432613372802734],[0.8763799667358398,-1.0751686096191406],[0.8944950103759766,-0.8944950103759766],[0.8944950103759766,-0.8807334899902344],[0.8944950103759766,-0.8807334899902344],[0.8769445419311523,-0.7006511688232422],[0.8263339996337891,-0.5341167449951172],[0.7457265853881836,-0.3843536376953125],[0.638188362121582,-0.25458717346191406],[0.5067825317382812,-0.1480426788330078],[0.35457324981689453,-0.0679473876953125],[0.18462467193603516,-0.017522811889648438],[0,0],[0,0],[0,0]]},{"type":"line","version":161,"versionNonce":2027329042,"isDeleted":true,"id":"MRkHzu7GYBInwSUwABvRC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1304.5275230407715,"y":460.6100916862488,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8727693557739258,"height":4.322310358285904,"seed":781048085,"groupIds":["aXGSwNmiTd1qEN80A97D0","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18583345413208008,-0.01932525634765625],[-0.3590884208679199,-0.07461261749267578],[-0.5162162780761719,-0.16183137893676758],[-0.6536698341369629,-0.276949405670166],[-0.7679007053375244,-0.41593503952026367],[-0.8553612232208252,-0.5747561454772949],[-0.912503719329834,-0.7493815422058105],[-0.9357798099517822,-0.9357795715332031],[-0.9357798099517822,-3.275229334831238],[-0.9357798099517822,-3.275229334831238],[-0.9369893074035645,-3.4680510759353638],[-0.9015910625457764,-3.6515194177627563],[-0.8329720497131348,-3.8214412927627563],[-0.73451828956604,-3.973623752593994],[-0.609616756439209,-4.103873908519745],[-0.4616541862487793,-4.2079987823963165],[-0.29401683807373047,-4.281805396080017],[-0.1100921630859375,-4.321100860834122],[0.08272981643676758,-4.322310358285904],[0.26619815826416016,-4.286912202835083],[0.43612051010131836,-4.218293011188507],[0.5883026123046875,-4.119839370250702],[0.7185525894165039,-3.9949379563331604],[0.8226776123046875,-3.846975266933441],[0.896484375,-3.679338037967682],[0.9357800483703613,-3.4954127073287964],[0.9357800483703613,-3.275229334831238],[0.9357800483703613,-0.9357795715332031],[0.9357800483703613,-0.9357795715332031],[0.9209704399108887,-0.7454307079315186],[0.8689074516296387,-0.5689506530761719],[0.7836246490478516,-0.40988731384277344],[0.6691513061523438,-0.2717890739440918],[0.5295209884643555,-0.1582026481628418],[0.36876440048217773,-0.0726776123046875],[0.19091320037841797,-0.01876068115234375],[0,0],[0,0]]},{"type":"ellipse","version":161,"versionNonce":370347022,"isDeleted":true,"id":"jrwS9VhZi8F5n1VQDlTkO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1303.5504586696625,"y":466.9954137802124,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":749186747,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":1367213010,"isDeleted":true,"id":"5o40oKJHgbT2r9-5bwbJQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1303.5504586696625,"y":464.24311923980713,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":368832117,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":271735374,"isDeleted":true,"id":"7A-9yuMS4sA9oaCzIMjL_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1303.5504586696625,"y":461.47706413269043,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":1255677787,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"line","version":161,"versionNonce":108116370,"isDeleted":true,"id":"4AzhKBfXHj1qrCYTMGzrd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1319.4724769592285,"y":463.34862422943115,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.871561050415039,"height":4.224770784378052,"seed":96491477,"groupIds":["lcWRifGHenapqKgCxnJfM","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.19034957885742188,-0.019351959228515625],[-0.36682701110839844,-0.0748281478881836],[-0.5258922576904297,-0.16255760192871094],[-0.6639900207519531,-0.2786698341369629],[-0.7775764465332031,-0.4192948341369629],[-0.8631019592285156,-0.5805621147155762],[-0.9170169830322266,-0.758601188659668],[-0.9357795715332031,-0.9495415687561035],[-0.9357795715332031,-3.2889909744262695],[-0.9357795715332031,-3.2889909744262695],[-0.9170169830322266,-3.475389003753662],[-0.8631019592285156,-3.650014638900757],[-0.7775764465332031,-3.808835744857788],[-0.6639900207519531,-3.9478213787078857],[-0.5258922576904297,-4.062939405441284],[-0.36682701110839844,-4.150157928466797],[-0.19034957885742188,-4.205445766448975],[0,-4.224770784378052],[0.19034957885742188,-4.206010103225708],[0.36682891845703125,-4.152093172073364],[0.5258941650390625,-4.066567897796631],[0.6639919281005859,-3.952981948852539],[0.7775764465332031,-3.8148834705352783],[0.8631038665771484,-3.65582013130188],[0.9170188903808594,-3.4793403148651123],[0.9357814788818359,-3.2889909744262695],[0.9357814788818359,-0.9495415687561035],[0.9357814788818359,-0.9495415687561035],[0.9215354919433594,-0.758601188659668],[0.8708438873291016,-0.5805621147155762],[0.7872524261474609,-0.4192948341369629],[0.6743125915527344,-0.2786698341369629],[0.5355701446533203,-0.16255760192871094],[0.3745708465576172,-0.0748281478881836],[0.19486427307128906,-0.019351959228515625],[0,0],[0,0],[0,0]]},{"type":"ellipse","version":161,"versionNonce":500031630,"isDeleted":true,"id":"TFQnX6tQpv07zsUg-ANs3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1318.550458908081,"y":467.0091743469238,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":1995537403,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":1458091858,"isDeleted":true,"id":"tOahuiQcaXp13VhONE8aA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1318.550458908081,"y":464.2018346786499,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":1206949173,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":1922997966,"isDeleted":true,"id":"GjUiDbxFy8M1U2bdejmVv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1318.550458908081,"y":456.385321110487,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":1559643291,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"line","version":161,"versionNonce":54131986,"isDeleted":true,"id":"2-fyyOJ4-tX0yLSjmggtU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1312,"y":471.6880741119385,"strokeColor":"#00000000","backgroundColor":"#669df6","width":1.8715600967407227,"height":4.147927284240723,"seed":1207051925,"groupIds":["GquoooUCKWYt-kVSupAxU","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18583297729492188,-0.01932525634765625],[-0.3590888977050781,-0.07461357116699219],[-0.5162162780761719,-0.1618328094482422],[-0.6536703109741211,-0.2769498825073242],[-0.7679004669189453,-0.4159355163574219],[-0.8553609848022461,-0.5747566223144531],[-0.9125041961669922,-0.7493829727172852],[-0.9357795715332031,-0.9357805252075195],[-0.9357795715332031,-3.316514015197754],[-0.9357795715332031,-3.316514015197754],[-0.896484375,-3.504955291748047],[-0.8226766586303711,-3.6758174896240234],[-0.7185525894165039,-3.8257150650024414],[-0.5883016586303711,-3.9512624740600586],[-0.43612003326416016,-4.049070358276367],[-0.26619815826416016,-4.115755081176758],[-0.08272933959960938,-4.147927284240723],[0.1100921630859375,-4.142202377319336],[0.2703113555908203,-4.108416557312012],[0.4190807342529297,-4.049957275390625],[0.5539798736572266,-3.969243049621582],[0.6725921630859375,-3.8686933517456055],[0.7724971771240234,-3.750725746154785],[0.8512763977050781,-3.6177616119384766],[0.9065103530883789,-3.472217559814453],[0.9357805252075195,-3.316514015197754],[0.9357805252075195,-0.9633035659790039],[0.9357805252075195,-0.9633035659790039],[0.9254856109619141,-0.7723360061645508],[0.8766489028930664,-0.5941085815429688],[0.793299674987793,-0.4323310852050781],[0.6794719696044922,-0.2907114028930664],[0.5391969680786133,-0.1729593276977539],[0.37650489807128906,-0.08278369903564453],[0.19542884826660156,-0.023894309997558594],[0,0],[0,0],[0,0]]},{"type":"ellipse","version":161,"versionNonce":1664980238,"isDeleted":true,"id":"G2lHAbjQCGvYTlyh4B1Z2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1311.0504598617554,"y":472.5412845611572,"strokeColor":"transparent","backgroundColor":"#669df6","width":1.8990826606750488,"height":1.8990826606750488,"seed":77134139,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":685542098,"isDeleted":true,"id":"CHqps5t4IlusakQL4Rjg9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1311.0504598617554,"y":464.68348598480225,"strokeColor":"transparent","backgroundColor":"#669df6","width":1.8990826606750488,"height":1.8990826606750488,"seed":1752861685,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":1227080526,"isDeleted":true,"id":"bpxZ4-nNdhmT683QvZ45d","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1311.0504598617554,"y":461.9174313545227,"strokeColor":"transparent","backgroundColor":"#669df6","width":1.8990826606750488,"height":1.8990826606750488,"seed":1530665435,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"line","version":161,"versionNonce":510091410,"isDeleted":true,"id":"KunlgGhyvwVgaj71u6FPK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1315.7431201934814,"y":466.1284408569336,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.8727693557739258,"height":4.322310447692871,"seed":428819797,"groupIds":["eBMQ3JAmIkpPpP9uv61cL","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.1858348846435547,-0.01932525634765625],[-0.3590888977050781,-0.07461261749267578],[-0.5162172317504883,-0.16183185577392578],[-0.6536703109741211,-0.2769498825073242],[-0.7679014205932617,-0.4159355163574219],[-0.8553619384765625,-0.5747566223144531],[-0.9125041961669922,-0.7493820190429688],[-0.9357805252075195,-0.9357795715332031],[-0.9357805252075195,-3.2752299308776855],[-0.9357805252075195,-3.2752299308776855],[-0.9369897842407227,-3.4680519104003906],[-0.9015922546386719,-3.651519775390625],[-0.832972526550293,-3.821441650390625],[-0.7345190048217773,-3.9736242294311523],[-0.6096172332763672,-4.103874206542969],[-0.4616546630859375,-4.207999229431152],[-0.2940177917480469,-4.281805992126465],[-0.1100921630859375,-4.321101188659668],[0.08273029327392578,-4.322310447692871],[0.26619720458984375,-4.28691291809082],[0.43611907958984375,-4.218293190002441],[0.5883026123046875,-4.119840145111084],[0.7185516357421875,-3.994938373565674],[0.8226776123046875,-3.846975803375244],[0.896484375,-3.6793384552001953],[0.9357795715332031,-3.495412826538086],[0.9357795715332031,-3.2752299308776855],[0.9357795715332031,-0.9357795715332031],[0.9357795715332031,-0.9357795715332031],[0.9164543151855469,-0.7454309463500977],[0.8611660003662109,-0.5689516067504883],[0.7739486694335938,-0.40988826751708984],[0.6588306427001953,-0.27178955078125],[0.5198440551757812,-0.158203125],[0.36102294921875,-0.0726776123046875],[0.18639755249023438,-0.018761634826660156],[0,0],[0,0]]},{"type":"ellipse","version":161,"versionNonce":1722427790,"isDeleted":true,"id":"DO40DXxccYsjEfrfwa2Tn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1314.807339668274,"y":459.13761472702026,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":2113021563,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":1334935122,"isDeleted":true,"id":"Bisbp3Orh60EhnKN99B5S","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1314.807339668274,"y":469.72018337249756,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":780522165,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":1258932174,"isDeleted":true,"id":"2LDfwdBGKBl36kq7VBqr-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1314.807339668274,"y":466.95412826538086,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":1132306203,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":422700050,"isDeleted":true,"id":"9Ds9akmxIbzbO6f0UDwE2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1307.3073391914368,"y":469.72018337249756,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":1946399765,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":911973902,"isDeleted":true,"id":"flN5AzLDfxeaf4gWj7drR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1307.3073391914368,"y":461.9174313545227,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":105972667,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":161,"versionNonce":624923090,"isDeleted":true,"id":"h-xmdT9PIfhkzDbAC1FbW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1307.3073391914368,"y":459.13761472702026,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":100559221,"groupIds":["UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"}},{"type":"line","version":161,"versionNonce":2107157582,"isDeleted":true,"id":"YpbOY_AhP73_cEXvrFnEi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1308.2706422805786,"y":468.85321140289307,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8715600967407227,"height":4.2110090255737305,"seed":781112411,"groupIds":["2gWtqfp_YK-0lhHmYZ8k3","UGnwZTFUWRcIJ29GuYV7y","6C0UwhX-t_Yn3Ab1P-WNJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"XjateU-UHdapqGJ03OYAI","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18586063385009766,-0.0181427001953125],[-0.35930299758911133,-0.0703125],[-0.516942024230957,-0.1531229019165039],[-0.6553897857666016,-0.2631874084472656],[-0.7712602615356445,-0.39712047576904297],[-0.8611669540405273,-0.5515336990356445],[-0.921722412109375,-0.7230415344238281],[-0.9495410919189453,-0.9082565307617188],[-0.9495410919189453,-3.2752294540405273],[-0.9495410919189453,-3.2752294540405273],[-0.9307804107666016,-3.461627960205078],[-0.8768630027770996,-3.6362533569335938],[-0.7913379669189453,-3.7950735092163086],[-0.6777524948120117,-3.9340600967407227],[-0.5396537780761719,-4.049178123474121],[-0.38059091567993164,-4.136396408081055],[-0.20411014556884766,-4.191683769226074],[-0.013761520385742188,-4.2110090255737305],[0.17658710479736328,-4.192248344421387],[0.35306835174560547,-4.138331413269043],[0.5121307373046875,-4.052806854248047],[0.6502294540405273,-3.939220428466797],[0.7638149261474609,-3.801121711730957],[0.8493404388427734,-3.642059326171875],[0.9032583236694336,-3.465579032897949],[0.9220190048217773,-3.2752294540405273],[0.9220190048217773,-0.9082565307617188],[0.9220190048217773,-0.9082565307617188],[0.8987693786621094,-0.7230415344238281],[0.8418149948120117,-0.5515336990356445],[0.7548646926879883,-0.39712047576904297],[0.6416282653808594,-0.2631874084472656],[0.5058145523071289,-0.1531229019165039],[0.3511323928833008,-0.0703125],[0.1812915802001953,-0.0181427001953125],[0,0],[0,0]]},{"type":"rectangle","version":834,"versionNonce":1188136850,"isDeleted":false,"id":"2V9ZlS6F6EqBZ2gjZxGf9","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-20,"y":-160,"strokeColor":"#d5d7dc","backgroundColor":"#FFF","width":1020,"height":940,"seed":488037563,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"}],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"FEZbF8emwr8sBIQIdLqP6","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":639,"versionNonce":1855582862,"isDeleted":false,"id":"0oXy5e_rLr0Pp6BRhD-eM","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":0,"y":40,"strokeColor":"#FFFFFF","backgroundColor":"#f1f3f4","width":980,"height":720,"seed":165585013,"groupIds":["_-wYpGsF_24l1kW4KmYJo"],"strokeSharpness":"sharp","boundElements":[{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow"}],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"5ES4MFO4ILeOhE5czPW70","label":"Project","resource":"google_project","type":"container"}},{"type":"text","version":328,"versionNonce":1444857170,"isDeleted":false,"id":"lUGNrTbnsF6wWDlXQOmis","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":20,"y":60,"strokeColor":"#202124","backgroundColor":"transparent","width":191,"height":23,"seed":20024667,"groupIds":["_-wYpGsF_24l1kW4KmYJo"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"5ES4MFO4ILeOhE5czPW70","label":"Project","resource":"google_project","type":"child"},"fontSize":20,"fontFamily":2,"text":"Google Cloud Project","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Google Cloud Project"},{"type":"rectangle","version":665,"versionNonce":874016974,"isDeleted":false,"id":"zyoEe3Q6a-__dhbaIc5rB","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":0,"y":-140,"strokeColor":"#4285f4","backgroundColor":"#d2e3fc","width":980,"height":160,"seed":243059157,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"5NHi5KE_nu-zXqdTwd3J_","type":"arrow"},{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow"}],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"eMQXcLzYgKT5owHVTU7js","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":702,"versionNonce":209603346,"isDeleted":false,"id":"je1YMtlFBoxw7qhmYP9Ej","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":20,"y":60,"strokeColor":"#4285f4","backgroundColor":"#d2e3fc","width":940,"height":680,"seed":1957529019,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"_xHOs6O_f0-L1-0bjUp1d","label":"Region","resource":"region","type":"container"}},{"type":"rectangle","version":144,"versionNonce":967649038,"isDeleted":false,"id":"FWksbV0B8XefYw4MaMFnu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":160,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":1057700501,"groupIds":["bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow"}],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"}},{"type":"text","version":148,"versionNonce":1617369298,"isDeleted":false,"id":"yDBXnR7thegT4kzCRPE1R","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":183.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":1984636219,"groupIds":["bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":143,"versionNonce":265360718,"isDeleted":false,"id":"yRk2dRjeNfJ3s4w8vwxuu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":189,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1129390069,"groupIds":["WPiOMskm2wmLWceKhO8bB","bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":143,"versionNonce":1634741906,"isDeleted":false,"id":"aiN5AeSb0genSAK0ay-fO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":209,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":768132571,"groupIds":["-4V47Yh6XnvZqGtpk8QuR","bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":143,"versionNonce":1339898766,"isDeleted":false,"id":"o6abqGcVQotkJ_e3KVqKS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":196,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":74668373,"groupIds":["BUf7IqZvPbphtwT7D_kCe","bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":143,"versionNonce":340823122,"isDeleted":false,"id":"slFr208VAjgSDbOFszVC3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":209,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":839471739,"groupIds":["RE7FXJjUIRFvg0hGUI9O7","bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829088,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":143,"versionNonce":694734,"isDeleted":false,"id":"1frZHVsQ_HOytbf0K5pzK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":196,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":1271359157,"groupIds":["r7aiGrzN_7FOilLeRmlSU","bHMpT2Yf2iz_tDAHK9Kx1","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"Mwb_rsXag1KMCjfj2BjwF"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":123,"versionNonce":1323250194,"isDeleted":false,"id":"o9ox1N0R7Xmy7-SUehRtR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":460,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":670821877,"groupIds":["BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"}},{"type":"text","version":128,"versionNonce":2003972110,"isDeleted":false,"id":"m7QvY8WunOPCyyt3OOz3a","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":483.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":1484380123,"groupIds":["BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":123,"versionNonce":336797650,"isDeleted":false,"id":"AYgW6lb9ZxMI4JGf9Ti6-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":489,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1721001813,"groupIds":["p0djxESc9M3p4Dk0e1axo","BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":123,"versionNonce":1108147790,"isDeleted":false,"id":"oNYyTMoQO2OC3DzP-J9wr","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":509,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":1221076091,"groupIds":["E3RnUfjrioYcUC9cO70KD","BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":123,"versionNonce":1879266706,"isDeleted":false,"id":"AvVXHdr_LzJyYbWh7867b","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":496,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":580302005,"groupIds":["ZYno8uv7RNut8RvfacoCf","BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":123,"versionNonce":78906510,"isDeleted":false,"id":"QhM3qwfTife7jTZbOipNg","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":509,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":2128862491,"groupIds":["nwQ0Vo778q4lofGOTVWeC","BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":123,"versionNonce":1407636306,"isDeleted":false,"id":"twelHSuIPCu4fdxBYmi9l","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":496,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":933778965,"groupIds":["g0DP2OaJ2SUmX-8_XAmYZ","BxohZ3dn3jkLb8yOR_1mR","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"iO2trjLHabhaw3Ps_Mn8q"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":135,"versionNonce":1629504206,"isDeleted":false,"id":"xTJVX9yvfiKpnpxCHDbqc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":760,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":372198459,"groupIds":["yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"}},{"type":"text","version":140,"versionNonce":1913952530,"isDeleted":false,"id":"QaqxPq0uh31fRkmuuMC1I","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":783.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":543615221,"groupIds":["yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":135,"versionNonce":1508555022,"isDeleted":false,"id":"7vYqiPxIyvRtdGAo3KxqM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":789,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":747637979,"groupIds":["KtMSRkL_Xljo56QsQlHW2","yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":135,"versionNonce":436446930,"isDeleted":false,"id":"wlHvZ4LSAi4r3BK-vLgyD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":809,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":770179669,"groupIds":["Jbf22fz9yMXiC1ubsj_2S","yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":135,"versionNonce":915171150,"isDeleted":false,"id":"ylIzp2Eezmmlh0RwF3ZVi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":796,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":105888123,"groupIds":["EmUbO6aO22LluZ3wqXj_O","yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":135,"versionNonce":340458642,"isDeleted":false,"id":"jPgq7Ia8mJmAz5yOlbphm","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":809,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":314503093,"groupIds":["P4jn2wPlVKhM_hUjGCWP4","yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":135,"versionNonce":1734233486,"isDeleted":false,"id":"YaKkJnzyElSr3DEv7pMMA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":796,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":816894491,"groupIds":["rkc4VH_YM2y3YaMT91z59","yguxF3mVnOFUd_FM2jQMK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"nzJ_25c0Si7oBha5KhwLl"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":148,"versionNonce":2124520018,"isDeleted":false,"id":"fALOAYpAijhsAnDu3-DVT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":310,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":2031041115,"groupIds":["hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow"}],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"}},{"type":"text","version":152,"versionNonce":1771662286,"isDeleted":false,"id":"9GBTYJC8k_aJBUBp7amva","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":333.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":1314680021,"groupIds":["hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":147,"versionNonce":668893202,"isDeleted":false,"id":"GEexJN_Gvp_PYLCuoJS1a","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":339,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":630011643,"groupIds":["yoA5ROLJnD-PCq8t_smt-","hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":147,"versionNonce":727106062,"isDeleted":false,"id":"fSw1fBjl3AlXK7cHVio23","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":359,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":776079925,"groupIds":["bYq6X4M9ZHAKzB2X1pN5r","hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":147,"versionNonce":1811459538,"isDeleted":false,"id":"yNH0m7XuU8pgdHLlyzobp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":1449303963,"groupIds":["Xa3xFwSSpv4CiiDWRi-3-","hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":147,"versionNonce":1871663182,"isDeleted":false,"id":"XT4e4fCi4OvBBjmPLda45","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":359,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":776797077,"groupIds":["Gm8RNTJiGvoZ9maPO1D1N","hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":147,"versionNonce":268903314,"isDeleted":false,"id":"5ccj77XulXnyBFCXmxVro","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":346,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":1707209787,"groupIds":["kPLRJ_jci7LjGXdYQeUMi","hd_jQB4N-mRDQWEHuZikK","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KVsxQsBWGQK92p6azZtXk"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"rectangle","version":155,"versionNonce":840701582,"isDeleted":false,"id":"z1aUKa29i0hpVCwcPP5YR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":610,"y":-80,"strokeColor":"#202124","backgroundColor":"#FFF","width":82,"height":82,"seed":269607957,"groupIds":["V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"}},{"type":"text","version":160,"versionNonce":507568466,"isDeleted":false,"id":"1PQm6f4Gw8dQbz9ACH4q0","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":633.5,"y":-32,"strokeColor":"#202124","backgroundColor":"transparent","width":35,"height":19,"seed":494785467,"groupIds":["V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"},"fontSize":16,"fontFamily":2,"text":"Data","baseline":15,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data"},{"type":"line","version":155,"versionNonce":196482254,"isDeleted":false,"id":"noCO1SjlkNBY_lxoLgsHl","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":639,"y":-64,"strokeColor":"#00000000","backgroundColor":"#00000000","width":24,"height":24,"seed":1623628149,"groupIds":["STvGEMt3hCpDrPIUg8z4H","V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[24,0],[24,24],[0,24],[0,0]]},{"type":"line","version":155,"versionNonce":1107093266,"isDeleted":false,"id":"oeblVvHutARPQyJWLkWez","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":659,"y":-51,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":1738646619,"groupIds":["Iq2t8xA4D2SLGAH2a7SdX","V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937498092651367],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706249237060547],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706249237060547],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937498092651367],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":368462606,"isDeleted":false,"id":"4WD4vXyRgJjVOUbPhge73","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":646,"y":-45,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":402498261,"groupIds":["tWsbRc0Vc4qlcKyESF34q","V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234382629394531],[-2,-2],[-1.8421874046325684,-2.776561737060547],[-1.4124999046325684,-3.4125003814697266],[-0.7765626907348633,-3.8421878814697266],[0,-4],[0.7765626907348633,-3.8421878814697266],[1.4125003814697266,-3.4125003814697266],[1.8421878814697266,-2.776561737060547],[2,-2],[1.8421878814697266,-1.2234382629394531],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":598881490,"isDeleted":false,"id":"um6haNkR-HC7WYwq6vzd4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":659,"y":-61,"strokeColor":"#00000000","backgroundColor":"#000","width":18,"height":8,"seed":708993275,"groupIds":["CIRmjND6w1mjYR7vfGawr","V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-16,0],[-16,0],[-16.706249952316284,0.2937500476837158],[-17,1],[-17,7],[-17,7],[-16.706249952316284,7.706250190734863],[-16,8],[0,8],[0,8],[0.7062492370605469,7.706250190734863],[1,7],[1,1],[1,1],[0.7062492370605469,0.2937500476837158],[0,0],[0,0]]},{"type":"line","version":155,"versionNonce":1331018062,"isDeleted":false,"id":"pqqd0fZvW2nzSTuzwS1MX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":646,"y":-55,"strokeColor":"#00000000","backgroundColor":"#DEDEDE","width":4,"height":4,"seed":1514962997,"groupIds":["pDhwuicnuQ6kbCJH5lD3M","V1kAMpnKyr4MFQjmjsevk","75Nv99fh5NG4XT8bER9n9"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"814KvQaFpnWrwrXJujLaq"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.7765626907348633,-0.15781211853027344],[-1.4124999046325684,-0.5874996185302734],[-1.8421874046325684,-1.2234373092651367],[-2,-2],[-1.8421874046325684,-2.7765626907348633],[-1.4124999046325684,-3.4124999046325684],[-0.7765626907348633,-3.8421874046325684],[0,-4],[0.7765626907348633,-3.8421874046325684],[1.4125003814697266,-3.4124999046325684],[1.8421878814697266,-2.7765626907348633],[2,-2],[1.8421878814697266,-1.2234373092651367],[1.4125003814697266,-0.5874996185302734],[0.7765626907348633,-0.15781211853027344],[0,0],[0,0]]},{"type":"text","version":471,"versionNonce":1157089938,"isDeleted":true,"id":"VErI30OpPSleODbvy9-A-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":700,"y":-120,"strokeColor":"#202124","backgroundColor":"transparent","width":127,"height":19,"seed":144782203,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"KdbyS0y_Vhwiuzl-dkmH3","label":"Region","resource":"region","type":"child"},"fontSize":16.444444444444446,"fontFamily":2,"text":"DATA SOURCES","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA SOURCES"},{"id":"mYjacvROuTi1LLYmgBNLN","type":"text","x":732.6666259765625,"y":-123.6666870117187,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":580515355,"version":56,"versionNonce":2133680014,"isDeleted":true,"boundElements":null,"updated":1697744829089,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"VjGej67ajxrrtS-sRobOJ","type":"text","x":752.6666259765625,"y":-131.1666870117187,"width":7,"height":23,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":836881365,"version":80,"versionNonce":1552197714,"isDeleted":true,"boundElements":null,"updated":1697744829089,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"type":"text","version":510,"versionNonce":431373774,"isDeleted":true,"id":"TL6swRcJES8bhDW-DiZAw","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":740,"y":-200,"strokeColor":"#202124","backgroundColor":"transparent","width":127,"height":19,"seed":578093845,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"8pNX46VkoXMp4RbBRMw3D","label":"Region","resource":"region","type":"child"},"fontSize":16.444444444444446,"fontFamily":2,"text":"DATA SOURCES","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA SOURCES"},{"id":"Zb8J1fljd-O1BVZKiNOtW","type":"freedraw","x":537.3001708984375,"y":24.373779296875,"width":9,"height":114.80517578125,"angle":0,"strokeColor":"#000000","backgroundColor":"transparent","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":903390997,"version":78,"versionNonce":841993746,"isDeleted":true,"boundElements":null,"updated":1697744829089,"link":null,"locked":false,"points":[[0,0],[0,0.32781982421875],[0,1.311279296875],[0,4.966552734375],[0,6.112548828125],[-2.0174560546875,23.12493896484375],[-2.9715576171875,32.775634765625],[-2.9715576171875,37.84698486328125],[-2.9715576171875,46.35333251953125],[-2.9715576171875,50.71624755859375],[-2.9715576171875,57.96917724609375],[-2.9715576171875,63.423583984375],[-2.9715576171875,69.03997802734375],[-2.535400390625,73.56768798828125],[-0.790283203125,84.474853515625],[-0.3538818359375,89.98370361328125],[2.017822265625,98.98046875],[4.281005859375,106.1787109375],[5.0450439453125,110.16156005859375],[5.0450439453125,111.52703857421875],[5.372802734375,112.51043701171875],[5.70068359375,113.493896484375],[6.0284423828125,114.47735595703125],[6.0284423828125,114.80517578125],[6.0284423828125,114.80517578125]],"pressures":[],"simulatePressure":true,"lastCommittedPoint":[6.0284423828125,114.80517578125],"endArrowhead":"triangle","fontFamily":2},{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow","x":280,"y":21.000000000000014,"width":0,"height":138,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1771811515,"version":597,"versionNonce":604591118,"isDeleted":false,"boundElements":null,"updated":1697744829089,"link":null,"locked":false,"points":[[0,0],[0,138]],"lastCommittedPoint":null,"startBinding":{"elementId":"zyoEe3Q6a-__dhbaIc5rB","focus":0.4285714285714285,"gap":1.0000000000000142},"endBinding":{"elementId":"XGJiTHw2h99_Hrxjg4EQi","focus":0.8333333333333334,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":571,"versionNonce":2062564306,"isDeleted":true,"id":"O5xNzyaWR5wEy9LBVN1Tw","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":120,"strokeColor":"#F9AB00","backgroundColor":"#FDE293","width":280,"height":160,"seed":1608393499,"groupIds":["ImqOH48SI2zybs9Pj-_dD"],"strokeSharpness":"sharp","boundElements":[{"id":"u3MHsCfKj6joFmOvIyJhR","type":"arrow"},{"id":"3EleidzYjikUW9ZkNfEPT","type":"arrow"},{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow"},{"id":"MBAzSf45lj2hPn8nr3IPf","type":"arrow"},{"id":"3exC9lat3uD7T7SlGlk-Z","type":"arrow"}],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"h3pxPecv7fjSj5K6Z5Gk2","label":"Virtual Private Cloud","resource":"google_compute_network","type":"container"}},{"type":"text","version":403,"versionNonce":404726350,"isDeleted":true,"id":"ZEH87_l-Jo8R0DxkT5EBI","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":380,"y":140,"strokeColor":"#202124","backgroundColor":"transparent","width":86,"height":19,"seed":786264085,"groupIds":["ImqOH48SI2zybs9Pj-_dD"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"h3pxPecv7fjSj5K6Z5Gk2","label":"Virtual Private Cloud","resource":"google_compute_network","type":"child"},"fontSize":16,"fontFamily":2,"text":"DATA LAKE","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA LAKE"},{"type":"rectangle","version":192,"versionNonce":886894994,"isDeleted":true,"id":"kbrMClpQSq_PqEHMsgygU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":200,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1123430043,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":180,"versionNonce":1221732494,"isDeleted":true,"id":"Ta2uojOzj_-2r7C9gPCjY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":216,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":834526357,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"rectangle","version":180,"versionNonce":53276498,"isDeleted":true,"id":"tvBzUOMRrspXfN5O3uU7o","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":220,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":923509563,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":180,"versionNonce":1171908302,"isDeleted":true,"id":"ZIG66VewrYMd1LvGlqkEQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":220,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1264550389,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":180,"versionNonce":171390226,"isDeleted":true,"id":"Dp5nvcZsIQWTUZuyZGDIL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":522,"y":220,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1036616667,"groupIds":["YL5yRHLVRwcDXR_Pn6pvU","ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":180,"versionNonce":1070587150,"isDeleted":true,"id":"ZRGa-ECYaHmHtWjg8ff2u","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":220,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":6650709,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":180,"versionNonce":1265812178,"isDeleted":true,"id":"OiNsmzVuzJgTbIb2qGs2A","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":506,"y":223,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1061310587,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":180,"versionNonce":1814891342,"isDeleted":true,"id":"CYhWPNdgVb8WQq5sW0-qL","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":515,"y":222,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":153438389,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":180,"versionNonce":24549522,"isDeleted":true,"id":"yVMV-Ek5MlNG3c8-hi0Ie","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":229,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":2100857115,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":181,"versionNonce":1766486414,"isDeleted":true,"id":"y7Xx766C2zvyC0Efa4Txr","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":220,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":2000972309,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":180,"versionNonce":2079962706,"isDeleted":true,"id":"F38mUwO3Ty_LKmYxf6QKk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":522,"y":229,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1562291643,"groupIds":["38QmZJ851TRf2Gpy7AtX0","ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":180,"versionNonce":576786382,"isDeleted":true,"id":"K0rIXYxcF3R4wbroZBT29","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":229,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":196632437,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":180,"versionNonce":2077432850,"isDeleted":true,"id":"VRO5_lKGdCjqV_KNQ0rHn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":506,"y":232,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1914125915,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":180,"versionNonce":864675342,"isDeleted":true,"id":"laCPQEehQMDcng_kB3eKp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":515,"y":231,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1288087765,"groupIds":["ADCdeveN3V9DPlHfZwq-X","P7ni3z6UUxyblSNV4vtAZ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829089,"link":null,"locked":false,"customData":{"boxId":"qs-YJyCmmB9OUljffRRju","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"id":"Gg663axvYQotWVFbjMb8H","type":"ellipse","x":220,"y":60,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1247806837,"version":125,"versionNonce":251251154,"isDeleted":true,"boundElements":[{"type":"text","id":"ymD52FAaOScsWvH10K2cL"}],"updated":1697744829089,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"ymD52FAaOScsWvH10K2cL","type":"text","x":225,"y":65,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":640855387,"version":120,"versionNonce":1304294478,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"1","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"Gg663axvYQotWVFbjMb8H","originalText":"1"},{"type":"rectangle","version":152,"versionNonce":1820639122,"isDeleted":true,"id":"0HyYxt8CD7LhJ0u5OdAxs","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":880,"y":200,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":51025691,"groupIds":["dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"round","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"container"}},{"type":"text","version":147,"versionNonce":450247310,"isDeleted":true,"id":"DZCEOLxL9oYImNcuRMu2T","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":896,"y":216,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":2044869653,"groupIds":["dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"round","boundElements":[{"id":"mhvuWpnHjXBX9bdcUM46z","type":"arrow"}],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"Workflows","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Workflows"},{"type":"line","version":146,"versionNonce":1353383250,"isDeleted":true,"id":"HNggPBKlkk844zadUKKfF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1087.712230205536,"y":235.10791397094727,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.2503600120544434,"height":2.071941375732422,"seed":964623291,"groupIds":["l3PIE4eCdItMYvJOq5gt4","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.011690616607666016,0.2695140838623047],[-0.04604291915893555,0.5330944061279297],[-0.10197877883911133,0.7891197204589844],[-0.17841720581054688,1.035970687866211],[2.0719428062438965,1.035970687866211],[2.0719428062438965,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.10197877883911133,-0.7891178131103516],[-0.04604291915893555,-0.5330944061279297],[-0.011690616607666016,-0.2695140838623047],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":562804942,"isDeleted":true,"id":"S5Yg7iGSADm9eCblmcpwY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1096.1784172058105,"y":219.56834530830383,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.250359535217285,"height":2.0719425678253174,"seed":1590423925,"groupIds":["l3PIE4eCdItMYvJOq5gt4","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.250359535217285,0],[-2.250359535217285,2.0719425678253174],[0,2.0719425678253174],[0,2.0719425678253174],[-0.07643890380859375,1.8250901699066162],[-0.13237380981445312,1.5690648555755615],[-0.16672706604003906,1.3054859638214111],[-0.17841720581054688,1.0359714031219482],[-0.16672706604003906,0.7664568424224854],[-0.13237380981445312,0.502877950668335],[-0.07643890380859375,0.24685263633728027],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1489208082,"isDeleted":true,"id":"CaZgb9pF-ax_fLVK7i7Vi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1099.1079139709473,"y":223.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.215827941894531,"height":6.2158273458480835,"seed":960351323,"groupIds":["lQwcOy-R466VzqD_mhicd","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754493713378906,-0.016060352325439453],[-0.6259651184082031,-0.06319713592529297],[-0.9236984252929688,-0.13984060287475586],[-1.2091712951660156,-0.24442386627197266],[-1.4808197021484375,-0.3753790855407715],[-1.7370719909667969,-0.5311374664306641],[-1.9763622283935547,-0.7101306915283203],[-2.1971206665039062,-0.9107909202575684],[-2.3977813720703125,-1.1315503120422363],[-2.5767765045166016,-1.3708405494689941],[-2.732534408569336,-1.6270933151245117],[-2.8634891510009766,-1.8987407684326172],[-2.9680728912353516,-2.1842145919799805],[-3.0447158813476562,-2.4819464683532715],[-3.0918521881103516,-2.7903690338134766],[-3.1079139709472656,-3.1079134941101074],[-3.0918521881103516,-3.4254579544067383],[-3.0447158813476562,-3.7338805198669434],[-2.9680728912353516,-4.031612396240234],[-2.8634891510009766,-4.317086219787598],[-2.732534408569336,-4.588733673095703],[-2.5767765045166016,-4.844986438751221],[-2.3977813720703125,-5.084276437759399],[-2.1971206665039062,-5.305035829544067],[-1.9763622283935547,-5.5056962966918945],[-1.7370719909667969,-5.68468976020813],[-1.4808197021484375,-5.840447902679443],[-1.2091712951660156,-5.9714027643203735],[-0.9236984252929688,-6.075986266136169],[-0.6259651184082031,-6.15263032913208],[-0.31754493713378906,-6.199766755104065],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236984252929688,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.4808197021484375,-5.840447902679443],[1.7370738983154297,-5.68468976020813],[1.9763622283935547,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317086219787598],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338805198669434],[3.0918540954589844,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819464683532715],[2.9680728912353516,-2.1842145919799805],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236984252929688,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":695693070,"isDeleted":true,"id":"wNV7IwNYb86OKAzgT3cWZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1099.1079139709473,"y":219.56834530830383,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.071941375732422,"height":2.0719425678253174,"seed":1536686805,"groupIds":["lQwcOy-R466VzqD_mhicd","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1598378194,"isDeleted":true,"id":"POdjMmMDuAs8HgSHJ4r50","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1084.6043167114258,"y":238.21582794189453,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.2158273458480835,"height":6.215827941894531,"seed":1176078587,"groupIds":["lQwcOy-R466VzqD_mhicd","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754446029663086,-0.01605987548828125],[-0.6259670257568359,-0.06319808959960938],[-0.923698902130127,-0.13984107971191406],[-1.2091727256774902,-0.24442481994628906],[-1.4808201789855957,-0.3753795623779297],[-1.7370729446411133,-0.5311374664306641],[-1.976362943649292,-0.7101306915283203],[-2.19712233543396,-0.9107913970947266],[-2.397782802581787,-1.131551742553711],[-2.5767762660980225,-1.370840072631836],[-2.732534408569336,-1.6270942687988281],[-2.863489270210266,-1.8987407684326172],[-2.968072772026062,-2.184215545654297],[-3.0447168350219727,-2.4819469451904297],[-3.0918532609939575,-2.7903690338134766],[-3.107913851737976,-3.1079139709472656],[-3.0918532609939575,-3.4254589080810547],[-3.0447168350219727,-3.7338790893554688],[-2.968072772026062,-4.031612396240234],[-2.863489270210266,-4.317085266113281],[-2.732534408569336,-4.588733673095703],[-2.5767762660980225,-4.8449859619140625],[-2.397782802581787,-5.08427619934082],[-2.19712233543396,-5.305034637451172],[-1.976362943649292,-5.505695343017578],[-1.7370729446411133,-5.684690475463867],[-1.4808201789855957,-5.840448379516602],[-1.2091727256774902,-5.971403121948242],[-0.923698902130127,-6.075986862182617],[-0.6259670257568359,-6.152629852294922],[-0.31754446029663086,-6.199766159057617],[0,-6.215827941894531],[0.31754446029663086,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.923698902130127,-6.075986862182617],[1.2091727256774902,-5.971403121948242],[1.4808201789855957,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.976363182067871,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.397782802581787,-5.08427619934082],[2.5767760276794434,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634896278381348,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447163581848145,-3.7338790893554688],[3.091853141784668,-3.4254589080810547],[3.1079134941101074,-3.1079139709472656],[3.091853141784668,-2.7903690338134766],[3.0447163581848145,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634896278381348,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767760276794434,-1.370840072631836],[2.397782802581787,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.4808201789855957,-0.3753795623779297],[1.2091727256774902,-0.24442481994628906],[0.923698902130127,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754446029663086,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":521297230,"isDeleted":true,"id":"kHQvhu5Ra4ZEotekhugYi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1084.6043167114258,"y":234.07194328308105,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.0719425678253174,"height":2.071941375732422,"seed":1759238197,"groupIds":["lQwcOy-R466VzqD_mhicd","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1472685714,"isDeleted":true,"id":"OfY5JUMKazPNAg-bOUSDW","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1099.1079139709473,"y":219.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.071941375732422,"height":2.0719425678253174,"seed":93630875,"groupIds":["3iXtGV8EvrQILsuD8ON7I","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":2008384398,"isDeleted":true,"id":"TafPvceM89A1MqjZennA3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1084.6043167114258,"y":234.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.0719425678253174,"height":2.071941375732422,"seed":1350371733,"groupIds":["3iXtGV8EvrQILsuD8ON7I","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":721470546,"isDeleted":true,"id":"zuyRMtwpmFGP6zipsi44q","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1087.8906478881836,"y":226.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":6.394245028495789,"height":9.225899696350098,"seed":1222755899,"groupIds":["o1wFCLkkrtwqOOn2kJebf","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.2503600120544434,0],[-2.2503600120544434,0],[-2.462372303009033,-0.010685920715332031],[-2.668221950531006,-0.042052268981933594],[-2.8668718338012695,-0.0930624008178711],[-3.057284355163574,-0.16267967224121094],[-3.2384233474731445,-0.24986648559570312],[-3.4092516899108887,-0.35358524322509766],[-3.568732261657715,-0.47280120849609375],[-3.7158279418945312,-0.6064748764038086],[-3.849501132965088,-0.753570556640625],[-3.968716621398926,-0.913050651550293],[-4.0724358558654785,-1.083878517150879],[-4.159622669219971,-1.2650175094604492],[-4.2292397022247314,-1.4554309844970703],[-4.280249834060669,-1.6540803909301758],[-4.31161642074585,-1.8599300384521484],[-4.322302579879761,-2.0719423294067383],[-4.322302579879761,-3.1079134941101074],[-4.322302579879761,-3.1079134941101074],[-4.316173315048218,-3.2672781944274902],[-4.298089265823364,-3.4234819412231445],[-4.268505811691284,-3.5760602951049805],[-4.227878093719482,-3.724550247192383],[-4.176661252975464,-3.8684868812561035],[-4.1153106689453125,-4.007407188415527],[-4.044281721115112,-4.140848159790039],[-3.96402907371521,-4.268344879150391],[-3.7776756286621094,-4.503653049468994],[-3.5598926544189453,-4.709621906280518],[-3.314321517944336,-4.882542610168457],[-3.182253360748291,-4.955450057983398],[-3.044604778289795,-5.018704414367676],[-3.1479320526123047,-5.301258563995361],[-3.223741054534912,-5.5956830978393555],[-3.270413875579834,-5.9008989334106445],[-3.2863311767578125,-6.215826988220215],[-3.276798725128174,-6.459532260894775],[-3.2489209175109863,-6.697841644287109],[-3.203777313232422,-6.929675817489624],[-3.142446517944336,-7.153956413269043],[-3.485318183898926,-7.062928199768066],[-3.815906524658203,-6.9439857006073],[-4.132853746414185,-6.798486232757568],[-4.434802532196045,-6.6277875900268555],[-4.720395803451538,-6.433246612548828],[-4.98827600479126,-6.216220378875732],[-5.237085819244385,-5.978066921234131],[-5.465467929840088,-5.7201433181762695],[-5.672065019607544,-5.443807601928711],[-5.855519771575928,-5.150415897369385],[-6.014474511146545,-4.841325759887695],[-6.14757227897644,-4.517895221710205],[-6.2534555196762085,-4.18148136138916],[-6.330767035484314,-3.833441734313965],[-6.3781492710113525,-3.4751334190368652],[-6.394245028495789,-3.1079134941101074],[-6.394245028495789,-2.0719423294067383],[-6.394245028495789,-2.0719423294067383],[-6.3728097677230835,-1.6488656997680664],[-6.3099037408828735,-1.2378711700439453],[-6.207625985145569,-0.8410558700561523],[-6.068075895309448,-0.46052074432373047],[-5.893352746963501,-0.09836578369140625],[-5.685555696487427,0.24331188201904297],[-5.446784019470215,0.5624113082885742],[-5.1791369915008545,0.8568344116210938],[-4.884714126586914,1.1244821548461914],[-4.5656139850616455,1.3632535934448242],[-4.223936557769775,1.5710506439208984],[-3.8617806434631348,1.7457733154296875],[-3.481245994567871,1.8853235244750977],[-3.0844311714172363,1.9876022338867188],[-2.673436164855957,2.0505075454711914],[-2.2503600120544434,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[-0.07643890380859375,1.8250904083251953],[-0.13237428665161133,1.5690650939941406],[-0.16672706604003906,1.3054866790771484],[-0.17841768264770508,1.0359716415405273],[-0.16672706604003906,0.7664575576782227],[-0.13237428665161133,0.5028781890869141],[-0.07643890380859375,0.24685287475585938],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":362406350,"isDeleted":true,"id":"k4zIvkJfKuzG-2GaQhLZC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1098.0892086029053,"y":226.820143699646,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.369785308837891,"height":9.231654167175293,"seed":61935349,"groupIds":["-3ckVtp7eIRynfrINmNKp","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.2316551208496094,0],[-1.2316551208496094,0],[-1.1552162170410156,0.24685287475585938],[-1.0992794036865234,0.5028781890869141],[-1.0649280548095703,0.7664575576782227],[-1.0532379150390625,1.0359716415405273],[-1.0649280548095703,1.3054866790771484],[-1.0992794036865234,1.5690650939941406],[-1.1552162170410156,1.8250904083251953],[-1.2316551208496094,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[0.21201133728027344,2.0826292037963867],[0.4178638458251953,2.1139955520629883],[0.6165122985839844,2.165006637573242],[0.8069248199462891,2.2346229553222656],[0.9880638122558594,2.321809768676758],[1.1588916778564453,2.4255285263061523],[1.3183727264404297,2.5447444915771484],[1.4654693603515625,2.6784181594848633],[1.599142074584961,2.8255138397216797],[1.7183570861816406,2.9849939346313477],[1.8220748901367188,3.1558218002319336],[1.9092636108398438,3.336960792541504],[1.9788799285888672,3.527374267578125],[2.0298900604248047,3.7260236740112305],[2.0612564086914062,3.931873321533203],[2.071941375732422,4.143885612487793],[2.071941375732422,5.179856300354004],[2.071941375732422,5.179856300354004],[2.065746307373047,5.341246604919434],[2.0474605560302734,5.499213218688965],[2.0175399780273438,5.653304100036621],[1.9764385223388672,5.803057670593262],[1.9246139526367188,5.948025703430176],[1.8625221252441406,6.087746620178223],[1.7906169891357422,6.221772193908691],[1.7093524932861328,6.349640846252441],[1.6191864013671875,6.470900535583496],[1.5205707550048828,6.585095405578613],[1.4139633178710938,6.691769599914551],[1.2998199462890625,6.790467262268066],[1.1785945892333984,6.880736351013184],[1.0507431030273438,6.962119102478027],[0.916717529296875,7.0341596603393555],[0.7769775390625,7.096402168273926],[0.8769798278808594,7.378058433532715],[0.951080322265625,7.670504570007324],[0.9971237182617188,7.973742485046387],[1.012948989868164,8.28777027130127],[1.0033283233642578,8.53156566619873],[0.9748191833496094,8.77050495147705],[0.9279670715332031,9.004048347473145],[0.8633098602294922,9.231654167175293],[1.2083377838134766,9.141573905944824],[1.5410652160644531,9.02332592010498],[1.8601150512695312,8.87828540802002],[2.1641178131103516,8.707823753356934],[2.4516983032226562,8.513319969177246],[2.7214832305908203,8.29614543914795],[2.9720935821533203,8.057673454284668],[3.202157974243164,7.799281120300293],[3.4103031158447266,7.522339820861816],[3.595155715942383,7.228226661682129],[3.755338668823242,6.918313026428223],[3.8894805908203125,6.593976020812988],[3.9962024688720703,6.256587028503418],[4.074134826660156,5.9075212478637695],[4.1219024658203125,5.548151969909668],[4.138130187988281,5.179856300354004],[4.138130187988281,4.143885612487793],[4.138130187988281,4.143885612487793],[4.117706298828125,3.720808982849121],[4.055688858032227,3.309814453125],[3.9541778564453125,2.912999153137207],[3.815288543701172,2.532464027404785],[3.641122817993164,2.170309066772461],[3.4337902069091797,1.8286314010620117],[3.1954002380371094,1.5095319747924805],[2.9280567169189453,1.215108871459961],[2.6338729858398438,0.9474611282348633],[2.314950942993164,0.7086896896362305],[1.9734001159667969,0.5008926391601562],[1.6113319396972656,0.3261699676513672],[1.2308483123779297,0.18661975860595703],[0.8340606689453125,0.08434104919433594],[0.4230766296386719,0.02143573760986328],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":315124242,"isDeleted":true,"id":"HCJR5WbjlPposnuGgLFel","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1090.820143699646,"y":223.7122302055359,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.2158273458480835,"seed":383993563,"groupIds":["xQ25ui9De_djHUyr8bMNQ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079134941101074,0],[-3.1079134941101074,0],[-3.4254579544067383,-0.016060352325439453],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984060287475586],[-4.317086219787598,-0.24442386627197266],[-4.588733196258545,-0.3753790855407715],[-4.8449859619140625,-0.5311374664306641],[-5.0842766761779785,-0.7101306915283203],[-5.3050360679626465,-0.9107909202575684],[-5.5056962966918945,-1.1315503120422363],[-5.684689521789551,-1.3708405494689941],[-5.840447425842285,-1.6270933151245117],[-5.971402645111084,-1.8987407684326172],[-6.075986385345459,-2.1842145919799805],[-6.15263032913208,-2.4819464683532715],[-6.199766635894775,-2.7903690338134766],[-6.215826988220215,-3.1079134941101074],[-6.199766635894775,-3.4254579544067383],[-6.15263032913208,-3.7338805198669434],[-6.075986385345459,-4.031612396240234],[-5.971402645111084,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986438751221],[-5.5056962966918945,-5.084276437759399],[-5.3050360679626465,-5.305035829544067],[-5.0842766761779785,-5.5056962966918945],[-4.8449859619140625,-5.68468976020813],[-4.588733196258545,-5.840447902679443],[-4.317086219787598,-5.9714027643203735],[-4.031612396240234,-6.075986266136169],[-3.733880043029785,-6.15263032913208],[-3.4254579544067383,-6.199766755104065],[-3.1079134941101074,-6.2158273458480835],[0,-6.2158273458480835],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236993789672852,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.480820655822754,-5.840447902679443],[1.7370729446411133,-5.68468976020813],[1.976363182067871,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.863490104675293,-4.317086219787598],[2.968073844909668,-4.031612396240234],[3.0447168350219727,-3.7338805198669434],[3.091853141784668,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.091853141784668,-2.7903690338134766],[3.0447168350219727,-2.4819464683532715],[2.968073844909668,-2.1842145919799805],[2.863490104675293,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236993789672852,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":735606798,"isDeleted":true,"id":"4KyGFJg5m6R74WW-OP3DS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1087.712230205536,"y":219.56834530830383,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719425678253174,"seed":821913685,"groupIds":["xQ25ui9De_djHUyr8bMNQ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1981110226,"isDeleted":true,"id":"dtx3JUGi16eey7TrfgWja","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1093.9280576705933,"y":230.9640293121338,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.323740482330322,"height":6.215827941894531,"seed":1982575483,"groupIds":["xQ25ui9De_djHUyr8bMNQ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079139709472656,0],[-3.1079139709472656,0],[-3.4254579544067383,-0.016060829162597656],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984203338623047],[-4.317086219787598,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.084277153015137,-0.7101316452026367],[-5.305035591125488,-0.9107913970947266],[-5.5056962966918945,-1.1315507888793945],[-5.684689521789551,-1.3708410263061523],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987417221069336],[-6.075986385345459,-2.1842145919799805],[-6.152629852294922,-2.4819469451904297],[-6.199766635894775,-2.790369987487793],[-6.215827465057373,-3.1079139709472656],[-6.199766635894775,-3.4254579544067383],[-6.152629852294922,-3.7338809967041016],[-6.075986385345459,-4.031613349914551],[-5.971403121948242,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986915588379],[-5.5056962966918945,-5.084277153015137],[-5.305035591125488,-5.305036544799805],[-5.084277153015137,-5.5056962966918945],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317086219787598,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152630805969238],[-3.4254579544067383,-6.199767112731934],[-3.1079139709472656,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199767112731934],[0.6259670257568359,-6.152630805969238],[0.9236984252929688,-6.075986862182617],[1.209172248840332,-5.971403121948242],[1.480820655822754,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.9763622283935547,-5.5056962966918945],[2.1971216201782227,-5.305036544799805],[2.397782325744629,-5.084277153015137],[2.576775550842285,-4.844986915588379],[2.7325353622436523,-4.588733673095703],[2.86348819732666,-4.317086219787598],[2.968071937561035,-4.031613349914551],[3.0447168350219727,-3.7338809967041016],[3.091853141784668,-3.4254579544067383],[3.107913017272949,-3.1079139709472656],[3.091853141784668,-2.790369987487793],[3.0447168350219727,-2.4819469451904297],[2.968071937561035,-2.1842145919799805],[2.86348819732666,-1.8987417221069336],[2.7325353622436523,-1.6270942687988281],[2.576775550842285,-1.3708410263061523],[2.397782325744629,-1.1315507888793945],[2.1971216201782227,-0.9107913970947266],[1.9763622283935547,-0.7101316452026367],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753795623779297],[1.209172248840332,-0.24442481994628906],[0.9236984252929688,-0.13984203338623047],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060829162597656],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":577390158,"isDeleted":true,"id":"KZpkz7FkcxtDxLtV1QiQq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1090.820143699646,"y":226.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719432830810547,"seed":439850421,"groupIds":["xQ25ui9De_djHUyr8bMNQ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1157533074,"isDeleted":true,"id":"yHpek2XVR-vPJo7Dj4nBY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1096,"y":238.21582794189453,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.215827941894531,"seed":1996327963,"groupIds":["xQ25ui9De_djHUyr8bMNQ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.107913017272949,0],[-3.107913017272949,0],[-3.4254579544067383,-0.01605987548828125],[-3.733880043029785,-0.06319808959960938],[-4.031612396240234,-0.13984107971191406],[-4.317085266113281,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.08427619934082,-0.7101306915283203],[-5.305035591125488,-0.9107913970947266],[-5.505695343017578,-1.131551742553711],[-5.684689521789551,-1.370840072631836],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987407684326172],[-6.075985908508301,-2.184215545654297],[-6.152629852294922,-2.4819469451904297],[-6.199766159057617,-2.7903690338134766],[-6.215826988220215,-3.1079139709472656],[-6.199766159057617,-3.4254589080810547],[-6.152629852294922,-3.7338790893554688],[-6.075985908508301,-4.031612396240234],[-5.971403121948242,-4.317085266113281],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.8449859619140625],[-5.505695343017578,-5.08427619934082],[-5.305035591125488,-5.305034637451172],[-5.08427619934082,-5.505695343017578],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317085266113281,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152629852294922],[-3.4254579544067383,-6.199766159057617],[-3.107913017272949,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.9236984252929688,-6.075986862182617],[1.2091732025146484,-5.971403121948242],[1.4808197021484375,-5.840448379516602],[1.7370738983154297,-5.684690475463867],[1.9763622283935547,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.3977832794189453,-5.08427619934082],[2.5767765045166016,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338790893554688],[3.0918540954589844,-3.4254589080810547],[3.1079139709472656,-3.1079139709472656],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767765045166016,-1.370840072631836],[2.3977832794189453,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753795623779297],[1.2091732025146484,-0.24442481994628906],[0.9236984252929688,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754493713378906,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":2049461390,"isDeleted":true,"id":"JnR5BMPOw-BSnPDrFv5Qu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1092.892086982727,"y":234.07194328308105,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.1798553466796875,"height":2.071941375732422,"seed":713365269,"groupIds":["xQ25ui9De_djHUyr8bMNQ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1421544274,"isDeleted":true,"id":"Wcn2L9lmS2677ygypz38l","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1089.7841730117798,"y":223.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.2158273458480835,"seed":2102087867,"groupIds":["yjMGzdnTaGdMpfmFS52mZ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.2800469398498535,-2.0930867195129395],[-2.4741907119750977,-2.153687000274658],[-2.6501240730285645,-2.2494940757751465],[-2.8035974502563477,-2.3762588500976562],[-2.9303622245788574,-2.5297322273254395],[-3.0261693000793457,-2.7056655883789062],[-3.0867695808410645,-2.899808883666992],[-3.1079139709472656,-3.1079134941101074],[-3.0867695808410645,-3.316018581390381],[-3.0261693000793457,-3.5101613998413086],[-2.9303622245788574,-3.6860947608947754],[-2.8035974502563477,-3.8395683765411377],[-2.6501240730285645,-3.9663331508636475],[-2.4741907119750977,-4.062140226364136],[-2.2800469398498535,-4.1227405071258545],[-2.0719428062438965,-4.143884897232056],[0,-4.143884897232056],[0,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.3894872665405273,-6.199766755104065],[-2.697909355163574,-6.15263032913208],[-2.9956417083740234,-6.075986266136169],[-3.2811155319213867,-5.9714027643203735],[-3.552762508392334,-5.840447902679443],[-3.8090152740478516,-5.68468976020813],[-4.048305988311768,-5.5056962966918945],[-4.2690653800964355,-5.305035829544067],[-4.469725608825684,-5.084276437759399],[-4.64871883392334,-4.844986438751221],[-4.804476737976074,-4.588733673095703],[-4.935431957244873,-4.317086219787598],[-5.040015697479248,-4.031612396240234],[-5.116659641265869,-3.7338805198669434],[-5.1637959480285645,-3.4254579544067383],[-5.179856300354004,-3.1079134941101074],[-5.1637959480285645,-2.7903690338134766],[-5.116659641265869,-2.4819464683532715],[-5.040015697479248,-2.1842145919799805],[-4.935431957244873,-1.8987407684326172],[-4.804476737976074,-1.6270933151245117],[-4.64871883392334,-1.3708405494689941],[-4.469725608825684,-1.1315503120422363],[-4.2690653800964355,-0.9107909202575684],[-4.048305988311768,-0.7101306915283203],[-3.8090152740478516,-0.5311374664306641],[-3.552762508392334,-0.3753790855407715],[-3.2811155319213867,-0.24442386627197266],[-2.9956417083740234,-0.13984060287475586],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060352325439453],[-2.0719428062438965,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":818645710,"isDeleted":true,"id":"BpdSlVfE4fCReX-cLFpvM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1092.892086982727,"y":230.9640293121338,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856777191162,"height":6.215827941894531,"seed":1281059957,"groupIds":["yjMGzdnTaGdMpfmFS52mZ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.2800474166870117,-2.0930871963500977],[-2.4741907119750977,-2.1536874771118164],[-2.6501235961914062,-2.2494945526123047],[-2.8035974502563477,-2.3762598037719727],[-2.9303627014160156,-2.5297327041625977],[-3.0261688232421875,-2.7056655883789062],[-3.0867700576782227,-2.8998098373413086],[-3.1079139709472656,-3.1079139709472656],[-3.0867700576782227,-3.3160181045532227],[-3.0261688232421875,-3.510162353515625],[-2.9303627014160156,-3.6860952377319336],[-2.8035974502563477,-3.8395681381225586],[-2.6501235961914062,-3.9663333892822266],[-2.4741907119750977,-4.062140464782715],[-2.2800474166870117,-4.122740745544434],[-2.0719432830810547,-4.143885612487793],[0,-4.143885612487793],[0,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.3894872665405273,-6.199767112731934],[-2.697909355163574,-6.152630805969238],[-2.9956417083740234,-6.075986862182617],[-3.2811155319213867,-5.971403121948242],[-3.552762985229492,-5.840448379516602],[-3.8090152740478516,-5.684690475463867],[-4.048306465148926,-5.5056962966918945],[-4.269064903259277,-5.305036544799805],[-4.469725608825684,-5.084277153015137],[-4.64871883392334,-4.844986915588379],[-4.804476737976074,-4.588733673095703],[-4.935432434082031,-4.317086219787598],[-5.040015697479248,-4.031613349914551],[-5.116659164428711,-3.7338809967041016],[-5.1637959480285645,-3.4254579544067383],[-5.179856777191162,-3.1079139709472656],[-5.1637959480285645,-2.790369987487793],[-5.116659164428711,-2.4819469451904297],[-5.040015697479248,-2.1842145919799805],[-4.935432434082031,-1.8987417221069336],[-4.804476737976074,-1.6270942687988281],[-4.64871883392334,-1.3708410263061523],[-4.469725608825684,-1.1315507888793945],[-4.269064903259277,-0.9107913970947266],[-4.048306465148926,-0.7101316452026367],[-3.8090152740478516,-0.5311374664306641],[-3.552762985229492,-0.3753795623779297],[-3.2811155319213867,-0.24442481994628906],[-2.9956417083740234,-0.13984203338623047],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060829162597656],[-2.0719432830810547,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":1000460562,"isDeleted":true,"id":"3wl9Z1pk5qjj_O7P3i8Oe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1092.892086982727,"y":236.14388465881348,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.215827941894531,"seed":1253540187,"groupIds":["yjMGzdnTaGdMpfmFS52mZ","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,-0.021142959594726562],[-0.4022483825683594,-0.08174514770507812],[-0.578181266784668,-0.17755126953125],[-0.7316551208496094,-0.30431556701660156],[-0.8584194183349609,-0.45778846740722656],[-0.9542264938354492,-0.6337223052978516],[-1.014826774597168,-0.8278656005859375],[-1.0359716415405273,-1.035970687866211],[-1.014826774597168,-1.2440757751464844],[-0.9542264938354492,-1.4382190704345703],[-0.8584194183349609,-1.6141510009765625],[-0.7316551208496094,-1.7676258087158203],[-0.578181266784668,-1.8943901062011719],[-0.4022483825683594,-1.9901962280273438],[-0.20810508728027344,-2.0507984161376953],[0,-2.071941375732422],[2.0719423294067383,-2.071941375732422],[2.0719423294067383,-4.143884658813477],[0,-4.143884658813477],[0,-4.143884658813477],[-0.31754493713378906,-4.1278228759765625],[-0.6259670257568359,-4.080686569213867],[-0.9236993789672852,-4.0040435791015625],[-1.209172248840332,-3.8994598388671875],[-1.480820655822754,-3.768505096435547],[-1.7370729446411133,-3.6127471923828125],[-1.976363182067871,-3.4337520599365234],[-2.197122573852539,-3.233091354370117],[-2.397782325744629,-3.0123329162597656],[-2.5767765045166016,-2.773042678833008],[-2.732534408569336,-2.5167903900146484],[-2.863490104675293,-2.2451419830322266],[-2.9680728912353516,-1.9596691131591797],[-3.0447168350219727,-1.661935806274414],[-3.091853141784668,-1.353515625],[-3.1079139709472656,-1.035970687866211],[-3.091853141784668,-0.7184257507324219],[-3.0447168350219727,-0.410003662109375],[-2.9680728912353516,-0.11227226257324219],[-2.863490104675293,0.1732025146484375],[-2.732534408569336,0.44484901428222656],[-2.5767765045166016,0.7011032104492188],[-2.397782325744629,0.9403915405273438],[-2.197122573852539,1.1611518859863281],[-1.976363182067871,1.3618125915527344],[-1.7370729446411133,1.5408058166503906],[-1.480820655822754,1.696563720703125],[-1.209172248840332,1.8275184631347656],[-0.9236993789672852,1.9321022033691406],[-0.6259670257568359,2.0087451934814453],[-0.31754493713378906,2.0558834075927734],[0,2.0719432830810547],[2.0719423294067383,2.0719432830810547],[2.0719423294067383,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":619512078,"isDeleted":true,"id":"3h8ikeTCcb49_QVbz51Cv","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1087.712230205536,"y":219.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719425678253174,"seed":2139100629,"groupIds":["vLYyKSH2-m2DEwn4thyjx","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":757718738,"isDeleted":true,"id":"jmBBnk5nPF_Es4devtWts","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1090.820143699646,"y":226.820143699646,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719432830810547,"seed":1217699323,"groupIds":["vLYyKSH2-m2DEwn4thyjx","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":146,"versionNonce":2047192910,"isDeleted":true,"id":"Tefeywu-DcfhtILoPsNK-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1092.892086982727,"y":234.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.1798553466796875,"height":2.071941375732422,"seed":789091125,"groupIds":["vLYyKSH2-m2DEwn4thyjx","dqtFSxAtFJNWsIaMGlkHQ","rAQEApI4VEYwFhzxCF84e"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"ImdtOUe28RFC2SfSQM-ro","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"text","version":365,"versionNonce":1441412242,"isDeleted":true,"id":"eH5JxwZ3f0MMV05PwEoa1","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":80,"angle":0,"x":700,"y":120,"strokeColor":"#202124","backgroundColor":"transparent","width":106,"height":19,"seed":226394837,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"rkmLEAcAmdweSG5IfBg2F","label":"Region","resource":"region","type":"child"},"fontSize":16,"fontFamily":2,"text":"APPLICATION","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"APPLICATION"},{"id":"VpuOcW1azC9zYtWU9miBc","type":"text","x":1758.6666259765625,"y":56.83331298828125,"width":7,"height":23,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1288383611,"version":53,"versionNonce":2087622030,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"0w9uKRU4ae9BhRCDPWUxO","type":"text","x":1366.6666259765625,"y":392.83331298828114,"width":7,"height":23,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":414777243,"version":53,"versionNonce":932827730,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":19,"containerId":null,"originalText":""},{"id":"XQUwPJg-53Vf-0Her7bfg","type":"text","x":1560.6666259765625,"y":-114.1666870117187,"width":162,"height":25,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1606134037,"version":85,"versionNonce":90223566,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"DATA SOURCES","fontSize":20,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":18,"containerId":null,"originalText":"DATA SOURCES"},{"id":"T4_CS8SI02vx60WHHfyRH","type":"text","x":714.1666259765625,"y":-120.6666870117187,"width":9,"height":32,"angle":0,"strokeColor":"transparent","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1461796603,"version":47,"versionNonce":84916242,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"S2oEd0g3dA-Yibu5sSGIY","type":"text","x":234.45007324218773,"y":-152.52001953124994,"width":9,"height":32,"angle":0,"strokeColor":"transparent","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":938736699,"version":47,"versionNonce":1593117198,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"ByZUz7OsnLZyMGaXR54bZ","type":"text","x":1304.4708251953125,"y":-265.0095214843749,"width":9,"height":32,"angle":0,"strokeColor":"transparent","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1136415317,"version":47,"versionNonce":2118313426,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"lgfJk0P6i9eXl3YciIq39","type":"text","x":1269.6895751953125,"y":-288.9431152343749,"width":9,"height":32,"angle":0,"strokeColor":"transparent","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":510886427,"version":47,"versionNonce":673486926,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"-i_Q4qdWQuv24PFNTNFMU","type":"text","x":417.37255859375,"y":-130.46209270633443,"width":167.25488281249997,"height":31.29915935672512,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1590335093,"version":119,"versionNonce":1279941522,"isDeleted":false,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"Data Sources","fontSize":27.386764437134495,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25.29915935672512,"containerId":null,"originalText":"Data Sources"},{"type":"text","version":131,"versionNonce":952655502,"isDeleted":false,"id":"AgxBzdZeNJKsBNMdE8kZY","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":433.5,"y":120,"strokeColor":"#202124","backgroundColor":"#000000","width":135,"height":31,"seed":53659099,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"fontSize":27.386764437134495,"fontFamily":2,"text":"Application","baseline":25,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Application"},{"id":"AuelmtjOcSqckUccqTN-A","type":"text","x":534.1666259765625,"y":245.33331298828125,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2018323029,"version":47,"versionNonce":1566382418,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"mhvuWpnHjXBX9bdcUM46z","type":"arrow","x":540,"y":243.0579990548685,"width":337.66666666666663,"height":3.057999054868503,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":821148277,"version":227,"versionNonce":93936846,"isDeleted":true,"boundElements":null,"updated":1697744829090,"link":null,"locked":false,"points":[[0,0],[337.66666666666663,-3.057999054868503]],"lastCommittedPoint":null,"startBinding":{"elementId":"kbrMClpQSq_PqEHMsgygU","focus":0.10087803853878002,"gap":1},"endBinding":null,"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":117,"versionNonce":1087512338,"isDeleted":true,"id":"daO8VXmCSu7_jc0xgT1qX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":180,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":525735035,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"round","boundElements":[{"id":"3exC9lat3uD7T7SlGlk-Z","type":"arrow"}],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":103,"versionNonce":70292238,"isDeleted":true,"id":"mGDgx93_GOKflv7JrRila","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":196,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":941606069,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"Cloud Storage","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":68,"versionNonce":52456658,"isDeleted":true,"id":"wbUCITfAO3jWfof4z6Vng","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1156,"y":-242,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":775146779,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":69,"versionNonce":252117326,"isDeleted":true,"id":"TD2WFRkvfGNWeqBHl6P_S","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1156,"y":-216,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":1502570005,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":68,"versionNonce":165610130,"isDeleted":true,"id":"g_QNjF2dRoCAa2vahDifr","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1156,"y":-207,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1443983803,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"rectangle","version":103,"versionNonce":1232447374,"isDeleted":true,"id":"okMMoSake9k2d4xn6dcKD","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":200,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1665391477,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":1875173458,"isDeleted":true,"id":"_qZM-RFbSkBQtQFNLWMqH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":200,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1209107035,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":103,"versionNonce":62227918,"isDeleted":true,"id":"YToAIrBrs5CqO7APIzqp_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":522,"y":200,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":495101141,"groupIds":["0Pb1QKiNogylcgjajnBoT","SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":103,"versionNonce":1621689874,"isDeleted":true,"id":"jqBuQ73y2VO2bd17X02nM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":200,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1829142267,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":517970958,"isDeleted":true,"id":"p3UdD2CQm-ofJg1qJYZf8","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":506,"y":203,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":736182837,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":1971483602,"isDeleted":true,"id":"GKZWoo1FpYM41FBmG0WtY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":515,"y":202,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1869801371,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":1894574670,"isDeleted":true,"id":"PwK06_7w7B87dAaooC-rG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":209,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":591737749,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":275261842,"isDeleted":true,"id":"FzGEiR9_u81MFjiF7XO1Y","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":520,"y":209,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":92879931,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":103,"versionNonce":683045006,"isDeleted":true,"id":"w86JHLM2KEP_7wrMSsoiE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":522,"y":209,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1608775925,"groupIds":["MmCIyY55zbfDnwwUdMnEG","SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829090,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":103,"versionNonce":949036882,"isDeleted":true,"id":"Q4J_Cjr8Ug7lvGNB82Ge0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":502,"y":209,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":2066480347,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":838151886,"isDeleted":true,"id":"T0GzpAwb5CH9-PvHacgFQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":506,"y":212,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":457380437,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":103,"versionNonce":1985244434,"isDeleted":true,"id":"3HCCo0yFBN4bpkHic8ra3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":515,"y":211,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":2079172987,"groupIds":["SCwI3xYl9p1h8mKQEAfKP","6RIMraVWZYW8oOTnVU4v3"],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"bJnODD4H6mYBEBOuchIfG","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":207,"versionNonce":423765262,"isDeleted":true,"id":"3eA7opV4aWR5OKiCYAQPp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":180,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":1603865659,"groupIds":["b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"round","boundElements":[{"id":"MBAzSf45lj2hPn8nr3IPf","type":"arrow"},{"id":"5E3kX_JSrqhbcM4pOzi92","type":"arrow"}],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"container"}},{"type":"text","version":183,"versionNonce":791214802,"isDeleted":true,"id":"wdf0LczGPcY5oIYj0ZK5F","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":876,"y":196,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":1266231541,"groupIds":["b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"round","boundElements":[{"id":"MBAzSf45lj2hPn8nr3IPf","type":"arrow"}],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"Workflows","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Workflows"},{"type":"text","version":54,"versionNonce":1880511310,"isDeleted":true,"id":"SxoQoQCavS4Nvwxfrsw3m","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1276,"y":-242,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":583126235,"groupIds":["b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":51,"versionNonce":27644050,"isDeleted":true,"id":"vhVXiCECoDVQDdMUP3FvW","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1196,"y":-276,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":1,"seed":1018315349,"groupIds":["b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":51,"versionNonce":818592142,"isDeleted":true,"id":"dYkhb3tbDI0bHJ6kPIE8h","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1196,"y":-267,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1346992507,"groupIds":["b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":182,"versionNonce":562163282,"isDeleted":true,"id":"pOjHLK9LYO_mEKwou6nI2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1067.712230205536,"y":215.10791397094727,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.2503600120544434,"height":2.071941375732422,"seed":1312894901,"groupIds":["kkyCj28Hdfg9x60F2NY65","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.011690616607666016,0.2695140838623047],[-0.04604291915893555,0.5330944061279297],[-0.10197877883911133,0.7891197204589844],[-0.17841720581054688,1.035970687866211],[2.0719428062438965,1.035970687866211],[2.0719428062438965,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.10197877883911133,-0.7891178131103516],[-0.04604291915893555,-0.5330944061279297],[-0.011690616607666016,-0.2695140838623047],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":580409294,"isDeleted":true,"id":"w1VPidyn2VgY2rbF05wX1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1076.1784172058105,"y":199.56834530830383,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.250359535217285,"height":2.0719425678253174,"seed":359830043,"groupIds":["kkyCj28Hdfg9x60F2NY65","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.250359535217285,0],[-2.250359535217285,2.0719425678253174],[0,2.0719425678253174],[0,2.0719425678253174],[-0.07643890380859375,1.8250901699066162],[-0.13237380981445312,1.5690648555755615],[-0.16672706604003906,1.3054859638214111],[-0.17841720581054688,1.0359714031219482],[-0.16672706604003906,0.7664568424224854],[-0.13237380981445312,0.502877950668335],[-0.07643890380859375,0.24685263633728027],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":865358866,"isDeleted":true,"id":"1u0N2VlhgG_twJNLRJTnR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1079.1079139709473,"y":203.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.215827941894531,"height":6.2158273458480835,"seed":508260629,"groupIds":["DeAMdfbKbZu65D9d2iotQ","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754493713378906,-0.016060352325439453],[-0.6259651184082031,-0.06319713592529297],[-0.9236984252929688,-0.13984060287475586],[-1.2091712951660156,-0.24442386627197266],[-1.4808197021484375,-0.3753790855407715],[-1.7370719909667969,-0.5311374664306641],[-1.9763622283935547,-0.7101306915283203],[-2.1971206665039062,-0.9107909202575684],[-2.3977813720703125,-1.1315503120422363],[-2.5767765045166016,-1.3708405494689941],[-2.732534408569336,-1.6270933151245117],[-2.8634891510009766,-1.8987407684326172],[-2.9680728912353516,-2.1842145919799805],[-3.0447158813476562,-2.4819464683532715],[-3.0918521881103516,-2.7903690338134766],[-3.1079139709472656,-3.1079134941101074],[-3.0918521881103516,-3.4254579544067383],[-3.0447158813476562,-3.7338805198669434],[-2.9680728912353516,-4.031612396240234],[-2.8634891510009766,-4.317086219787598],[-2.732534408569336,-4.588733673095703],[-2.5767765045166016,-4.844986438751221],[-2.3977813720703125,-5.084276437759399],[-2.1971206665039062,-5.305035829544067],[-1.9763622283935547,-5.5056962966918945],[-1.7370719909667969,-5.68468976020813],[-1.4808197021484375,-5.840447902679443],[-1.2091712951660156,-5.9714027643203735],[-0.9236984252929688,-6.075986266136169],[-0.6259651184082031,-6.15263032913208],[-0.31754493713378906,-6.199766755104065],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236984252929688,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.4808197021484375,-5.840447902679443],[1.7370738983154297,-5.68468976020813],[1.9763622283935547,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317086219787598],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338805198669434],[3.0918540954589844,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819464683532715],[2.9680728912353516,-2.1842145919799805],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236984252929688,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":1033383438,"isDeleted":true,"id":"6izR9HktactxRYVxqNU6H","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1079.1079139709473,"y":199.56834530830383,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.071941375732422,"height":2.0719425678253174,"seed":1395627707,"groupIds":["DeAMdfbKbZu65D9d2iotQ","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":701759954,"isDeleted":true,"id":"7ioK-QFvMM712h76E7oDe","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1064.6043167114258,"y":218.21582794189453,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.2158273458480835,"height":6.215827941894531,"seed":1783006837,"groupIds":["DeAMdfbKbZu65D9d2iotQ","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754446029663086,-0.01605987548828125],[-0.6259670257568359,-0.06319808959960938],[-0.923698902130127,-0.13984107971191406],[-1.2091727256774902,-0.24442481994628906],[-1.4808201789855957,-0.3753795623779297],[-1.7370729446411133,-0.5311374664306641],[-1.976362943649292,-0.7101306915283203],[-2.19712233543396,-0.9107913970947266],[-2.397782802581787,-1.131551742553711],[-2.5767762660980225,-1.370840072631836],[-2.732534408569336,-1.6270942687988281],[-2.863489270210266,-1.8987407684326172],[-2.968072772026062,-2.184215545654297],[-3.0447168350219727,-2.4819469451904297],[-3.0918532609939575,-2.7903690338134766],[-3.107913851737976,-3.1079139709472656],[-3.0918532609939575,-3.4254589080810547],[-3.0447168350219727,-3.7338790893554688],[-2.968072772026062,-4.031612396240234],[-2.863489270210266,-4.317085266113281],[-2.732534408569336,-4.588733673095703],[-2.5767762660980225,-4.8449859619140625],[-2.397782802581787,-5.08427619934082],[-2.19712233543396,-5.305034637451172],[-1.976362943649292,-5.505695343017578],[-1.7370729446411133,-5.684690475463867],[-1.4808201789855957,-5.840448379516602],[-1.2091727256774902,-5.971403121948242],[-0.923698902130127,-6.075986862182617],[-0.6259670257568359,-6.152629852294922],[-0.31754446029663086,-6.199766159057617],[0,-6.215827941894531],[0.31754446029663086,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.923698902130127,-6.075986862182617],[1.2091727256774902,-5.971403121948242],[1.4808201789855957,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.976363182067871,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.397782802581787,-5.08427619934082],[2.5767760276794434,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634896278381348,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447163581848145,-3.7338790893554688],[3.091853141784668,-3.4254589080810547],[3.1079134941101074,-3.1079139709472656],[3.091853141784668,-2.7903690338134766],[3.0447163581848145,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634896278381348,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767760276794434,-1.370840072631836],[2.397782802581787,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.4808201789855957,-0.3753795623779297],[1.2091727256774902,-0.24442481994628906],[0.923698902130127,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754446029663086,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":247675982,"isDeleted":true,"id":"yAR9vNGn85XnrT-5G9z3z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1064.6043167114258,"y":214.07194328308105,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.0719425678253174,"height":2.071941375732422,"seed":673384283,"groupIds":["DeAMdfbKbZu65D9d2iotQ","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":525858706,"isDeleted":true,"id":"mXY69phcP9ETAK-3tuzqt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1079.1079139709473,"y":199.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.071941375732422,"height":2.0719425678253174,"seed":620228565,"groupIds":["ePG8b5OeosztA0T9Og2p-","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":468877966,"isDeleted":true,"id":"ow-XqFWjvv1AX3-gJlc0F","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1064.6043167114258,"y":214.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.0719425678253174,"height":2.071941375732422,"seed":983524347,"groupIds":["ePG8b5OeosztA0T9Og2p-","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":878130514,"isDeleted":true,"id":"msVkwsSVlQFPwAYCwEgqh","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1067.8906478881836,"y":206.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":6.394245028495789,"height":9.225899696350098,"seed":1282747701,"groupIds":["Hbw2Cyn0kzbjc8kswQClY","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.2503600120544434,0],[-2.2503600120544434,0],[-2.462372303009033,-0.010685920715332031],[-2.668221950531006,-0.042052268981933594],[-2.8668718338012695,-0.0930624008178711],[-3.057284355163574,-0.16267967224121094],[-3.2384233474731445,-0.24986648559570312],[-3.4092516899108887,-0.35358524322509766],[-3.568732261657715,-0.47280120849609375],[-3.7158279418945312,-0.6064748764038086],[-3.849501132965088,-0.753570556640625],[-3.968716621398926,-0.913050651550293],[-4.0724358558654785,-1.083878517150879],[-4.159622669219971,-1.2650175094604492],[-4.2292397022247314,-1.4554309844970703],[-4.280249834060669,-1.6540803909301758],[-4.31161642074585,-1.8599300384521484],[-4.322302579879761,-2.0719423294067383],[-4.322302579879761,-3.1079134941101074],[-4.322302579879761,-3.1079134941101074],[-4.316173315048218,-3.2672781944274902],[-4.298089265823364,-3.4234819412231445],[-4.268505811691284,-3.5760602951049805],[-4.227878093719482,-3.724550247192383],[-4.176661252975464,-3.8684868812561035],[-4.1153106689453125,-4.007407188415527],[-4.044281721115112,-4.140848159790039],[-3.96402907371521,-4.268344879150391],[-3.7776756286621094,-4.503653049468994],[-3.5598926544189453,-4.709621906280518],[-3.314321517944336,-4.882542610168457],[-3.182253360748291,-4.955450057983398],[-3.044604778289795,-5.018704414367676],[-3.1479320526123047,-5.301258563995361],[-3.223741054534912,-5.5956830978393555],[-3.270413875579834,-5.9008989334106445],[-3.2863311767578125,-6.215826988220215],[-3.276798725128174,-6.459532260894775],[-3.2489209175109863,-6.697841644287109],[-3.203777313232422,-6.929675817489624],[-3.142446517944336,-7.153956413269043],[-3.485318183898926,-7.062928199768066],[-3.815906524658203,-6.9439857006073],[-4.132853746414185,-6.798486232757568],[-4.434802532196045,-6.6277875900268555],[-4.720395803451538,-6.433246612548828],[-4.98827600479126,-6.216220378875732],[-5.237085819244385,-5.978066921234131],[-5.465467929840088,-5.7201433181762695],[-5.672065019607544,-5.443807601928711],[-5.855519771575928,-5.150415897369385],[-6.014474511146545,-4.841325759887695],[-6.14757227897644,-4.517895221710205],[-6.2534555196762085,-4.18148136138916],[-6.330767035484314,-3.833441734313965],[-6.3781492710113525,-3.4751334190368652],[-6.394245028495789,-3.1079134941101074],[-6.394245028495789,-2.0719423294067383],[-6.394245028495789,-2.0719423294067383],[-6.3728097677230835,-1.6488656997680664],[-6.3099037408828735,-1.2378711700439453],[-6.207625985145569,-0.8410558700561523],[-6.068075895309448,-0.46052074432373047],[-5.893352746963501,-0.09836578369140625],[-5.685555696487427,0.24331188201904297],[-5.446784019470215,0.5624113082885742],[-5.1791369915008545,0.8568344116210938],[-4.884714126586914,1.1244821548461914],[-4.5656139850616455,1.3632535934448242],[-4.223936557769775,1.5710506439208984],[-3.8617806434631348,1.7457733154296875],[-3.481245994567871,1.8853235244750977],[-3.0844311714172363,1.9876022338867188],[-2.673436164855957,2.0505075454711914],[-2.2503600120544434,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[-0.07643890380859375,1.8250904083251953],[-0.13237428665161133,1.5690650939941406],[-0.16672706604003906,1.3054866790771484],[-0.17841768264770508,1.0359716415405273],[-0.16672706604003906,0.7664575576782227],[-0.13237428665161133,0.5028781890869141],[-0.07643890380859375,0.24685287475585938],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":1205797070,"isDeleted":true,"id":"PmUUYeCrICWvxs1IWn_RS","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1078.0892086029053,"y":206.820143699646,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.369785308837891,"height":9.231654167175293,"seed":1118252187,"groupIds":["w6mrpM_e7ax-CU5MeMn-a","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.2316551208496094,0],[-1.2316551208496094,0],[-1.1552162170410156,0.24685287475585938],[-1.0992794036865234,0.5028781890869141],[-1.0649280548095703,0.7664575576782227],[-1.0532379150390625,1.0359716415405273],[-1.0649280548095703,1.3054866790771484],[-1.0992794036865234,1.5690650939941406],[-1.1552162170410156,1.8250904083251953],[-1.2316551208496094,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[0.21201133728027344,2.0826292037963867],[0.4178638458251953,2.1139955520629883],[0.6165122985839844,2.165006637573242],[0.8069248199462891,2.2346229553222656],[0.9880638122558594,2.321809768676758],[1.1588916778564453,2.4255285263061523],[1.3183727264404297,2.5447444915771484],[1.4654693603515625,2.6784181594848633],[1.599142074584961,2.8255138397216797],[1.7183570861816406,2.9849939346313477],[1.8220748901367188,3.1558218002319336],[1.9092636108398438,3.336960792541504],[1.9788799285888672,3.527374267578125],[2.0298900604248047,3.7260236740112305],[2.0612564086914062,3.931873321533203],[2.071941375732422,4.143885612487793],[2.071941375732422,5.179856300354004],[2.071941375732422,5.179856300354004],[2.065746307373047,5.341246604919434],[2.0474605560302734,5.499213218688965],[2.0175399780273438,5.653304100036621],[1.9764385223388672,5.803057670593262],[1.9246139526367188,5.948025703430176],[1.8625221252441406,6.087746620178223],[1.7906169891357422,6.221772193908691],[1.7093524932861328,6.349640846252441],[1.6191864013671875,6.470900535583496],[1.5205707550048828,6.585095405578613],[1.4139633178710938,6.691769599914551],[1.2998199462890625,6.790467262268066],[1.1785945892333984,6.880736351013184],[1.0507431030273438,6.962119102478027],[0.916717529296875,7.0341596603393555],[0.7769775390625,7.096402168273926],[0.8769798278808594,7.378058433532715],[0.951080322265625,7.670504570007324],[0.9971237182617188,7.973742485046387],[1.012948989868164,8.28777027130127],[1.0033283233642578,8.53156566619873],[0.9748191833496094,8.77050495147705],[0.9279670715332031,9.004048347473145],[0.8633098602294922,9.231654167175293],[1.2083377838134766,9.141573905944824],[1.5410652160644531,9.02332592010498],[1.8601150512695312,8.87828540802002],[2.1641178131103516,8.707823753356934],[2.4516983032226562,8.513319969177246],[2.7214832305908203,8.29614543914795],[2.9720935821533203,8.057673454284668],[3.202157974243164,7.799281120300293],[3.4103031158447266,7.522339820861816],[3.595155715942383,7.228226661682129],[3.755338668823242,6.918313026428223],[3.8894805908203125,6.593976020812988],[3.9962024688720703,6.256587028503418],[4.074134826660156,5.9075212478637695],[4.1219024658203125,5.548151969909668],[4.138130187988281,5.179856300354004],[4.138130187988281,4.143885612487793],[4.138130187988281,4.143885612487793],[4.117706298828125,3.720808982849121],[4.055688858032227,3.309814453125],[3.9541778564453125,2.912999153137207],[3.815288543701172,2.532464027404785],[3.641122817993164,2.170309066772461],[3.4337902069091797,1.8286314010620117],[3.1954002380371094,1.5095319747924805],[2.9280567169189453,1.215108871459961],[2.6338729858398438,0.9474611282348633],[2.314950942993164,0.7086896896362305],[1.9734001159667969,0.5008926391601562],[1.6113319396972656,0.3261699676513672],[1.2308483123779297,0.18661975860595703],[0.8340606689453125,0.08434104919433594],[0.4230766296386719,0.02143573760986328],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":1781054226,"isDeleted":true,"id":"T_j2KLKwjFGUvKVRmFcY3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1070.820143699646,"y":203.7122302055359,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.2158273458480835,"seed":2342549,"groupIds":["UqgJ-DvMYchUNoF9YNqlb","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079134941101074,0],[-3.1079134941101074,0],[-3.4254579544067383,-0.016060352325439453],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984060287475586],[-4.317086219787598,-0.24442386627197266],[-4.588733196258545,-0.3753790855407715],[-4.8449859619140625,-0.5311374664306641],[-5.0842766761779785,-0.7101306915283203],[-5.3050360679626465,-0.9107909202575684],[-5.5056962966918945,-1.1315503120422363],[-5.684689521789551,-1.3708405494689941],[-5.840447425842285,-1.6270933151245117],[-5.971402645111084,-1.8987407684326172],[-6.075986385345459,-2.1842145919799805],[-6.15263032913208,-2.4819464683532715],[-6.199766635894775,-2.7903690338134766],[-6.215826988220215,-3.1079134941101074],[-6.199766635894775,-3.4254579544067383],[-6.15263032913208,-3.7338805198669434],[-6.075986385345459,-4.031612396240234],[-5.971402645111084,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986438751221],[-5.5056962966918945,-5.084276437759399],[-5.3050360679626465,-5.305035829544067],[-5.0842766761779785,-5.5056962966918945],[-4.8449859619140625,-5.68468976020813],[-4.588733196258545,-5.840447902679443],[-4.317086219787598,-5.9714027643203735],[-4.031612396240234,-6.075986266136169],[-3.733880043029785,-6.15263032913208],[-3.4254579544067383,-6.199766755104065],[-3.1079134941101074,-6.2158273458480835],[0,-6.2158273458480835],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236993789672852,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.480820655822754,-5.840447902679443],[1.7370729446411133,-5.68468976020813],[1.976363182067871,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.863490104675293,-4.317086219787598],[2.968073844909668,-4.031612396240234],[3.0447168350219727,-3.7338805198669434],[3.091853141784668,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.091853141784668,-2.7903690338134766],[3.0447168350219727,-2.4819464683532715],[2.968073844909668,-2.1842145919799805],[2.863490104675293,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236993789672852,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":908179214,"isDeleted":true,"id":"YbafnlWbw_VjHmSQISnZc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1067.712230205536,"y":199.56834530830383,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719425678253174,"seed":1408033083,"groupIds":["UqgJ-DvMYchUNoF9YNqlb","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":2135132370,"isDeleted":true,"id":"jbUePvpib2jWCzAXcNe34","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1073.9280576705933,"y":210.9640293121338,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.323740482330322,"height":6.215827941894531,"seed":1454973941,"groupIds":["UqgJ-DvMYchUNoF9YNqlb","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079139709472656,0],[-3.1079139709472656,0],[-3.4254579544067383,-0.016060829162597656],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984203338623047],[-4.317086219787598,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.084277153015137,-0.7101316452026367],[-5.305035591125488,-0.9107913970947266],[-5.5056962966918945,-1.1315507888793945],[-5.684689521789551,-1.3708410263061523],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987417221069336],[-6.075986385345459,-2.1842145919799805],[-6.152629852294922,-2.4819469451904297],[-6.199766635894775,-2.790369987487793],[-6.215827465057373,-3.1079139709472656],[-6.199766635894775,-3.4254579544067383],[-6.152629852294922,-3.7338809967041016],[-6.075986385345459,-4.031613349914551],[-5.971403121948242,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986915588379],[-5.5056962966918945,-5.084277153015137],[-5.305035591125488,-5.305036544799805],[-5.084277153015137,-5.5056962966918945],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317086219787598,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152630805969238],[-3.4254579544067383,-6.199767112731934],[-3.1079139709472656,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199767112731934],[0.6259670257568359,-6.152630805969238],[0.9236984252929688,-6.075986862182617],[1.209172248840332,-5.971403121948242],[1.480820655822754,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.9763622283935547,-5.5056962966918945],[2.1971216201782227,-5.305036544799805],[2.397782325744629,-5.084277153015137],[2.576775550842285,-4.844986915588379],[2.7325353622436523,-4.588733673095703],[2.86348819732666,-4.317086219787598],[2.968071937561035,-4.031613349914551],[3.0447168350219727,-3.7338809967041016],[3.091853141784668,-3.4254579544067383],[3.107913017272949,-3.1079139709472656],[3.091853141784668,-2.790369987487793],[3.0447168350219727,-2.4819469451904297],[2.968071937561035,-2.1842145919799805],[2.86348819732666,-1.8987417221069336],[2.7325353622436523,-1.6270942687988281],[2.576775550842285,-1.3708410263061523],[2.397782325744629,-1.1315507888793945],[2.1971216201782227,-0.9107913970947266],[1.9763622283935547,-0.7101316452026367],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753795623779297],[1.209172248840332,-0.24442481994628906],[0.9236984252929688,-0.13984203338623047],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060829162597656],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":791913806,"isDeleted":true,"id":"srUqZ72NYK6ttW0csJfrQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1070.820143699646,"y":206.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719432830810547,"seed":1741881819,"groupIds":["UqgJ-DvMYchUNoF9YNqlb","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":1262395026,"isDeleted":true,"id":"hONnkf_nP26D37D-zYh0b","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1076,"y":218.21582794189453,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.215827941894531,"seed":1950014805,"groupIds":["UqgJ-DvMYchUNoF9YNqlb","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.107913017272949,0],[-3.107913017272949,0],[-3.4254579544067383,-0.01605987548828125],[-3.733880043029785,-0.06319808959960938],[-4.031612396240234,-0.13984107971191406],[-4.317085266113281,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.08427619934082,-0.7101306915283203],[-5.305035591125488,-0.9107913970947266],[-5.505695343017578,-1.131551742553711],[-5.684689521789551,-1.370840072631836],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987407684326172],[-6.075985908508301,-2.184215545654297],[-6.152629852294922,-2.4819469451904297],[-6.199766159057617,-2.7903690338134766],[-6.215826988220215,-3.1079139709472656],[-6.199766159057617,-3.4254589080810547],[-6.152629852294922,-3.7338790893554688],[-6.075985908508301,-4.031612396240234],[-5.971403121948242,-4.317085266113281],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.8449859619140625],[-5.505695343017578,-5.08427619934082],[-5.305035591125488,-5.305034637451172],[-5.08427619934082,-5.505695343017578],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317085266113281,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152629852294922],[-3.4254579544067383,-6.199766159057617],[-3.107913017272949,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.9236984252929688,-6.075986862182617],[1.2091732025146484,-5.971403121948242],[1.4808197021484375,-5.840448379516602],[1.7370738983154297,-5.684690475463867],[1.9763622283935547,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.3977832794189453,-5.08427619934082],[2.5767765045166016,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338790893554688],[3.0918540954589844,-3.4254589080810547],[3.1079139709472656,-3.1079139709472656],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767765045166016,-1.370840072631836],[2.3977832794189453,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753795623779297],[1.2091732025146484,-0.24442481994628906],[0.9236984252929688,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754493713378906,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":74304398,"isDeleted":true,"id":"7MAZwkvUkamwRZ0PzCVgQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1072.892086982727,"y":214.07194328308105,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.1798553466796875,"height":2.071941375732422,"seed":661393019,"groupIds":["UqgJ-DvMYchUNoF9YNqlb","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":449903698,"isDeleted":true,"id":"igrhCpmT5EwrQDeI6uqkZ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1069.7841730117798,"y":203.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.2158273458480835,"seed":1610508981,"groupIds":["U9SeKZgBfT-T8Mw3VgQC6","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.2800469398498535,-2.0930867195129395],[-2.4741907119750977,-2.153687000274658],[-2.6501240730285645,-2.2494940757751465],[-2.8035974502563477,-2.3762588500976562],[-2.9303622245788574,-2.5297322273254395],[-3.0261693000793457,-2.7056655883789062],[-3.0867695808410645,-2.899808883666992],[-3.1079139709472656,-3.1079134941101074],[-3.0867695808410645,-3.316018581390381],[-3.0261693000793457,-3.5101613998413086],[-2.9303622245788574,-3.6860947608947754],[-2.8035974502563477,-3.8395683765411377],[-2.6501240730285645,-3.9663331508636475],[-2.4741907119750977,-4.062140226364136],[-2.2800469398498535,-4.1227405071258545],[-2.0719428062438965,-4.143884897232056],[0,-4.143884897232056],[0,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.3894872665405273,-6.199766755104065],[-2.697909355163574,-6.15263032913208],[-2.9956417083740234,-6.075986266136169],[-3.2811155319213867,-5.9714027643203735],[-3.552762508392334,-5.840447902679443],[-3.8090152740478516,-5.68468976020813],[-4.048305988311768,-5.5056962966918945],[-4.2690653800964355,-5.305035829544067],[-4.469725608825684,-5.084276437759399],[-4.64871883392334,-4.844986438751221],[-4.804476737976074,-4.588733673095703],[-4.935431957244873,-4.317086219787598],[-5.040015697479248,-4.031612396240234],[-5.116659641265869,-3.7338805198669434],[-5.1637959480285645,-3.4254579544067383],[-5.179856300354004,-3.1079134941101074],[-5.1637959480285645,-2.7903690338134766],[-5.116659641265869,-2.4819464683532715],[-5.040015697479248,-2.1842145919799805],[-4.935431957244873,-1.8987407684326172],[-4.804476737976074,-1.6270933151245117],[-4.64871883392334,-1.3708405494689941],[-4.469725608825684,-1.1315503120422363],[-4.2690653800964355,-0.9107909202575684],[-4.048305988311768,-0.7101306915283203],[-3.8090152740478516,-0.5311374664306641],[-3.552762508392334,-0.3753790855407715],[-3.2811155319213867,-0.24442386627197266],[-2.9956417083740234,-0.13984060287475586],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060352325439453],[-2.0719428062438965,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":1946757582,"isDeleted":true,"id":"y7SxVVmiku9UUObbD6HsO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1072.892086982727,"y":210.9640293121338,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856777191162,"height":6.215827941894531,"seed":1970964251,"groupIds":["U9SeKZgBfT-T8Mw3VgQC6","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.2800474166870117,-2.0930871963500977],[-2.4741907119750977,-2.1536874771118164],[-2.6501235961914062,-2.2494945526123047],[-2.8035974502563477,-2.3762598037719727],[-2.9303627014160156,-2.5297327041625977],[-3.0261688232421875,-2.7056655883789062],[-3.0867700576782227,-2.8998098373413086],[-3.1079139709472656,-3.1079139709472656],[-3.0867700576782227,-3.3160181045532227],[-3.0261688232421875,-3.510162353515625],[-2.9303627014160156,-3.6860952377319336],[-2.8035974502563477,-3.8395681381225586],[-2.6501235961914062,-3.9663333892822266],[-2.4741907119750977,-4.062140464782715],[-2.2800474166870117,-4.122740745544434],[-2.0719432830810547,-4.143885612487793],[0,-4.143885612487793],[0,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.3894872665405273,-6.199767112731934],[-2.697909355163574,-6.152630805969238],[-2.9956417083740234,-6.075986862182617],[-3.2811155319213867,-5.971403121948242],[-3.552762985229492,-5.840448379516602],[-3.8090152740478516,-5.684690475463867],[-4.048306465148926,-5.5056962966918945],[-4.269064903259277,-5.305036544799805],[-4.469725608825684,-5.084277153015137],[-4.64871883392334,-4.844986915588379],[-4.804476737976074,-4.588733673095703],[-4.935432434082031,-4.317086219787598],[-5.040015697479248,-4.031613349914551],[-5.116659164428711,-3.7338809967041016],[-5.1637959480285645,-3.4254579544067383],[-5.179856777191162,-3.1079139709472656],[-5.1637959480285645,-2.790369987487793],[-5.116659164428711,-2.4819469451904297],[-5.040015697479248,-2.1842145919799805],[-4.935432434082031,-1.8987417221069336],[-4.804476737976074,-1.6270942687988281],[-4.64871883392334,-1.3708410263061523],[-4.469725608825684,-1.1315507888793945],[-4.269064903259277,-0.9107913970947266],[-4.048306465148926,-0.7101316452026367],[-3.8090152740478516,-0.5311374664306641],[-3.552762985229492,-0.3753795623779297],[-3.2811155319213867,-0.24442481994628906],[-2.9956417083740234,-0.13984203338623047],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060829162597656],[-2.0719432830810547,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":198287890,"isDeleted":true,"id":"PgYmnfDXf_l8sCrkzzvjc","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1072.892086982727,"y":216.14388465881348,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.215827941894531,"seed":447302677,"groupIds":["U9SeKZgBfT-T8Mw3VgQC6","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,-0.021142959594726562],[-0.4022483825683594,-0.08174514770507812],[-0.578181266784668,-0.17755126953125],[-0.7316551208496094,-0.30431556701660156],[-0.8584194183349609,-0.45778846740722656],[-0.9542264938354492,-0.6337223052978516],[-1.014826774597168,-0.8278656005859375],[-1.0359716415405273,-1.035970687866211],[-1.014826774597168,-1.2440757751464844],[-0.9542264938354492,-1.4382190704345703],[-0.8584194183349609,-1.6141510009765625],[-0.7316551208496094,-1.7676258087158203],[-0.578181266784668,-1.8943901062011719],[-0.4022483825683594,-1.9901962280273438],[-0.20810508728027344,-2.0507984161376953],[0,-2.071941375732422],[2.0719423294067383,-2.071941375732422],[2.0719423294067383,-4.143884658813477],[0,-4.143884658813477],[0,-4.143884658813477],[-0.31754493713378906,-4.1278228759765625],[-0.6259670257568359,-4.080686569213867],[-0.9236993789672852,-4.0040435791015625],[-1.209172248840332,-3.8994598388671875],[-1.480820655822754,-3.768505096435547],[-1.7370729446411133,-3.6127471923828125],[-1.976363182067871,-3.4337520599365234],[-2.197122573852539,-3.233091354370117],[-2.397782325744629,-3.0123329162597656],[-2.5767765045166016,-2.773042678833008],[-2.732534408569336,-2.5167903900146484],[-2.863490104675293,-2.2451419830322266],[-2.9680728912353516,-1.9596691131591797],[-3.0447168350219727,-1.661935806274414],[-3.091853141784668,-1.353515625],[-3.1079139709472656,-1.035970687866211],[-3.091853141784668,-0.7184257507324219],[-3.0447168350219727,-0.410003662109375],[-2.9680728912353516,-0.11227226257324219],[-2.863490104675293,0.1732025146484375],[-2.732534408569336,0.44484901428222656],[-2.5767765045166016,0.7011032104492188],[-2.397782325744629,0.9403915405273438],[-2.197122573852539,1.1611518859863281],[-1.976363182067871,1.3618125915527344],[-1.7370729446411133,1.5408058166503906],[-1.480820655822754,1.696563720703125],[-1.209172248840332,1.8275184631347656],[-0.9236993789672852,1.9321022033691406],[-0.6259670257568359,2.0087451934814453],[-0.31754493713378906,2.0558834075927734],[0,2.0719432830810547],[2.0719423294067383,2.0719432830810547],[2.0719423294067383,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":220119054,"isDeleted":true,"id":"AFY9CYvsnjuuNNaoXQ2XT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1067.712230205536,"y":199.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719425678253174,"seed":946924475,"groupIds":["d1xf-DDGAd5-w1W19LKXr","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":1765248978,"isDeleted":true,"id":"qhahuvEoBBd7jwaboNYv5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1070.820143699646,"y":206.820143699646,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719432830810547,"seed":1949368693,"groupIds":["d1xf-DDGAd5-w1W19LKXr","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":182,"versionNonce":329748046,"isDeleted":true,"id":"lipkfDzsR0j8Ng85IbPxn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1072.892086982727,"y":214.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.1798553466796875,"height":2.071941375732422,"seed":1685175387,"groupIds":["d1xf-DDGAd5-w1W19LKXr","b_f8flvgiAs4Yb16cNzRG","FO1ithvKmf5wC0DY4tdLe"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"owdbN6MpKfZ05OtTV9_Zd","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"id":"NP1O-S54hx-V8jgJQnB3Z","type":"text","x":448.1666259765625,"y":229.33331298828125,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1491372725,"version":44,"versionNonce":119129490,"isDeleted":true,"boundElements":null,"updated":1697744829091,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"nSM1udZXDrkSqwAsibEQO","type":"arrow","x":400,"y":320,"width":0,"height":77.70391845703114,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":455804149,"version":80,"versionNonce":1685886094,"isDeleted":true,"boundElements":null,"updated":1697744829091,"link":null,"locked":false,"points":[[0,0],[0,77.70391845703114]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"3eA7opV4aWR5OKiCYAQPp","focus":-0.16666666666666669,"gap":2.2960815429688637},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"MBAzSf45lj2hPn8nr3IPf","type":"arrow","x":301,"y":220,"width":318,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1030741819,"version":579,"versionNonce":514802514,"isDeleted":false,"boundElements":null,"updated":1697744829091,"link":null,"locked":false,"points":[[0,0],[318,0]],"lastCommittedPoint":null,"startBinding":{"elementId":"XGJiTHw2h99_Hrxjg4EQi","focus":0.1320754716981132,"gap":1},"endBinding":{"elementId":"cNmhzVV34StKRJzlCzGP0","focus":-0.1320754716981132,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"1QnVkTtxCUaktd23tLcOc","type":"text","x":-157.83337402343727,"y":415.33331298828114,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2086129525,"version":43,"versionNonce":1498862286,"isDeleted":true,"boundElements":null,"updated":1697744829091,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"type":"rectangle","version":1364,"versionNonce":709822738,"isDeleted":false,"id":"PTc4lWZHMDIBXHllvnEfM","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":40,"y":360,"strokeColor":"#34a853","backgroundColor":"#ceead6","width":899.9999999999999,"height":180,"seed":1602762293,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"PiqrL0eWlHBfTKdGN3bVH","type":"arrow"},{"id":"8-TssCdzfk8wVOoQfRqdV","type":"arrow"}],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"rCN2dA6OQ5J36e7vnIvfV","label":"Region","resource":"region","type":"container"}},{"id":"bopRas-IC4GfRCV_W90YJ","type":"text","x":662.1666259765625,"y":653.3333129882811,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1267588027,"version":43,"versionNonce":751782158,"isDeleted":true,"boundElements":null,"updated":1697744829091,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"type":"rectangle","version":86,"versionNonce":1097864914,"isDeleted":true,"id":"XiBnra7eOZmRuFrTLLgAV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":420,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":80,"seed":965785973,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"round","boundElements":[{"id":"5E3kX_JSrqhbcM4pOzi92","type":"arrow"},{"id":"3exC9lat3uD7T7SlGlk-Z","type":"arrow"}],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":79,"versionNonce":1583281998,"isDeleted":true,"id":"-wawLTlbqIhf9pUlbPCm2","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":316,"y":436,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":160,"height":18,"seed":1879671899,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":5,"text":"BigQuery","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery"},{"type":"text","version":53,"versionNonce":1957260434,"isDeleted":true,"id":"lPEuQoTp4eQ4rnNODG9qX","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1136,"y":-282,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":310624981,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":54,"versionNonce":375315854,"isDeleted":true,"id":"DT694dCoXDndmKqUfPaoG","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1136,"y":-256,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":447627515,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":53,"versionNonce":699533906,"isDeleted":true,"id":"QdtiVw3KO7CExr_deQAfc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1136,"y":-247,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1594794037,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":76,"versionNonce":168295374,"isDeleted":true,"id":"z0LOsY3BB3E-UNNdUjNL2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":518.421215057373,"y":452.79999923706055,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":1456630171,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":76,"versionNonce":2002841618,"isDeleted":true,"id":"9cG5Y_yKZn6ZNsCbR1TiO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":511.25491428375244,"y":437.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":85381525,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":76,"versionNonce":1601393166,"isDeleted":true,"id":"uXxLgDsIp_RiSU4Fd3VqY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":511.25491428375244,"y":454.25647354125977,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":430472763,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":76,"versionNonce":28122578,"isDeleted":true,"id":"DL5DsPDKZfS17DHNn7qyV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":511.25491428375244,"y":454.25647354125977,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":298964725,"groupIds":["iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":76,"versionNonce":295297102,"isDeleted":true,"id":"7kuEqZYRV6N5UcpjZxCv_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":506.7132601737976,"y":446.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":236125915,"groupIds":["FDq9te7Jrpg3goRZ32kgP","iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":76,"versionNonce":1437438866,"isDeleted":true,"id":"R1_-ChG4Xy5gK3y7A6e0A","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":510.07550716400146,"y":444.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":1338323029,"groupIds":["qId957ALB8mHRJPn5Vu1a","iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":76,"versionNonce":1414833806,"isDeleted":true,"id":"6EucC-9lvwEuxn0lh3qy7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":514.0630264282227,"y":448.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":1587833723,"groupIds":["rarXb9n0jx2eWoSoRuPuS","iylysA24f0ify2oGKelIs","D7OfDfNwbvz8C8f3NntlA"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"customData":{"boxId":"3gFsZXR9GmruBeduu2j_0","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"text","version":242,"versionNonce":1167675730,"isDeleted":true,"id":"NI1rC3o95Jv2Mq1kKpdZg","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":660,"y":380,"strokeColor":"#202124","backgroundColor":"transparent","width":121,"height":19,"seed":700928411,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"fontSize":16,"fontFamily":2,"text":"DATA ANALYSIS","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"DATA ANALYSIS"},{"type":"text","version":160,"versionNonce":2019337422,"isDeleted":false,"id":"PBeO4J33q9RHT9i1PnE-m","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":424,"y":380,"strokeColor":"#202124","backgroundColor":"#000000","width":167,"height":31,"seed":708031957,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829091,"link":null,"locked":false,"fontSize":27.386764437134495,"fontFamily":2,"text":"Data Analysis","baseline":25,"textAlign":"center","verticalAlign":"top","containerId":null,"originalText":"Data Analysis"},{"id":"BqVuebsL1p7CFFD1_SeuX","type":"arrow","x":980,"y":280,"width":580,"height":140,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":253749371,"version":82,"versionNonce":1153914642,"isDeleted":true,"boundElements":null,"updated":1697744829091,"link":null,"locked":false,"points":[[0,0],[-580,60],[-580,140]],"lastCommittedPoint":null,"startBinding":{"elementId":"3eA7opV4aWR5OKiCYAQPp","focus":-0.763157894736842,"gap":1},"endBinding":{"elementId":"XiBnra7eOZmRuFrTLLgAV","focus":-0.16666666666666666,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"line","version":101,"versionNonce":1330305806,"isDeleted":true,"id":"pemo_jT5pZgdC4rCcJ0GQ","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":600,"y":320,"strokeColor":"#000000","backgroundColor":"transparent","width":400,"height":0,"seed":821861019,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"triangle","points":[[0,0],[400,0]],"fontFamily":2},{"id":"5E3kX_JSrqhbcM4pOzi92","type":"arrow","x":740,"y":261,"width":560,"height":158,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1977482453,"version":201,"versionNonce":1135518930,"isDeleted":false,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"points":[[0,0],[0,59],[-560,59],[-560,158]],"lastCommittedPoint":[-560,140],"startBinding":null,"endBinding":{"elementId":"nj3n8sIQkvq3qsdVAf1o9","focus":0,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"4wrNfn0f9SEKg0ES1Hg39","type":"arrow","x":420,"y":281,"width":0,"height":142.2,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1618800059,"version":78,"versionNonce":261638478,"isDeleted":true,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"points":[[0,0],[0,142.2]],"lastCommittedPoint":null,"startBinding":{"elementId":"O5xNzyaWR5wEy9LBVN1Tw","gap":1,"focus":0},"endBinding":{"elementId":"-wawLTlbqIhf9pUlbPCm2","gap":12.799999999999999,"focus":0.3},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":173,"versionNonce":199637650,"isDeleted":true,"id":"KWJ9il19DwMC2jCc_WHjZ","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":60,"y":300,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":600785845,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"RCH2dQ-huybwttIHIDEoq","type":"text"},{"id":"RCH2dQ-huybwttIHIDEoq","type":"text"},{"type":"text","id":"RCH2dQ-huybwttIHIDEoq"}],"updated":1697744829092,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":166,"versionNonce":949874574,"isDeleted":true,"id":"RCH2dQ-huybwttIHIDEoq","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":65,"y":305,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":914341403,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"3","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"KWJ9il19DwMC2jCc_WHjZ","originalText":"3"},{"id":"3exC9lat3uD7T7SlGlk-Z","type":"arrow","x":120,"y":260,"width":0,"height":159,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":272738683,"version":149,"versionNonce":472193106,"isDeleted":false,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"points":[[0,0],[0,159]],"lastCommittedPoint":null,"startBinding":null,"endBinding":{"elementId":"nj3n8sIQkvq3qsdVAf1o9","focus":-0.5,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":67,"versionNonce":1989463502,"isDeleted":true,"id":"37kV3Z-oEPXqsrWDhc0uz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":420,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":100,"seed":1547742107,"groupIds":["mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"container"}},{"type":"text","version":71,"versionNonce":71450130,"isDeleted":true,"id":"52Lyym9pZMrFaIXOvfPFO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":876,"y":436,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":103,"height":20,"seed":103133077,"groupIds":["mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"fontSize":16,"fontFamily":5,"text":"Looker Studio","baseline":15,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Looker Studio"},{"type":"text","version":31,"versionNonce":110486542,"isDeleted":true,"id":"1IY8fhezkySxZ833FJ6YM","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1316,"y":158,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":18,"seed":469663803,"groupIds":["mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"fontSize":16,"fontFamily":5,"text":"","baseline":16,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":31,"versionNonce":1093970898,"isDeleted":true,"id":"zSW3cZlwpU-NoyZkuXtHB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1316,"y":184,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":1,"seed":156562677,"groupIds":["mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":31,"versionNonce":446313038,"isDeleted":true,"id":"coG2dkcKJSJor0YzY6CEm","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1316,"y":193,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":442024155,"groupIds":["mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"line","version":64,"versionNonce":420700562,"isDeleted":true,"id":"PFSslUoBghfGqOdeMHYr5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1079.5,"y":452.17000007629395,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10,"height":5,"seed":1697943125,"groupIds":["q1vdAZDBr9hGMVAo0Bhvi","mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.260000228881836,0],[-7.260000228881836,0],[-8.305115699768066,0.13211822509765625],[-9.17534351348877,0.6523036956787109],[-9.772900581359863,1.4713363647460938],[-10,2.5],[-9.781946182250977,3.535045623779297],[-9.185060501098633,4.358346939086914],[-8.31064510345459,4.877473831176758],[-7.260000228881836,5],[0,5],[0,0]]},{"type":"ellipse","version":64,"versionNonce":1031452814,"isDeleted":true,"id":"Hj__gDxUxzSUfzxFKiUa-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1077,"y":452.17000007629395,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5,"height":5,"seed":551677307,"groupIds":["ZiPOxsZN_Ii5uXtgK7HXl","7g7dF9JSOAvGt9Z9qpG6X","mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"}},{"type":"line","version":64,"versionNonce":1997889362,"isDeleted":true,"id":"fQMbvAS_jhFj_9dQFTKaC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1072,"y":445.5,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10,"height":5,"seed":1218050997,"groupIds":["8QG-La-MogXEC2AQyImte","mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.260000228881836,0],[-7.260000228881836,0],[-8.305115222930908,0.13211727142333984],[-9.175343751907349,0.6523027420043945],[-9.772900342941284,1.4713373184204102],[-10,2.5],[-9.781945943832397,3.535045623779297],[-9.185060739517212,4.358346939086914],[-8.31064510345459,4.877473831176758],[-7.260000228881836,5],[0,5],[0,0]]},{"type":"ellipse","version":64,"versionNonce":921728718,"isDeleted":true,"id":"zednEFujEaXpMFTUQGNmY","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1069.5,"y":445.5,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5,"height":5,"seed":584877595,"groupIds":["ZiPOxsZN_Ii5uXtgK7HXl","Oj4Eu47qUxqWzj_p4vPaZ","mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"}},{"type":"line","version":64,"versionNonce":1200727314,"isDeleted":true,"id":"xkUOQLWUbFH2cR2h8uIB4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1079.5,"y":438.82999992370605,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10,"height":5,"seed":1806351637,"groupIds":["LlusdJjmZ5i1wPMYUcgwH","mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.260000228881836,0],[-7.260000228881836,0],[-8.30331802368164,0.13521718978881836],[-9.172197341918945,0.6557517051696777],[-9.769977569580078,1.4734106063842773],[-10,2.5],[-9.781946182250977,3.535046100616455],[-9.185060501098633,4.358346462249756],[-8.31064510345459,4.877473831176758],[-7.260000228881836,5],[0,5],[0,0]]},{"type":"ellipse","version":64,"versionNonce":1871998222,"isDeleted":true,"id":"deO5UqGPl8mb7TIAKh916","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1077,"y":438.82999992370605,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5,"height":5,"seed":121309883,"groupIds":["ZiPOxsZN_Ii5uXtgK7HXl","LrFZEGfDBVa8a1B-iBuL5","mV1C0rbIvuNU_EmTLoe0S","bgN5wG7Ppq-fPnKFhXFnH"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"m87DS5VejltA6mLCWV3Pr","label":"Data Studio","type":"child"}},{"type":"line","version":32,"versionNonce":1409233618,"isDeleted":true,"id":"3163Df_wfqo2xnkFWJGT4","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1096,"y":-256,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":385519861,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":31,"versionNonce":1423940430,"isDeleted":true,"id":"Bhsbztj4eASY5QsDP3hd-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1096,"y":-247,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1483400411,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"id":"sOXqd7djIKmPX5Ms5aXeQ","type":"text","x":1236.1666259765625,"y":-260.66668701171864,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1780264379,"version":32,"versionNonce":519374994,"isDeleted":true,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"hWstQM_jIo-DeLD6w15uZ","type":"text","x":1230.1666259765625,"y":-280.66668701171864,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1255900085,"version":32,"versionNonce":1026228622,"isDeleted":true,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"type":"line","version":32,"versionNonce":1076504146,"isDeleted":true,"id":"WbcikA5MjNMsnAWbasTLo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1356,"y":144,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":1675846197,"groupIds":["9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":46,"versionNonce":1269800910,"isDeleted":true,"id":"o1_c8dGQCPnTTmoUOEK-D","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1156,"y":-227,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1210238875,"groupIds":["9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"id":"FJLWOTX8AjNuo3XPEDjUm","type":"text","x":1394.1666259765625,"y":155.33331298828125,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1954364571,"version":32,"versionNonce":1081445394,"isDeleted":true,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"type":"rectangle","version":81,"versionNonce":1418098190,"isDeleted":false,"id":"nj3n8sIQkvq3qsdVAf1o9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":60,"y":420,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":100,"seed":801886107,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"round","boundElements":[{"id":"5E3kX_JSrqhbcM4pOzi92","type":"arrow"},{"id":"3exC9lat3uD7T7SlGlk-Z","type":"arrow"},{"id":"YMZc3qh-zTgnXg9S9t6Yn","type":"arrow"},{"id":"8-TssCdzfk8wVOoQfRqdV","type":"arrow"},{"id":"IBu8BzlAjwDWVETPdkOxn","type":"arrow"}],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"container"}},{"type":"text","version":78,"versionNonce":1976449490,"isDeleted":false,"id":"GscW5ARiSu3EOUGikT6lf","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":433.5,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":84,"height":23,"seed":1598999445,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":20,"fontFamily":2,"text":"BigQuery","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"BigQuery"},{"type":"text","version":92,"versionNonce":1084785742,"isDeleted":false,"id":"CVsjz5y5THUKMl4x2wORD","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":458,"strokeColor":"#202124","backgroundColor":"transparent","width":118,"height":37,"seed":444933179,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"fontSize":16,"fontFamily":2,"text":"\nData warehouse","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"\nData warehouse"},{"type":"line","version":72,"versionNonce":1598762898,"isDeleted":false,"id":"D1uiEsWdSRIont18S4buR","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":278.42121505737305,"y":452.79999923706055,"strokeColor":"transparent","backgroundColor":"#4285f4","width":6.175506591796875,"height":6.175506591796875,"seed":1673964117,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.508890151977539,1.5088920593261719],[-1.508890151977539,1.5088920593261719],[-1.5668010711669922,1.5783119201660156],[-1.6085205078125,1.6556739807128906],[-1.6340065002441406,1.7383899688720703],[-1.6432132720947266,1.8238697052001953],[-1.6360969543457031,1.9095230102539062],[-1.6126155853271484,1.9927654266357422],[-1.5727252960205078,2.071004867553711],[-1.5163803100585938,2.141653060913086],[-1.508890151977539,2.149141311645508],[2.253978729248047,5.912012100219727],[2.253978729248047,5.912012100219727],[2.3232383728027344,5.968524932861328],[2.400175094604492,6.008892059326172],[2.4822921752929688,6.033111572265625],[2.5670833587646484,6.04118537902832],[2.6520519256591797,6.033111572265625],[2.7346935272216797,6.008892059326172],[2.8125076293945312,5.968524932861328],[2.88299560546875,5.912012100219727],[4.403120040893555,4.391887664794922],[4.403120040893555,4.391887664794922],[4.459634780883789,4.322628021240234],[4.5,4.245691299438477],[4.524219512939453,4.16357421875],[4.532293319702148,4.07878303527832],[4.524219512939453,3.993816375732422],[4.5,3.911174774169922],[4.459634780883789,3.8333587646484375],[4.403120040893555,3.7628707885742188],[0.6365070343017578,0],[0.6365070343017578,0],[0.5670852661132812,-0.057910919189453125],[0.48972320556640625,-0.09963035583496094],[0.4070091247558594,-0.12511444091796875],[0.3215293884277344,-0.1343212127685547],[0.23587417602539062,-0.12720489501953125],[0.1526336669921875,-0.10372543334960938],[0.07439422607421875,-0.06383323669433594],[0.00374603271484375,-0.007488250732421875],[0,0]]},{"type":"line","version":72,"versionNonce":1911474830,"isDeleted":false,"id":"NyBrSkFAmbSByaauFkJn7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.25491428375244,"y":437.5725427865982,"strokeColor":"transparent","backgroundColor":"#669df6","width":19.140093445777893,"height":19.140092253684998,"seed":554668411,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.49259281158447266,0.012448668479919434],[-0.9787044525146484,0.04939424991607666],[-1.4577360153198242,0.1102362871170044],[-1.9290857315063477,0.19437408447265625],[-2.392153739929199,0.3012070655822754],[-2.8463401794433594,0.430134654045105],[-3.291043758392334,0.5805565118789673],[-3.725663661956787,0.7518719434738159],[-4.149599075317383,0.943480372428894],[-4.562250137329102,1.1547812223434448],[-4.963016510009766,1.3851739168167114],[-5.351297378540039,1.6340581178665161],[-5.726491451263428,1.900833010673523],[-6.087998867034912,2.184897780418396],[-6.435218811035156,2.4856523275375366],[-6.767550945281982,2.802495837211609],[-7.084394454956055,3.134827971458435],[-7.385149240493774,3.4820483922958374],[-7.6692140102386475,3.8435558080673218],[-7.935988903045654,4.2187498807907104],[-8.184873104095459,4.607030749320984],[-8.415265798568726,5.00779664516449],[-8.626566410064697,5.4204477071762085],[-8.818174839019775,5.844383597373962],[-8.989490509033203,6.2790035009384155],[-9.139912366867065,6.723706603050232],[-9.268839955329895,7.177893042564392],[-9.375672936439514,7.640961050987244],[-9.459810733795166,8.112310767173767],[-9.520652770996094,8.591342329978943],[-9.557598352432251,9.077454924583435],[-9.57004702091217,9.570046782493591],[-9.557598352432251,10.062638640403748],[-9.520652770996094,10.548750281333923],[-9.459810733795166,11.0277818441391],[-9.375672936439514,11.499131560325623],[-9.268839955329895,11.96220052242279],[-9.139912366867065,12.416386008262634],[-8.989490509033203,12.861090064048767],[-8.818174839019775,13.29570996761322],[-8.626566410064697,13.719644904136658],[-8.415265798568726,14.132296919822693],[-8.184873104095459,14.533063292503357],[-7.935988903045654,14.92134416103363],[-7.6692140102386475,15.296536803245544],[-7.385149240493774,15.658044219017029],[-7.084394454956055,16.005265593528748],[-6.767550945281982,16.3375962972641],[-6.435218811035156,16.654441237449646],[-6.087998867034912,16.955195784568787],[-5.726491451263428,17.239259123802185],[-5.351297378540039,17.50603425502777],[-4.963016510009766,17.754918456077576],[-4.562250137329102,17.985310912132263],[-4.149599075317383,18.19661271572113],[-3.725663661956787,18.38822114467621],[-3.291043758392334,18.55953538417816],[-2.8463401794433594,18.709956526756287],[-2.392153739929199,18.83888566493988],[-1.9290857315063477,18.945720076560974],[-1.4577360153198242,19.0298570394516],[-0.9787044525146484,19.090697646141052],[-0.49259281158447266,19.12764298915863],[0,19.140092253684998],[0.49259185791015625,19.12764298915863],[0.978703498840332,19.090697646141052],[1.4577350616455078,19.0298570394516],[1.9290847778320312,18.945720076560974],[2.392153739929199,18.83888566493988],[2.846339225769043,18.709956526756287],[3.291043281555176,18.55953538417816],[3.7256622314453125,18.38822114467621],[4.149598121643066,18.19661271572113],[4.562249183654785,17.985310912132263],[4.963015556335449,17.754918456077576],[5.351296424865723,17.50603425502777],[5.7264909744262695,17.239259123802185],[6.087996482849121,16.955195784568787],[6.43521785736084,16.654441237449646],[6.767550468444824,16.3375962972641],[7.084393501281738,16.005265593528748],[7.385148048400879,15.658044219017029],[7.66921329498291,15.296536803245544],[7.935986518859863,14.92134416103363],[8.184870719909668,14.533063292503357],[8.415265083312988,14.132296919822693],[8.626564979553223,13.719644904136658],[8.818175315856934,13.29570996761322],[8.989487648010254,12.861090064048767],[9.139910697937012,12.416386008262634],[9.268839836120605,11.96220052242279],[9.375672340393066,11.499131560325623],[9.459811210632324,11.0277818441391],[9.520649909973145,10.548750281333923],[9.557595252990723,10.062638640403748],[9.570046424865723,9.570046782493591],[9.557587623596191,9.077454924583435],[9.520609855651855,8.591342329978943],[9.45971965789795,8.112310767173767],[9.375519752502441,7.640961050987244],[9.268609046936035,7.177893042564392],[9.1395902633667,6.723706603050232],[8.989069938659668,6.2790035009384155],[8.817646980285645,5.844383597373962],[8.62592601776123,5.4204477071762085],[8.414509773254395,5.00779664516449],[8.184000968933105,4.607030749320984],[7.935000419616699,4.2187498807907104],[7.668112754821777,3.8435558080673218],[7.383938789367676,3.4820483922958374],[7.083081245422363,3.134827971458435],[6.766144752502441,2.802495837211609],[6.433732032775879,2.4856523275375366],[6.086441993713379,2.184897780418396],[5.724881172180176,1.900833010673523],[5.3496503829956055,1.6340581178665161],[4.961352348327637,1.3851739168167114],[4.560590744018555,1.1547812223434448],[4.147966384887695,0.943480372428894],[3.7240819931030273,0.7518719434738159],[3.2895421981811523,0.5805565118789673],[2.8449487686157227,0.430134654045105],[2.3909034729003906,0.3012070655822754],[1.928009033203125,0.19437408447265625],[1.4568700790405273,0.1102362871170044],[0.9780864715576172,0.04939424991607666],[0.4922628402709961,0.012448668479919434],[0,0]]},{"type":"line","version":72,"versionNonce":19098962,"isDeleted":false,"id":"BOc-mEHfOptusmz4dzy4M","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.25491428375244,"y":454.25647354125977,"strokeColor":"transparent","backgroundColor":"#669df6","width":14.205303192138672,"height":14.20530366897583,"seed":1720227765,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":72,"versionNonce":655509710,"isDeleted":false,"id":"ou0cvvozWXPwEpd9tdddd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.25491428375244,"y":454.25647354125977,"strokeColor":"transparent","backgroundColor":"#fff","width":14.205303192138672,"height":14.20530366897583,"seed":364227099,"groupIds":["QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36559581756591797,-0.009929656982421875],[-0.7263565063476562,-0.03801727294921875],[-1.081838607788086,-0.08381843566894531],[-1.4315967559814453,-0.14688491821289062],[-1.7751836776733398,-0.22677230834960938],[-2.112156867980957,-0.32303619384765625],[-2.4420671463012695,-0.4352302551269531],[-2.764470100402832,-0.5629100799560547],[-3.078920364379883,-0.70562744140625],[-3.3849730491638184,-0.8629360198974609],[-3.6821823120117188,-1.0343952178955078],[-3.9701008796691895,-1.2195549011230469],[-4.248284816741943,-1.4179706573486328],[-4.516287803649902,-1.6291980743408203],[-4.773664474487305,-1.8527889251708984],[-5.019969463348389,-2.088298797607422],[-5.254756450653076,-2.3352842330932617],[-5.4775800704956055,-2.5932979583740234],[-5.687994480133057,-2.8618927001953125],[-5.885554790496826,-3.140625],[-6.069815635681152,-3.429048538208008],[-6.240329742431641,-3.726717948913574],[-6.396652698516846,-4.0331878662109375],[-6.538338661193848,-4.348011016845703],[-6.664942264556885,-4.670742988586426],[-6.776017189025879,-5.000938415527344],[-6.871118545532227,-5.338151931762695],[-6.949800491333008,-5.681938171386719],[-7.0116167068481445,-6.031848907470703],[-7.056122779846191,-6.3874406814575195],[-7.08287239074707,-6.74826717376709],[-7.0914201736450195,-7.113883972167969],[-7.081490516662598,-7.47947883605957],[-7.053402900695801,-7.840239524841309],[-7.007602214813232,-8.195722579956055],[-6.944535255432129,-8.545480728149414],[-6.864646911621094,-8.889067649841309],[-6.768383026123047,-9.22603988647461],[-6.65618896484375,-9.555950164794922],[-6.528510570526123,-9.8783540725708],[-6.385793209075928,-10.192804336547852],[-6.228483200073242,-10.498857021331787],[-6.057024955749512,-10.79606580734253],[-5.871865749359131,-11.083984851837158],[-5.673449516296387,-11.362168312072754],[-5.462223052978516,-11.630171298980713],[-5.238631725311279,-11.887547969818115],[-5.003120422363281,-12.1338529586792],[-4.756135940551758,-12.368639945983887],[-4.498122692108154,-12.591463565826416],[-4.229527473449707,-12.801878452301025],[-3.9507951736450195,-12.999438762664795],[-3.6623711585998535,-13.183699131011963],[-3.3647022247314453,-13.35421371459961],[-3.0582332611083984,-13.510536670684814],[-2.7434091567993164,-13.652222633361816],[-2.4206771850585938,-13.778826236724854],[-2.0904808044433594,-13.889901161193848],[-1.7532682418823242,-13.985002517700195],[-1.4094829559326172,-14.063683986663818],[-1.0595712661743164,-14.125500679016113],[-0.7039785385131836,-14.17000675201416],[-0.3431520462036133,-14.196756362915039],[0.022464752197265625,-14.20530366897583],[0.3870382308959961,-14.195406913757324],[0.7468461990356445,-14.167415142059326],[1.1014394760131836,-14.121772766113281],[1.4503746032714844,-14.058923244476318],[1.7932062149047852,-13.979310512542725],[2.129486083984375,-13.883377075195312],[2.4587717056274414,-13.771567344665527],[2.78061580657959,-13.644324779510498],[3.094572067260742,-13.502092361450195],[3.400197982788086,-13.345314979553223],[3.6970434188842773,-13.174434185028076],[3.9846668243408203,-12.989895343780518],[4.262619972229004,-12.792141437530518],[4.530458450317383,-12.581615924835205],[4.787737846374512,-12.358762741088867],[5.0340070724487305,-12.124024391174316],[5.268828392028809,-11.877845287322998],[5.491751670837402,-11.6206693649292],[5.702330589294434,-11.35293960571289],[5.900120735168457,-11.075099468231201],[6.084677696228027,-10.787592887878418],[6.255553245544434,-10.490862846374512],[6.412304878234863,-10.185354232788086],[6.5544843673706055,-9.871508598327637],[6.681647300720215,-9.549772262573242],[6.793347358703613,-9.220584869384766],[6.8891401290893555,-8.884393692016602],[6.968579292297363,-8.541641235351562],[7.031216621398926,-8.192770004272461],[7.076613426208496,-7.838224411010742],[7.104315757751465,-7.478448867797852],[7.113883018493652,-7.113883972167969],[7.1053361892700195,-6.74826717376709],[7.078587532043457,-6.3874406814575195],[7.03408145904541,-6.031848907470703],[6.972264289855957,-5.681938171386719],[6.893582344055176,-5.338151931762695],[6.798480033874512,-5.000938415527344],[6.687405586242676,-4.670742988586426],[6.560803413391113,-4.348011016845703],[6.419116020202637,-4.0331878662109375],[6.26279354095459,-3.726717948913574],[6.092278480529785,-3.429048538208008],[5.908019065856934,-3.140625],[5.710457801818848,-2.8618927001953125],[5.500042915344238,-2.5932979583740234],[5.277220726013184,-2.3352842330932617],[5.042431831359863,-2.088298797607422],[4.796128273010254,-1.8527889251708984],[4.538751602172852,-1.6291980743408203],[4.270748138427734,-1.4179706573486328],[3.992565155029297,-1.2195549011230469],[3.7046451568603516,-1.0343952178955078],[3.407437324523926,-0.8629360198974609],[3.101384162902832,-0.70562744140625],[2.786932945251465,-0.5629100799560547],[2.4645309448242188,-0.4352302551269531],[2.13461971282959,-0.32303619384765625],[1.7976484298706055,-0.22677230834960938],[1.4540605545043945,-0.14688491821289062],[1.1043024063110352,-0.08381843566894531],[0.7488203048706055,-0.03801727294921875],[0.3880586624145508,-0.009929656982421875],[0.022464752197265625,0],[0,0]]},{"type":"line","version":72,"versionNonce":1085141778,"isDeleted":false,"id":"JepEq0DLmBDU9nYwq1wXb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":266.7132601737976,"y":446.96286964416504,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8196568489074707,"height":4.646490097045898,"seed":157669653,"groupIds":["Hw7h-V3OyvBXuEMkkp6nF","QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,2.796879768371582],[0,2.796879768371582],[0.17416858673095703,3.0759944915771484],[0.36487913131713867,3.342823028564453],[0.5714726448059082,3.596665382385254],[0.7932920455932617,3.836817741394043],[1.0296778678894043,4.062578201293945],[1.2799725532531738,4.273244857788086],[1.5435185432434082,4.46811580657959],[1.8196568489074707,4.646490097045898],[1.8196568489074707,0],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":1605107470,"isDeleted":false,"id":"d9WZiSOl45ElNBMfllKgi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":270.07550716400146,"y":444.38689517974854,"strokeColor":"#00000000","backgroundColor":"#669df6","width":2.2427453994750977,"height":8.085492134094238,"seed":189771451,"groupIds":["_0peeMHhnZu3o5YmxSbsZ","QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,8.004990577697754],[0,8.004990577697754],[0.29485130310058594,8.036524772644043],[0.5897035598754883,8.057877540588379],[0.8845548629760742,8.068699836730957],[1.1794071197509766,8.068642616271973],[1.445591926574707,8.081278800964355],[1.7110748291015625,8.085492134094238],[1.9765596389770508,8.081278800964355],[2.2427453994750977,8.068642616271973],[2.2427453994750977,0],[0,0],[0,0]]},{"type":"line","version":72,"versionNonce":1080148178,"isDeleted":false,"id":"rfiKaNR5qwQMpjKNyZWf4","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":274.06302642822266,"y":448.05616188049316,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8084230422973633,"height":3.497035026550293,"seed":1439952501,"groupIds":["iPHqckK3HpF_1jwDPXJ6d","QNb9nixoAY8IdFnI-nTV4","iQN6LoGvHWCGW_4ivwegy","SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"tEHMDJW1BQg7FaZVYB0Mv","label":"BigQuery","resource":"google_bigquery_dataset","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,3.497035026550293],[0,3.497035026550293],[0.2770538330078125,3.307438850402832],[0.5408821105957031,3.1014394760131836],[0.7908115386962891,2.879755973815918],[1.026169776916504,2.6431102752685547],[1.2462835311889648,2.392223358154297],[1.4504785537719727,2.1278133392333984],[1.6380834579467773,1.850602149963379],[1.8084230422973633,1.5613107681274414],[1.8084230422973633,0],[0,0],[0,0]]},{"type":"ellipse","version":182,"versionNonce":1077210446,"isDeleted":true,"id":"aLOosmqOEhwrbed0nd_PX","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":380,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":169041973,"groupIds":["SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"round","boundElements":[{"id":"fpRNWgJf1XeXZDtPOjx8C","type":"text"},{"id":"fpRNWgJf1XeXZDtPOjx8C","type":"text"},{"id":"fpRNWgJf1XeXZDtPOjx8C","type":"text"},{"type":"text","id":"fpRNWgJf1XeXZDtPOjx8C"}],"updated":1697744829092,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":172,"versionNonce":1003869842,"isDeleted":true,"id":"fpRNWgJf1XeXZDtPOjx8C","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":305,"y":385,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":1534699931,"groupIds":["SiMhKVR8rFv9e2NIdJ_oi"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"4","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"aLOosmqOEhwrbed0nd_PX","originalText":"4"},{"type":"rectangle","version":88,"versionNonce":1980109710,"isDeleted":false,"id":"2aq2Jyu1CMMJ8iRT-oXU-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":420,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":100,"seed":557408859,"groupIds":["9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"round","boundElements":[{"id":"IBu8BzlAjwDWVETPdkOxn","type":"arrow"}],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"container"}},{"type":"text","version":89,"versionNonce":1673606226,"isDeleted":false,"id":"lNToFJrHjCIbffKduVg4g","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":434,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":106,"height":23,"seed":860406997,"groupIds":["9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"fontSize":20,"fontFamily":2,"text":"Data Studio","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Data Studio"},{"type":"text","version":100,"versionNonce":458781134,"isDeleted":false,"id":"XQRi8bWvrXwUx4S8xVmqt","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":458,"strokeColor":"#202124","backgroundColor":"transparent","width":91,"height":37,"seed":372399867,"groupIds":["9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"fontSize":16,"fontFamily":2,"text":"\nVisualization","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"\nVisualization"},{"type":"line","version":83,"versionNonce":972741138,"isDeleted":false,"id":"xnUZal30zQCmnNEQl8qqf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":839.5,"y":452.17000007629395,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10,"height":5,"seed":1443058581,"groupIds":["pnXASUKtkPLD8SoLSEscY","9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.260000228881836,0],[-7.260000228881836,0],[-8.305115699768066,0.13211822509765625],[-9.17534351348877,0.6523036956787109],[-9.772900581359863,1.4713363647460938],[-10,2.5],[-9.781946182250977,3.535045623779297],[-9.185060501098633,4.358346939086914],[-8.31064510345459,4.877473831176758],[-7.260000228881836,5],[0,5],[0,0]]},{"type":"ellipse","version":83,"versionNonce":457508878,"isDeleted":false,"id":"PxPLUjtYcUlij6Zeb5ohX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":837,"y":452.17000007629395,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5,"height":5,"seed":2101156923,"groupIds":["F7ajN1t61SmwwVxN36SVH","vRUO4_mmwRyE9P4JWAmF7","9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"}},{"type":"line","version":83,"versionNonce":1836697554,"isDeleted":false,"id":"jFoO_8h53a_-y_QbxJrx5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832,"y":445.5,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10,"height":5,"seed":1440618741,"groupIds":["X014t-dHnVsIqqCYlfzL9","9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.260000228881836,0],[-7.260000228881836,0],[-8.305115222930908,0.13211727142333984],[-9.175343751907349,0.6523027420043945],[-9.772900342941284,1.4713373184204102],[-10,2.5],[-9.781945943832397,3.535045623779297],[-9.185060739517212,4.358346939086914],[-8.31064510345459,4.877473831176758],[-7.260000228881836,5],[0,5],[0,0]]},{"type":"ellipse","version":83,"versionNonce":365221454,"isDeleted":false,"id":"YKJ_nEO64hy25T_wloP_q","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":829.5,"y":445.5,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5,"height":5,"seed":291757275,"groupIds":["F7ajN1t61SmwwVxN36SVH","XyBo86d9tLAuzl5A9DW_A","9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"}},{"type":"line","version":83,"versionNonce":911539602,"isDeleted":false,"id":"szZNotPAPK5c2VQEn6Y2V","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":839.5,"y":438.82999992370605,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10,"height":5,"seed":217657941,"groupIds":["SwhalKsSehfLqFJomRiB7","9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-7.260000228881836,0],[-7.260000228881836,0],[-8.30331802368164,0.13521718978881836],[-9.172197341918945,0.6557517051696777],[-9.769977569580078,1.4734106063842773],[-10,2.5],[-9.781946182250977,3.535046100616455],[-9.185060501098633,4.358346462249756],[-8.31064510345459,4.877473831176758],[-7.260000228881836,5],[0,5],[0,0]]},{"type":"ellipse","version":83,"versionNonce":1135664270,"isDeleted":false,"id":"lepDqzVGKMe3lC1ohO3qk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":837,"y":438.82999992370605,"strokeColor":"transparent","backgroundColor":"#4285f4","width":5,"height":5,"seed":1076463995,"groupIds":["F7ajN1t61SmwwVxN36SVH","CFz8wIcd3DSKy_EKjIH-m","9J8mRdwRGjgwVzaaBm08s","6fvBdX2y9cFgPC8ndbfF0"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"WPlpwy-w4Zza9lSkgYca3","label":"Data Studio","type":"child"}},{"type":"ellipse","version":190,"versionNonce":834894674,"isDeleted":true,"id":"r1il6uZbAo3IYVcPC6Ea-","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":380,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":45,"seed":1440958357,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"2504Vxxb1Oey8gpBPVwwJ","type":"text"},{"id":"2504Vxxb1Oey8gpBPVwwJ","type":"text"},{"id":"2504Vxxb1Oey8gpBPVwwJ","type":"text"},{"id":"2504Vxxb1Oey8gpBPVwwJ","type":"text"},{"type":"text","id":"2504Vxxb1Oey8gpBPVwwJ"}],"updated":1697744829092,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":183,"versionNonce":1522670286,"isDeleted":true,"id":"2504Vxxb1Oey8gpBPVwwJ","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":865,"y":386.5,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":1652975675,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"5","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"r1il6uZbAo3IYVcPC6Ea-","originalText":"5"},{"id":"IBu8BzlAjwDWVETPdkOxn","type":"arrow","x":300,"y":480,"width":318.9517822265625,"height":0,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":416334165,"version":191,"versionNonce":1042039058,"isDeleted":false,"boundElements":null,"updated":1697744829092,"link":null,"locked":false,"points":[[0,0],[318.9517822265625,0]],"lastCommittedPoint":null,"startBinding":{"elementId":"nj3n8sIQkvq3qsdVAf1o9","focus":0.2,"gap":1},"endBinding":{"elementId":"2aq2Jyu1CMMJ8iRT-oXU-","focus":-0.2,"gap":1.0482177734375},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":71,"versionNonce":1905365262,"isDeleted":false,"id":"XGJiTHw2h99_Hrxjg4EQi","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":60,"y":160,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":106,"seed":2128355675,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"round","boundElements":[{"id":"hUqCJsvkBD9w4QZujgUgf","type":"arrow"},{"id":"MBAzSf45lj2hPn8nr3IPf","type":"arrow"}],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"container"}},{"type":"text","version":76,"versionNonce":1456885458,"isDeleted":false,"id":"UsGAV5fcCpZn7_KotBps-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":174,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":129,"height":23,"seed":91583957,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"round","boundElements":[],"updated":1697744829092,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":20,"fontFamily":2,"text":"Cloud Storage","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Cloud Storage"},{"type":"text","version":80,"versionNonce":1670922062,"isDeleted":false,"id":"pV5icKbFgSWQIIjNoRP8n","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":198,"strokeColor":"#202124","backgroundColor":"transparent","width":69,"height":37,"seed":1327840763,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":16,"fontFamily":2,"text":"\nData lake","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"\nData lake"},{"type":"line","version":32,"versionNonce":1888003218,"isDeleted":true,"id":"vHNVy4vCYA-HVE2PCbx1a","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":956,"y":-196,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":257028917,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":31,"versionNonce":892282254,"isDeleted":true,"id":"BQKFKSoFIJ4i6LfKVbjGo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":956,"y":-187,"strokeColor":"#202124","backgroundColor":"transparent","width":160,"height":14,"seed":1029818011,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":12,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"rectangle","version":66,"versionNonce":1424638546,"isDeleted":false,"id":"pI2C4Bc1eEKQe2WIifW-Z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":262,"y":180,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":393725077,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":2005877710,"isDeleted":false,"id":"yKGfqO6S_Vnyij2jIm0By","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":180,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":272907067,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":66,"versionNonce":2127702034,"isDeleted":false,"id":"I41-VEPh0Izfksw4QktNX","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":180,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":832334325,"groupIds":["kL799zADC2tQ-NJdXb7hd","xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":66,"versionNonce":751933966,"isDeleted":false,"id":"kirMOWSF7UBh3urgReT6K","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":262,"y":180,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":338631643,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":1983337938,"isDeleted":false,"id":"adBm8M7uz63pUJMBYl-2Q","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":266,"y":183,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":1589994325,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":737093710,"isDeleted":false,"id":"YiGL6PYyUTJel0KE0YMZV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":275,"y":182,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":1697966203,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":741395346,"isDeleted":false,"id":"7I24dRXuNfknJa1Id8hR2","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":262,"y":189,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":20,"height":7,"seed":1665675445,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":79752846,"isDeleted":false,"id":"mdXytGLzOSpEKQUCiBsaO","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":280,"y":189,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":2031624475,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"line","version":66,"versionNonce":1458932050,"isDeleted":false,"id":"GfqN4F97USnNBpExejuoa","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":282,"y":189,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":2,"height":7,"seed":1556763157,"groupIds":["9ScBfurrn1fNBCkDxDTN2","xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2,0],[-2,7],[0,0],[0,0]]},{"type":"rectangle","version":66,"versionNonce":1677716686,"isDeleted":false,"id":"jXq015rlnbuyAEuqGoTW0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":262,"y":189,"strokeColor":"transparent","backgroundColor":"#669df6","width":2,"height":7,"seed":1766540731,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":1306300178,"isDeleted":false,"id":"DqRohkGkNGUr9L-MnjbYP","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":266,"y":192,"strokeColor":"transparent","backgroundColor":"#fff","width":6,"height":1,"seed":406931317,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"type":"rectangle","version":66,"versionNonce":2001019662,"isDeleted":false,"id":"uSkzvOHhZvjWDTt_4vs3O","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":275,"y":191,"strokeColor":"transparent","backgroundColor":"#fff","width":3,"height":3,"seed":2096158299,"groupIds":["xx8SlsO-NDoe5ujPloJ2N","dEYQi3Q-1ZQj5jkNTPY3L"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"dEjwXMcHNQX6p0ysPgXGU","label":"Cloud Storage","resource":"google_storage_bucket","type":"child"}},{"id":"nsGhH3Xmv7e7knUYZ-LrL","type":"text","x":998.1666259765625,"y":-198.6666870117187,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1750924885,"version":32,"versionNonce":1700584658,"isDeleted":true,"boundElements":null,"updated":1697744829093,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"type":"line","version":34,"versionNonce":1359581518,"isDeleted":true,"id":"cm-66F8VL9RZ-LBEvPKv2","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1356,"y":44,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":0,"seed":480271957,"groupIds":["0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[208,0]]},{"type":"text","version":32,"versionNonce":1259172498,"isDeleted":true,"id":"5vesM5mT8t3kO7-ChjOLK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1356,"y":53,"strokeColor":"#202124","backgroundColor":"transparent","width":91,"height":15,"seed":1121656187,"groupIds":["0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":11,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"type":"ellipse","version":144,"versionNonce":1285961614,"isDeleted":true,"id":"iWNde8Lr70cK5jYXgor9X","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":120,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1096657371,"groupIds":["Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"round","boundElements":[{"id":"Osl76D1AO6bSh5BEWAkyb","type":"text"},{"type":"text","id":"Osl76D1AO6bSh5BEWAkyb"}],"updated":1697744829093,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":134,"versionNonce":1638223954,"isDeleted":true,"id":"Osl76D1AO6bSh5BEWAkyb","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":865,"y":125,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":1276032341,"groupIds":["Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"2","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"iWNde8Lr70cK5jYXgor9X","originalText":"2"},{"type":"rectangle","version":63,"versionNonce":1918113230,"isDeleted":false,"id":"cNmhzVV34StKRJzlCzGP0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":620,"y":160,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":106,"seed":1501802555,"groupIds":["0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"round","boundElements":[{"id":"MBAzSf45lj2hPn8nr3IPf","type":"arrow"}],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"container"}},{"type":"text","version":73,"versionNonce":486241810,"isDeleted":false,"id":"Bl0aSFLHXhYF5T6xRNFnA","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":174,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":93,"height":23,"seed":905626869,"groupIds":["0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"fontSize":20,"fontFamily":2,"text":"Workflows","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Workflows"},{"type":"text","version":78,"versionNonce":1529621518,"isDeleted":false,"id":"t_QgAhhNrnTbr8mxIvBBJ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":636,"y":198,"strokeColor":"#202124","backgroundColor":"transparent","width":114,"height":37,"seed":1337454811,"groupIds":["0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"fontSize":16,"fontFamily":2,"text":"\nData movement","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"\nData movement"},{"type":"line","version":61,"versionNonce":1577509842,"isDeleted":false,"id":"49sX4bgQ-HLWyIIQF543W","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":827.7122302055359,"y":195.10791397094727,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.2503600120544434,"height":2.071941375732422,"seed":1108069301,"groupIds":["U-J-Up0nLm8X3lEMyys_w","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.011690616607666016,0.2695140838623047],[-0.04604291915893555,0.5330944061279297],[-0.10197877883911133,0.7891197204589844],[-0.17841720581054688,1.035970687866211],[2.0719428062438965,1.035970687866211],[2.0719428062438965,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.17841720581054688,-1.035970687866211],[-0.10197877883911133,-0.7891178131103516],[-0.04604291915893555,-0.5330944061279297],[-0.011690616607666016,-0.2695140838623047],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":354908750,"isDeleted":false,"id":"DL4wGyUBHL_YBks1S7Sei","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":836.1784172058105,"y":179.56834530830383,"strokeColor":"#00000000","backgroundColor":"#8ab4f8","width":2.250359535217285,"height":2.0719425678253174,"seed":238007835,"groupIds":["U-J-Up0nLm8X3lEMyys_w","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.250359535217285,0],[-2.250359535217285,2.0719425678253174],[0,2.0719425678253174],[0,2.0719425678253174],[-0.07643890380859375,1.8250901699066162],[-0.13237380981445312,1.5690648555755615],[-0.16672706604003906,1.3054859638214111],[-0.17841720581054688,1.0359714031219482],[-0.16672706604003906,0.7664568424224854],[-0.13237380981445312,0.502877950668335],[-0.07643890380859375,0.24685263633728027],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1323211154,"isDeleted":false,"id":"wSbwY1nYqWqUeiUnIEMwp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":839.1079139709473,"y":183.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.215827941894531,"height":6.2158273458480835,"seed":1986170133,"groupIds":["bLsQwGGASM-ZYqBOKPZXJ","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754493713378906,-0.016060352325439453],[-0.6259651184082031,-0.06319713592529297],[-0.9236984252929688,-0.13984060287475586],[-1.2091712951660156,-0.24442386627197266],[-1.4808197021484375,-0.3753790855407715],[-1.7370719909667969,-0.5311374664306641],[-1.9763622283935547,-0.7101306915283203],[-2.1971206665039062,-0.9107909202575684],[-2.3977813720703125,-1.1315503120422363],[-2.5767765045166016,-1.3708405494689941],[-2.732534408569336,-1.6270933151245117],[-2.8634891510009766,-1.8987407684326172],[-2.9680728912353516,-2.1842145919799805],[-3.0447158813476562,-2.4819464683532715],[-3.0918521881103516,-2.7903690338134766],[-3.1079139709472656,-3.1079134941101074],[-3.0918521881103516,-3.4254579544067383],[-3.0447158813476562,-3.7338805198669434],[-2.9680728912353516,-4.031612396240234],[-2.8634891510009766,-4.317086219787598],[-2.732534408569336,-4.588733673095703],[-2.5767765045166016,-4.844986438751221],[-2.3977813720703125,-5.084276437759399],[-2.1971206665039062,-5.305035829544067],[-1.9763622283935547,-5.5056962966918945],[-1.7370719909667969,-5.68468976020813],[-1.4808197021484375,-5.840447902679443],[-1.2091712951660156,-5.9714027643203735],[-0.9236984252929688,-6.075986266136169],[-0.6259651184082031,-6.15263032913208],[-0.31754493713378906,-6.199766755104065],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236984252929688,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.4808197021484375,-5.840447902679443],[1.7370738983154297,-5.68468976020813],[1.9763622283935547,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317086219787598],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338805198669434],[3.0918540954589844,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819464683532715],[2.9680728912353516,-2.1842145919799805],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236984252929688,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":119472270,"isDeleted":false,"id":"tlKrM68d35_KhFotyAY7h","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":839.1079139709473,"y":179.56834530830383,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.071941375732422,"height":2.0719425678253174,"seed":11025083,"groupIds":["bLsQwGGASM-ZYqBOKPZXJ","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1052350290,"isDeleted":false,"id":"wJJeYXiPUPpyHGSDdcNyT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":824.6043167114258,"y":198.21582794189453,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":6.2158273458480835,"height":6.215827941894531,"seed":1763320437,"groupIds":["bLsQwGGASM-ZYqBOKPZXJ","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.31754446029663086,-0.01605987548828125],[-0.6259670257568359,-0.06319808959960938],[-0.923698902130127,-0.13984107971191406],[-1.2091727256774902,-0.24442481994628906],[-1.4808201789855957,-0.3753795623779297],[-1.7370729446411133,-0.5311374664306641],[-1.976362943649292,-0.7101306915283203],[-2.19712233543396,-0.9107913970947266],[-2.397782802581787,-1.131551742553711],[-2.5767762660980225,-1.370840072631836],[-2.732534408569336,-1.6270942687988281],[-2.863489270210266,-1.8987407684326172],[-2.968072772026062,-2.184215545654297],[-3.0447168350219727,-2.4819469451904297],[-3.0918532609939575,-2.7903690338134766],[-3.107913851737976,-3.1079139709472656],[-3.0918532609939575,-3.4254589080810547],[-3.0447168350219727,-3.7338790893554688],[-2.968072772026062,-4.031612396240234],[-2.863489270210266,-4.317085266113281],[-2.732534408569336,-4.588733673095703],[-2.5767762660980225,-4.8449859619140625],[-2.397782802581787,-5.08427619934082],[-2.19712233543396,-5.305034637451172],[-1.976362943649292,-5.505695343017578],[-1.7370729446411133,-5.684690475463867],[-1.4808201789855957,-5.840448379516602],[-1.2091727256774902,-5.971403121948242],[-0.923698902130127,-6.075986862182617],[-0.6259670257568359,-6.152629852294922],[-0.31754446029663086,-6.199766159057617],[0,-6.215827941894531],[0.31754446029663086,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.923698902130127,-6.075986862182617],[1.2091727256774902,-5.971403121948242],[1.4808201789855957,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.976363182067871,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.397782802581787,-5.08427619934082],[2.5767760276794434,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634896278381348,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447163581848145,-3.7338790893554688],[3.091853141784668,-3.4254589080810547],[3.1079134941101074,-3.1079139709472656],[3.091853141784668,-2.7903690338134766],[3.0447163581848145,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634896278381348,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767760276794434,-1.370840072631836],[2.397782802581787,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.4808201789855957,-0.3753795623779297],[1.2091727256774902,-0.24442481994628906],[0.923698902130127,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754446029663086,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1422638798,"isDeleted":false,"id":"vfa4ERsfToRaQAVYLssZN","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":824.6043167114258,"y":194.07194328308105,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":2.0719425678253174,"height":2.071941375732422,"seed":1726425947,"groupIds":["bLsQwGGASM-ZYqBOKPZXJ","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":2112806162,"isDeleted":false,"id":"SUlxOtIM2K1lZ5FA6olUN","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":839.1079139709473,"y":179.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.071941375732422,"height":2.0719425678253174,"seed":1056443349,"groupIds":["Imlm7lma3kh6nm0GbqnYM","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021144390106201172],[-0.4022483825683594,0.08174467086791992],[-0.5781803131103516,0.1775517463684082],[-0.7316551208496094,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542255401611328,0.6337234973907471],[-1.0148277282714844,0.8278663158416748],[-1.035970687866211,1.0359714031219482],[-1.0148277282714844,1.2440760135650635],[-0.9542255401611328,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316551208496094,1.7676260471343994],[-0.5781803131103516,1.8943908214569092],[-0.4022483825683594,1.9901978969573975],[-0.20810508728027344,2.050798177719116],[0,2.0719425678253174],[0.20810508728027344,2.050798177719116],[0.4022483825683594,1.9901978969573975],[0.5781822204589844,1.8943908214569092],[0.7316551208496094,1.7676260471343994],[0.8584194183349609,1.6141526699066162],[0.9542255401611328,1.4382193088531494],[1.0148277282714844,1.2440760135650635],[1.035970687866211,1.0359714031219482],[1.0148277282714844,0.8278663158416748],[0.9542255401611328,0.6337234973907471],[0.8584194183349609,0.4577901363372803],[0.7316551208496094,0.30431652069091797],[0.5781822204589844,0.1775517463684082],[0.4022483825683594,0.08174467086791992],[0.20810508728027344,0.021144390106201172],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1120318734,"isDeleted":false,"id":"r__v-ZM6DDdGaZ2AduBI6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":824.6043167114258,"y":194.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":2.0719425678253174,"height":2.071941375732422,"seed":1430194171,"groupIds":["Imlm7lma3kh6nm0GbqnYM","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.40224790573120117,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316548824310303,0.30431556701660156],[-0.85841965675354,0.4577903747558594],[-0.9542267322540283,0.6337223052978516],[-1.014827013015747,0.8278656005859375],[-1.0359714031219482,1.035970687866211],[-1.014827013015747,1.2440757751464844],[-0.9542267322540283,1.4382190704345703],[-0.85841965675354,1.6141529083251953],[-0.7316548824310303,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.40224790573120117,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[0.20810461044311523,2.0507984161376953],[0.40224790573120117,1.9901962280273438],[0.578181266784668,1.8943901062011719],[0.7316546440124512,1.7676258087158203],[0.8584194183349609,1.6141529083251953],[0.9542264938354492,1.4382190704345703],[1.014826774597168,1.2440757751464844],[1.0359711647033691,1.035970687866211],[1.014826774597168,0.8278656005859375],[0.9542264938354492,0.6337223052978516],[0.8584194183349609,0.4577903747558594],[0.7316546440124512,0.30431556701660156],[0.578181266784668,0.17755126953125],[0.40224790573120117,0.08174514770507812],[0.20810461044311523,0.021142959594726562],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":972384978,"isDeleted":false,"id":"22a1g2CAalVJ3Pv0IPrV7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":827.8906478881836,"y":186.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":6.394245028495789,"height":9.225899696350098,"seed":1745996085,"groupIds":["hzEwgkzL2L5ZAVOU-8IgX","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-2.2503600120544434,0],[-2.2503600120544434,0],[-2.462372303009033,-0.010685920715332031],[-2.668221950531006,-0.042052268981933594],[-2.8668718338012695,-0.0930624008178711],[-3.057284355163574,-0.16267967224121094],[-3.2384233474731445,-0.24986648559570312],[-3.4092516899108887,-0.35358524322509766],[-3.568732261657715,-0.47280120849609375],[-3.7158279418945312,-0.6064748764038086],[-3.849501132965088,-0.753570556640625],[-3.968716621398926,-0.913050651550293],[-4.0724358558654785,-1.083878517150879],[-4.159622669219971,-1.2650175094604492],[-4.2292397022247314,-1.4554309844970703],[-4.280249834060669,-1.6540803909301758],[-4.31161642074585,-1.8599300384521484],[-4.322302579879761,-2.0719423294067383],[-4.322302579879761,-3.1079134941101074],[-4.322302579879761,-3.1079134941101074],[-4.316173315048218,-3.2672781944274902],[-4.298089265823364,-3.4234819412231445],[-4.268505811691284,-3.5760602951049805],[-4.227878093719482,-3.724550247192383],[-4.176661252975464,-3.8684868812561035],[-4.1153106689453125,-4.007407188415527],[-4.044281721115112,-4.140848159790039],[-3.96402907371521,-4.268344879150391],[-3.7776756286621094,-4.503653049468994],[-3.5598926544189453,-4.709621906280518],[-3.314321517944336,-4.882542610168457],[-3.182253360748291,-4.955450057983398],[-3.044604778289795,-5.018704414367676],[-3.1479320526123047,-5.301258563995361],[-3.223741054534912,-5.5956830978393555],[-3.270413875579834,-5.9008989334106445],[-3.2863311767578125,-6.215826988220215],[-3.276798725128174,-6.459532260894775],[-3.2489209175109863,-6.697841644287109],[-3.203777313232422,-6.929675817489624],[-3.142446517944336,-7.153956413269043],[-3.485318183898926,-7.062928199768066],[-3.815906524658203,-6.9439857006073],[-4.132853746414185,-6.798486232757568],[-4.434802532196045,-6.6277875900268555],[-4.720395803451538,-6.433246612548828],[-4.98827600479126,-6.216220378875732],[-5.237085819244385,-5.978066921234131],[-5.465467929840088,-5.7201433181762695],[-5.672065019607544,-5.443807601928711],[-5.855519771575928,-5.150415897369385],[-6.014474511146545,-4.841325759887695],[-6.14757227897644,-4.517895221710205],[-6.2534555196762085,-4.18148136138916],[-6.330767035484314,-3.833441734313965],[-6.3781492710113525,-3.4751334190368652],[-6.394245028495789,-3.1079134941101074],[-6.394245028495789,-2.0719423294067383],[-6.394245028495789,-2.0719423294067383],[-6.3728097677230835,-1.6488656997680664],[-6.3099037408828735,-1.2378711700439453],[-6.207625985145569,-0.8410558700561523],[-6.068075895309448,-0.46052074432373047],[-5.893352746963501,-0.09836578369140625],[-5.685555696487427,0.24331188201904297],[-5.446784019470215,0.5624113082885742],[-5.1791369915008545,0.8568344116210938],[-4.884714126586914,1.1244821548461914],[-4.5656139850616455,1.3632535934448242],[-4.223936557769775,1.5710506439208984],[-3.8617806434631348,1.7457733154296875],[-3.481245994567871,1.8853235244750977],[-3.0844311714172363,1.9876022338867188],[-2.673436164855957,2.0505075454711914],[-2.2503600120544434,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[-0.07643890380859375,1.8250904083251953],[-0.13237428665161133,1.5690650939941406],[-0.16672706604003906,1.3054866790771484],[-0.17841768264770508,1.0359716415405273],[-0.16672706604003906,0.7664575576782227],[-0.13237428665161133,0.5028781890869141],[-0.07643890380859375,0.24685287475585938],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":445178702,"isDeleted":false,"id":"xOnvdHgMw4rXM3tfCZW1I","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":838.0892086029053,"y":186.820143699646,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":5.369785308837891,"height":9.231654167175293,"seed":833769627,"groupIds":["0k3BKTxDP3GNOFRxykTmG","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-1.2316551208496094,0],[-1.2316551208496094,0],[-1.1552162170410156,0.24685287475585938],[-1.0992794036865234,0.5028781890869141],[-1.0649280548095703,0.7664575576782227],[-1.0532379150390625,1.0359716415405273],[-1.0649280548095703,1.3054866790771484],[-1.0992794036865234,1.5690650939941406],[-1.1552162170410156,1.8250904083251953],[-1.2316551208496094,2.0719432830810547],[0,2.0719432830810547],[0,2.0719432830810547],[0.21201133728027344,2.0826292037963867],[0.4178638458251953,2.1139955520629883],[0.6165122985839844,2.165006637573242],[0.8069248199462891,2.2346229553222656],[0.9880638122558594,2.321809768676758],[1.1588916778564453,2.4255285263061523],[1.3183727264404297,2.5447444915771484],[1.4654693603515625,2.6784181594848633],[1.599142074584961,2.8255138397216797],[1.7183570861816406,2.9849939346313477],[1.8220748901367188,3.1558218002319336],[1.9092636108398438,3.336960792541504],[1.9788799285888672,3.527374267578125],[2.0298900604248047,3.7260236740112305],[2.0612564086914062,3.931873321533203],[2.071941375732422,4.143885612487793],[2.071941375732422,5.179856300354004],[2.071941375732422,5.179856300354004],[2.065746307373047,5.341246604919434],[2.0474605560302734,5.499213218688965],[2.0175399780273438,5.653304100036621],[1.9764385223388672,5.803057670593262],[1.9246139526367188,5.948025703430176],[1.8625221252441406,6.087746620178223],[1.7906169891357422,6.221772193908691],[1.7093524932861328,6.349640846252441],[1.6191864013671875,6.470900535583496],[1.5205707550048828,6.585095405578613],[1.4139633178710938,6.691769599914551],[1.2998199462890625,6.790467262268066],[1.1785945892333984,6.880736351013184],[1.0507431030273438,6.962119102478027],[0.916717529296875,7.0341596603393555],[0.7769775390625,7.096402168273926],[0.8769798278808594,7.378058433532715],[0.951080322265625,7.670504570007324],[0.9971237182617188,7.973742485046387],[1.012948989868164,8.28777027130127],[1.0033283233642578,8.53156566619873],[0.9748191833496094,8.77050495147705],[0.9279670715332031,9.004048347473145],[0.8633098602294922,9.231654167175293],[1.2083377838134766,9.141573905944824],[1.5410652160644531,9.02332592010498],[1.8601150512695312,8.87828540802002],[2.1641178131103516,8.707823753356934],[2.4516983032226562,8.513319969177246],[2.7214832305908203,8.29614543914795],[2.9720935821533203,8.057673454284668],[3.202157974243164,7.799281120300293],[3.4103031158447266,7.522339820861816],[3.595155715942383,7.228226661682129],[3.755338668823242,6.918313026428223],[3.8894805908203125,6.593976020812988],[3.9962024688720703,6.256587028503418],[4.074134826660156,5.9075212478637695],[4.1219024658203125,5.548151969909668],[4.138130187988281,5.179856300354004],[4.138130187988281,4.143885612487793],[4.138130187988281,4.143885612487793],[4.117706298828125,3.720808982849121],[4.055688858032227,3.309814453125],[3.9541778564453125,2.912999153137207],[3.815288543701172,2.532464027404785],[3.641122817993164,2.170309066772461],[3.4337902069091797,1.8286314010620117],[3.1954002380371094,1.5095319747924805],[2.9280567169189453,1.215108871459961],[2.6338729858398438,0.9474611282348633],[2.314950942993164,0.7086896896362305],[1.9734001159667969,0.5008926391601562],[1.6113319396972656,0.3261699676513672],[1.2308483123779297,0.18661975860595703],[0.8340606689453125,0.08434104919433594],[0.4230766296386719,0.02143573760986328],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1499742354,"isDeleted":false,"id":"Pha6_rrf2jyAkYber6lwo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":830.820143699646,"y":183.7122302055359,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.2158273458480835,"seed":902617749,"groupIds":["i5AMZ8vmi5dvu1cdufARt","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079134941101074,0],[-3.1079134941101074,0],[-3.4254579544067383,-0.016060352325439453],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984060287475586],[-4.317086219787598,-0.24442386627197266],[-4.588733196258545,-0.3753790855407715],[-4.8449859619140625,-0.5311374664306641],[-5.0842766761779785,-0.7101306915283203],[-5.3050360679626465,-0.9107909202575684],[-5.5056962966918945,-1.1315503120422363],[-5.684689521789551,-1.3708405494689941],[-5.840447425842285,-1.6270933151245117],[-5.971402645111084,-1.8987407684326172],[-6.075986385345459,-2.1842145919799805],[-6.15263032913208,-2.4819464683532715],[-6.199766635894775,-2.7903690338134766],[-6.215826988220215,-3.1079134941101074],[-6.199766635894775,-3.4254579544067383],[-6.15263032913208,-3.7338805198669434],[-6.075986385345459,-4.031612396240234],[-5.971402645111084,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986438751221],[-5.5056962966918945,-5.084276437759399],[-5.3050360679626465,-5.305035829544067],[-5.0842766761779785,-5.5056962966918945],[-4.8449859619140625,-5.68468976020813],[-4.588733196258545,-5.840447902679443],[-4.317086219787598,-5.9714027643203735],[-4.031612396240234,-6.075986266136169],[-3.733880043029785,-6.15263032913208],[-3.4254579544067383,-6.199766755104065],[-3.1079134941101074,-6.2158273458480835],[0,-6.2158273458480835],[0,-6.2158273458480835],[0.31754493713378906,-6.199766755104065],[0.6259670257568359,-6.15263032913208],[0.9236993789672852,-6.075986266136169],[1.2091732025146484,-5.9714027643203735],[1.480820655822754,-5.840447902679443],[1.7370729446411133,-5.68468976020813],[1.976363182067871,-5.5056962966918945],[2.197122573852539,-5.305035829544067],[2.3977832794189453,-5.084276437759399],[2.5767765045166016,-4.844986438751221],[2.732534408569336,-4.588733673095703],[2.863490104675293,-4.317086219787598],[2.968073844909668,-4.031612396240234],[3.0447168350219727,-3.7338805198669434],[3.091853141784668,-3.4254579544067383],[3.1079139709472656,-3.1079134941101074],[3.091853141784668,-2.7903690338134766],[3.0447168350219727,-2.4819464683532715],[2.968073844909668,-2.1842145919799805],[2.863490104675293,-1.8987407684326172],[2.732534408569336,-1.6270933151245117],[2.5767765045166016,-1.3708405494689941],[2.3977832794189453,-1.1315503120422363],[2.197122573852539,-0.9107909202575684],[1.976363182067871,-0.7101306915283203],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753790855407715],[1.2091732025146484,-0.24442386627197266],[0.9236993789672852,-0.13984060287475586],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060352325439453],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":241912206,"isDeleted":false,"id":"sj7VlqgOhoxh5Jv_PgLaF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":827.7122302055359,"y":179.56834530830383,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719425678253174,"seed":2113111355,"groupIds":["i5AMZ8vmi5dvu1cdufARt","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1475501650,"isDeleted":false,"id":"HHg9hefQ3CY87i4fyL2oK","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":833.9280576705933,"y":190.9640293121338,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.323740482330322,"height":6.215827941894531,"seed":819904501,"groupIds":["i5AMZ8vmi5dvu1cdufARt","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.1079139709472656,0],[-3.1079139709472656,0],[-3.4254579544067383,-0.016060829162597656],[-3.733880043029785,-0.06319713592529297],[-4.031612396240234,-0.13984203338623047],[-4.317086219787598,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.084277153015137,-0.7101316452026367],[-5.305035591125488,-0.9107913970947266],[-5.5056962966918945,-1.1315507888793945],[-5.684689521789551,-1.3708410263061523],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987417221069336],[-6.075986385345459,-2.1842145919799805],[-6.152629852294922,-2.4819469451904297],[-6.199766635894775,-2.790369987487793],[-6.215827465057373,-3.1079139709472656],[-6.199766635894775,-3.4254579544067383],[-6.152629852294922,-3.7338809967041016],[-6.075986385345459,-4.031613349914551],[-5.971403121948242,-4.317086219787598],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.844986915588379],[-5.5056962966918945,-5.084277153015137],[-5.305035591125488,-5.305036544799805],[-5.084277153015137,-5.5056962966918945],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317086219787598,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152630805969238],[-3.4254579544067383,-6.199767112731934],[-3.1079139709472656,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199767112731934],[0.6259670257568359,-6.152630805969238],[0.9236984252929688,-6.075986862182617],[1.209172248840332,-5.971403121948242],[1.480820655822754,-5.840448379516602],[1.7370729446411133,-5.684690475463867],[1.9763622283935547,-5.5056962966918945],[2.1971216201782227,-5.305036544799805],[2.397782325744629,-5.084277153015137],[2.576775550842285,-4.844986915588379],[2.7325353622436523,-4.588733673095703],[2.86348819732666,-4.317086219787598],[2.968071937561035,-4.031613349914551],[3.0447168350219727,-3.7338809967041016],[3.091853141784668,-3.4254579544067383],[3.107913017272949,-3.1079139709472656],[3.091853141784668,-2.790369987487793],[3.0447168350219727,-2.4819469451904297],[2.968071937561035,-2.1842145919799805],[2.86348819732666,-1.8987417221069336],[2.7325353622436523,-1.6270942687988281],[2.576775550842285,-1.3708410263061523],[2.397782325744629,-1.1315507888793945],[2.1971216201782227,-0.9107913970947266],[1.9763622283935547,-0.7101316452026367],[1.7370729446411133,-0.5311374664306641],[1.480820655822754,-0.3753795623779297],[1.209172248840332,-0.24442481994628906],[0.9236984252929688,-0.13984203338623047],[0.6259670257568359,-0.06319713592529297],[0.31754493713378906,-0.016060829162597656],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":497477582,"isDeleted":false,"id":"4PAZtPIbyJtcHr6X2Fvgo","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":830.820143699646,"y":186.820143699646,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.179856300354004,"height":2.0719432830810547,"seed":1634018779,"groupIds":["i5AMZ8vmi5dvu1cdufARt","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":578208786,"isDeleted":false,"id":"qOr0mYh-AkNzifRKgyVVA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":836,"y":198.21582794189453,"strokeColor":"#00000000","backgroundColor":"#669df6","width":9.32374095916748,"height":6.215827941894531,"seed":793573717,"groupIds":["i5AMZ8vmi5dvu1cdufARt","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[-3.107913017272949,0],[-3.107913017272949,0],[-3.4254579544067383,-0.01605987548828125],[-3.733880043029785,-0.06319808959960938],[-4.031612396240234,-0.13984107971191406],[-4.317085266113281,-0.24442481994628906],[-4.588733673095703,-0.3753795623779297],[-4.8449859619140625,-0.5311374664306641],[-5.08427619934082,-0.7101306915283203],[-5.305035591125488,-0.9107913970947266],[-5.505695343017578,-1.131551742553711],[-5.684689521789551,-1.370840072631836],[-5.840447425842285,-1.6270942687988281],[-5.971403121948242,-1.8987407684326172],[-6.075985908508301,-2.184215545654297],[-6.152629852294922,-2.4819469451904297],[-6.199766159057617,-2.7903690338134766],[-6.215826988220215,-3.1079139709472656],[-6.199766159057617,-3.4254589080810547],[-6.152629852294922,-3.7338790893554688],[-6.075985908508301,-4.031612396240234],[-5.971403121948242,-4.317085266113281],[-5.840447425842285,-4.588733673095703],[-5.684689521789551,-4.8449859619140625],[-5.505695343017578,-5.08427619934082],[-5.305035591125488,-5.305034637451172],[-5.08427619934082,-5.505695343017578],[-4.8449859619140625,-5.684690475463867],[-4.588733673095703,-5.840448379516602],[-4.317085266113281,-5.971403121948242],[-4.031612396240234,-6.075986862182617],[-3.733880043029785,-6.152629852294922],[-3.4254579544067383,-6.199766159057617],[-3.107913017272949,-6.215827941894531],[0,-6.215827941894531],[0,-6.215827941894531],[0.31754493713378906,-6.199766159057617],[0.6259670257568359,-6.152629852294922],[0.9236984252929688,-6.075986862182617],[1.2091732025146484,-5.971403121948242],[1.4808197021484375,-5.840448379516602],[1.7370738983154297,-5.684690475463867],[1.9763622283935547,-5.505695343017578],[2.197122573852539,-5.305034637451172],[2.3977832794189453,-5.08427619934082],[2.5767765045166016,-4.8449859619140625],[2.732534408569336,-4.588733673095703],[2.8634891510009766,-4.317085266113281],[2.9680728912353516,-4.031612396240234],[3.0447158813476562,-3.7338790893554688],[3.0918540954589844,-3.4254589080810547],[3.1079139709472656,-3.1079139709472656],[3.0918540954589844,-2.7903690338134766],[3.0447158813476562,-2.4819469451904297],[2.9680728912353516,-2.184215545654297],[2.8634891510009766,-1.8987407684326172],[2.732534408569336,-1.6270942687988281],[2.5767765045166016,-1.370840072631836],[2.3977832794189453,-1.131551742553711],[2.197122573852539,-0.9107913970947266],[1.9763622283935547,-0.7101306915283203],[1.7370738983154297,-0.5311374664306641],[1.4808197021484375,-0.3753795623779297],[1.2091732025146484,-0.24442481994628906],[0.9236984252929688,-0.13984107971191406],[0.6259670257568359,-0.06319808959960938],[0.31754493713378906,-0.01605987548828125],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":2018819598,"isDeleted":false,"id":"Wxw-3uF6lqGiZ4f1yU54B","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832.892086982727,"y":194.07194328308105,"strokeColor":"#00000000","backgroundColor":"#669df6","width":5.1798553466796875,"height":2.071941375732422,"seed":1931063931,"groupIds":["i5AMZ8vmi5dvu1cdufARt","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1927836114,"isDeleted":false,"id":"mMsb0UxjqcuIii1AOiyDu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":829.7841730117798,"y":183.7122302055359,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.2158273458480835,"seed":711788213,"groupIds":["QwT6gQulnk9jTSXJU4mzC","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.0719428062438965,-2.0719423294067383],[-2.2800469398498535,-2.0930867195129395],[-2.4741907119750977,-2.153687000274658],[-2.6501240730285645,-2.2494940757751465],[-2.8035974502563477,-2.3762588500976562],[-2.9303622245788574,-2.5297322273254395],[-3.0261693000793457,-2.7056655883789062],[-3.0867695808410645,-2.899808883666992],[-3.1079139709472656,-3.1079134941101074],[-3.0867695808410645,-3.316018581390381],[-3.0261693000793457,-3.5101613998413086],[-2.9303622245788574,-3.6860947608947754],[-2.8035974502563477,-3.8395683765411377],[-2.6501240730285645,-3.9663331508636475],[-2.4741907119750977,-4.062140226364136],[-2.2800469398498535,-4.1227405071258545],[-2.0719428062438965,-4.143884897232056],[0,-4.143884897232056],[0,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.0719428062438965,-6.2158273458480835],[-2.3894872665405273,-6.199766755104065],[-2.697909355163574,-6.15263032913208],[-2.9956417083740234,-6.075986266136169],[-3.2811155319213867,-5.9714027643203735],[-3.552762508392334,-5.840447902679443],[-3.8090152740478516,-5.68468976020813],[-4.048305988311768,-5.5056962966918945],[-4.2690653800964355,-5.305035829544067],[-4.469725608825684,-5.084276437759399],[-4.64871883392334,-4.844986438751221],[-4.804476737976074,-4.588733673095703],[-4.935431957244873,-4.317086219787598],[-5.040015697479248,-4.031612396240234],[-5.116659641265869,-3.7338805198669434],[-5.1637959480285645,-3.4254579544067383],[-5.179856300354004,-3.1079134941101074],[-5.1637959480285645,-2.7903690338134766],[-5.116659641265869,-2.4819464683532715],[-5.040015697479248,-2.1842145919799805],[-4.935431957244873,-1.8987407684326172],[-4.804476737976074,-1.6270933151245117],[-4.64871883392334,-1.3708405494689941],[-4.469725608825684,-1.1315503120422363],[-4.2690653800964355,-0.9107909202575684],[-4.048305988311768,-0.7101306915283203],[-3.8090152740478516,-0.5311374664306641],[-3.552762508392334,-0.3753790855407715],[-3.2811155319213867,-0.24442386627197266],[-2.9956417083740234,-0.13984060287475586],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060352325439453],[-2.0719428062438965,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1668140110,"isDeleted":false,"id":"0T5OV0eyBKJbOsvZz-eZE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832.892086982727,"y":190.9640293121338,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856777191162,"height":6.215827941894531,"seed":1137945371,"groupIds":["QwT6gQulnk9jTSXJU4mzC","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.0719432830810547,-2.0719423294067383],[-2.2800474166870117,-2.0930871963500977],[-2.4741907119750977,-2.1536874771118164],[-2.6501235961914062,-2.2494945526123047],[-2.8035974502563477,-2.3762598037719727],[-2.9303627014160156,-2.5297327041625977],[-3.0261688232421875,-2.7056655883789062],[-3.0867700576782227,-2.8998098373413086],[-3.1079139709472656,-3.1079139709472656],[-3.0867700576782227,-3.3160181045532227],[-3.0261688232421875,-3.510162353515625],[-2.9303627014160156,-3.6860952377319336],[-2.8035974502563477,-3.8395681381225586],[-2.6501235961914062,-3.9663333892822266],[-2.4741907119750977,-4.062140464782715],[-2.2800474166870117,-4.122740745544434],[-2.0719432830810547,-4.143885612487793],[0,-4.143885612487793],[0,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.0719432830810547,-6.215827941894531],[-2.3894872665405273,-6.199767112731934],[-2.697909355163574,-6.152630805969238],[-2.9956417083740234,-6.075986862182617],[-3.2811155319213867,-5.971403121948242],[-3.552762985229492,-5.840448379516602],[-3.8090152740478516,-5.684690475463867],[-4.048306465148926,-5.5056962966918945],[-4.269064903259277,-5.305036544799805],[-4.469725608825684,-5.084277153015137],[-4.64871883392334,-4.844986915588379],[-4.804476737976074,-4.588733673095703],[-4.935432434082031,-4.317086219787598],[-5.040015697479248,-4.031613349914551],[-5.116659164428711,-3.7338809967041016],[-5.1637959480285645,-3.4254579544067383],[-5.179856777191162,-3.1079139709472656],[-5.1637959480285645,-2.790369987487793],[-5.116659164428711,-2.4819469451904297],[-5.040015697479248,-2.1842145919799805],[-4.935432434082031,-1.8987417221069336],[-4.804476737976074,-1.6270942687988281],[-4.64871883392334,-1.3708410263061523],[-4.469725608825684,-1.1315507888793945],[-4.269064903259277,-0.9107913970947266],[-4.048306465148926,-0.7101316452026367],[-3.8090152740478516,-0.5311374664306641],[-3.552762985229492,-0.3753795623779297],[-3.2811155319213867,-0.24442481994628906],[-2.9956417083740234,-0.13984203338623047],[-2.697909355163574,-0.06319713592529297],[-2.3894872665405273,-0.016060829162597656],[-2.0719432830810547,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":744384402,"isDeleted":false,"id":"ApXxHUw9tC0SwU61_Fp5_","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832.892086982727,"y":196.14388465881348,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":5.179856300354004,"height":6.215827941894531,"seed":1424254997,"groupIds":["QwT6gQulnk9jTSXJU4mzC","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,-0.021142959594726562],[-0.4022483825683594,-0.08174514770507812],[-0.578181266784668,-0.17755126953125],[-0.7316551208496094,-0.30431556701660156],[-0.8584194183349609,-0.45778846740722656],[-0.9542264938354492,-0.6337223052978516],[-1.014826774597168,-0.8278656005859375],[-1.0359716415405273,-1.035970687866211],[-1.014826774597168,-1.2440757751464844],[-0.9542264938354492,-1.4382190704345703],[-0.8584194183349609,-1.6141510009765625],[-0.7316551208496094,-1.7676258087158203],[-0.578181266784668,-1.8943901062011719],[-0.4022483825683594,-1.9901962280273438],[-0.20810508728027344,-2.0507984161376953],[0,-2.071941375732422],[2.0719423294067383,-2.071941375732422],[2.0719423294067383,-4.143884658813477],[0,-4.143884658813477],[0,-4.143884658813477],[-0.31754493713378906,-4.1278228759765625],[-0.6259670257568359,-4.080686569213867],[-0.9236993789672852,-4.0040435791015625],[-1.209172248840332,-3.8994598388671875],[-1.480820655822754,-3.768505096435547],[-1.7370729446411133,-3.6127471923828125],[-1.976363182067871,-3.4337520599365234],[-2.197122573852539,-3.233091354370117],[-2.397782325744629,-3.0123329162597656],[-2.5767765045166016,-2.773042678833008],[-2.732534408569336,-2.5167903900146484],[-2.863490104675293,-2.2451419830322266],[-2.9680728912353516,-1.9596691131591797],[-3.0447168350219727,-1.661935806274414],[-3.091853141784668,-1.353515625],[-3.1079139709472656,-1.035970687866211],[-3.091853141784668,-0.7184257507324219],[-3.0447168350219727,-0.410003662109375],[-2.9680728912353516,-0.11227226257324219],[-2.863490104675293,0.1732025146484375],[-2.732534408569336,0.44484901428222656],[-2.5767765045166016,0.7011032104492188],[-2.397782325744629,0.9403915405273438],[-2.197122573852539,1.1611518859863281],[-1.976363182067871,1.3618125915527344],[-1.7370729446411133,1.5408058166503906],[-1.480820655822754,1.696563720703125],[-1.209172248840332,1.8275184631347656],[-0.9236993789672852,1.9321022033691406],[-0.6259670257568359,2.0087451934814453],[-0.31754493713378906,2.0558834075927734],[0,2.0719432830810547],[2.0719423294067383,2.0719432830810547],[2.0719423294067383,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":483070606,"isDeleted":false,"id":"A-pjtFAafa-3Ya9uFOIVI","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":827.7122302055359,"y":179.56834530830383,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719425678253174,"seed":671453115,"groupIds":["vIr2szevGEhF_raCjaPmU","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144390106201172],[-0.40224790573120117,0.08174467086791992],[-0.578181266784668,0.1775517463684082],[-0.7316546440124512,0.30431652069091797],[-0.8584194183349609,0.4577901363372803],[-0.9542264938354492,0.6337234973907471],[-1.014826774597168,0.8278663158416748],[-1.0359711647033691,1.0359714031219482],[-1.014826774597168,1.2440760135650635],[-0.9542264938354492,1.4382193088531494],[-0.8584194183349609,1.6141526699066162],[-0.7316546440124512,1.7676260471343994],[-0.578181266784668,1.8943908214569092],[-0.40224790573120117,1.9901978969573975],[-0.20810413360595703,2.050798177719116],[0,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.1079134941101074,2.0719425678253174],[3.316018581390381,2.050798177719116],[3.510161876678467,1.9901978969573975],[3.6860947608947754,1.8943908214569092],[3.839568614959717,1.7676260471343994],[3.9663338661193848,1.6141526699066162],[4.062139987945557,1.4382193088531494],[4.122740268707275,1.2440760135650635],[4.143885135650635,1.0359714031219482],[4.122740268707275,0.8278663158416748],[4.062139987945557,0.6337234973907471],[3.9663338661193848,0.4577901363372803],[3.839568614959717,0.30431652069091797],[3.6860947608947754,0.1775517463684082],[3.510161876678467,0.08174467086791992],[3.316018581390381,0.021144390106201172],[3.1079134941101074,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":923772242,"isDeleted":false,"id":"sEOj2emtOPp_IHeQOnQj5","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":830.820143699646,"y":186.820143699646,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.179856300354004,"height":2.0719432830810547,"seed":1890098549,"groupIds":["vIr2szevGEhF_raCjaPmU","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810413360595703,0.021144866943359375],[-0.40224742889404297,0.08174514770507812],[-0.5781803131103516,0.1775522232055664],[-0.731654167175293,0.3043174743652344],[-0.8584194183349609,0.4577903747558594],[-0.9542255401611328,0.633723258972168],[-1.014826774597168,0.8278675079345703],[-1.035970687866211,1.0359716415405273],[-1.014826774597168,1.2440757751464844],[-0.9542255401611328,1.4382200241088867],[-0.8584194183349609,1.6141529083251953],[-0.731654167175293,1.7676258087158203],[-0.5781803131103516,1.8943910598754883],[-0.40224742889404297,1.9901981353759766],[-0.20810413360595703,2.0507984161376953],[0,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.1079139709472656,2.0719432830810547],[3.316019058227539,2.0507984161376953],[3.510162353515625,1.9901981353759766],[3.6860952377319336,1.8943910598754883],[3.8395681381225586,1.7676258087158203],[3.9663333892822266,1.6141529083251953],[4.062140464782715,1.4382200241088867],[4.12274169921875,1.2440757751464844],[4.143885612487793,1.0359716415405273],[4.12274169921875,0.8278675079345703],[4.062140464782715,0.633723258972168],[3.9663333892822266,0.4577903747558594],[3.8395681381225586,0.3043174743652344],[3.6860952377319336,0.1775522232055664],[3.510162353515625,0.08174514770507812],[3.316019058227539,0.021144866943359375],[3.1079139709472656,0],[0,0],[0,0]]},{"type":"line","version":61,"versionNonce":1059426510,"isDeleted":false,"id":"MpWvNtGWXGZtCon4tW0tq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":832.892086982727,"y":194.07194328308105,"strokeColor":"#00000000","backgroundColor":"#fff","width":5.1798553466796875,"height":2.071941375732422,"seed":1104273499,"groupIds":["vIr2szevGEhF_raCjaPmU","0jf-U7BSFJpgQqhNc0KpD","UMItHcH8iTgHzr7gsFUkN","Yoi9152wKReA_rvCRx3So"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"mFf9JRw4dAzXDtzrsLPr4","label":"Workflows","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.20810508728027344,0.021142959594726562],[-0.4022483825683594,0.08174514770507812],[-0.578181266784668,0.17755126953125],[-0.7316551208496094,0.30431556701660156],[-0.8584194183349609,0.4577903747558594],[-0.9542264938354492,0.6337223052978516],[-1.014826774597168,0.8278656005859375],[-1.0359716415405273,1.035970687866211],[-1.014826774597168,1.2440757751464844],[-0.9542264938354492,1.4382190704345703],[-0.8584194183349609,1.6141529083251953],[-0.7316551208496094,1.7676258087158203],[-0.578181266784668,1.8943901062011719],[-0.4022483825683594,1.9901962280273438],[-0.20810508728027344,2.0507984161376953],[0,2.071941375732422],[3.107913017272949,2.071941375732422],[3.107913017272949,2.071941375732422],[3.3160181045532227,2.0507984161376953],[3.5101613998413086,1.9901962280273438],[3.6860952377319336,1.8943901062011719],[3.8395681381225586,1.7676258087158203],[3.96633243560791,1.6141529083251953],[4.062140464782715,1.4382190704345703],[4.122740745544434,1.2440757751464844],[4.14388370513916,1.035970687866211],[4.122740745544434,0.8278656005859375],[4.062140464782715,0.6337223052978516],[3.96633243560791,0.4577903747558594],[3.8395681381225586,0.30431556701660156],[3.6860952377319336,0.17755126953125],[3.5101613998413086,0.08174514770507812],[3.3160181045532227,0.021142959594726562],[3.107913017272949,0],[0,0],[0,0]]},{"type":"line","version":30,"versionNonce":1548954386,"isDeleted":true,"id":"k6klevnhMcunbRx_RmoAa","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1376,"y":124,"strokeColor":"#202124","backgroundColor":"transparent","width":208,"height":4,"seed":1076187067,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[104,-4],[208,0]]},{"type":"text","version":29,"versionNonce":638994190,"isDeleted":true,"id":"cyPwroL_9zMsl150Fpotd","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1376,"y":133,"strokeColor":"#202124","backgroundColor":"transparent","width":91,"height":15,"seed":996466037,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"fontSize":12,"fontFamily":4,"text":"","baseline":11,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":""},{"id":"YMZc3qh-zTgnXg9S9t6Yn","type":"arrow","x":180,"y":521,"width":1.1368683772161603e-13,"height":79.79815673828114,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1457531125,"version":300,"versionNonce":580909266,"isDeleted":false,"boundElements":null,"updated":1697744829093,"link":null,"locked":false,"points":[[0,0],[-1.1368683772161603e-13,79.79815673828114]],"lastCommittedPoint":null,"startBinding":{"elementId":"nj3n8sIQkvq3qsdVAf1o9","focus":-4.841462769537617e-16,"gap":1},"endBinding":{"elementId":"aBkOKaVcG_fxXG48rXo6-","focus":0.2999999999999982,"gap":15.201843261718864},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"id":"8-TssCdzfk8wVOoQfRqdV","type":"arrow","x":180,"y":580,"width":0,"height":59,"angle":0,"strokeColor":"#202124","backgroundColor":"#202124","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"sharp","seed":1400184565,"version":349,"versionNonce":1377187150,"isDeleted":false,"boundElements":null,"updated":1697744829093,"link":null,"locked":false,"points":[[0,0],[0,-59]],"lastCommittedPoint":null,"startBinding":{"elementId":"mRifKViYW2QOIeaEO8xr-","focus":0,"gap":20},"endBinding":{"elementId":"nj3n8sIQkvq3qsdVAf1o9","focus":0,"gap":1},"startArrowhead":null,"endArrowhead":"triangle","fontFamily":2},{"type":"rectangle","version":69,"versionNonce":697110162,"isDeleted":false,"id":"mRifKViYW2QOIeaEO8xr-","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":60,"y":600,"strokeColor":"#202124","backgroundColor":"#FFF","width":240,"height":106,"seed":188303029,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"round","boundElements":[{"id":"8-TssCdzfk8wVOoQfRqdV","type":"arrow"}],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"container"}},{"type":"text","version":76,"versionNonce":1283349390,"isDeleted":false,"id":"aBkOKaVcG_fxXG48rXo6-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":614,"strokeColor":"#1A73E8","backgroundColor":"transparent","width":81,"height":23,"seed":1424714523,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"round","boundElements":[{"id":"YMZc3qh-zTgnXg9S9t6Yn","type":"arrow"}],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"fontSize":20,"fontFamily":2,"text":"Vertex AI","baseline":19,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Vertex AI"},{"type":"text","version":84,"versionNonce":97610834,"isDeleted":false,"id":"UId68GHaCaIauY3ZE3YFp","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":76,"y":638,"strokeColor":"#202124","backgroundColor":"transparent","width":98,"height":37,"seed":1378396181,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829093,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"fontSize":16,"fontFamily":2,"text":"\nGenerative AI","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"\nGenerative AI"},{"type":"line","version":67,"versionNonce":193444302,"isDeleted":false,"id":"RleDjHWSPdZ5vLs8xK9KU","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":281.9633045196533,"y":630.2981653213501,"strokeColor":"#00000000","backgroundColor":"#669df6","width":10.129972457885742,"height":8.601454734802246,"seed":1073324123,"groupIds":["Dw_6ytlpVTBJ6lNM2L85C","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.12380027770996094,-0.12568092346191406],[-0.2653388977050781,-0.22362327575683594],[-0.4204254150390625,-0.2931833267211914],[-0.5848636627197266,-0.33371543884277344],[-0.7544612884521484,-0.344573974609375],[-0.9250297546386719,-0.32511425018310547],[-1.0923709869384766,-0.2746915817260742],[-1.2522945404052734,-0.19266033172607422],[-9.96330451965332,6.206421852111816],[-9.96330451965332,6.48165225982666],[-9.96330451965332,6.48165225982666],[-9.780749320983887,6.479231834411621],[-9.607226371765137,6.511324882507324],[-9.446603775024414,6.575024604797363],[-9.302753448486328,6.667431831359863],[-9.179546356201172,6.785639762878418],[-9.080849647521973,6.926749229431152],[-9.010538101196289,7.087855339050293],[-8.972477912902832,7.266055107116699],[-8.970059394836426,7.448609352111816],[-9.002152442932129,7.622134208679199],[-9.065852165222168,7.782753944396973],[-9.158257484436035,7.926606178283691],[-9.276467323303223,8.049813270568848],[-9.41757583618164,8.14850902557373],[-9.578681945800781,8.218823432922363],[-9.756882667541504,8.256880760192871],[-9.96330451965332,8.256880760192871],[-9.665712356567383,8.206995964050293],[-9.399083137512207,8.064221382141113],[-0.16514015197753906,1.252293586730957],[-0.16514015197753906,1.252293586730957],[-0.04007530212402344,1.1279296875],[0.05611991882324219,0.985020637512207],[0.12296676635742188,0.828242301940918],[0.1599750518798828,0.6622714996337891],[0.16666793823242188,0.49178409576416016],[0.14255905151367188,0.3214597702026367],[0.08716392517089844,0.15597248077392578],[0,0],[0,0]]},{"type":"line","version":67,"versionNonce":491000338,"isDeleted":false,"id":"dnWYrfMeBDcPXGgMb15iT","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.8348627090454,"y":638.4587154388428,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":10.1350257396698,"height":8.601454734802246,"seed":238249685,"groupIds":["_Ip_8d5IIMt821GBi_8XJ","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.17820072174072266,-0.03862190246582031],[-0.3393058776855469,-0.1103057861328125],[-0.48041439056396484,-0.2106952667236328],[-0.5986232757568359,-0.3354358673095703],[-0.6910295486450195,-0.48017311096191406],[-0.754730224609375,-0.6405525207519531],[-0.7868223190307617,-0.8122215270996094],[-0.7844028472900391,-0.9908256530761719],[-0.6966743469238281,-1.2817497253417969],[-0.5263757705688477,-1.5223617553710938],[-0.28899097442626953,-1.6933059692382812],[-0.1499786376953125,-1.746603012084961],[0,-1.775228500366211],[0,-2.050457000732422],[-8.724770784378052,-8.449540138244629],[-8.724770784378052,-8.449540138244629],[-8.880178689956665,-8.531572341918945],[-9.044294834136963,-8.581995010375977],[-9.212926626205444,-8.601454734802246],[-9.38188099861145,-8.590595245361328],[-9.546964883804321,-8.550063133239746],[-9.703985452651978,-8.480504035949707],[-9.84874963760376,-8.382560729980469],[-9.977064490318298,-8.256880760192871],[-10.06304681301117,-8.100908279418945],[-10.115324258804321,-7.935420989990234],[-10.1350257396698,-7.7650957107543945],[-10.123280048370361,-7.594610214233398],[-10.081216216087341,-7.4286394119262695],[-10.009963035583496,-7.271860122680664],[-9.910649299621582,-7.128951072692871],[-9.784404039382935,-7.004586219787598],[-0.5504589080810547,-0.1926593780517578],[-0.5504589080810547,-0.1926593780517578],[-0.2855501174926758,-0.06020545959472656],[0,0],[0,0]]},{"type":"line","version":67,"versionNonce":1447776270,"isDeleted":false,"id":"t24XZRfgwWTDt66m5kNtH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":272,"y":635.8440361022949,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":3.660550117492676,"height":3.660552978515625,"seed":775609595,"groupIds":["fT8OS0SIAkNoTYqlawKMx","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.36707115173339844,0.03744316101074219],[-0.7097902297973633,0.14471054077148438],[-1.0205793380737305,0.31422996520996094],[-1.2918577194213867,0.5384197235107422],[-1.5160465240478516,0.8096961975097656],[-1.6855649948120117,1.1204872131347656],[-1.7928333282470703,1.463205337524414],[-1.8302745819091797,1.8302764892578125],[-1.7928333282470703,2.197347640991211],[-1.6855649948120117,2.5400657653808594],[-1.5160465240478516,2.8508567810058594],[-1.2918577194213867,3.122133255004883],[-1.0205793380737305,3.346323013305664],[-0.7097902297973633,3.5158424377441406],[-0.36707115173339844,3.623109817504883],[0,3.660552978515625],[0.36707210540771484,3.623109817504883],[0.7097911834716797,3.5158424377441406],[1.0205793380737305,3.346323013305664],[1.2918586730957031,3.122133255004883],[1.5160455703735352,2.8508567810058594],[1.6855659484863281,2.5400657653808594],[1.7928342819213867,2.197347640991211],[1.830275535583496,1.8302764892578125],[1.7933998107910156,1.463205337524414],[1.6875009536743164,1.1204872131347656],[1.519674301147461,0.8096961975097656],[1.2970190048217773,0.5384197235107422],[1.026627540588379,0.31422996520996094],[0.7155971527099609,0.14471054077148438],[0.37102222442626953,0.03744316101074219],[0,0],[0,0]]},{"type":"line","version":67,"versionNonce":47972306,"isDeleted":false,"id":"JN3nYPiGQ9IlHgC1gay9k","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":272,"y":638.555046081543,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.7889909744262695,"height":1.788991928100586,"seed":220841013,"groupIds":["fT8OS0SIAkNoTYqlawKMx","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18067264556884766,-0.018115997314453125],[-0.3487663269042969,-0.07009696960449219],[-0.5007343292236328,-0.15239715576171875],[-0.6330270767211914,-0.26146697998046875],[-0.7420978546142578,-0.39376068115234375],[-0.8243980407714844,-0.5457286834716797],[-0.8763790130615234,-0.7138214111328125],[-0.894495964050293,-0.8944950103759766],[-0.8763790130615234,-1.0751686096191406],[-0.8243980407714844,-1.2432613372802734],[-0.7420978546142578,-1.3952312469482422],[-0.6330270767211914,-1.5275230407714844],[-0.5007343292236328,-1.6365947723388672],[-0.3487663269042969,-1.718893051147461],[-0.18067264556884766,-1.7708740234375],[0,-1.788991928100586],[0.18067359924316406,-1.7708740234375],[0.3487672805786133,-1.718893051147461],[0.5007343292236328,-1.6365947723388672],[0.6330280303955078,-1.5275230407714844],[0.7420978546142578,-1.3952312469482422],[0.8243989944458008,-1.2432613372802734],[0.8763799667358398,-1.0751686096191406],[0.8944950103759766,-0.8944950103759766],[0.8944950103759766,-0.8807334899902344],[0.8944950103759766,-0.8807334899902344],[0.8769445419311523,-0.7006511688232422],[0.8263339996337891,-0.5341167449951172],[0.7457265853881836,-0.3843536376953125],[0.638188362121582,-0.25458717346191406],[0.5067825317382812,-0.1480426788330078],[0.35457324981689453,-0.0679473876953125],[0.18462467193603516,-0.017522811889648438],[0,0],[0,0],[0,0]]},{"type":"line","version":67,"versionNonce":683810382,"isDeleted":false,"id":"LaZwui6OVRp0af7tja-gk","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":272,"y":638.555046081543,"strokeColor":"#00000000","backgroundColor":"#fff","width":1.7889909744262695,"height":1.788991928100586,"seed":107709851,"groupIds":["cEzi49hUg5ek1UyElRaJX","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18067264556884766,-0.018115997314453125],[-0.3487663269042969,-0.07009696960449219],[-0.5007343292236328,-0.15239715576171875],[-0.6330270767211914,-0.26146697998046875],[-0.7420978546142578,-0.39376068115234375],[-0.8243980407714844,-0.5457286834716797],[-0.8763790130615234,-0.7138214111328125],[-0.894495964050293,-0.8944950103759766],[-0.8763790130615234,-1.0751686096191406],[-0.8243980407714844,-1.2432613372802734],[-0.7420978546142578,-1.3952312469482422],[-0.6330270767211914,-1.5275230407714844],[-0.5007343292236328,-1.6365947723388672],[-0.3487663269042969,-1.718893051147461],[-0.18067264556884766,-1.7708740234375],[0,-1.788991928100586],[0.18067359924316406,-1.7708740234375],[0.3487672805786133,-1.718893051147461],[0.5007343292236328,-1.6365947723388672],[0.6330280303955078,-1.5275230407714844],[0.7420978546142578,-1.3952312469482422],[0.8243989944458008,-1.2432613372802734],[0.8763799667358398,-1.0751686096191406],[0.8944950103759766,-0.8944950103759766],[0.8944950103759766,-0.8807334899902344],[0.8944950103759766,-0.8807334899902344],[0.8769445419311523,-0.7006511688232422],[0.8263339996337891,-0.5341167449951172],[0.7457265853881836,-0.3843536376953125],[0.638188362121582,-0.25458717346191406],[0.5067825317382812,-0.1480426788330078],[0.35457324981689453,-0.0679473876953125],[0.18462467193603516,-0.017522811889648438],[0,0],[0,0],[0,0]]},{"type":"line","version":67,"versionNonce":1387279762,"isDeleted":false,"id":"jouIBE4LfdmaFlEu9N9rx","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":264.5275230407715,"y":620.6100916862488,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8727693557739258,"height":4.322310358285904,"seed":204305813,"groupIds":["EQTZGybAUJkO5fRBYiinq","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18583345413208008,-0.01932525634765625],[-0.3590884208679199,-0.07461261749267578],[-0.5162162780761719,-0.16183137893676758],[-0.6536698341369629,-0.276949405670166],[-0.7679007053375244,-0.41593503952026367],[-0.8553612232208252,-0.5747561454772949],[-0.912503719329834,-0.7493815422058105],[-0.9357798099517822,-0.9357795715332031],[-0.9357798099517822,-3.275229334831238],[-0.9357798099517822,-3.275229334831238],[-0.9369893074035645,-3.4680510759353638],[-0.9015910625457764,-3.6515194177627563],[-0.8329720497131348,-3.8214412927627563],[-0.73451828956604,-3.973623752593994],[-0.609616756439209,-4.103873908519745],[-0.4616541862487793,-4.2079987823963165],[-0.29401683807373047,-4.281805396080017],[-0.1100921630859375,-4.321100860834122],[0.08272981643676758,-4.322310358285904],[0.26619815826416016,-4.286912202835083],[0.43612051010131836,-4.218293011188507],[0.5883026123046875,-4.119839370250702],[0.7185525894165039,-3.9949379563331604],[0.8226776123046875,-3.846975266933441],[0.896484375,-3.679338037967682],[0.9357800483703613,-3.4954127073287964],[0.9357800483703613,-3.275229334831238],[0.9357800483703613,-0.9357795715332031],[0.9357800483703613,-0.9357795715332031],[0.9209704399108887,-0.7454307079315186],[0.8689074516296387,-0.5689506530761719],[0.7836246490478516,-0.40988731384277344],[0.6691513061523438,-0.2717890739440918],[0.5295209884643555,-0.1582026481628418],[0.36876440048217773,-0.0726776123046875],[0.19091320037841797,-0.01876068115234375],[0,0],[0,0]]},{"type":"ellipse","version":67,"versionNonce":398795918,"isDeleted":false,"id":"hfZMS1Oben49M6ky0b2ME","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":263.5504586696625,"y":626.9954137802124,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":800987707,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":234337106,"isDeleted":false,"id":"pQUIqfVHtHAqsezSWOD4V","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":263.5504586696625,"y":624.2431192398071,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":1182006005,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":890069710,"isDeleted":false,"id":"Ny3r2JQhgdjnwWijSCHXb","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":263.5504586696625,"y":621.4770641326904,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":118823643,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"line","version":67,"versionNonce":1997109522,"isDeleted":false,"id":"hdKMNFO-MAQz3Pgxb2Y8J","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":279.4724769592285,"y":623.3486242294312,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.871561050415039,"height":4.224770784378052,"seed":1954731093,"groupIds":["2BpdImuEaXDI_0Za0j3W6","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.19034957885742188,-0.019351959228515625],[-0.36682701110839844,-0.0748281478881836],[-0.5258922576904297,-0.16255760192871094],[-0.6639900207519531,-0.2786698341369629],[-0.7775764465332031,-0.4192948341369629],[-0.8631019592285156,-0.5805621147155762],[-0.9170169830322266,-0.758601188659668],[-0.9357795715332031,-0.9495415687561035],[-0.9357795715332031,-3.2889909744262695],[-0.9357795715332031,-3.2889909744262695],[-0.9170169830322266,-3.475389003753662],[-0.8631019592285156,-3.650014638900757],[-0.7775764465332031,-3.808835744857788],[-0.6639900207519531,-3.9478213787078857],[-0.5258922576904297,-4.062939405441284],[-0.36682701110839844,-4.150157928466797],[-0.19034957885742188,-4.205445766448975],[0,-4.224770784378052],[0.19034957885742188,-4.206010103225708],[0.36682891845703125,-4.152093172073364],[0.5258941650390625,-4.066567897796631],[0.6639919281005859,-3.952981948852539],[0.7775764465332031,-3.8148834705352783],[0.8631038665771484,-3.65582013130188],[0.9170188903808594,-3.4793403148651123],[0.9357814788818359,-3.2889909744262695],[0.9357814788818359,-0.9495415687561035],[0.9357814788818359,-0.9495415687561035],[0.9215354919433594,-0.758601188659668],[0.8708438873291016,-0.5805621147155762],[0.7872524261474609,-0.4192948341369629],[0.6743125915527344,-0.2786698341369629],[0.5355701446533203,-0.16255760192871094],[0.3745708465576172,-0.0748281478881836],[0.19486427307128906,-0.019351959228515625],[0,0],[0,0],[0,0]]},{"type":"ellipse","version":67,"versionNonce":1932777742,"isDeleted":false,"id":"nZM1ev6odlVyxqQGjK_-0","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":278.55045890808105,"y":627.0091743469238,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":688064379,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":1834780370,"isDeleted":false,"id":"9SsLSN0mjvm5YFmEjY_7a","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":278.55045890808105,"y":624.2018346786499,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":573538741,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":162629454,"isDeleted":false,"id":"7hL5CNQcISIlSDlPwTTby","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":278.55045890808105,"y":616.385321110487,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":2076860443,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"line","version":67,"versionNonce":1233640594,"isDeleted":false,"id":"KuvZKZNpKb5RpRQ8eap1i","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":272,"y":631.6880741119385,"strokeColor":"#00000000","backgroundColor":"#669df6","width":1.8715600967407227,"height":4.147927284240723,"seed":1151304469,"groupIds":["WcimY1jo6cZrq1K79n622","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18583297729492188,-0.01932525634765625],[-0.3590888977050781,-0.07461357116699219],[-0.5162162780761719,-0.1618328094482422],[-0.6536703109741211,-0.2769498825073242],[-0.7679004669189453,-0.4159355163574219],[-0.8553609848022461,-0.5747566223144531],[-0.9125041961669922,-0.7493829727172852],[-0.9357795715332031,-0.9357805252075195],[-0.9357795715332031,-3.316514015197754],[-0.9357795715332031,-3.316514015197754],[-0.896484375,-3.504955291748047],[-0.8226766586303711,-3.6758174896240234],[-0.7185525894165039,-3.8257150650024414],[-0.5883016586303711,-3.9512624740600586],[-0.43612003326416016,-4.049070358276367],[-0.26619815826416016,-4.115755081176758],[-0.08272933959960938,-4.147927284240723],[0.1100921630859375,-4.142202377319336],[0.2703113555908203,-4.108416557312012],[0.4190807342529297,-4.049957275390625],[0.5539798736572266,-3.969243049621582],[0.6725921630859375,-3.8686933517456055],[0.7724971771240234,-3.750725746154785],[0.8512763977050781,-3.6177616119384766],[0.9065103530883789,-3.472217559814453],[0.9357805252075195,-3.316514015197754],[0.9357805252075195,-0.9633035659790039],[0.9357805252075195,-0.9633035659790039],[0.9254856109619141,-0.7723360061645508],[0.8766489028930664,-0.5941085815429688],[0.793299674987793,-0.4323310852050781],[0.6794719696044922,-0.2907114028930664],[0.5391969680786133,-0.1729593276977539],[0.37650489807128906,-0.08278369903564453],[0.19542884826660156,-0.023894309997558594],[0,0],[0,0],[0,0]]},{"type":"ellipse","version":67,"versionNonce":1491037582,"isDeleted":false,"id":"vJz57sguCiVj0dvx_fTe6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.05045986175537,"y":632.5412845611572,"strokeColor":"transparent","backgroundColor":"#669df6","width":1.8990826606750488,"height":1.8990826606750488,"seed":2036180155,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":960658002,"isDeleted":false,"id":"9tUhsXHyvxY2PZ6B1tAyV","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.05045986175537,"y":624.6834859848022,"strokeColor":"transparent","backgroundColor":"#669df6","width":1.8990826606750488,"height":1.8990826606750488,"seed":273176693,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":1308003278,"isDeleted":false,"id":"w7zoRkhK7fA8VNk55cMa1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":271.05045986175537,"y":621.9174313545227,"strokeColor":"transparent","backgroundColor":"#669df6","width":1.8990826606750488,"height":1.8990826606750488,"seed":962549083,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"line","version":67,"versionNonce":459497490,"isDeleted":false,"id":"9zIhitQb3sN0YwVek67Rf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":275.74312019348145,"y":626.1284408569336,"strokeColor":"#00000000","backgroundColor":"#4285f4","width":1.8727693557739258,"height":4.322310447692871,"seed":250577365,"groupIds":["bx6NJhMDLsxYN6EgQeT44","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.1858348846435547,-0.01932525634765625],[-0.3590888977050781,-0.07461261749267578],[-0.5162172317504883,-0.16183185577392578],[-0.6536703109741211,-0.2769498825073242],[-0.7679014205932617,-0.4159355163574219],[-0.8553619384765625,-0.5747566223144531],[-0.9125041961669922,-0.7493820190429688],[-0.9357805252075195,-0.9357795715332031],[-0.9357805252075195,-3.2752299308776855],[-0.9357805252075195,-3.2752299308776855],[-0.9369897842407227,-3.4680519104003906],[-0.9015922546386719,-3.651519775390625],[-0.832972526550293,-3.821441650390625],[-0.7345190048217773,-3.9736242294311523],[-0.6096172332763672,-4.103874206542969],[-0.4616546630859375,-4.207999229431152],[-0.2940177917480469,-4.281805992126465],[-0.1100921630859375,-4.321101188659668],[0.08273029327392578,-4.322310447692871],[0.26619720458984375,-4.28691291809082],[0.43611907958984375,-4.218293190002441],[0.5883026123046875,-4.119840145111084],[0.7185516357421875,-3.994938373565674],[0.8226776123046875,-3.846975803375244],[0.896484375,-3.6793384552001953],[0.9357795715332031,-3.495412826538086],[0.9357795715332031,-3.2752299308776855],[0.9357795715332031,-0.9357795715332031],[0.9357795715332031,-0.9357795715332031],[0.9164543151855469,-0.7454309463500977],[0.8611660003662109,-0.5689516067504883],[0.7739486694335938,-0.40988826751708984],[0.6588306427001953,-0.27178955078125],[0.5198440551757812,-0.158203125],[0.36102294921875,-0.0726776123046875],[0.18639755249023438,-0.018761634826660156],[0,0],[0,0]]},{"type":"ellipse","version":67,"versionNonce":1192223246,"isDeleted":false,"id":"IDI049JEm9FBROywIPynj","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":274.8073396682739,"y":619.1376147270203,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":992080379,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":1541508562,"isDeleted":false,"id":"GSsqExs3sx_N4bV7y6CXw","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":274.8073396682739,"y":629.7201833724976,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":1974107957,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":1998876750,"isDeleted":false,"id":"h5KIGcvl-GT-eHqRv3Zl3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":274.8073396682739,"y":626.9541282653809,"strokeColor":"transparent","backgroundColor":"#4285f4","width":1.8990826606750488,"height":1.8990826606750488,"seed":1873279643,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":1339294610,"isDeleted":false,"id":"Ip2f33ZgWVSsOqiUW4gh7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":267.30733919143677,"y":629.7201833724976,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":987680917,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":1242379918,"isDeleted":false,"id":"DLzlfqvIelbepcc3G3vp6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":267.30733919143677,"y":621.9174313545227,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":61075259,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"ellipse","version":67,"versionNonce":292667730,"isDeleted":false,"id":"zjkws0EHUp1DQAc1qM7Vn","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":267.30733919143677,"y":619.1376147270203,"strokeColor":"transparent","backgroundColor":"#aecbfa","width":1.8990826606750488,"height":1.8990826606750488,"seed":1816262133,"groupIds":["AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"}},{"type":"line","version":67,"versionNonce":1216558286,"isDeleted":false,"id":"M3ZGenfnI2G0YGzZEchTM","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":268.2706422805786,"y":628.8532114028931,"strokeColor":"#00000000","backgroundColor":"#aecbfa","width":1.8715600967407227,"height":4.2110090255737305,"seed":1769492443,"groupIds":["qp5Dzte1gH3A4Cs13JkTF","AzPA9An__d6O1UFM0dOL6","obvkXP-RtXlSw-r57bcUf","TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"sharp","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"customData":{"boxId":"DHD8lZmI5nWWTfwiOXDm8","label":"Vertex AI","type":"child"},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":null,"points":[[0,0],[0,0],[-0.18586063385009766,-0.0181427001953125],[-0.35930299758911133,-0.0703125],[-0.516942024230957,-0.1531229019165039],[-0.6553897857666016,-0.2631874084472656],[-0.7712602615356445,-0.39712047576904297],[-0.8611669540405273,-0.5515336990356445],[-0.921722412109375,-0.7230415344238281],[-0.9495410919189453,-0.9082565307617188],[-0.9495410919189453,-3.2752294540405273],[-0.9495410919189453,-3.2752294540405273],[-0.9307804107666016,-3.461627960205078],[-0.8768630027770996,-3.6362533569335938],[-0.7913379669189453,-3.7950735092163086],[-0.6777524948120117,-3.9340600967407227],[-0.5396537780761719,-4.049178123474121],[-0.38059091567993164,-4.136396408081055],[-0.20411014556884766,-4.191683769226074],[-0.013761520385742188,-4.2110090255737305],[0.17658710479736328,-4.192248344421387],[0.35306835174560547,-4.138331413269043],[0.5121307373046875,-4.052806854248047],[0.6502294540405273,-3.939220428466797],[0.7638149261474609,-3.801121711730957],[0.8493404388427734,-3.642059326171875],[0.9032583236694336,-3.465579032897949],[0.9220190048217773,-3.2752294540405273],[0.9220190048217773,-0.9082565307617188],[0.9220190048217773,-0.9082565307617188],[0.8987693786621094,-0.7230415344238281],[0.8418149948120117,-0.5515336990356445],[0.7548646926879883,-0.39712047576904297],[0.6416282653808594,-0.2631874084472656],[0.5058145523071289,-0.1531229019165039],[0.3511323928833008,-0.0703125],[0.1812915802001953,-0.0181427001953125],[0,0],[0,0]]},{"type":"ellipse","version":200,"versionNonce":1544668946,"isDeleted":true,"id":"2_8roWsBYBNnWs0EWUhS_","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":560,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1627955157,"groupIds":["TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"round","boundElements":[{"id":"B5CoSiyXMhd6bEXHvAg5w","type":"text"},{"id":"B5CoSiyXMhd6bEXHvAg5w","type":"text"},{"id":"B5CoSiyXMhd6bEXHvAg5w","type":"text"},{"id":"B5CoSiyXMhd6bEXHvAg5w","type":"text"},{"id":"B5CoSiyXMhd6bEXHvAg5w","type":"text"},{"type":"text","id":"B5CoSiyXMhd6bEXHvAg5w"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":195,"versionNonce":2082433806,"isDeleted":true,"id":"B5CoSiyXMhd6bEXHvAg5w","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":305,"y":565,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":154252283,"groupIds":["TW3-8nxeZVade15VCPkaJ"],"strokeSharpness":"round","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"6","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"2_8roWsBYBNnWs0EWUhS_","originalText":"6"},{"id":"1i3bYbit3H_yyJyPhiZrP","type":"text","x":504.64283970424094,"y":791.9999912806918,"width":9,"height":32,"angle":0,"strokeColor":"#202124","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":772108027,"version":25,"versionNonce":1747653842,"isDeleted":true,"boundElements":null,"updated":1697744829094,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"type":"ellipse","version":142,"versionNonce":1398462798,"isDeleted":true,"id":"nEG-690muMOqyETqfiDTv","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":120,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1221929275,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"z5QJUcF7r87HiVuyzYqN0","type":"text"},{"type":"text","id":"z5QJUcF7r87HiVuyzYqN0"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":129,"versionNonce":1196731026,"isDeleted":true,"id":"z5QJUcF7r87HiVuyzYqN0","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":865,"y":125,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":962157557,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"2","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"nEG-690muMOqyETqfiDTv","originalText":"2"},{"type":"ellipse","version":126,"versionNonce":93224846,"isDeleted":true,"id":"7cuclThNKzJF7dmbk6byX","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":320,"y":40,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":217357842,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"opEbrk8Z0aDQrLQYT7GC7","type":"text"},{"type":"text","id":"opEbrk8Z0aDQrLQYT7GC7"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":115,"versionNonce":1078298706,"isDeleted":true,"id":"opEbrk8Z0aDQrLQYT7GC7","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":325,"y":45,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":1622770702,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"1","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"7cuclThNKzJF7dmbk6byX","originalText":"1"},{"type":"ellipse","version":147,"versionNonce":1995660750,"isDeleted":true,"id":"E42YrbVd5BitjPkB46-74","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":380,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1541926034,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"7r2B6ClK7aVDyKawxt6hX","type":"text"},{"id":"7r2B6ClK7aVDyKawxt6hX","type":"text"},{"type":"text","id":"7r2B6ClK7aVDyKawxt6hX"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":174,"versionNonce":818199374,"isDeleted":true,"id":"wLSxQUeti5ekpLFrqhwFu","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":380,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1538703250,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"zb77Wa6SJQ4P90yfDg491","type":"text"},{"id":"zb77Wa6SJQ4P90yfDg491","type":"text"},{"id":"zb77Wa6SJQ4P90yfDg491","type":"text"},{"type":"text","id":"zb77Wa6SJQ4P90yfDg491"}],"updated":1697744895118,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":192,"versionNonce":2118387662,"isDeleted":true,"id":"AZUP-G4sIN7KkiXbxc__8","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":60,"y":300,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":906150606,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"yWveCsn-MrHuKHOANs7r6","type":"text"},{"id":"yWveCsn-MrHuKHOANs7r6","type":"text"},{"id":"yWveCsn-MrHuKHOANs7r6","type":"text"},{"id":"yWveCsn-MrHuKHOANs7r6","type":"text"},{"type":"text","id":"yWveCsn-MrHuKHOANs7r6"}],"updated":1697744912881,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":214,"versionNonce":1951687950,"isDeleted":true,"id":"9LCFWeFCmYBswqci0VxgF","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":220,"y":60,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1854533390,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"veKn7qSRUpaXuTl7aPDBX","type":"text"},{"id":"veKn7qSRUpaXuTl7aPDBX","type":"text"},{"id":"veKn7qSRUpaXuTl7aPDBX","type":"text"},{"id":"veKn7qSRUpaXuTl7aPDBX","type":"text"},{"id":"veKn7qSRUpaXuTl7aPDBX","type":"text"},{"type":"text","id":"veKn7qSRUpaXuTl7aPDBX"}],"updated":1697744967371,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":230,"versionNonce":1620361806,"isDeleted":true,"id":"8kVd-1EPCbqsOfMd3y6Yv","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":860,"y":120,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":1291284050,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"YG8doicVdzl1o1M79zc9f","type":"text"},{"id":"YG8doicVdzl1o1M79zc9f","type":"text"},{"id":"YG8doicVdzl1o1M79zc9f","type":"text"},{"id":"YG8doicVdzl1o1M79zc9f","type":"text"},{"id":"YG8doicVdzl1o1M79zc9f","type":"text"},{"id":"YG8doicVdzl1o1M79zc9f","type":"text"},{"type":"text","id":"YG8doicVdzl1o1M79zc9f"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"ellipse","version":248,"versionNonce":539951182,"isDeleted":true,"id":"QCWtZan_IRfiH5QaH_i8n","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":300,"y":560,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":247407822,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"id":"sUpSCTvMoMgEozyEy9YWD","type":"text"},{"type":"text","id":"sUpSCTvMoMgEozyEy9YWD"}],"updated":1697744882443,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":133,"versionNonce":94587022,"isDeleted":true,"id":"7r2B6ClK7aVDyKawxt6hX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":865,"y":385,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":675831182,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"5","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"E42YrbVd5BitjPkB46-74","originalText":"5"},{"type":"text","version":159,"versionNonce":930211986,"isDeleted":true,"id":"zb77Wa6SJQ4P90yfDg491","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":305,"y":385,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":1875131022,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744895118,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"4","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"wLSxQUeti5ekpLFrqhwFu","originalText":"4"},{"type":"text","version":176,"versionNonce":2109449234,"isDeleted":true,"id":"yWveCsn-MrHuKHOANs7r6","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":65,"y":305,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":848959762,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744912881,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"3","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"AZUP-G4sIN7KkiXbxc__8","originalText":"3"},{"type":"text","version":197,"versionNonce":1968880338,"isDeleted":true,"id":"veKn7qSRUpaXuTl7aPDBX","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":225,"y":65,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":177918162,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744967371,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"1","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"9LCFWeFCmYBswqci0VxgF","originalText":"1"},{"type":"text","version":212,"versionNonce":316210446,"isDeleted":true,"id":"YG8doicVdzl1o1M79zc9f","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":865,"y":125,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":859494350,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"2","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"8kVd-1EPCbqsOfMd3y6Yv","originalText":"2"},{"type":"text","version":229,"versionNonce":2121954194,"isDeleted":true,"id":"sUpSCTvMoMgEozyEy9YWD","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":305,"y":565,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":466409234,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744882443,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"6","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"QCWtZan_IRfiH5QaH_i8n","originalText":"6"},{"type":"ellipse","version":174,"versionNonce":1091709774,"isDeleted":true,"id":"vaJcRJgdU4o6NTvljR1_1","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":70,"y":310,"strokeColor":"#000000","backgroundColor":"#000000","width":40,"height":42,"seed":625554770,"groupIds":[],"strokeSharpness":"round","boundElements":[{"id":"7b1BYUz_FZZBPzsVl9a6C","type":"text"},{"id":"7b1BYUz_FZZBPzsVl9a6C","type":"text"},{"id":"7b1BYUz_FZZBPzsVl9a6C","type":"text"},{"type":"text","id":"7b1BYUz_FZZBPzsVl9a6C"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"type":"text","version":166,"versionNonce":821262482,"isDeleted":true,"id":"7b1BYUz_FZZBPzsVl9a6C","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":75,"y":315,"strokeColor":"#ffffff","backgroundColor":"#000000","width":30,"height":32,"seed":386728142,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1697744829094,"link":null,"locked":false,"fontSize":28,"fontFamily":2,"text":"3","baseline":25,"textAlign":"center","verticalAlign":"middle","containerId":"vaJcRJgdU4o6NTvljR1_1","originalText":"3"},{"id":"Zc0Shtd0xzmFKRCjcSK2t","type":"text","x":1065,"y":84,"width":70,"height":32,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1805411282,"version":8,"versionNonce":613126542,"isDeleted":true,"boundElements":null,"updated":1697744829094,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"p8Bi6ZgIfMembXVaHAtS2","originalText":""},{"id":"xpBdVN_1k86nBKwPxUD8Y","type":"text","x":1075,"y":94,"width":70,"height":32,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":633246798,"version":8,"versionNonce":1759155794,"isDeleted":true,"boundElements":null,"updated":1697744829094,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"p8Bi6ZgIfMembXVaHAtS2","originalText":""},{"id":"M1tPt4058Zp3YSQ0bw8UQ","type":"text","x":1072.0202462332588,"y":60.611066545758774,"width":9,"height":32,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1454259918,"version":6,"versionNonce":410922958,"isDeleted":true,"boundElements":null,"updated":1697744829094,"link":null,"locked":false,"text":"","fontSize":28,"fontFamily":2,"textAlign":"left","verticalAlign":"top","baseline":25,"containerId":null,"originalText":""},{"id":"p8Bi6ZgIfMembXVaHAtS2","type":"ellipse","x":860,"y":120,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["nL1rl8Za5qvqtkv5Y5Qu9"],"strokeSharpness":"round","seed":781690898,"version":37,"versionNonce":1503132690,"isDeleted":true,"boundElements":[{"type":"text","id":"AHFZx9U-72RwAbzrO2C9e"}],"updated":1697744829094,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"AHFZx9U-72RwAbzrO2C9e","type":"text","x":865,"y":125,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["nL1rl8Za5qvqtkv5Y5Qu9"],"strokeSharpness":"round","seed":281733842,"version":156,"versionNonce":688064014,"isDeleted":true,"boundElements":null,"updated":1697744829094,"link":null,"locked":false,"text":"2","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"p8Bi6ZgIfMembXVaHAtS2","originalText":"2"},{"id":"Ky9mwfK9223ZEx2JlsBIl","type":"ellipse","x":860,"y":380,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["KSaQN6TukoETMxMFCubQ2"],"strokeSharpness":"round","seed":173940626,"version":57,"versionNonce":74622414,"isDeleted":true,"boundElements":[{"id":"2S-F5SeyTZ_JAzO5u_9Bb","type":"text"},{"type":"text","id":"2S-F5SeyTZ_JAzO5u_9Bb"}],"updated":1697744869812,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"2S-F5SeyTZ_JAzO5u_9Bb","type":"text","x":865,"y":385,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":["KSaQN6TukoETMxMFCubQ2"],"strokeSharpness":"round","seed":1774377614,"version":175,"versionNonce":768468498,"isDeleted":true,"boundElements":null,"updated":1697744869812,"link":null,"locked":false,"text":"4","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"Ky9mwfK9223ZEx2JlsBIl","originalText":"4"},{"id":"7WqARZJTwXgEeTckHL-Ip","type":"ellipse","x":860,"y":120,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":474209358,"version":28,"versionNonce":774777358,"isDeleted":false,"boundElements":[{"type":"text","id":"jo-pf5JvYea-s7CjBTHpD"}],"updated":1697744856560,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"M-2KfBQZsM_IIKRp_Jvvy","type":"ellipse","x":860,"y":380,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1574548238,"version":41,"versionNonce":160093966,"isDeleted":false,"boundElements":[{"id":"ql49vLJSzV-yNPv9wCOMR","type":"text"},{"type":"text","id":"ql49vLJSzV-yNPv9wCOMR"}],"updated":1697744876453,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"zGPC5UswF07LVN2PLO3uk","type":"ellipse","x":63,"y":291,"width":40,"height":42.666666666666664,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":934227666,"version":121,"versionNonce":848573394,"isDeleted":false,"boundElements":[{"id":"skZg-0s0ptWmNiGx2_jQQ","type":"text"},{"id":"skZg-0s0ptWmNiGx2_jQQ","type":"text"},{"type":"text","id":"skZg-0s0ptWmNiGx2_jQQ"}],"updated":1697744962917,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"5VT2N3ZPeIAulUAmcIPYs","type":"ellipse","x":223,"y":66,"width":40,"height":42.666666666666664,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":383199822,"version":189,"versionNonce":787572050,"isDeleted":false,"boundElements":[{"id":"7KpFV1HZnKGVtTpt7HR7o","type":"text"},{"id":"7KpFV1HZnKGVtTpt7HR7o","type":"text"},{"id":"7KpFV1HZnKGVtTpt7HR7o","type":"text"},{"type":"text","id":"7KpFV1HZnKGVtTpt7HR7o"}],"updated":1697745000882,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"jEx3LWHTt1zxd3MH4I4Fy","type":"ellipse","x":300,"y":560,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1249667282,"version":57,"versionNonce":1714357262,"isDeleted":false,"boundElements":[{"id":"OfkE2v73G1EJzX01GeYNe","type":"text"},{"id":"OfkE2v73G1EJzX01GeYNe","type":"text"},{"type":"text","id":"OfkE2v73G1EJzX01GeYNe"}],"updated":1697744889848,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"7bNxSaQYQUiWcbJGwodxu","type":"ellipse","x":300,"y":380,"width":40,"height":42,"angle":0,"strokeColor":"#000000","backgroundColor":"#000000","fillStyle":"hachure","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":558618766,"version":70,"versionNonce":1363278990,"isDeleted":false,"boundElements":[{"id":"PMXN2xyUqG0RetvkkPj-4","type":"text"},{"id":"PMXN2xyUqG0RetvkkPj-4","type":"text"},{"id":"PMXN2xyUqG0RetvkkPj-4","type":"text"},{"type":"text","id":"PMXN2xyUqG0RetvkkPj-4"}],"updated":1697744900994,"link":null,"locked":false,"endArrowhead":"triangle","fontFamily":2},{"id":"jo-pf5JvYea-s7CjBTHpD","type":"text","x":865,"y":125,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":161016018,"version":27,"versionNonce":1963850066,"isDeleted":false,"boundElements":null,"updated":1697744861763,"link":null,"locked":false,"text":"2","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"7WqARZJTwXgEeTckHL-Ip","originalText":"2"},{"id":"ql49vLJSzV-yNPv9wCOMR","type":"text","x":865,"y":385,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1276726482,"version":40,"versionNonce":9511186,"isDeleted":false,"boundElements":null,"updated":1697744903209,"link":null,"locked":false,"text":"5","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"M-2KfBQZsM_IIKRp_Jvvy","originalText":"5"},{"id":"skZg-0s0ptWmNiGx2_jQQ","type":"text","x":68,"y":296.3333333333333,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1094541134,"version":92,"versionNonce":1290978834,"isDeleted":false,"boundElements":null,"updated":1697744960278,"link":null,"locked":false,"text":"3","fontSize":28.000000000000004,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"zGPC5UswF07LVN2PLO3uk","originalText":"3"},{"id":"7KpFV1HZnKGVtTpt7HR7o","type":"text","x":228,"y":71.33333333333333,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1161947538,"version":160,"versionNonce":1663914638,"isDeleted":false,"boundElements":null,"updated":1697744998951,"link":null,"locked":false,"text":"1","fontSize":28.000000000000004,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"5VT2N3ZPeIAulUAmcIPYs","originalText":"1"},{"id":"OfkE2v73G1EJzX01GeYNe","type":"text","x":305,"y":565,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":2021180750,"version":54,"versionNonce":635903506,"isDeleted":false,"boundElements":null,"updated":1697744886290,"link":null,"locked":false,"text":"6","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"jEx3LWHTt1zxd3MH4I4Fy","originalText":"6"},{"id":"PMXN2xyUqG0RetvkkPj-4","type":"text","x":305,"y":385,"width":30,"height":32,"angle":0,"strokeColor":"#ffffff","backgroundColor":"#000000","fillStyle":"solid","strokeWidth":2,"strokeStyle":"solid","roughness":0,"opacity":100,"groupIds":[],"strokeSharpness":"round","seed":1281769298,"version":66,"versionNonce":914480530,"isDeleted":false,"boundElements":null,"updated":1697744899205,"link":null,"locked":false,"text":"4","fontSize":28,"fontFamily":2,"textAlign":"center","verticalAlign":"middle","baseline":25,"containerId":"7bNxSaQYQUiWcbJGwodxu","originalText":"4"}],"files":{}}} diff --git a/modules/data_warehouse/assets/data-warehouse-architecture.png b/modules/data_warehouse/assets/data-warehouse-architecture.png index b24f63d9..e9bd4301 100644 Binary files a/modules/data_warehouse/assets/data-warehouse-architecture.png and b/modules/data_warehouse/assets/data-warehouse-architecture.png differ diff --git a/modules/data_warehouse/assets/data-warehouse-architecture.svg b/modules/data_warehouse/assets/data-warehouse-architecture.svg index 8fb9c7cc..3f1c07cc 100644 --- a/modules/data_warehouse/assets/data-warehouse-architecture.svg +++ b/modules/data_warehouse/assets/data-warehouse-architecture.svg @@ -1,24 +1,2739 @@ - - - - - - - Google Cloud ProjectAPPLICATIONDATA SOURCES1DATA LAKE2435DATA WAREHOUSEDataDataDataVISUALIZATIONDATA ANALYSISLooker StudioBigQueryCloud StorageWorkflows \ No newline at end of file + + + + + + +eyJ2ZXJzaW9uIjoiMSIsImVuY29kaW5nIjoiYnN0cmluZyIsImNvbXByZXNzZWQiOnRydWUsImVuY29kZWQiOiJ4nOx92XZcIkuS7Xt/Ra7TryWuz8N90zzPs2730kJcdTAwMTJISEhonmrVv99tXHUwMDAxXGJcIoBcYlx1MDAwZkCZZGZkddepk4CFh7ub2bb53//148c/z1x1MDAxZveVf/7vj38q7+fleu3isfz2z7/o718rj0+1xlx1MDAxZD5cdTAwMTLRvz81Xlx1MDAxZc+jb149P98//d//839qd8+Vx7tyfaqKj6beXHUwMDFhj1x1MDAxN09TXHUwMDE3jeepaq3y+DF1X66XzytT0lx1MDAwYs5s6bLRuKxX7uuV99J547b5hEq9clu5e35cdTAwMDLN/4d///Hj39F/d63psXL+XFy+w1x1MDAwZqNcdTAwMWZEXHUwMDFmdZblpEr+7UbjLlpcIufOcWmcZl/fqD3N4XnPlVx1MDAwYnxcXC3XnyqdT+iv/lx1MDAxMVx1MDAwN/6kvmtcdTAwMTbM/MPMibi8PnlfrPrOY6u1en33+aNcdTAwMWUt66mBjep89vT82LipXHUwMDFj1i6er9q71fX3g3712Hi5vLqrPNHrd5bZuC+f154/6Fx1MDAxZFjnb5t70P29d/zblOj8O/1iilx1MDAxYpZ4+Gyj3nikh//3hb6wXHUwMDE3553Hn5XPby6xhruLzndcdTAwMTZcdTAwMTZcdTAwMTY6X3hrvVx1MDAwZmddj7mq1C6vnvG3XnU9qlx1MDAxMu2qco5Jq438+oDo3y9fRFx1MDAwN/y/yW25Kj/et17/nyf6l6610bLmk7ej+4Z0XHUwMDFknN5YqunV+dO7l6nPo4eLvbdcdTAwMGK5cvpFK3adyo+Pjbd/vj75T+t/dZb2cn9Rbl5cdTAwMTFuvLVKOeGZc1+f12t3N/jw7qVe7/xd4/ymz606f3l6btzOlZ/L+KizbLzb+3K07oX5k7NcdTAwMDVXuX17dE8zy9vLXHUwMDE3a1x1MDAwZluma93/1MtnlTp9c6dySTe+66PHSodcdTAwMWJcdTAwMWZ7Pm2/7nnj7rlcXLurPLZfufnC//nXXHUwMDEwzGakXHUwMDFmyGxOa+2EM1wimNlY4+hDV05cdTAwMWbXXHUwMDFl2da9mdm5mpuqrE82s8VZTVxyZrSF6E86o1V5VVZVL69514fVrOhhNW6w45rx/qzWuVx0p1Nvx/eLT1x1MDAwYqdC1fnNoVq9PV5p/NNz7cfMkVf7XHUwMDBmsytPrzczc/5NbZ+8XFxf7l9Wf1x1MDAwM47U87tqfWFTLa9VNq/m9fnn1qFlfTly67FxXHJuXHUwMDE5xJJNZXd63/utIVnzufL+3I8rpXBcdTAwMDO5UmGvtOU2XFxcdTAwMDXW91x1MDAxNzdcdTAwMWX3zu6eXHUwMDE2zNvhXFz9aHvztvY0gCuvyudXL4+VQXzJh+BL3ocvXVx1MDAxNlsmVGCKXHUwMDAyXHUwMDE0THChUvny+bF893RffsQl76NcdTAwMDc97+VNIZOsKVx1MDAxOFx1MDAxM8pcdTAwMTj7yzjzz+edq1r94otvOtdcdTAwMTMstVv7rMQvXHUwMDA1/e1C+bZW/4hpi4ihQGsxetqP2Xrj5eJHcmW4XCJPXHUwMDE1bFLETj722+l67fIu4plKNc6ZzzXA6K+Pn1x1MDAxYl1H9cX00ZbFtr3xWLusXHUwMDAxSu+lrWtcdTAwMDTtbfQgOeGsYnQ9Olg6S0x8fjTmK3LblKdOTy+uzsrL5/px5ndS3lM8RX0r4XQ1XUz894WoyOp5oPqOgfKWjFCSac91fyExiUj5X2l0X+T60tNsdfXaXFw3XHUwMDE2bjdflz9WrnbGQPd3xVx1MDAxMZX17aPztc/jy9U93XhbOtjbt9dPfWXhJCB7y0Tyb9uyQTBvmJTKXHUwMDA0y4brXG4/Xn+uL8w03t/sw9Xt8Zafv55s2Vx1MDAxMI4gRlx1MDAxMlxyqo9oMK5cdTAwMTfZe201rmaXvlx1MDAxOZts+DXccPq+tPlkNk+rbGqNT7Gz6/17fjGx3Fx1MDAwMNg8iFx1MDAxYryxRnkmXTA3LFx1MDAxY948nVx1MDAxZLBcdTAwMTl3VKlcdTAwMWW/qfXy+sLdyzDcMFxmnFx1MDAxZY5cdTAwMWK6tVWkK91IiLq/S8mJXl7o+rs2KzBtLWMwczOw9NnS+v2eOK6K2ufp89z00qpffefdXHUwMDE3xeqNV++rV3pjUVx1MDAxZO25s/lcdTAwMWR/54PAdvQ2f5lcdTAwMTm8/nZ2+vh0VL7kq+uz19VrMXP9tjCancrVYDvVcCuNXHUwMDE3PpytPuZmju527PNV5XJP3XzO7mzN851cdTAwMDFs9VxyduqQjOVkScdZSyaV3PiMVal7OaxLpXwpXHUwMDFip4w0YoCymVxiXHUwMDBlm0RcdTAwMWXoZ3NyXHUwMDEz+9tcdTAwMTSbM3psX1x1MDAxYlPHvvtlRJ5XKNDyXHJWZrSSVIaOVtaXoWXyb79Ao9HSMMtz8PPOjbjYua5sVFfkk3pzr2/vL5OuJl2HZVwiXjYq8excdTAwMGUvs9afdEXZ+602L4tcdTAwMGXpjt+p63EtXubCS8+YyeLlw63a5vrTza14u107PK+sXm26s5luXv5GZp9MhFx1MDAxYcjs9fLT82zj9rb2jIVtNWp3z8lcdTAwMDU8PZdcdTAwMWafp0mXX1XKPdxXubtcdTAwMTj42T2Ri1x1MDAxZlTnf/3oXFy+6F++/vf//qvvtzuXY4ivXHUwMDBilfV9NsLXu1x1MDAxNvNf3f9cdTAwMWOj/OFGKqu4Z+FWa7m2oacru2fssnK3O73Kylx1MDAxZlPVzclcdTAwMTZAMM3jXHUwMDAySCefPYRcdTAwMDDq4/TucFxcXHUwMDA3qSdFjzWOS6FtXHUwMDE2Tp9SXHUwMDA3ylx1MDAxZV+Zo7vXk4fF5/tcdTAwMWK3/bJTSJ4/SPJMdVDQd32/ZJlcdTAwMTHKey0kN8LFRV1cdDrQKu+YXHUwMDA3XG7h0thsgrabXHUwMDAwz/n9vPRcdTAwMDO+n/qCtvWhkPgn0yqEXvfvXS5hPe5vJ1x1MDAxNt9BKkO9XHUwMDFhz7WxPNcx5/t2+ovlv5T5eO6n61cpvfPOmnD92jDls4fF84PtxvPNymlFrlx1MDAxZTys7k62fuW+83qRflU68ey8+nVunv7Tq2L7oPtcdTAwMWVwb5UxTtqsdI+Z/apdfjh53Tq7v3p+27NzpzezlULB/kFcbjanOoZkskZcdTAwMWJhPLNSOSPlv+JcdTAwMWZzbVx1MDAxZFx1MDAxN5w7LZnAVzLR/Fx1MDAxNC8pTurJM2VcdTAwMDD6TFxcQYGkdlx1MDAxMHbefJFcZqDolOBcdTAwMTSH7kuRl4SQSjphyMBVWmYraVx1MDAxMSMgRl2BaO5cIrfhWjd9kyR9rFx1MDAxOZOOQ1lYYcyoJylbb+CCKcZu0lS2XHUwMDE1N+7n8549XHUwMDE4cYt4z1x1MDAxMkY7xJyXKOPx+W9xxlx1MDAwNuVntPFcdTAwMGKDyVx1MDAwNipSMVx1MDAwN1xmLcLTUp/qXHUwMDBij4K5g+nry925s82Fp8+DWTnZOKXHXHUwMDBmYH6dXHUwMDFmwOFiWzBYllx1MDAwN3Jn3i5cdTAwMWOtXFzvL+8svF6yq8X9Zb9pXHUwMDBimPJcdTAwMDfBlInwXHUwMDAzQHYqS7CZ60zb9Lf0XHUwMDAzaMbbojznXHUwMDA2T7xcdTAwMWYgx6v9Xn6APJdystWrgbCX4VmjvPp4snTwtH26tPnxfFZlq/r+c3WydWuPXHUwMDBmQP9KXHUwMDFmXHUwMDAwXHUwMDE3lsvBWaNcdTAwMWSt8mjLtcXHz41Tu7BZq69Vdm7ru/u/iXrtQIdCvf5cdTAwMTiTYPiTvFx1MDAwMFaGu/a/x1x1MDAwYtC1i6Pukuz5eNSjlD2vkOsqjc1cclx1MDAxMP78XHUwMDEwN0CuLVxuc1x1MDAwM+Q4xW/xXHUwMDAz5LjHhVx1MDAxZuDHj9DkXZFcdTAwMTK1XHUwMDEwMkKV4Yil4Vx1MDAxYu98g+3Yo9tcdTAwMGY7tbtfudp5XHUwMDFllGY4IYhFTU72rrHMXHUwMDExXHUwMDFmZKGVmffG1Ym8uJPXN2tn7mNz55Tf7oxcdTAwMDeMjJpa+D1gpLYpnlx1MDAxZq/XlspnV+U3ufV0un7nXHUwMDFlRkyvXHUwMDFkXFxcdTAwMDYqIDggNDhcdTAwMGYvXHUwMDAzvbXbr8fu8OVuc2v24+NZbm5+yvKAez8x6bVqXHUwMDEy02uVU9KxbqlU8EBcdTAwMDBcdTAwMGZ0rtpfm147WJFJQFx1MDAwNlx1MDAwZv1cdTAwMWTOz9PHl4emfuZP3teX1cpi1e/VzNSE67HJS6+FXGZljLvMllx1MDAwYvfs4vp9fvfcr8t7NXfDKrz83ujm5W9k9sm0vlx1MDAwM5n9t7G+/4b02lx1MDAxNCDNXHUwMDE5XGZcdTAwMTFrfbhcdTAwMDBqbFx1MDAxY3/srTe2N8XmrJz73Jpa8W+Pky2A9Fx1MDAwNKXXckFcdTAwMWS0XGbzWfm183Lnbr96/VhrXHUwMDFjn+/P+vNNy1bnXG7R81x1MDAwN4meiYirXHUwMDE1+bUxet2/n/i4WpFf+2My4mopXG7WWbyIsTnqV6ZfXHUwMDBmjpYuXHUwMDFlT9c+Vz6Oz1x1MDAwZa+sM/Zsslx1MDAxNayaqPxa7ZhkgrHOXHUwMDFh+mvYk+O7hnt5tTtcdTAwMWIvz27ntVo+b8xWXHUwMDBiXHL7XHUwMDA3adi/N7RWJNhcdTAwMTZcdLZcdTAwMTlcdTAwMDSLXHUwMDA021SCv3VgbVxipGKdZ0BcXOGOgO2rdfnwVt2rVSv2eu/kbLN2v3E52Tilx1x1MDAxMfBcdTAwMGLza1x1MDAwNVx1MDAxN85cdTAwMTFcdTAwMTDOclx1MDAwNNy9bbODhrXuQdVcdTAwMWLVxc29g8PKbFx1MDAwMVP+IJgyXHUwMDExjoBcIsE2Rq/791x1MDAxM+9cYihcdTAwMTJsf0y6euWKWSONzOFcYnh+q9SXdl+Wt2ZfVPXifeb4tubrk61ge1x1MDAxY1x1MDAwMb80ydZLXHS16U2WI+CSzW2JzfKK2N2/PZpyp0fTt8cnhYb9gzTs3+tcYihybItcdTAwMWPbLIJFjm06wd/aXHUwMDE1kJ5jK1x1MDAwN7aSXHUwMDA3ivaaKZFcdTAwMDOwvO+tXHUwMDFjXHUwMDFj+Y/Xam31/u7+fXZp7uzhfLJcdTAwMDGLnZxcdTAwMWNbaVx1MDAwNbXw1FlcdTAwMDW3XHUwMDFmly/vXHUwMDBi8vbgbnNh/+J0YV1cXG+vr45cdTAwMDeMTGZ+4d3nyqnQ52y3Zlx1MDAxYjNXZb169bZWXHUwMDFmtYUtXHUwMDFieO89l7BcIsHJwfd+u/zwvvXAXq4kr+7c3L68rM/y5UnPsbVcdTAwMTOYY6uVNFxcXHUwMDBikeVcdTAwMTIrWCDGXHUwMDAynZv216bYpugxzWikXHUwMDE5y9E5wr5cdTAwMWU/1Lbelz9ed54vXHUwMDE2p1x1MDAxYnL1/WGogWY/k5snLcfWKmuk9TZLna0+r+/u3KydXHUwMDFl1a9cdTAwMWLabD9t15dcdTAwMGVFNy9/I7NPpvFcdTAwMWTI7L+N8f03pNhcdTAwMGWWP1BpXG5mSFx1MDAwZTjxVl96PVFru9M19ShnVqde1y4/5iZb/LhcdMqwtZZx601m6+yVs6pcdTAwMTDVT/+xflSb5S9nT9enYrdcdTAwMTA8f5DgmYi4WpFgXHUwMDFio9f9+4mPq1x1MDAxNVx0tj8mI642WL16rrnlPEdcdTAwMDXdR335817MVz5vb+tXbOdtQZ5cdTAwMWPUJlu92onKr+VMO+eyXHUwMDBiYedv9882TXlTiLX6y4l8ezi6Pt0sXHUwMDE07Fx1MDAxZqRg/96wWpFfW+TXZlx1MDAxMCzya1NcdP7WQbUhgIpcdTAwMDQ7a2dUuFx1MDAxYvJ66/LBLpfd7crt9Kf+2Kyf3V/dTjZQ6fFcdTAwMDP8wlx1MDAwNFvJlWaS+SyYsqWu78TbVv1g9Wr99Gr/enH2cEtcdTAwMTUw5Vx1MDAwZoIpXHUwMDEz4Vx1MDAwNyjya2P0un8/8X6AXCK/9sekq1cgKSUkXHUwMDFkUbB+PS6v3qzcfX7M13dcdTAwMWbl3PyrvV9fn55s/drjXGL4pfm1jlx1MDAxYudVdlx1MDAwNcvjzbk6WDo9Xlx1MDAxN1x1MDAxZvK4vL7n+af2hYb9gzTs3+tcYijya4v82iyCRX5tOsHf2lx1MDAxNZCeX6tcdTAwMDb38sQ10oK60Fx1MDAwNVx1MDAwM5bq9Nrm9PH9dO366mn6bu5FTs1cdTAwMWTsTTZgkV1cdTAwMDXFvzi/VjAsRnHOs8qBri5Or7dn1MbU7c7c9uH80stJ7eYnZVx1MDAxN349499dN7J1+lf7XHUwMDBmsytPrzczc/5NbZ+8XFxf7l92tyvpupNlUvr/fH3yn56l/Uyss3rw9L79NHO4uL3qxb0pf548XHUwMDFm3YyYvqvFILbi1nJjhMhhXHUwMDA3+MWZveOVWXdzWl6Z2Z+5t+Xb14lvkSvl5KXvclx0heBcdTAwMTjLzN/9hVx1MDAxYzaJPNC5an9t/q6yyb/9mkxjnPNcdTAwMTJcdTAwMTc4mJ9cdTAwMTfnK+8rXHUwMDFip4uv96dbx2uzL42VXT6InydFTcpJS981XHUwMDEy0IRcdTAwMWKV5T3/aEzrnc21lbu5qa3ZXHUwMDA393z6dPs81c3K38jrk2nbXHUwMDA38vpvY9v/XHLpu4PFj1x1MDAxNZYzw0y4+KnuvvHqzHVdTtePVu350kGtISZ87qTUk5S+a5j1XmSh9LPjXHUwMDA3c6TW/cnS9OrnjDji91x1MDAxYvqxXHUwMDEwPH+Q4JmIsF2Rvlx1MDAxYqPX/fuJXHUwMDBm21x1MDAxNem7PyYjbDdYvXLHudJey3Av2MfGXHUwMDEyu7VHL/vu/vJiaa3+8dk4u59w/aomKn9XKS+Z9CZcdTAwMGLbXHUwMDFmleX7wtvu7v2rmq3V5lx1MDAwZXdqU7LA9n+Siv1743ZFXHUwMDAyb5HAm0GwSOBNJfhbR+2GgipcdTAwMTRZkNyFu1x1MDAwMo72VEVVZ2tq83Vm5vp2a+2irPSEQ5WkK+BcdTAwMTdm8OJ+WW9Z5tTJxVu3s7G3Ult8bZz42/LWJp/jXHUwMDFiXHUwMDA1TvmDcMpEuFx1MDAwMopcZt5cdTAwMTi97t9PvCugyOD9Men6VVx1MDAxOOeZlDx8prM+P7+29uilfnT3MbMwe3T7fvDYmHD1mvRcdTAwMDT80lx1MDAwNF5cdTAwMGXlKpi3LkvD3myt7aycXp/X7Nr14tHF8XZlf71WaNg/SMP+vZ6AXCKDt8jgzVwiWGTwplx1MDAxM/ytfVx1MDAwMelcdTAwMTm8emDJkVPMMsCucH/AJy/vr5aFr7Gr+4PZt/OtLX28M9mAxUxQXHUwMDAyr/GUXHUwMDFhoLPAylx1MDAwMb+ZXr+/W/14VOtcdTAwMGLb17fXT5XXmz85u1x1MDAxMFxcvPq6XV64vzt8fHs8Wnm5Xis/jJhh29VcdTAwMTc5ce01syQ0TXiCLd/avjVVtfjmLrbPPv307JJ6YFx1MDAwM679xCTYmlx0TLBVXllcdTAwMDc7sOCA9tODOKBz0/7a/NrBWox7g5NcdTAwMTE63Oy+a8xu8t3r+s3GzPFp/b2xdvm0NOFzaczE5ddyI6RcdTAwMTG4t1ltKnf3Xlx1MDAxN+fXn+XV7P3c49by/qX7VEvdvPyNzD6Zpncgs/82pvffkGCbXCJ/OFC0l1wiXHUwMDA3nmhUzupcdTAwMDevSy/P0ztb21x1MDAxZiuHazeHlc9cdFx1MDAxN0BcdTAwMTOUYcutdFx1MDAwNviNZ4me5Vx1MDAwN/Hs3qfVnNhdW5xeXHUwMDEyZbt7cVSInj9I9ExEXFytSLGN0ev+/cTH1YpcdTAwMTTbXHUwMDFmk1x1MDAxMVdcdTAwMWKsYCVcdTAwMTnrwuSY46RcdTAwMGXn1OvRx87lyvXB5v7Z1tVlxU54XHUwMDA1i5moXGZbxXC7nDBZdbDPh09nO+fs4FxcPdTPVz/md1x1MDAxN6R6KFx1MDAxNOxcdTAwMWakYP/esFqRYFsk2GZcdTAwMTAsXHUwMDEybFNcdP7WQbUhgIr21FZe+fBW/i+35qq8cbMztTRrXHUwMDBmj99cdTAwMWXM6+eFmnCgMkn5tdDiXlxum1VqO7u8c3u9MWfe+O318Y59rS6W31x1MDAxZVx1MDAwYpjyXHUwMDA3wZSJ8Fx1MDAwM1x1MDAxNPm1MXrdv594P0CRX/tj0tUrl5Iz7vK0srh/eLhg1ZPXQ3H3ubv38vm2y9ePJlxcv05Wgq1cdTAwMDaeXHUwMDAxgvRZXHUwMDEx+/u5q7eX2vndy7a5OZtdWdL1ObleqNg/SMX+vZ6AXCLBtkiwzVwiWCTYplx1MDAxM/wtfVx1MDAwMSF9S1x1MDAxMz1LY7pcXHTlmka5WbzEuv90lVxutZVy51x1MDAwN500uq7eXCK9mGGYXHUwMDFj1uR3fi1cdTAwMGXqXHUwMDA2XHUwMDE0efT8VzaApSYsmvdcdTAwMDDHyCUzuC8jU9pzXHUwMDFl1L44XHQpYlp2jKDi+1x1MDAxNDYuUe+lz1x1MDAwYkJmandcdTAwMTe1u8s44Kk0t6VcdHo+P1x1MDAxYfNcdTAwMTW5bcpTp6dcdTAwMTdXZ+Xlc/04043yqlxyXHUwMDAwJ7pcdTAwMTQlJZy2vPPfXV+6LN/TbiaZpS1cdTAwMDY74Fx04Cd7TUeLK7W9pTdx5f3p0uP79aWa3671X5OTsT+qd009S8iFzv55fqwlMvXjyZspYmiqdrqtXHUwMDFlLlx1MDAwZbdfXoXaWtjY21hY3+9cdTAwMTVD8YRokkKK25K0QmunyVx1MDAxZYxbXHUwMDE3XFziJIyAYoBcdIk37uqX+eWKM7YktHJOuKZa7LDUl4ySUDHeczxAXHUwMDFiPIp3TLTxSKyknVx1MDAxMy6xkinPP1ViJZKNv4wqqlx1MDAxM9Xdk726XGbgrqympFx1MDAwMSys94prXHUwMDExYlx1MDAwMOdcdTAwMTdZXX7rXHUwMDFjXCKrO8v4x27j5fG88lx1MDAxNL/drYRlgVvojDW4Ypbjonk9gFx1MDAwN2Kkh0xK7spyXHUwMDE2etDVzJm5/PV2fZk0syBB8kHn6jVQmdY5Olx1MDAwNE9fvs98XpxUNlZWn2Y21i/m3c3J8aRwR3+/huopR+BivDLhS171q0Xo2v1cdTAwMTZcdTAwMTdqacCHvn9cdTAwMGXhd5ZcdTAwMTBcZsdnI3NSdG/u7+tgmme6kv15ZVx1MDAxY8yXg6+6XHUwMDE3lKL71memP3erStevxdXWnbt7lMtbYVx1MDAxMFxcMlx1MDAxZbt0ouvSfdWu9Fx1MDAwYjal3edcdTAwMDJzM8msXHUwMDAy7O7RVcRYdqBcdTAwMDbTXFw5XHUwMDA2XHUwMDE5XHUwMDFjUqsxhFx1MDAwMuPDMNZYMXfXVUp8//swd1x1MDAwZXzLpWBWK4tNg8kku7xcZlx1MDAwM/FtXHUwMDEwxD7fuL36PDiQavd5dWflsz77ubjF+i1haqg1/Fx1MDAwNIxcdTAwMWRWSyu7ym6SfbaZd0LYXHUwMDFjfUC39s5V/fBkaX1ueeZoqV5/vZuvrk+4XHUwMDEyj/szpFx1MDAxOSxcdTAwMTOlKjst02XieVx1MDAwNUdm+pTTel/y3X96xTPvLuNtVyQxYY1cdTAwMTBcdTAwMDNcdTAwMDbmjlx1MDAxNEL4uqNcdTAwMWRcdTAwMGXonGPt4XGNVVx1MDAwZetLM9W91YvFXHJ5dtBd4NSjoL4++c+/0ui6qb2np9mLz+qNezvYbGxXd1x1MDAxZS5cdTAwMGXC6PZcYpsxysvMwMfj7Ia4mDab23pFmop9vVt+rXavXHUwMDFiku+sUqdv7lQuu5FcYl3RylNcdTAwMDSym6yY/LT9ul9cdTAwMDDj22qEXHUwMDA1415Kq4JMrdY1mKlsqlx1MDAxNSlcdTAwMWb8ztKer/Gtu/mpoaZd/0R27irri/h5xNr4gYjc9HVcdTAwMTkkXHUwMDE52DLHJFx1MDAxZlRcdTAwMWb/rZB8KE5cdTAwMThcdTAwMGIkjyzLaUDij6fa02SA8viSUmC5npc3R6cru49cdTAwMGZXZ+fr6n7zs+ZFXHUwMDEwLLdcdE3SnWrevjW6iz07cl9cdTAwMTfO8DRgTlfaXHSl+7mWXHUwMDA0XHUwMDFi6IJcdTAwMDBcdTAwMTDTmjsvQ3JcdTAwMTeHQOZiXHUwMDE4/vo+b7j2WV+f6rp9w/1cIpZv06OQc6P/JOTNXHUwMDA25XfX8s49LW/fvD7Ih6eLg+kqb/i+dsFkQPCmTJGV91lfLz/Llzm7Z3fri/WbqZMgmdLtT2rKlF5Tv69E6cDLQqL0SFx1MDAxNGHJqDGur69aXHK09JVcdTAwMTVAUDyoaOv3lye8WzxMNK9T6H4y2D3I4naDNZaCXHToXHUwMDFkz5Ftn75Jk5lcclx1MDAxOFx1MDAxN2lqRJd53+ZVQvWTiqzHvnaMO2c4y0pcdTAwMDXc3jjzd7X3xvSxW75YuFueuts7UN13sba9YdZcdTAwMWGLr0uHs4uHp6r2+la5/Oj+wm5t/Wr1YMc9Lrz6ithYvlg5bdS+fT5tOpqN3dlcXHZ8ukZcdTAwMWKe7vH6ybl8uJr63Lu8O7r0u/7ZXHUwMDFj342B7lxifodUusszL27msz59/TZ3eDC/t3Vxs/lcdTAwMWW43p6jXHUwMDFmo1bI9Gc8zy+tz61cdTAwMWPyme1Lu1A+OTieYeuvff1cdTAwMTkztcvtl8pj7C53ezQuXHUwMDFiXHIw+elZ7fKBvnaKd4CZ99z99TG7OOzA8d2wXHUwMDE0YK36PNVKi0/nh3p6p7b7XCLnN/dcdTAwMTdrN3umXlx1MDAxZCA/J6ZccpqNp1PHw5BJXHUwMDE5yqetnHepMjS1XHUwMDBimuvXOqmDnDrxf+e9VyqrbmmSJenfxItXtfpFajO2LrWc4e7pWVasIZuPff/LkVOvVOPcPVx1MDAxZT/P11qGXHUwMDEyLV0nnFx1MDAxNC3MUZs/q8Kdp7NcdTAwMDdP15/6Q+8t7a+u19W7eNvcmfvdREuXa2rc7Vx1MDAxNXm/XHUwMDEwtewgsXbfXHUwMDA2mowmuc1qjFRcYpavp0+2YFx07/L4P3eR2/Zcclx1MDAxN+iq8fJU6StgOlnXP0XA9KwpVdBcZipcdLODXHUwMDA1XHJcdTAwMTSpNcL58KDrXHUwMDFjf6nNP1x1MDAxZF7s7izjPbjbVWcvXHUwMDEz3sFYWFdSXHUwMDEwXHUwMDFmXFwzbSmJP55GpbQo2ShK2ipcdTAwMDNcdTAwMWNcYm/6Sph+ZlwipeNWVa9cdTAwMTQyJW61ZkZ7iFx1MDAxOONsnzyrwV/5itJa6Y3ifJLNyFx1MDAxMSvK/lx1MDAwMlx1MDAxOfXblK1N8ZJmznnGNVx1MDAwNUe0jNXItj5cdTAwMTRMU1x1MDAwN0duebab/1x1MDAxYuhcdTAwMTnjXHUwMDE4Z5ZzY8DFXCJB0DrJOUjiUzw0u3NcdTAwMGIvXHUwMDE55jSWwKiiRsepXHUwMDE5rYlcdTAwMDFcdTAwMWSeXHUwMDA2ucmCqEnFwNCMXHSluGImTtBKJ2HNXHUwMDE456xgloXUp1x1MDAxOSVcdTAwMDWXgia3qGRpXHUwMDExLzkhXHUwMDFkWInhXHJcdTAwMTj3OoigNMxcdTAwMWKvlVRcdTAwMWFLiFx1MDAxN1GXwI9aSGywwGExXHUwMDEzUpNnOFx1MDAwZY9cdTAwMTLmsUqu4lx1MDAxNXQg6IU1WmHlkkBuXGJBbfG6WnjDmufSTVCUcFx1MDAxOIwpZyA5JW5BXGI9biRcdTAwMDXLXHUwMDE5i7L6XHUwMDEz9LjiRkvoXHUwMDAyzyVzIWeccqWJnFx1MDAwN0VcXEKjINozq8hFiTba4j54oVx1MDAxY1OxRlx1MDAwNLrkOa6ywMpcdTAwMDVcdTAwMWUmsrvijJmaXHUwMDE0+I+TVrhmmVmCnFx1MDAwMedcdTAwMDBDXHUwMDBiZ3BDXHUwMDAzXlx1MDAxNaxcdTAwMDGFh4tsXHUwMDE4sHeMdU2JxWRB5j1cdTAwMDE1J/CaIIj/JpZKkFx1MDAwM7TnXHUwMDFjV0lQJZ3OJlx1MDAwN1ZnTkpccpCkTOJcdTAwMWGDnIqq7axnwsmAxVx1MDAxOZIpXHUwMDEwRLqp3O2Ii8PmXHUwMDFiLzX4QnDTSy7v1pGoY/ar2ZFcdTAwMTjxXFxcdTAwMWT0uNdRU4UuXHUwMDEw01wilu/OKVxcXHUwMDEyLFxiXHUwMDFjzlx1MDAxY15Yx6ipkvRcdTAwMWOy01x1MDAxOGU9LlDmm46dmvZcdTAwMTDw1mG/pXU+QVxyp0mMXHUwMDAy25WJ7FwiT1VKrEYobbBb3ivplFxy2ClcdTAwMWNcdTAwMTI2VfPWMcap8aa85TiQXHUwMDAwSpIyXHUwMDAxJU5cYstXLk5cdFx1MDAxMlx1MDAxOFqV0e1cdTAwMGK4+qnLklBcdTAwMDfSYWlcdTAwMTbgXFxcdTAwMDRog8Qm4ffgXHUwMDFii92B0PajXHUwMDFlmYxK2L5cdTAwMThehuxUyn2SJTKvLLbLNXc+oNdcbpSxJiCgJElGOyhcdTAwMWb6m35cdTAwMWWJPFxy1UypxS4uXHUwMDA2plhcdFx1MDAxNpTnUIvgkqaYyNxcdTAwMWZcdTAwMDahXGYul5BFwGmKWsUkaVx1MDAwMv3QXdJOKih4XHUwMDFmUFx1MDAwYk2Dd7BcbqFsVJWX7GOAZXGulGJtIyqbXCJcdTAwMTBcdTAwMTWUhnROXHSbVGtR0jVhLvzHQlx1MDAxMFx1MDAwNvSiYyVBt0hxa9qwqWeNwG/YXHUwMDFhXHUwMDFkgbSgjcRcbo2UJlx1MDAwMrk8IVWJXCKjKkVFdZe0jTLgrjGrwJBcdTAwMTBSrCVcdTAwMTeSR1x1MDAwM5Qkoe/xSNDVIUfDsFxuKPNcdTAwMTbwk70k8SgoXHUwMDA33FHi9lx1MDAxMFn0LX1yUpxcIpAnXG5rXGZK5Wo6RTY+Zlx1MDAxZXdvXHUwMDE2pm/Pdmc+yuWXhZuVOzvpTlx1MDAxMU5FqZ5Kh3FIQsUzWXFwhLlcdTAwMDHSrVx1MDAwM1xcccmc2vw+XHUwMDExXFyhi2qfXFx17oGPwczgOW0txHHHxdY1XGKn+Vx1MDAxZFx1MDAwMVYyTnnf08lcdTAwMGU8XHQjXHUwMDEwgKxwilx1MDAxNE6RXHTs5Vx1MDAwMyypvaA2XHUwMDBiTvXY7Fx1MDAxMIpQZbBfcYOth3JVXHUwMDAxrXdYiYw6XHUwMDE4TZrqwZLWXHRIKsJaVG/OId1NQMdaXlwiXHUwMDBllOQkXHUwMDAx7HNCiThFzlk0slx1MDAwNlx1MDAxNja0b1C/IU+dXHUwMDFjgOu4ZoS4bIIgXtRcdTAwMDI2RTtcdTAwMTJi9EzB/ITqg80loVx1MDAwMrFRiX5tgDzkQzFcdTAwMDBcdTAwMDVCWJ29QtgpitwzgFx0qqng4lx1MDAwNFx0RMHM0oopzVn2+mRcdKtipPVcdTAwMWNcdTAwMTZcdTAwMWFrgFx1MDAxMIErRyBcYthcdTAwMDTo2Vx1MDAxYpvtmlx1MDAwMX6EuVxiSGdcdTAwMDBcdTAwMTJM15jeJj2rQSm6Llx1MDAxNlx1MDAxMDogxVaRL0J7zyyOmDxPcXpEyVx1MDAxMYqAUnDZylx1MDAxZeRwatT6XHUwMDBmXHUwMDA3Qi+e8LxxXHUwMDAwJUDIqHdcdTAwMGXQWHZPR1VcIiTIsUNcZtLeJj1b0mksXHUwMDFh91x1MDAxOeZcdTAwMDIuYfb6dEmSzWElXHJNXHUwMDAzMEm4XHUwMDFh6eQ1eFx1MDAxMipcdTAwMGWPNNl+I43jMKQzQVx1MDAxNT9cdTAwMTYuTs8z8lx1MDAxNjDOcLRaZJ8urHRcdTAwMDd+d85cdTAwMTBe93GwLUrcXHUwMDExcoaZojhuUzb/XHUwMDFhXFxXTTZcdTAwMDZcdTAwMThcdTAwMTXvrU2cnHK4eoK6veJ6ylx1MDAwMHlgYLxQLFx1MDAwMkBcdTAwMWaSq1x1MDAwYlx1MDAwMzTpOepxr8lcdTAwMTPEIWGy757F21x1MDAxMtpUQFx1MDAxZLo7zEJ/JCFsJ6xcdTAwMDdqhIiU2axmo+tcdTAwMDC5qkjSQUnGyYFcdTAwMTjQNZhQRGvMviu2XHUwMDA0hFx1MDAwMkuX/Jw0XHUwMDFlxybWR4uCXFxhjk5cdTAwMTe7XHUwMDFjQFx1MDAxMOagJ7eghPQwOrZAmPbUcVx1MDAwYlx1MDAxZjPryX2ZvUBcdTAwMTddXGLIUliaXiudcDVcdTAwMTgy+oCtPSwtXHUwMDFm0JTMlahcdTAwMTOGgT2He+Fwr+M+XHUwMDFhwHSYTlx1MDAwNjedspxcdTAwMDKoXHUwMDE5XHUwMDEy4UaBc1xydbyKU1M4XGaIf7wo7GFohFx1MDAwMHqOO04o3LPIp1x1MDAxYadcdTAwMDeVXHUwMDAx4aWJs8FcdTAwMTnZXHUwMDBlZFfyjlK1cJlcdTAwMTnsXHUwMDE5XHUwMDE2k3umhHtcdTAwMDfpoFx0hVx1MDAwMkPq7OVcdTAwMDGPQlx1MDAwM3EyjIh5jY7Ts1EkXHUwMDExRlx1MDAxMFx1MDAxZSiy/SMgJ4zDq3qtIUedj5GzJVx1MDAxZcFipqBcbsBAIeTA4cbCnKXvd1WLN8nBXGL3htNe4NhcdTAwMDPUuCeHieMw2KRcdTAwMDW1uFTGrcQ24ENIZJxGQIc/X9JcdTAwMDI7XHUwMDA2M5tcZn9cdTAwMTZXua6kPSRcdTAwMDE2zVx1MDAwM95AXHUwMDFmhZDTXHUwMDE264Pog4kudCx44WHhWlx1MDAxMjhCkXchQKyAXHUwMDFjgVx1MDAxYstcdTAwMDT5XHUwMDE34k2AW59BXHUwMDBmkytcdTAwMTRcdTAwMGJcdTAwMWRtcZzsa+hcdTAwMTFcYlx1MDAxYrA0ZFS2TEndO9DTXHUwMDEwXHUwMDEwuHKOS0n4Y7Sj5bzE8CQwolK47iFvm3LvQI2wKKAgOVx1MDAwN4BcdTAwMWJCVpfCXHUwMDE2oFx1MDAwN85cdTAwMTeMaUFeQ5sto1KZlkNBUkzIQIdcdTAwMGI6lVx1MDAxMFx0mlwiVECPcr09iUMoolx1MDAxMMZIlXmcoKWOjt2SXHUwMDBiPkTmpYhkkLM0+Fx1MDAxM8vH2Vx1MDAwMv5k371UhcFcdTAwMTX1JVx1MDAxMN54XHUwMDAyXG7C+OzTTdVnnFx1MDAxY9BcdTAwMTJGg4DhRM2esrcvVd+CXHUwMDFllDtQKGBcdTAwMWXIXHUwMDA19N9Ox1x1MDAwM5yaXCJcdTAwMTnyRuAyK61cdTAwMDPEaCpgXHUwMDAxPZxcdTAwMDGUpOA4fEifXHUwMDEx8Vx1MDAxNKdcYlDUXHUwMDE2iUJELkS2pMI90IOI0NTKmCBwtixIXHUwMDA1o6CG88FhQE/iXG7idlx1MDAwNtBLwcqgXHUwMDA3XHUwMDE5QZXPTtHddNm3JVx1MDAxZMrbkpBksWOBXHUwMDE0vVx0XHUwMDAwLOmmhi3BXHUwMDAwxrpcdTAwMDV1qbLZgZxcZkvIwvLD2ullod+0zd6+dEtccqzjYFx1MDAxMEZcdTAwMWGPQlbZ3JFqSHKwNrAjXHUwMDE3luKZnI9o54KcdFx1MDAxMCrk0ofwXHUwMDEz2Zcv1VxmXHUwMDA3OXCFlpqwXHUwMDFltFv25qV7XHRAj8QyXHUwMDE5V+BcdTAwMWbyj1x1MDAwNFx1MDAxMExxY4Cew/s6XHUwMDEy3V767JBRhp9cdTAwMDX0wNJcdTAwMTaaklx1MDAxYcjiMlx1MDAwNTWKTvFcdTAwMDRxoCqoY8pcdTAwMTTxZFx1MDAxZmSSS3dVXHUwMDExOc9cZpVTXHUwMDE4XHUwMDBlZaWzVVuGP43cxVx1MDAwMuRcYjPgXHUwMDBi2deZJX9cdTAwMWR3Nmf+vLlcdTAwMWOIXHRcbo5xnVxiceVfTnO/JJmHiqDFaNvVOk1cXI1mXHUwMDAySjwmmPc0W5dNka+eQE9CXHUwMDEy575s4+WFJquS2Vx1MDAwZqlcYmyTlEs5ObUtSHDTYPxza0ZcdTAwMTIkLSknYC+pZvB0JDHXksHU9Vx1MDAxOXibmeTi8sngpoYgrVwiXHL57eJry60hWlxuXGa7huOArk/qw5xcbqylXsFEylx1MDAwMYJcbpkgl0+9tpQ/XU9FYN8nXzan9m+BXHUwMDEzSDbhXGKbxM283OCkhZ2oXHUwMDA0XHUwMDA0MjghLXNDpzauU1x1MDAxMGZcdTAwMTRJSpLLhetaoFx1MDAxM8KEgydsPHEuP+hsYWJcdTAwMDBfXGI62sPRMHFcdTAwMGKzXHUwMDAz4dD0Tc9cdTAwMTPUclwi9pZBXHUwMDAxXGZcdTAwMDZcdTAwMDGEf8bvXFxeg6Jl7jCYXbh4MEFHM3fa1lx1MDAxOHmcwVx1MDAxOC5JLqc11jJcdTAwMTaVt5GxneCv3MZiy5SFxNCQ3T5cdTAwMDHA8pqyTUObcnJcXJSFXHUwMDFhp5bb0G75XHUwMDAxSIfCXHUwMDBlY1x0XHUwMDA1lttcdTAwMGbQ9lJAbnJB9Vx1MDAwMyN5Kdo+XHUwMDE0wE2wWVKo5/ahtFx1MDAxYzyUbWcoczPpksnl4Gl6n1x1MDAxNN1fXHUwMDE4Olxcxd80t/ep5Vx1MDAxY9OU11x1MDAwYkNcInHncjvH2t65vipcIrfrrrk4qo7Bt2GVjOZWbO5cdTAwMWODXHUwMDBlpfCfi9vquX2e0aFcdTAwMTJHQqVcdTAwMTDDxonl9MdGXHUwMDE3jvKWcVx1MDAwZVGGeje13M7iiFx1MDAxOfCijHJTcUlH82RHnKo9a6Y9JTJcXHM62SMhXHUwMDAynveSXHUwMDEyWlx1MDAxMvI3f1xigCRcdTAwMWNBcFx1MDAwZoRcdTAwMDBcdTAwMTGnRlx1MDAwYlCQ+IU9XHUwMDAzg8tCJMavbv7oXHTpXHUwMDA2hVx1MDAxM1x1MDAwM+infDCfWFu+0E6kt8hcdGFcdTAwMWOlg7JEhmrOsFOkU0FN4fZG1Vx1MDAxYXFqeYNipPBJulx1MDAwMU06XHUwMDAwprjhmz9mR3BcdTAwMDRSl6LzXHUwMDEyuilcdTAwMGX388dcdTAwMTRcdCxJRk3/NWS/NIm815xcdTAwMTFPwnGw+FRfRs1cdTAwMWSOJYxJviBK1CM5lyhZyFx1MDAxYiwmXHUwMDA0jNtcdTAwMDRsQ/37ZJJcXM5QNuFzRa5DvFxmVH7C7MpcdTAwMWJnh+1cdTAwMDCgXGZY1U5JT5b05ExcdTAwMDMg04bTg3FcdTAwMTdg18u4tyV3llx1MDAwMlx1MDAxOV5cZkJcdTAwMGVwnpFqSKwub1x1MDAxMlx1MDAwNVmFxN5cdTAwMTBjlMhcdTAwMWVn/twpXHUwMDFlZLIqXFxhT72oosFCcXJ5M1BcdTAwMDD9nNeE6F00dEYk6OXNkCF7X0XYXHUwMDEwIJCKJ1x1MDAxMlx1MDAxOTI5XHUwMDEzeMhcdTAwMTlB0Vx1MDAxY2VcdTAwMDWpXHUwMDAzz1x1MDAxMnlaeVx1MDAxM4zIWeJYOz6UMPiHSIBcIldcdTAwMGVMSEbyXHUwMDExl7bnOPKmaEWeJuJcXFx1MDAwYpVnqVAkTi93XHUwMDEyWeRcbqOaXHUwMDA3hbtCXGKfJ1xi5k50++nZv1BjPseIzJnN86nb+aXq5v3zy9Ptp7r4/FBDdaGenNxfXHJFXGZIXHUwMDAz4UpDzLy1iZWNMflcdTAwMTdPYlpS11pcdTAwMTjTznSdSyf5t/1cdTAwMWTcXHUwMDFhT1x1MDAxZf3OatpcdTAwMDOsXHUwMDA0XHUwMDAzN9pOQLdI/m3+dZH82/rs1yb/SvKIafKH9Kn8i0pcIsj1XHJcdTAwMDVcdTAwMTCFWkJKXCJopCSMXCLQi+I9pDuSNCVcdTAwMDEnYclcdTAwMTVcdTAwMTZGklx1MDAwM8JcdTAwMDGdOfLIOlJcbkmK+IxcdTAwMTNQJT4k93VcdTAwMDBFJYFcdMj7XGJ1r1x1MDAxMoVfVLGijCOHKbB7VExcdTAwMWRSXHRsXHRyXHUwMDAwnVx1MDAwM56Tm8ElSEL5WFiGzIVcdTAwMTbBTFx0spi5ppxcdTAwMTBcdTAwMThzXd2zW1x1MDAxNKUg2cPJLrShWcpcbiZcdTAwMWLAn1wiXHUwMDE3eNK9TNErQo9MaFx1MDAxZH1cdTAwMTiwk6JEzcYsozLnqNo0QVx1MDAxMMvynFBBs+QyO1x1MDAwMimphM9cdTAwMDOTwFx1MDAwZcdru+TJWFx1MDAwNpK2Wa9cdTAwMWXwxlx1MDAxMqhXwdhcdTAwMDVeIOdcdTAwMTnvmSzrqLBcdTAwMTTmLXQrVVx1MDAwN2VnN8iSwa1wgkrrXHUwMDAwZnjcwUmXVZJlS15yXHUwMDFmxbRcdTAwMDIo+mhcdTAwMDNcdTAwMWShY6pf01x0ilShXGKtyMiBQv6LTIpUn0lcdTAwMWV/XHUwMDAy+orATIKgXCJeXHUwMDA3WGxcdTAwMGXszK6apSg9TY5cdTAwMDckk5GbTSRcYtIpU+tcdTAwMDHAJlx1MDAwNls0JExPYVxcujqKUm1Y8pVcdTAwMWRcdTAwMTVw4lx1MDAxZcBiYS4ka1RcdTAwMDPBXHUwMDAx1XlcbrIpalxcXHUwMDEwIyggJKCtsMM2qijL5mdNQMSS/4RRxb1Nzn2VXHUwMDE0SFBcdTAwMDLWXrOQOYCgXCJ7XHUwMDE2vMD6pMWAXCJVRJPTjFxm+JCaXFxQNFx1MDAxNNxR5HzGOlx1MDAxMvIh8j47mv5cdTAwMTdax1x1MDAwN4KOzDxFXHUwMDE43uOWJ4fnXHUwMDA28lx1MDAxY0xumlx1MDAwMKNJXHJEplSCjFx1MDAwMmyAXHUwMDE5XHUwMDBmq5dhO0Lyf2Dp0d5cdTAwMDDvS27i/oUoQ4NcXIqwtTynMuJcdTAwMDB6sPQp1OphXHUwMDEwXHUwMDAz8MdfU0VcdTAwMDXvjmxuwZlcdTAwMGYotFx1MDAwNUFN1YiOalNJXHUwMDFhu1x1MDAwNEEybGFcdTAwMDDRs3RII1xyU6KoMlU/KticLlx1MDAxZfFcdTAwMDQ9Y+lcdTAwMGVDOGpcdTAwMThIXCIoX96SXHUwMDA3XHUwMDBm11x1MDAwMbI94VIhzvlyLoaN6zYlsuO40ypcbsnETVtKOFwii5uaRNsohFx1MDAxOUCPwmKMZDQ0J65Eglx1MDAxZW5cdTAwMTFVYttcYohcdTAwMDc0XrGQXHUwMDA13HBKpSRcdTAwMTmo4j5Qup8y8vtgXHUwMDE3bVBnXHUwMDEzXHUwMDEw1IZcdTAwMTOUhyhK+tzpPjnykWCZOF9cbqiGXHUwMDEwhHxcdTAwMDZcdTAwMWNorSFBjzr9t93kYVx1MDAwNVxmZDLhhCXJK55QIFx1MDAxNjhCUiDIRv1cdTAwMThcdTAwMDL0XHUwMDA3LY9TXHUwMDAyKYdlXHJDyyXoUVx1MDAwZlx1MDAwMohnSe6hoFx1MDAwNEiYSZBpXHUwMDE0XG6DfGM8QY5sclKZXG53UIa9L6PyZSr/51x1MDAxNDyK0aP8XHUwMDAycrjoXHUwMDE26Fxiu3/AgFx1MDAxYbgnKqb2XHR6uOfgYCtoT1RAdVx1MDAwZviDqvShy3kkQ1SCXHUwMDFlpYLSSFx1MDAxMVx1MDAxZvi+5GCFSlx1MDAwMzAzXHUwMDExXHUwMDAyiF9cdTAwMTdP0JJRXHUwMDBlXG4sY1x1MDAxNVAsRIF6qFx1MDAwNudNnzpoXG4vaar9XHUwMDBlbTRB0k848mFRZ59kjFx1MDAwMPSoIYNW2D58IUTYS8pWXCKnPbOUSVx1MDAxNVx1MDAwN1x1MDAwNuSaXHUwMDEyjinZylx1MDAwNVx0WZ4gJFx1MDAwNIKsWdmdJEhufU29JKi/YkCOnKFeXHUwMDAzkU9cdTAwMWLKxmveQ1x1MDAxMCzGKD/AUt5HtnDRJE0pMNiM/8WbXHUwMDFjTVEolGK4UJiwLixcdTAwMGbIh4bAtNGkXHUwMDFh3D5cdTAwMGbQa5NcdTAwMDQlbiUuXHUwMDE0eVxmg4pcdTAwMTE1XHJcdTAwMTJcdTAwMTa4eVx1MDAxYUqYdGaSIFlcdTAwMTOWgv1R+6mQV6bMZWw39oeCJD5J0DlcdTAwMWEk503LXHUwMDE5XHUwMDFigv6iXlx1MDAxN81ohnCJPYQlXHUwMDA1naQpOlx1MDAwMlx1MDAwMZh9Z4BONXnSvWKUXFylXZKchFEmXHUwMDAxvaiCwlx1MDAwNdxcdTAwMTlFt4xTwlx1MDAwM+RcdTAwMDGUo0pcdTAwMTLEwavIbHaU7Fx1MDAxMpI2S7FcdTAwMWVcdTAwMThC0UknNVxipVx1MDAxZTDCMKrdXHUwMDFmK5MgjFx1MDAxMFx1MDAxOCteXHUwMDBm0CGg6KNmL6TSSTSEUITuoK5X1Fxig5K0XHUwMDEyXHUwMDE0gSehQaKsXHUwMDAxqGtcdTAwMWaQ21x1MDAwYmPOUFx1MDAwMYxcdTAwMTDKyl6zXHUwMDFkXHUwMDE0JXnwJVx1MDAwNa7Iw1x1MDAxYkCQYcMlXHUwMDAxeN7ksiRBkmtcdTAwMTThbSGJTIqwh8lcdTAwMDbyQL+WQlx1MDAxM6aHXCKAp6A8NUgwXHUwMDFlluNcdTAwMWKZ7Fx1MDAxMFx1MDAxMbpPSzCiSF5cdTAwMTGBrTZcdTAwMTSbXG6qLaYwOFx1MDAwNVx1MDAxZlWfrGGiXGLd4CNcYtWEs5lcdTAwMTQ5+Fx1MDAwNZvohIJaXHUwMDExvUJWUpJcdTAwMWWj+aC2aY5cdTAwMDRQxCaSg1G3XHUwMDFiRcUpKupcdTAwMDBi6MiMiez6XHUwMDAwilx1MDAxMVjh1EHGqt6TUdScXHUwMDA1i8S5MXrz7OtIzlxiamCmKbAm6TL3UMTbgqBcdTAwMDY0XHUwMDBiYWpcdTAwMDZLQcJeYjS3XHUwMDFk10PKXHUwMDFlguSzwovD3NZ4dlx1MDAxNkVWXHUwMDAysygqXHUwMDExiVx1MDAxYVqZZFx1MDAwMvBUj1x1MDAwYjuboqRcdTAwMDRgR44sr5NhlOZcdTAwMTKh7Fx1MDAwMX1abZOyXHRayv8zlHxcdTAwMDb5l8TqRJB8XHUwMDE4mvBtdFx1MDAxNbJcYvJcdTAwMTLEXHSVn5DJ0/9UKCAvbLuTUDZByMPu1jE9XHUwMDE3XHUwMDA3fOnp1is8U2ZfRXBcdTAwMGLhXHUwMDFiKGHKWyNcdTAwMTDTwy2WopqAXHUwMDE21OYkpOVcdTAwMWF0r3KmKcKSiC7iZykpTUM3PVx1MDAwMdn0XHUwMDE0rETYXHUwMDFmX762XpFDXHUwMDAyXHUwMDBlqlx1MDAwN3a0XHUwMDBlac5nXHUwMDFkM1BcdTAwMDTkc/La98hEyCHIdFI/MFx1MDAwMjM3XHUwMDEwYruZy1xyiVx1MDAxN7lzeqQ2XHUwMDE1SUIg8qYmy6ZHzf6w6U70cTCTWiGvcidcdTAwMDUxm1x1MDAxZbW5hFx1MDAxZYA0bLZt6tF82FX6mJLSWHaSMclPbDVcdNiWg61HOTsqQ4T4wEbr7CtcYraHXHUwMDFlXHUwMDA3z8FOXCKzrFx1MDAwN49YqjDjdJdkXHUwMDE4PU21bY44pafqJsI3UHVcXFOjR0nNXHUwMDA2s+lcdTAwMDGJU8lcdTAwMTJAkVU9XHUwMDE4XHUwMDFiXHUwMDAwLMqAg2Bgjiqvsuhp8sqS641Sxfr4XHUwMDFiiYNghEJs8KZyyCZIuZWCcm5whI71XCJYXHUwMDFioS88XHUwMDBiXHUwMDFinH2lXHUwMDAxsT2AJo/6OpL/r1x1MDAwN2LjtlPmXHUwMDFhTLJsXHUwMDAwq6GZyDVJcokqg1SSmqSWYjBTdNQsNptcdTAwMWOuXGJZXHUwMDBiUjd9WD1cdTAwMTZcbjXK9JDjTa94XHUwMDE2PcrJUVx1MDAxNCihXGZU6tbZY0G5yPSjlHSYyJmbXHUwMDA3XHUwMDEzXHUwMDBmRqtuZU/3vC6ZeGBq8XWZsumpyM7G00XkIe+xQVx0zVJeZFNcXGTTo3VBMkNkxlx1MDAxYnlHXHUwMDA0yUSGOqdU7mbaTjY9SuFcdTAwMDFcdTAwMDbGjab5XHUwMDAzPVx1MDAxNjxEXHUwMDE1tetcdTAwMTTNxoXZ5KBuKE9Gk2pcdTAwMDfs6HEv4FwiYVx1MDAxYpqBpoC3XHUwMDA1fKTyVKrG6Wk8XHUwMDE4uT8oUd+0XHUwMDFhXHUwMDFmXHUwMDA3LI96fFq691TGmDhccvLOkE9YSFx1MDAxZFVzZpKz5P2D/Vx1MDAwYvVcdTAwMGJt6Vx1MDAxM05uclx1MDAxZVFcdTAwMTE7RFwiNG+AN1x1MDAwNeRcYklIKtfArfZxcpaqhFx1MDAwNOXEcepcdTAwMDOdfVx1MDAxNrZEVT1cXFx1MDAwMzxZKklLevJcdTAwMDBcdTAwMTdwkyDxrFx1MDAwZvF+tF1/MFx1MDAwNlx1MDAxNbY8gTRyO1x1MDAwNml1OjJcXNpxhVx1MDAxOL28jkvaO4dLXHUwMDA3zmVRh+dcdTAwMDS1vG5VXHUwMDFiSXn6OnCVVkkvbU6vL+5cdTAwMWQxkaIpXHUwMDA05Fx1MDAxMkt6uXN6pcFcdTAwMTZgXHUwMDA2XHUwMDEyKE2ngkmQy+k0J6bF2zAmaZeSXHUwMDFhMrdPn0SKpYVBTuIq22RMJGfIwVDqoMNpwIahLqgyQS5nRIRcdTAwMDQyOVNcdTAwMDHrXHUwMDA05Vxc21x1MDAwNLm8XHUwMDExXHUwMDFiQ/BcdTAwMDdCT/cp8M9cdTAwMWZQws2CaLJ0XHUwMDFhTVx1MDAwN1mCXFzOeFx1MDAxN2lb7I4nXHUwMDFmYk+JSnBcdTAwMTRcdTAwMGVcdTAwMTBcdTAwMDCSRFvyXHUwMDAzXHUwMDAxhiZiUvmDg7pcdTAwMTRlR5PhieskZJJe3uglXHUwMDAwXHUwMDE06ShGXGKezDSVoJc3vopcdTAwMWJcdTAwMWaFXHUwMDA3neSypyYqf/xXkVx1MDAxN1x1MDAxN9hcYszTW9kzRHyaXHUwMDAwsiN8XHUwMDA3dW1Fj8mXO4BcdTAwMGVcdTAwMDBPXHUwMDFj6SB8mn1hXHUwMDEz9PJG+KnZMfX/5lSoXGJVm4BkuVNcdTAwMTDARFTxoqP0XHUwMDE16rOQsKlyZ0mQjYbdIUCjqVxiMplcdTAwMDSUN49DkpuAXHUwMDA0JH7XL3ElX55cdFx1MDAxObiGOKBVSZ7Mq8mbXHUwMDA2XHUwMDAzXHUwMDBiXHUwMDFjm4e7XHUwMDFm1UWKZJJJ/kRcdTAwMWTygJOThfC+SFrgQ6RcdTAwMTKRXHUwMDBmg8reSCf0gbRDpDuRm0VFlGBEkv+mp4tw3pwsXHUwMDFlYSlYdczIqNlHTypa3sQxclY5Yk+yXHL6vXXu5Dbyp0FtkOqi0lx1MDAxOM2SXHUwMDA3nT9cdTAwMDUvy+k3dFx1MDAxYeF/df/zP80v/bv1lyMkNlx1MDAxYk29XaCtvr6QldnceGHnr6+Nz8Ojrbf5+1x1MDAwYv98gT9FZnM8s7larX5TWrM0VDDK/CTPoiuymous5lwiq3lUXHJaZDVcdTAwMTdZzdHHRVZzkdU8gGCR1fxjXHUwMDE4L0+R1VxcZDVcdTAwMTdZzVx1MDAxOdSKrOavT4us5kxyRVZzXHUwMDE3wVwiqzmbYJHVXHUwMDFjJ1dkNVx1MDAxN1nNfSlcdTAwMTZZzUVWc1x1MDAxN8VcIqs5m2CR1VxcZDVcdTAwMTdZzVx1MDAxOVx1MDAwNIus5ji9XCKrOZ1akdXcTa/Iak4nV2Q1d8hcdTAwMTVZzemrK7KaI3JFVnM6uVwiq/mLXFyR1dyXXpHV3EWvyGrOJFhkNXdcdTAwMTEsspqLrOYhnX6TltVcZlx1MDAxM1x1MDAxZSxDYyW+vpGV1rxSuZ9/YHNrtzNz+/7u+O2Bv1x1MDAxZJ1NeFqzXHUwMDAxYuMymlx1MDAwZiGJd74+jbKaXHUwMDE1WTlcdTAwMDIyhDrwXHUwMDFi3XHIJLOa/5u1/qTnNJcr52fVcp+05pKjoSOmXHUwMDAzhL++8pXWXGa0p2i0XHUwMDE2IyeWdp3o/1e3Zlxyk4dcdTAwMDYxfX3QP6156c1eTVx1MDAxZMjNj9eZo5f59Zube3O30J14W+Q9fz29yHtcdTAwMGVcdTAwMTFBXHUwMDAxXHUwMDAyi3yXJlx1MDAwMnrNcHmmmlx1MDAxOPHX5MuFXHUwMDFkQ5FlSUm6cd8spbNqytFcdTAwMDNutlH0IEAjQK9aXG6LypZxXHUwMDE5J0iTbkn3uyhaXHUwMDEyXHUwMDEwsdF4Lk2GI/tcdTAwMDSmhYiTo0E6hoxcdTAwMTNcbpBnR1x1MDAwZllcdTAwMTS88DDY25G5ODknYVx1MDAxN4NJODQ4y56DROOrPJBcdTAwMDLekmZZJKY9UpRPwIZcdTAwMTHkTFwiSJBNXHUwMDBlZlx1MDAxZJRcdTAwMWU5XHUwMDAzm1Nt4+RcdTAwMDThR9hiNsxxx0tcdTAwMWHogFx1MDAxMt1ky/NcdTAwMWUnp6L8xnZUI5vaINnbpJaQuqORXHUwMDFic7HAz8ZcdTAwMDTAVjx6qWBMcOFcdTAwMGZParubdaXn61x1MDAxYjPr1Xp99bI24ZjAMlx1MDAxMlx1MDAwZjB/uKFcYpRKglx1MDAwMlx1MDAwNXRcYmiqyZij0P6IoGDQXGJcdTAwMDdRXHUwMDAytLSQJVx1MDAxMFQ2XHUwMDFhOtVcdTAwMGJcblx1MDAxY9AyTUvjlN3Qbf9/gVx1MDAwMppcdTAwMGVEs7gzQMEpu69U1peu7k5eZENcdTAwMWbfvu+ePZ1cdTAwMTSgoFx1MDAwMFx1MDAwNd9cdFxucHtcdTAwMTnVLWhcbjrZgJy3XHUwMDExf12ieLzmVD7IoqxcdTAwMWSVoEe+eGUjrVx1MDAxY6AlaahcdTAwMTLUgqRyJZqTXHUwMDE2j686Skh0tC48XG6wJSAtXHUwMDA0hjTsbPKZ2J5cdTAwMDA6yFx1MDAxOVx1MDAxOFwiNFxms4loslx1MDAxNVx1MDAxMTlLIcRoXHUwMDAyYc+k+yY5XHUwMDA1pGCExTdcdTAwMDIggVwibMG9oJzIhFojMcSjsFx1MDAxYoOpJLOTezmsLtIkNEu2d653j1TLJof3w+qMJHHHXHUwMDEy9nru1VxylrxDbV06ud9cdTAwMWNcdTAwMTKQU1xcXHUwMDAxW4a7XHRcdTAwMWWrtdXyxo5+eNtev79e3fg4OayqSYdcdTAwMDRRZlx1MDAxYoviTpQnmIRcdTAwMDQuKkWg9G1cdTAwMWHs1XGrjt9PwMj9Tlx1MDAxObVR0LVj639BXHUwMDAyWVKRUGI0Llx1MDAxYTC+d6qTwkWkUYdZmKC2tfRwfrMql+5cdTAwMTdO+fXb3NbRirkoMEGBXHS+XHUwMDEzXHUwMDEz9Fxc32/+NVx1MDAwNbxYVCjGXHUwMDE4jYPUcXI0gVU6p1t1tFx1MDAwMZBAUUxcdTAwMGLKTUdeXHUwMDA3XHUwMDFlJ5dMgsymZz0ja1aSXHUwMDEzUjifnE1cblx1MDAxM0TTMFxcXHUwMDFhXHUwMDExXHUwMDE5kuNIxSrEXHUwMDA1xsf8mU1qUI4059BqYZxcdTAwMGWIh8CuV1iUpHKBZuFKnFx1MDAxZVxydFx1MDAxNVJqSq2HvFxugFx1MDAxODrKvNTSkmKNZyBRMphtT8CmSu6AXHUwMDE5kcBcdTAwMDNcdTAwMTTq0Fx1MDAwMELGJlx1MDAxMv4oWsgo8Fx1MDAwN1xmaWRcdTAwMDA+XHUwMDFiLHybn1JtXHUwMDAyjYcmrKFcdTAwMDJcbpLS6U1cdTAwMTIseKycPzdcdTAwMTVjXHUwMDFmbNBcdIL1TnykqfK5OqOI8oNY+Xjhs+vrK662szfVONqfmmxsYETn3yMw0PXvSe1PaWFCpev+hYWFPr5cdTAwMDDVIdppdNK1tpZup+InyFx1MDAxZp3V2sSvuNudi7edxevLt4PPcnnmlrmnbt1iqq8zXHUwMDE3R+LDny9cXG7NuruLs+pcdTAwMDJcdTAwMGJSzNHrpCjmr2f8u+tGto5/eebFzXzWp1x1MDAwMTZcdTAwMGVcdTAwMGbm97Yubjbf7/7pvrpfd7JMqumfr0/+07O0n6n2XHUwMDBmt+r3b1x1MDAxZlNv6uSz7Ou7N5fH52XZV+1cdTAwMTORXHUwMDFmu88vXHUwMDE3tUZfVd64ey5cdTAwMDOEP36p81TGfK68P/flST+QJ2E9XHUwMDFhZkQnUp/Jk/WNvcbCyuPS9ezyWbW6evFycKkuXHUwMDA38ORV+fzq5bEyXHUwMDAxXFwpXHUwMDEzXHUwMDEwXVx1MDAwZXbT8Wkr510qV/btWvSFyjvDjDvMKXpwtzOMSjA6SVx1MDAxY5PHm7879/RcdTAwMDfCVTDVbu2TvtIlm+lvXHUwMDE3yre1Ol2PzotFLDXgUbhcdTAwMTlPlchGJuVcdTAwMTb7yXS9dnlcdTAwMTdxS6VcdTAwMWFnyefaebn+9fFzo8to+eL25Vx1MDAxZYDdeKxd1u7K9b0+y1x1MDAxOUokdLNMQiZQWVx0MGZcdTAwMTeHZImEo+2dmjs7fH08ett/V7vu/eD24fm3XHUwMDEzXHTaJZ6dS1GnioRcdTAwMGVO7zLMu3qitVx1MDAxYZFRq1x1MDAwMd9cdTAwMTVKLCTCT5dcYl2+mlxmifA/d1x1MDAwN7Wnl3K99ll+Jp7qJ1x1MDAxNbpcdTAwMWMyP0MqJJeUKlx1MDAxOVx1MDAwNjn3ulx1MDAxYeQlXHUwMDA0XHUwMDAzmWCKktGDXHUwMDA1w/vd/km5Ltnn9uzt3cb8dt09PFRcdTAwMDdcYoZcdMHvTvpSZ755UzCIZo0o9bOgXGK3TixmXFxcdTAwMTE+3lx1MDAwN9R3PavtrlNUMqRdlrvu/u5oend/9flma23O7TbWduefzo+7meJcdTAwMWLFyGR6475bjPw2XHUwMDFltilbXHUwMDEyhu6pXHUwMDEwzrlk9e23/9yVqFxckWtcdTAwMDK/xrF4JIqVuFx1MDAxNJw7IaIoVVDHPFx1MDAwZv6kskpcctDiXFxcIp5CtfyUN+u1sc7ygE4uvmQt1VuCx3qz1HlJWS6lkVFcdTAwMWaXoFx1MDAxNoE8djqiXHUwMDE08kJAYF6Z9jYk0ne01Exp6ttAXHUwMDA1V9mNLTzVwlEmLPlfXFzCs6SoTFMqXHUwMDAzwcac8Vx1MDAwMe1cdTAwMTNwfrBxlOZMqmRhhqKaSkXFpZxbY1x1MDAwM1x1MDAxYaGkXqbsPNrhv53X7VWp12v3Tzl1Jlx1MDAxNUUxqpFcZtaZW+9ba/vXz8fn+/XatTmpnOnG1dGk68xcdTAwMGVkzacxg9v/KuF0d1iwrTM7lFx1MDAwN6tMQa1LIG1EVirsgi1fb/Bnw3dv395cdTAwMGXeN6TZPVjqVlx1MDAwMK87+5vq9Pb2bedj3m+plcPp21x1MDAwNVvo1PHr1DEjV1x1MDAxMiuGQiPhNu31QmPz1F1pWT6d+jjdPntfeXzXk86GXCLOhkqXfjVWZdBhVmVh1SPG1fPUxdLdwdPyw8Pscb36ueZcdTAwMGK+KrDqxGBV6sAhmY9nXHUwMDEytbCqpY4zgUHIL6xKtdLUfM7HXHRGYFx1MDAxNWa2YM3yqmCwKpXwiot4iWZcdTAwMGKsWirdXHUwMDE0TPHsOv7hwaqmxmNSSD8msGolpdRcbp7I5i7A6veBVcp3XHUwMDE0XFzl0JLHqyund/ObRl19XGK9d/pWb2ydPky4llx1MDAxND1cdTAwMGWeND35c1x1MDAxMCq1laE2j6NcdTAwMDLUo4+ZhjNcdTAwMTf+eW365bOup/3c4el0oUgnXHUwMDFloHrK6fGm01Eok/OePk82XHUwMDFhz1vTW6v6XFxcdTAwMWNsz9+ZY3Ew4ZzX61qVroSzpz+i2XTnV8JVXHUwMDAxJUC5QVlodfftqlxcX33arVxcVddcdTAwMWVcdTAwMTZWXHUwMDFhtzu1mcJcbizQ6o+JQKvUZYVcdFx1MDAxOTWfSoJVauVAJUAt4kFglerTJXV2cYlqf1x1MDAwMqvU8sdSXHUwMDA3cipcdTAwMGZcZsF2lpy+VkdcdTAwMWTGmY2haVx1MDAwMqt4XHUwMDEwpIBp9cv4PrCa6lk1XHUwMDEwZYZTW/9gsJrqWaW+zMrjpVx1MDAwYrA6RrDKObWEwD1cdE8nrFfu51x1MDAxZT5cdTAwMGZcdTAwMTZX1yuyPstcdTAwMWJXm/LhZtJ1ZsK1XHUwMDFhrDF/XG5wpVx1MDAwNFdFTbZHRq6zXHUwMDBin+5t+fxCzu2ufpzOr14vL03dXHUwMDE2SvUnIdeQfMtErmXsmsqui1x1MDAxY11Tx3ruXHUwMDEz9FKJTPqoYqa7xqtzv9K4YZjk2eR3fi2Hd3NGnvvY4jXFaWpcdTAwMTLvtC3qTufqyjDqKclSgknPdEhcYip59WNcdTAwMTd5jJd/rKBr4MVK/LpHXHUwMDE0XHUwMDA0wsqZ2t1F7e4yzqaV5iY1WfXuWt65p+Xtm9dcdTAwMDf58HRxMF3ljZj/utpcdTAwMDC701x1MDAxNSl1ubP+uSzf02a2ObNcdTAwMWKuZj8zPTe+65lTfVx1MDAxZlpiOD5OVVx1MDAxMKrTi+8/8Vx1MDAxN1x1MDAwZsXT0DW1REFAPHkqVfunllx1MDAxM9jB99pT038tTLjNfLS4Uttbelx1MDAxM1feny49vl9fqvntXHTvPmDicpWb0Vx1MDAwNGKeaoKuqsW2fUzFPdpkuqne391u/WlzamOuUdEv11v1xorY6L6aXHUwMDE388fbNbk9xU+2r/X1zcbe1rFcXPv2coKr/YfZlafXm5k5/6a2T16uL/cvq13L6lFxX5/8519pdNdnpj93q0rXr8XV1p27e5TLW4F0e175Z1x1MDAwMoyL+eu3o/XzpY3tI3PPPp62Lo9cdTAwMTb3+1x1MDAwMozZeuPlXHUwMDAyXGKj8Vi+rHR/o0+J4lPzW6dnL1hV/1x1MDAwMsXxVDV0dedKilx1MDAwNlx1MDAxNVxyZFNBKq95hvtPi9NcdTAwMDe6ej57f3JnT1dcdTAwMWLPM/dPgyqNJiaFOdGfjNtvLGrozNtKK2rwXHUwMDFjXHUwMDE2b1dcdTAwMTfeyVx1MDAxM1x1MDAxMH9cdTAwMTmrjbFcdTAwMDSi/8p+YVx1MDAxMUR8QUPJkC4zpbcyilx1MDAxYVx1MDAwNrNcdTAwMWPw4v5A185Xz1x1MDAxNi53XHUwMDBmt5eXrzdcdTAwMWE7W+7ud5Mh/vuqIExcdTAwMWZcdTAwMTHSW1x1MDAwNcGpYb9i1mRla02wXHUwMDEw6Sz971x1MDAxMFwieaomXCJnRb1801+E/PSKic5yUlx1MDAwNUiqkWJSkIhQRlx1MDAwMoqE11feL4tZNXPOK/Or21x1MDAxNXG4XFyrXHUwMDFlTp1cZpBcIlx1MDAxM2KkdNtg0S/cQCsl2Cs5qOeJ6GOr9FZSeWmFZvZcdTAwMTfikFF9in+yXGL5XHUwMDBlTlx1MDAxM5Svb22e7lx1MDAwMlx1MDAxZquL1YdNs3t6cPdRu1x1MDAxNtfLt2zmY8I5zbGxc9rAhoNcdTAwMDGMRk20mWWZJYtcdTAwMDWjTVx1MDAxZaNccspSSeExTt1xXHUwMDA0y1FcdTAwMWG8rPjUwfzWXHUwMDE1W/6s3jy9qe2b541cdK9mXHUwMDEwLlibXHUwMDA1ZqVcZoqwhXBcdTAwMTilVEolRZbP7WbNev85PTcrnrenNlYujs7sVaw7V8GCv1x1MDAxNi7/PjksYoSvZ+aATEqfosFSjjKzpfQmXHUwMDFjst/UXHUwMDFl1zdcdTAwMGZ3XHUwMDE37P7MlXx5vNyp7JnVXHRcdTAwMTdy31x1MDAwMNlHXHUwMDAxXHUwMDEyMlx1MDAxYTVu1C80+lx1MDAwYin246dcInbunaRGazn6XHSUL2Zu3bp9+TTyfn9lfea4PiW2J53RXHUwMDEyXHUwMDBltq6MpmFcdTAwMTmtWq32clmfpkM8yWVcXLtoQHwmmijY7I9hM5pm6mVcdTAwMWW7+Li2uGa2jj/291YqdbY6z47XTyY8tby7dKLJZeJ7uKxfh91cdTAwMWUuw21cdTAwMDV86Fx1MDAxYVx1MDAwMF14sP94LqNZKlrm8PPaZaEudo5eNqo3dytlvnzhrnbEhHNZXHUwMDBmaPQjc9lIfl5uXGaloyhV6LP20/98TvOWho6GM9rtxdHH8+La5+bu/fzq9v5sbeapvDnhjNbj5lx1MDAxZJ3RRnLzMthmQqlfmflV8NmP4fgsv5+X02grKZhcdTAwMGXHjIvVh1xyteDt/u7dxsz9/Hvl+qVRnnQmXHUwMDBi1mY/wc/LKbHS0FD5XGZcdTAwMTbzu+cz1ZfHxzte3ZiZvZl7n9vbXHUwMDEw3Vek4MHC0Vx1MDAxYv3L1/8uXHUwMDFjvbG/7Erxslx1MDAxNlx1MDAxMNKFY4nro1x1MDAwN8b1Y/3u7OVjev7lYbGxd8gmXFzMfVx1MDAwM2hcdTAwMWZcdTAwMDVLcFx1MDAwYtCumJVZZdaFXHUwMDFjmzwsMSynSVx1MDAxYZfE8oyFmnvYaVxc3SzebCzuP/q1qfW767PjrUnntGQu5Tc5oUJcXL3UWz5cdTAwMWFOW3BZ6+l/PJdcdHBcdTAwMTjj5HlcZuayl92bz9fNpauT1+vDub3nU/X6JCfdNk66en3y2T/R1SuYNzSA2mdNWClcXL2/XHUwMDFim1xybjzgOY1HXHUwMDEwMtw6Pt+4vfo8OJBq93l1Z+WzPvu5uDXhsDE5x+iXVlx1MDAxZXLNqKmJ1ln+J3Zdndq3M7tcdTAwMGIr95fbXHUwMDBmV1x1MDAxYuds9X6u+5rsry8/L50vudre5dLno718Wti/ifHhcaPmuVx1MDAxNm+rO5Xp08fX2Z13udv49tLE7y8h/Fx1MDAxZS6/Xaj6lZ03dTH9eTT3/Pn4tLb1qPpy+WHj8aZab7w99WXaMVVcdTAwMDRcdTAwMGVuw+yMUGDbcJadqbPy7sLa0tHV8YLeM+87XHUwMDFiXHUwMDBid9NcdTAwMDNYdmKKeZIzTb6zXCLQ99GPfVxuXHUwMDAymTaCJlx1MDAxNf/GjPt7s9ZcdTAwMTgrXHUwMDAwe1x1MDAxZvRcdTAwMGKr/zqLXHUwMDE5TlZcZp5TqIU3gmtcdTAwMWVurD6fbl9OX11tPN7tnT262/fl15mZld9OWHxj6Vx1MDAxZudcdTAwMWRBlFr7J63SXG7wqlx1MDAxMFx1MDAxN5MqLnLX+t02XqPN6Ss0fk2939eSUkXHwMDZ4J4k2tJEd6fCLXDln47U2eX21NLa4cfy8vaCVvJwsk1cdTAwMDMnbMlyQY2qmdaya7poU4zoXHUwMDEyZ9Zz6S3zqmts75BRNVc+U1XXK1NESWgmXHJjXHUwMDFjy1Cqe6RjXHUwMDA3kJSY5V5xabWVQokuh1xcS+LQxHrjZeb08/2plan9e3a3duuOZH1+/ePj6fStm4N+pUiaTE/b94qk3ybMljMox0qM42yoXHUwMDAzpWHW4L94vFx1MDAwYmhJXHUwMDE4r7liTsKokSx7LjeRVIYp4Tn15/Cyy45uUtRSglVpWINcYmvSzmh0ubfOWuek55wnplWXrMPfeitcdTAwMTilXHUwMDEyOJXdp1x1MDAxZFx1MDAxNK1TXHUwMDFjv9Aw07QyLtFcdTAwMWOUQdBYZpx1XHUwMDA26IxnXHUwMDExbHG+XHUwMDAwd1x1MDAwYiWdN/pcdTAwMWLJTeWml/W+k0Ix7ZSnWsdMY9ghR6Xm2Vx1MDAxZE4zruLUUHcxnWGm8nPMT4xd51x1MDAwN1x1MDAxOVIrz5zNkZwzt6beXHUwMDE2P/ZnltZOj2dunviu3a1MeN8zJ038OscxhvUlbZxUWuJQmVx1MDAxY1xcUzFcdTAwMTaMob2OWidcdTAwMGLXp2dlWzLQeDmhZczl0lxuXHUwMDEyyKjXscxyXlx1MDAxNlx1MDAxMKOAXHUwMDE47T95M3lcdTAwMDbd0zH8vPeC51x1MDAxMog//eekXHUwMDEwrCElXHLBwJz20iZ0v6PW39BcdTAwMTJcdTAwMWVKXHUwMDAzWiN7KE406EdakPOOK0id+FRcdTAwMWFcdTAwMGVhXHUwMDA0UsppaoiuXHLPblx1MDAxY1x1MDAwZYrGwDbCXHUwMDAymGLUn9XEKUpocKzdSCe44qOr/5b2h1x1MDAxNsTisaEu6K3T1lxi7W9cZnXaU2RYYbFBIC9tXHUwMDFmofyZXHUwMDAw2vBcdTAwMWGPdFKGbGPqUUPzY1x1MDAxZrQw0kiJe83E7636afdcdTAwMDDceI5cdD1vu2dvx/zu+OHwYb9S279bnl9/u5903e9jXHUwMDFlhI7qaFx1MDAxNVBcdTAwMGXwPlxmp/pcdTAwMDdcdTAwMTWgmJKgyD7NXHUwMDAzoclcdTAwMDdd6Wpfqr/9XHUwMDE14Fx1MDAxMKdw/2Rvf3TvXGa3rFx1MDAwYjhcdTAwMGbQ/WdrT9tvi4vTu+tTJ8dcdTAwMGYzm6tbJ0crhe4vdP/43Vx1MDAwYtChWikqXHSFTHRcdKFcdTAwMWVZU4ZcdTAwMTkoXHUwMDBiiFx1MDAxYVx1MDAxZM2gy57DwUpGQFdpzlx1MDAxZKwsqlx1MDAxNknSNFx1MDAxMoYkjVNcdTAwMTZaXHUwMDA0WnVeSEOu1OhcdTAwMDdJY5Y0XHQ+xEKhMFx1MDAxNJSuy7Y9eUkwzyE7YFxmkpWoe8xEpVx1MDAxNMA6jGNLvlx1MDAwYlx1MDAxM0KS+Fx1MDAxZV9m0NJOJdRcdTAwMGZtttXSwlxc05Tyalx1MDAwM4BcdTAwMDEvUcEunlx1MDAwZr6B9vXGJyhCXHUwMDEycWlcdTAwMTVUr4SWVNnAgJe8hVx1MDAwMlx1MDAxNEJAsMLgVjZB0cLKXHUwMDA3LVx1MDAxMlx1MDAwZU7i8Fx1MDAwMuBcIlx1MDAxZKbA442OYIFIUPQkvplcdTAwMTdMXHUwMDAwXHUwMDBmmYCpiKJcdTAwMDRZT35cdTAwMDTAXHUwMDE3S1xiJele4ZJrTVx1MDAxZjBgXHJo81x1MDAwMIraXHUwMDFha1xyXHJcdTAwMWbkvT5cdTAwMDFcdTAwMDAsy3B/YEtcdTAwMDMheFx1MDAxZrCPXHUwMDAyJ1x1MDAwM1x1MDAwNKpww1x1MDAwMfekTFx1MDAxMsStgajDOrnAI3n2XHUwMDE1XHUwMDE3JWekcth36ERcdTAwMWF2nqToPO42XHUwMDAwXHUwMDBlLpaAXHUwMDFhyUZsolx1MDAwNEZhXHUwMDAwOp5cdTAwMGKpySHzr8S5gZ+40lx1MDAxZefnvWPZ11GWmFK4t1x1MDAwZWejonHsXHSKKlx1MDAxYaeDPcTzRMhcdTAwMDVcdTAwMDdFz4HJOEg2nUZcdIq4OWB8JmXzkdlMKOPxXHUwMDA2k+Dr9sc4aTxcdTAwMTD/O/s6ZqxRliCVlFx1MDAwNk4lP1x1MDAxNY3kXHUwMDE5dVx1MDAxZlx1MDAwMWnwvjhcdTAwMTBcdTAwMDJcZsYrXHUwMDE5wjKpZ61KVLOHj7xcdTAwMTGKiSCCqddRkeJgzojII6h99vyhdIZRJWxcdTAwMDbeXHUwMDFh+8e8tkFiJ5WlVclBrTkyXHUwMDA3LHhQhHB0qtTRJUZzqEDQ4n2l96NcbkZNVlx1MDAxZK5cdTAwMTNAUfPmjCq7NVxmJmytgX40zVx1MDAwMV2j6lx1MDAxN12CtIFAtFCsUGxcdTAwMDEjuNI1oMah0M33TOBhSoVcdTAwMTBM1dK6XHUwMDE0XHUwMDE5sdGxQFfZICMxXHUwMDE1Slx1MDAxONiQuM5cdTAwMDb6nktcdTAwMDPcOircMSVOJieTXHUwMDAyUlx1MDAwN7s4MiZcdTAwMDNBT/xcYpjDYYmbfNO4pnrNlMzfj31BzVx1MDAxZLMtQCDjo81y79i4T7R15yRcdTAwMDFcdTAwMTZcdTAwMGVtXHUwMDE2n6I8xJ1cdTAwMWI3V7S4Vlx1MDAwMlx1MDAxMVx1MDAwMGAo4ZNyIFx1MDAxZteOXay0XHUwMDA0XHUwMDFmTldCbWqZXHUwMDE0KjnlXkswy471PZpgXHUwMDFlt+ZcdTAwMTizZlx1MDAxYrfmXHUwMDFkNzRcdTAwMTg7eGnhK4XtacWHR8RXY4eAXHUwMDE5K8yPUsdcdTAwMGWkx471x26OjNtgXHUwMDFhu0mXIWbyW53pYjC/XTx20z1Dj+T3LozdXHUwMDAxkqGKh3DSjN+TlIFmhnB3fYdXbrIjXHUwMDE5nOR0nuGtz/XVx3XjLqQ+Xb1aaDx/TFx1MDAxZtur3zqQMe4khoGttFx1MDAwNiZB5khigN5cdTAwMTSauVwijlx1MDAxMX1exDF+/PI4XHUwMDA2WTowK1xcM64rVWLaOVx1MDAxNFx1MDAxModl5Vx1MDAwMfeMYDzEfcpKgMNCOVx0XHUwMDFliMR6kqRcdTAwMDNjKENYXHUwMDFjTO19XGJFbVx1MDAxZHdMfmXIxSlySyY09K00kSshgKBcdTAwMDV2x2/w9spcdTAwMWKWXFyiZIo+XHUwMDE3wFx1MDAwNKRGg1x1MDAwMi1OO0XywUlcdTAwMTmRjFNcdTAwMDRcdTAwMGWH/ubtXGJ6SDBcYphcdTAwMTlcdTAwMThcYlxuXHUwMDFmVlx1MDAwNux5XHUwMDE3J1x1MDAxOFx1MDAxMcKTLM5cdTAwMDZcbjckgMGALYTF46HzlUueNP5cdTAwMTZwXHUwMDAweFx1MDAwNq9hrMr2t/RkQnbTXHUwMDFiXCJRXCJ9gZwgXHUwMDBiYDOjgeVcdTAwMWHQIMhjlbKFwFxclFx1MDAxNeKhNlx1MDAxY2Q14O6Ih1xmKM5cdTAwMTV5YPJkxKTdQ8BMY40wXGbHK8GDQStM41x1MDAxNDI+iJcpXHUwMDE5hnJtglgvjZmBrH2U2+pcckx06OeQQ0mVOFChXHUwMDFhut7RTF3ueXYu7KhZUuNezpj3q3WgsF1YXHUwMDFmXHUwMDBiOv+BjvvGjZslxs2z41x1MDAxNipjXHUwMDE2euNcdTAwMTbK49ZcdTAwMWHjVmtjV7zp/JFcdTAwMWZcdTAwMWGMXHUwMDFkvHxcdTAwMDPCmmyTlMG41lxmQD/YJn1bWalcdTAwMWNcdTAwMWbVtva37j+WXHUwMDE2d+cuzjc+9ibcJlx1MDAxNapkortqcXqia0Ryq1x1MDAwNjiR9vZNNmlK6lxcT3pdb1x1MDAwNl6nlZyUYFx1MDAxZpnV5KqwSlx1MDAwYqu0/eenZNcpwyh4XHUwMDA2bd/Pj6e9w5ecXHUwMDEzjotcdTAwMTDcXHUwMDE54m1cdTAwMDRcdTAwMGZ57UkxyZCAc9Ml6iHCJeNcIulcdTAwMDWOPKLkuYKM8Fx1MDAwMFx1MDAwNcG5dcJcdTAwMTKCtVxuhFx1MDAxMyQjty3FOLwygvybXHUwMDAxJEkwXGLqXHUwMDFh6J3WXVPF21tcdTAwMWS5lrVcdTAwMTHShlWKtbzfwuN8VL9ytqFz64BljcJcdTAwMWGSbz1sap2QUitcdTAwMWFClaDn42Gu7E1shThIgWtcdTAwMDBcdTAwMDBcdTAwMTffw1aEXHUwMDAzwFx1MDAwMMBL2oAqg3ZcZlx1MDAwNs9muHOiJ1GvXHUwMDE5g8Em41I6XHUwMDE5ssCAIJFcdTAwMTJArT5imFx1MDAwMILNMJagkFx1MDAwNFx1MDAxM+NLqlx1MDAwM9RcdTAwMDW5ZE5PK85cdTAwMDbcXG5cdTAwMWOuQm5hK1x1MDAxMkiczCikm+C+diRcdTAwMTBcdTAwMWGPe1x1MDAxNkqRgpV4XHUwMDFm5r1cdTAwMDSj6Fx1MDAwNMWhU+pcdTAwMWPuXHUwMDA2eMz2XHUwMDBmp3airaMusVx1MDAxNfGFXFxwXHUwMDEx5lxmKGrO2MZmUJpcIk9R4My4kHy1tINcdTAwMWU+oa7/TWxF9cnEjMydUVx1MDAxM1CHz6dcdTAwMWLAy62sXGKonqZcdTAwMGVcYlBV6dKmnbZcdTAwMDFcdTAwMWQgg5ydqcKwlVRcdTAwMDL7yEbR41x1MDAxMDddmrBuJb1gf6FcdTAwMTEtbLNR1UkzKVx1MDAwNyxcZl1vpFx1MDAwYsr2S9V4rawhR0qP4t8hb5yqlVt5TW2TX4U41dKAQzvvilJVXHUwMDFjXHTXUbFNMy9MYDNcdTAwMDR22YuQXHUwMDA1plx1MDAwM7B25lx1MDAxYdee4fZnL7F/Kt2XSZL587GvZ8w7NuZcdTAwMTNcdTAwMWT3jVx1MDAxYjdLjJtnWzJcdTAwMDVYRzBcdTAwMDOBx0eTKUF5dOFcIm+88ritLyhcdTAwMTEyylqMp2bk11x1MDAxN9+URlx1MDAwN8joXCKk41x1MDAxMvRyKtxvSqMzXHUwMDEyZ+FcdTAwMDDyVFx1MDAxMlx1MDAwM+VFLG1QxVx1MDAxNZX+XHUwMDFh41x1MDAxMvTyYqreNLlcdTAwMTFhX/pcdTAwMDKHTqJcdTAwMWK0g/mhc1hcdTAwMTJdOLjPuILflEOXwzzK4OHc9tuY7cugXHUwMDA0ulx1MDAxY/ZvunhcdTAwMWU6f258XHUwMDFlhLE7OcbviFx1MDAxObuzaPxcdTAwMGWtb3C7TXaoQlx08Cfx/Nc3skJcdTAwMTWv1bKa33mq7jV2ytvTXHUwMDA3x2tPTydcdTAwMWK/d6hCNWPmUOWSxVpcdTAwMDR9S/pcXL/cuFx1MDAxY31cdTAwMDYhrUDCq1wiVFx1MDAxMX1ehCp+/PJQRUh4V0BcdTAwMDbrXHUwMDE22lx1MDAwYs65sWTLUtY85zZBk4LQmitrKTtcdTAwMDVyOIBkXHUwMDE0JudQ9r1cdTAwMTCyXHUwMDFkJaf+bjIsllx1MDAxMkXxSVx0QK4wyVx1MDAxMm1cdTAwMGKjKD5N4mOt2sNcdTAwMDCKzTyDaFx1MDAxMK3UiT1sZlx1MDAxOchmXrlcdTAwMGVKg4rSIGDzXHUwMDAwXHUwMDA0YTNdYoFRuoKAXHUwMDE5XGIo4EJcdTAwMWHutfM0XGLncG1V4kCiNFxybVx1MDAxONPN7jkh9Fx1MDAxMplcIt1cdTAwMDTz91x1MDAxOExdXyvLhbrqNmtcdTAwMDFG3cB2XHUwMDFhXHUwMDBlszhoXHUwMDE15CVNO+B2llx1MDAxMEwsoHTug1plpN3AVlx1MDAxYZNcdTAwMDb4oVqhkIhRKoO006zaXHUwMDE5XHUwMDFhPKS4NZWHW4lgRrSERlC0MShTTcGYltZcdTAwMDRsYr/MuY7qzVx1MDAwNovRcpTB/+NcYnB8csTljHvHxnyk7StnwEtRqZVcdTAwMTjtyoVlzoXzRJtlXHUwMDE1kL6kXCJcdTAwMTgxXHUwMDFhy7ZEXG6ZPySpktuXV6S0JVx1MDAxZTdcblx1MDAwZocl1C9zLlxc4qWuLr9ATt+8/FxuIyxvLlxco6VfviE07lhcdTAwMDHB+Fx1MDAwMUuGdFx1MDAxOVx1MDAwNlZNtCmKt6GmyDzH0Lnd/fr75vPyuljl9Vx1MDAxM70wbVx1MDAxYfX9STdFf24lV995dOMp42JcdTAwMWGcSJydYYcu39Zvbf22LG+uzN0tWzx7uDteL+zQwlx1MDAwZS1cbrmKQq4mwaKQa8QtLFxuuYpCrqKQqyjkKlxuuVLpXHUwMDE1hVxco4GXv66Qi1NLPme7XHUwMDA2gmWZpI+np69TJ+tmbu5isXxcIqYvXmaWzYSbpD83Oppmko5cdTAwMThcdTAwMWGl5Dh8wWaNYCtM0sIkbf+ZXHUwMDAwk7RcYo1mUixCo52Pi9BoNrlcIjRahEazXGJcdTAwMTah0S56RWh06M0rQqNZxIrQ6I+R7FBvhXRcbncr2FxmXHUwMDE1oswvxex0uX6wXCK3Xtny1uOBnXQz1JYoi1xcWedcdTAwMWNVXGbEzVBnSpTdriBcdTAwMWK8USaxrLxGqDH+omp67VBTkrBCXHUwMDE1TY9TXHUwMDFlPNBcdG5+maG+XHUwMDA00OOwXGJvpGasK3P6K0NXRenmLmtM59Xn/NvlzeeaWNMn01x1MDAwN5v7U2758qgwQ1x1MDAwYjM0dM5mv5H1P+v3ilxuSaDzJFiA9VSvXHUwMDEwcoLmXHUwMDEygI2aOutk17eCJPSMXHUwMDAwXGLRXGZqhfX2LVZYKpSw8457KUNcZj0qolx1MDAwMmYgLetYpK+SNL2kMdyMRVx1MDAxNUdcdTAwMDGWlFx1MDAwNHBcdTAwMDXAVlx1MDAxMvpcdTAwMGbsn6hrozmXNIfBXHUwMDAwXHIoWG4sYI2yRLJdXHUwMDAwXHUwMDA3QN1LmmWZIClooEA0XHUwMDEyNKpdXGYw5yVcdTAwMTSuXHUwMDA3LKTe5ZxBmvaUXHUwMDAywcZyXHUwMDFhtpGg+aVhbVx1MDAxYzQ2XHUwMDEy3zfAXHUwMDE51H07QVGR1fHlXGJcdTAwMGaxcWn2YqxcdTAwMDA6WV5kSFx1MDAxNShnjYpGcoaskWQ2o0hcdTAwMDFcZknW052bLEsgXGaNzVxm6kEgqaRcdTAwMGbgXHUwMDExgFN650VvXHUwMDBiXHUwMDE1KqI1mjq7XHUwMDBin21Eklx1MDAxZlx1MDAxNXuOnddAn1BzPZPfnXSEXHUwMDFmsTGwXHUwMDEzsq1IVeKaTFx1MDAxZSgzQcXfPEFcdTAwMGbAh4qFcVx1MDAwYlxyI9BcdTAwMWFAUFxiLygzSVx1MDAxMGDDbUxQVForySgyge+EXHUwMDE49qBcYoNcZjdYUl90k5hcdTAwMTFcdTAwMDQzRivmaMCRj+qas+1cXKq9hdFoIFxmoGZ7tlx1MDAxMDJcdTAwMDeUcGGUjtrIh9CLJoBqWKPUniS+h223NG5U6HyudIJDjFx1MDAxMPtcdTAwMGWC2EFL81x1MDAxMlx1MDAxOHQ1T1x1MDAxNvtcblx1MDAxYdVL5a9KRGV/IYdcdTAwMWNcdTAwMTXZ4b45XGIy0zuDQ0bltNSAg1x1MDAwNFxcXGJBaFx1MDAwZlx1MDAxYT9cZkTBhUtcdTAwMTLUllrY01xcJ6aChs/RxYaAdySaevxpJIpcdTAwMDD5wMRcblx1MDAxZoqwQ+aQmoZTU34q8E8u0Fx1MDAxOafw/1RcdTAwMWVoKHUhhCAnrVx1MDAwN3XVXHUwMDE0hslcdTAwMGUqjFG1L3cwXHUwMDFitc5cdTAwMWU+TL/A+UGtRVN+OU+2oOHgO1x1MDAxY1xurGNPXHUwMDAzmYOEoaKWhlx1MDAxNjtcYt76V895SVx1MDAwMD/cRFx1MDAxYVdcdTAwMTaiR621xsIwi1xm+kTslCr2gU407NbWXHUwMDA0jlx1MDAxMFx1MDAwNaUjIVxyNNNnXHUwMDAyhypZ5mnuXHIkP82XyVx1MDAxNjRcdTAwMTJcXFx1MDAwMlx1MDAwNYm9i6qbe1pcbjgntII6hElccmFcdTAwMTPSZYhcIrtcdTAwMDBDXHUwMDA2J1x0hJzcQU+14YxcdTAwMTGXS1x1MDAxOTBcdTAwMTMvqmCn5Fx1MDAwNqqZxin2TJzjzuJcdTAwMWJkMJHvKWR9MNElYSxqRcB6JjlRxS5cdTAwMDSukVx1MDAxZWa/XHQ5YrC7VdQvQEM88Z4mOZ6C0oBcdTAwMWbNiSQh+ljgjTiNVop2qWe0XHUwMDE2YFx1MDAxY65cdTAwMDCQXHUwMDE0+ChEzICgM1x1MDAxMIOcblwi+Vx1MDAxZOJ72GrRYqhcdTAwMWVeMFx1MDAxMTSRMiqGd1x1MDAxNuCLeE8l6MEu1IShsE6cW1x1MDAxMD3q+kTZXHUwMDAzXHUwMDEwdYCBMkFcdTAwMTD2XHUwMDE2+VCJ0y2+XHUwMDEwQpBJcJ6M5n93hVBb9GiqiaXy+6jzQFxi13FYy8r0Z1x1MDAxMlx1MDAwYnxcInHKODNBrVBChlsqyoUh89/1Qi5bXHUwMDAy93rhokY3jlx1MDAwNcFWXHUwMDEyccBoQpnI7Zp8X1x1MDAwNVZcdTAwMDMohDaxQVJfXG6sz1LJPqRM8rqQQ9vBLFx1MDAxMjYqR1x1MDAwZqBcdTAwMDe7i/pcdTAwMWRAzFx1MDAwMDarJD0jbDSmizFSh1x1MDAwMVx1MDAxY1x1MDAwMimHd/RcdTAwMWGISlx1MDAwMZbK5DA7nFx1MDAxMDaC1FZUvFx1MDAxZUCP7j6ULaRcdTAwMDFcdTAwMTg42XBIwNqh+1x1MDAwNFx1MDAwM4PCXHUwMDAymeQ0TFx1MDAxZOqbglx1MDAwM8SlkS4psnCZWYRlgVx1MDAxN3iAxahhhEL5UjdcdTAwMDPqNJFcdTAwMDD8mjZcdTAwMDPij65cdTAwMTPlgfns/dMlQFx1MDAxZkaoXHUwMDE5x0FtXHUwMDAwXHUwMDEyXHUwMDA0adFRhpVcdTAwMTdB1qIu0bFxT1x1MDAwNlx1MDAxM85RJFx1MDAxN0hcdTAwMDBcZlwixltpPLYjk54ht7aKWvZwevXeNmu4oPQknEjI+1x1MDAxYZL5mqbn0MQ/1aODqZdcdTAwMDRMblx1MDAxOCRMXHUwMDA0oCzcXGJI+uiNKdrBXFxyfThcdGBcdTAwMGUoXHUwMDBmcHdAWNWUpMR2w87QNFx1MDAxMYr3oCyIesUp2lx1MDAwM1x1MDAwMy17dCTRg5SHIUTNOrjUoqd1IMQsqVx1MDAwZmomXHUwMDAzXHUwMDEzLftGXHUwMDBmdFx1MDAxN7ZcYubG5ulcdTAwMDSHMEe+gyDZ+p6av1xi2d1vOfpcdTAwMTgmXHUwMDFkZIvRpi2jg96Z+SjcwUgq2Vx1MDAxZYqQXHUwMDFhxG5cdTAwMTDTgVPkcVx1MDAxMVx1MDAxOYXbINs57mPP5HPqMlx1MDAwMiNcdTAwMWNcdTAwMDRcdTAwMDHPtVxiIciou1x1MDAwZlhcdTAwMTWYXHUwMDE0mi7pWlx1MDAwMFx1MDAxMNNkkFx1MDAwMjBKS9gpRDSQXHUwMDEzXHUwMDBiXHUwMDE2VtOP3DPnXHUwMDFlXHUwMDAwx+C8KFx1MDAxNFx1MDAxNuauoI5j4D1cdTAwMWG3XHQgrkRcIshcIkhcdTAwMTLCfoBMXGZsXHUwMDA2SvKOwj+UU0WNJ3WcILA7rjVugHBQoVx1MDAwMS3/IO+IXHUwMDFicDMg9yBcdTAwMWNUgqCLKp9AMzJcYlx1MDAwMmLeXHUwMDA0wmGywa6Ecqd96qbHS1xckCuak+yIXHUwMDFhiVx1MDAwNdDTuLjk7NFUh4abXHUwMDEzJyhccnVQ0lx1MDAxZYtcZmtySGYnwK1cdTAwMDFeteRcdTAwMWFP0NOWXHUwMDAy9lx1MDAwNpdaXHUwMDEwclxygVtcdTAwMGWGu6OfKCOTTaF4yVLgUDbn8Vx1MDAxOVx1MDAxN1x1MDAwNDAhj1x1MDAwNYUrlO7pasRLlJgscEmhc8hPXHUwMDE41ErVRVx1MDAxMTk6XHUwMDE1S4NcdTAwMGXjXHUwMDA0XHUwMDAxjWG3XHUwMDBiXHUwMDFh8mnImM0kKKCRId/pNHqbXHUwMDFhRVlcdTAwMDSaXHUwMDE0tVbNlkFcdTAwMDH00vzeXCKR6ZjNx/2yJH7ez0lO0PBa5yNcdTAwMTdpXHUwMDE0y06cIDl4mcqTOkOmXHUwMDAx2Fx1MDAxOXa5jtKuXHUwMDEzR0ip+UBINCxXXHUwMDA1NfQmpzh5lKBcdTAwMGKwkGiYeYKt8KqOJojTWMdcdTAwMTCfXHUwMDFkXHUwMDA1oCHCoV+EaVx1MDAwNo1cdTAwMTN80MwlXHUwMDAwSNdcbnI5XHUwMDAw2WeskZUsXHUwMDE0mSa7k/JTRYD/JWNcdTAwMWYhPmlKJFxmXHUwMDFkz1wi0ZVcciYzzpokPFx1MDAxNEB79KRcdTAwMGVpdlx1MDAxNfv9sN/+r+5/ji/mXHJcdTAwMDOeYjIsvFx1MDAxYfh98+71Yuly/U09XHUwMDFlrcvn6uzJIV+e8Ji3dCVynOJcdTAwMGWQb00nqoHHXHUwMDFi88Zd1FXVXHUwMDFi89ZQbJS3QoUoNDG08/rdMe8owYRSxK1cdTAwMTZdwd1WzFx1MDAxYlDc0pzvrKZU7EbOrO69z23JxY3NhZ33j5u928VcIuRdhLyzQ868eVx1MDAwN1x1MDAwN5Xb/ITfk+edwCl5ISmLakTxS1x1MDAxMT/vKVx1MDAwMtoyN1x1MDAxM0H4/CpcdTAwMDJcdTAwMDSpXHUwMDFmuSOF2ux0O6JcdTAwMTZcdTAwMDNBQoAttz6ZISMq2vRcdTAwMTVcdTAwMGWBXHUwMDA10vdwXGK4kn7MQyCq9Hv3u0FO3PMoha9ZI9cvz9hR13ByXHUwMDBi+qC+1zCeoedcckVsXXNH4/TwKO9h1lxu8v26bFx1MDAwN1x1MDAwNStRilx1MDAwMlx1MDAxN9S53MlkXHUwMDExXHUwMDFk6OE2XHUwMDAw5rUzmbPJwdzyXW1OeZxcdTAwMWMunMGzNPn1Q1x1MDAxYVx1MDAxOTNyqTK8LvWmjZI74/Sk4JFzxVHUJjtcdTAwMWVOt9WRM81CgVPQI7F71C5XUKdqyYI8XHUwMDFk4EBcdTAwMGVcdTAwMTAgqMmkYsmx7qKkyf2oXHUwMDE05EFcdTAwMTh/8qaLXHUwMDE2NjBcdTAwMTVw64RcdTAwMDAh61x1MDAwZUCefPSKXFznMmB9sFV5K/hcdTAwMGZuSpxcdTAwMDZukOZcdTAwMTLHbsHBXHUwMDAxXHUwMDE1lzCZ8bqaKiCxXG7KXHUwMDBiidPD9aEhIy1rO9tcdTAwMDAm8UBrc1FcdTAwMWQpWbjd9CSJXHUwMDE2XG64M1x1MDAwNpFAPZiz6VFcdTAwMWS0gf3LorssXHUwMDEz9ChT2jDrXHUwMDA1oJlmXHUwMDAxp+HJWVx1MDAwZoFcdN4gXHUwMDEzXFzEyZFcYofJ0o6GZZFcdTAwMDOzXHUwMDBi6ubLYDSBQ1x1MDAxMiFDiqpcdTAwMDPVYlx1MDAxYlx1MDAxNORcdTAwMDVlR1x1MDAwN9Cj2Fx1MDAwNI7BtbxecXo+qsWkmKxcZmmxPLBekP5QXHUwMDA0XFw68Fxmx8qtzU7fSaVcdTAwMTa5tig2yshXzbJPYuzUjKa6YIrOJ0O3gPeKU9iHgW0h60OogclccmVKMVx1MDAxOYn4ODmwhOAkp1xmJE+221x1MDAxZORgM0CI23ZpRpycwWmSpsXLUipAyFx1MDAxZCYzWLfdSImtc1gzXHUwMDAxXHUwMDFjXHUwMDA2XGImsvO+QVx1MDAwZXtcdTAwMDNcdTAwMWRDMrKHY3XJR1x1MDAwMTrglGjwQlx1MDAwMMM6yDghKDNERYCjm5yBdrTU0ztq0y1CxDGQXHUwMDEw9Fx1MDAxObiMU7Zh/J6YXHUwMDEyxWYs9Vx1MDAxMGhCxFx1MDAwMHJAQlhcdTAwMTm2XHUwMDA2XHUwMDEyL1FRb0pUi0B5Iaa5+mxy5Fd1+ElT2MVcdTAwMWRcdTAwMTKmpPA0XHUwMDA2XHUwMDAwXHShR5RcdTAwMDNku8DRMVx1MDAwMFTceVxuXHUwMDA1xMlBW1x1MDAwMjJcdTAwMDJoQjph8Vx1MDAwMaqHwkJSRqmd5FCOk8N+UZDMkz6B1sgmJ7zvanYuXHUwMDEyL4uDUriMlI5cdTAwMTdcdTAwMTKa5uTDgtrTsP4lJXyoODmAXHUwMDA0K1xydCb2lofoWXKENovdepnMlCj3XHUwMDA1Z0UpTsSFXHUwMDAxKKVt6jc9yd3ULGC/osxDiIew1FxyWFx1MDAxZU3/d69cclx1MDAwMWJRYlx1MDAxMTc0w1x1MDAxM7ouXHUwMDAwkFx1MDAxMS1PNTyRXHUwMDFmTMXJSbwgoIGUQGQ2O2eDSns4pSA24VtycSRHXHUwMDE4XHUwMDE1RDFGcjqAXHUwMDFhTVx1MDAxZJC2OeMmIU0sRFx1MDAxN+lXhYtMQ2FcdTAwMDLgXHUwMDA041x1MDAwMlx1MDAxMlxi7Fx1MDAwZmHL42lmrlx1MDAwNOvQWpxms5l+XHUwMDAwMZxcdTAwMTdNJ6BcdTAwMTQ9yDRcdTAwMTenpiWn8IdcdTAwMDFPu2xLXHUwMDBlb2pcdFx1MDAxNH9VMCXWXHUwMDE2uWWVb1X1XHUwMDA0UFx1MDAxM5Q23UlcdTAwMTfvpuaxcoBR106RXHUwMDBlIEdYklx1MDAxMmZYa3hRnFxcwplcdTAwMTXA+oxcdTAwMWNcXK1JXHUwMDFjNj5/zZeoXHUwMDE0j5qQaFx1MDAxZsWFXHUwMDAy5Fx1MDAxY2UokZFcdTAwMTnlKfW8LFx1MDAwZUhQ7nyU3Vx1MDAxOKJxgK80+yrIilx1MDAxZoSj/LAoy1aw7FxcTrKPXHUwMDE0h2jq23NcdMfKQI4mSUhcdTAwMWFcIlx1MDAxMlx1MDAwMCWUJu0lv/grcedgR3IqpSE1plx1MDAwMmaEWMrqlVx1MDAwNCapUVDce1x1MDAwMIaAQaC0kp5S2Vx1MDAwMoBcdMxcdTAwMDTSh66NKOPUXCJcdTAwMTghQU9EJXBZ5Ci3XG6EYHUoqjo2XHS5XHUwMDE0oe6ooVxiXHUwMDBiyVx1MDAxNpfQXlS4zKldTjShJE4ugj9cdTAwMTCCLcslm5z2lKhuydRcdTAwMTIyXrBtgSNcdTAwMWOlkVx1MDAxYpLCkDjZ1KCjgb6wKy7KI0soXHUwMDFiXGJcdTAwMDXIJJpTXHUwMDEwXHUwMDAyciSUXHUwMDFkwazWkfKkZlx1MDAwNZDzXHUwMDE0NmSwSXzILCNcXChcdTAwMWNcdTAwMDXNPcL5JlxcTJSjYij0XHUwMDBmpiA1lkmOsvZcdTAwMTWFWml/ku4gSjqEXGLhpFaNXGbJuYHdQVmo7Xy0xMtqiFx1MDAwNljD3FOPKVx1MDAxZnDpKCXNkfxvj+1cdTAwMTnJjkillttiXHUwMDFhOzVcYommXHUwMDEzSCRzNcnWpOFUYFxiR6mmmWhcdTAwMGWnXG7zXHUwMDA2NrBuqv6E5Uq6gytcdTAwMTVU3iqpOJh/+V940sWB5Vx1MDAxMMbEJ5KuY1x1MDAwMDfQXGYhiGxpo1x1MDAwZUpcdFx1MDAwN1xmZfBcdTAwMDEvwaimXG6SbGokzlx1MDAwNSWjep9cdTAwMTRKXHUwMDEw9uBcdTAwMGVG3cxcIvGbuWuSMlxiXHUwMDAxdDstrbrJkfNcdTAwMDNcXFx1MDAwMKOnXTafTY9cdTAwMTOgh8LDKdhkXHUwMDE2OPQkI4VcdTAwMDaBaslcdTAwMDNcdTAwMTfiQIhcXMvQ69AoPUngnPJ5qVx1MDAxZcryqEAzYIaUoTlqX55EmSiD9mQmU9diqm9cYnBeXHRKKfdUjyN6XHUwMDBmXHUwMDAzXHUwMDE4XHUwMDE5slx1MDAxY1x1MDAwNjX+T5pcdTAwMTB3XHRZwlx1MDAxMrvHIyxcdTAwMGX4lKhcIqckXHUwMDFiclx1MDAxZVx1MDAwMcqT3FxuMIWjMDVZk1x1MDAwMNikreP0aM5cdTAwMThcdTAwMDVcIq3RZO9cdTAwMDXQo/wwqGveXHUwMDFlOVx1MDAxNadcdTAwMDfLXHUwMDExWNNqR1x1MDAwM5VCelx1MDAwZVx1MDAwMNa1yoj6XHUwMDE1SVBcdTAwMWS5otzvppsjpECQUWlcblx1MDAwM55cdTAwMTNNXzVP7CD0uYLZXHLBXHUwMDFlJV9nZ8xOdERcdTAwMWR3j7BJV3uVzJD61lXZnD4+VsX1x/TN8Vnl0dTfXHUwMDFhk1x1MDAxZVJn/YPmzYg6lVx1MDAxZEblVJD/XfPCxlxcRu5LUfJcdTAwMDfEl49aXHUwMDFkfn3hK6Lenv8qyY/tutMo2yF1iFmYkDazv3ZNT6+fuNfbmr54feHnXHUwMDE3L9XpnedcIqRehNSzQ9rpYzp/xu+jwaKw1VQr/bj7961he1x1MDAxNDmCkaFcdTAwMDNzf5vDT1x1MDAxZOVcbrOoXHUwMDFkS5IkjVx1MDAwNLRcdTAwMWO8L1wi71ZQKV18PGuCYjS2kOpcdTAwMTFbsf/sXHUwMDE4c2uALNWjRVx1MDAwNVx1MDAxZcl04miyXCKZV8LSPPqAQpf2iFtqgaSTqbVfw1x1MDAxZpmjZqo2wC3WZ1x1MDAwNm+CYt75lF9DglxyXHKntn1OJu9cYs32XHUwMDE0Y1xcXHUwMDExgFx1MDAxZlibJkkxXHUwMDFh8sm8aM2HzM4maI1ZJjzQQpAxiq0ppGS2MSUovTWAXCLNgaYyiqiYQidrtJtTUnW7zjGopoRcdTAwMDZV0yBUbKfoqYCO5rhSXHUwMDBlcNRcYihgcnprkjb2j8pKWKLYNv+g2a9R39JRNYjSyZKDaFx1MDAxMi7+XHUwMDFhV9tcdTAwMDdV7zZHkZNcdTAwMGZcdLJGxJM9v0b1KupwXHUwMDFi5PL9XHUwMDFhlU7Tf6NCvFx1MDAwNMG8w4R7K1x1MDAwNWNcdTAwMDSHKlx1MDAwM0lbYa/YXHUwMDFjbVx1MDAwYttcIlNz6jRcdTAwMTFcdTAwMTJcIsw449xcdTAwMDOtMy5hj7xcdTAwMWORS3JcdTAwMGZcdTAwMDTPYOOWsKSwpKXUk1x1MDAxMC5OXHUwMDE1NG1ZqWA4kfsru7IzQ1x1MDAxNrY+xiVtXZpRxXXvXHUwMDBijKpS2lvccvWFlGOm6bz2XHIgXHUwMDE4XHUwMDFkXHUwMDE1p46olds3lFx1MDAwZYWym4KK+tOAQ5uFaIo8XHUwMDE1OIRU76ZBmySLj4q+2jKIWr0xfCGkmiR16nuvyZNFkf3q37emQVPXXGJJqdEsWVx1MDAwMptzizJcdTAwMDZW5z3C1kBtT0szlvK8RrthrZHfklx1MDAwMFOzceOILNBcdTAwMWVKbijvSVidpJeTRTOGpueVIOkz3fNLuPSZ87lFsChJTzHHTo+k0XSEoL4p1lx1MDAxYVxuaEd9IHtaWuRTYlx1MDAwMEpUXHUwMDBmh3dxXHUwMDE0XGbs6ZCRU8dSsy6IXHUwMDBlinqaWI1Bi1xcTlxiIKh7XHUwMDEzw0ngpaJQymhcYiVqt0GdRKVmtIbE8Pr8XHUwMDEwXG5cdTAwMDRxq2jwXHUwMDA3722xOVx1MDAwNMSTsbFySe/tXHUwMDEwIDR9gflRcsZcdTAwMGXmx/HpJ5zfzki/gPlccqF0/shvqWXwb35bMkPA5Ld201x1MDAwNWB+ezxdQOf3XHUwMDE4ZOiP/E6NdP2W3+2SoYCH8FxmZUCEIbxXXHUwMDE5XHUwMDE4ZlxiXHUwMDBmW1x1MDAxNsxcdTAwMWHGXHUwMDBmONGRXHUwMDE4oWBcdTAwMDFcdNF5zcxAzNO1Pag/XFxuXjXer/TK6+nW5Vp5YcJcdTAwMDMxwlx1MDAwZYi1fMuk00GhmJ4kiK9v5Fx1MDAxOHYqOOVD4UpntfQtgjFFMKb952dMllGcXHUwMDFhyuk+tX7DXHUwMDBmO81o1D7MtNP0RvL5h52md7qfiGGn6cNcdTAwMDKGXHUwMDE4dpo6zGCIWafps1x1MDAxNoZcdTAwMTh2mjpcdTAwMGJiiFmnXHUwMDE5syomYNZp+rSPIWadpk8jyT/qNGNcXMpcdTAwMTCzTlx1MDAwN1x0nJ896zTd1zhcdPQkpV1RsztJXHUwMDFkO/hImyVLVFxiYrizzfsx4mHKknGUsm/bnShHXHUwMDFjxEqt2Kibp6H0NkhcdTAwMDA7XHUwMDFhN1CvWUhJMnM4+Nwl21x1MDAxY+VlV0V9I6mM2MHQ1Vrb0cRcdKXwUv6lMI6MyWTLnbzirp1cdPv1g9Gkcerq8muL1L3Lr8zSjza/tk29eUPAgXTOyFx1MDAwZlhSXHUwMDE5d1xiQJUqVoZcdTAwMDF9I6bwTLSZTc0tNaOC/2A7e2np0l9Vqtty9tjZmqp+rInG6oTb2VI2055bRa+JXHUwMDFlQp61OneTXHUwMDAwkZ1cdTAwMTTmb8p4VNRcdTAwMDGeUup7zex2/O1r4kPSyqbqSqa6eiFcdTAwMTZGdmFkf0/GY/8oyc/4fVDGI/WHJy+rXHLoKPKrMlx1MDAxZVx1MDAwNYv0uFxiandcdTAwMWGU8ai6yqtcdTAwMDMoJuKLXHSKTde7Nu3ag1x1MDAwMILflPFINa2MXHUwMDAz3yXH8EThXHUwMDBi6jMqWNR8IIBgM4SsYTNEPbxcdTAwMTNcdTAwMDR9/HJmb2JgviNNZLNehiT5XHUwMDA05TtyXHUwMDE23JAmLN9RXHUwMDEx2m1cdTAwMTaGXHUwMDA1XHUwMDEwjOHpePFiO8xcdTAwMDfkJIChQnq0fFe+I5VcdTAwMWT1qV7+XG6U4jRCO/mGJTzSe1x1MDAwN5XifWXSKEArKo+J816vjFx1MDAxY3GBQ+c7XHUwMDBl2sK2xKRipqjJ16iH3Fx1MDAxMpjkXFxcbusmkXFcdTAwMGJ/l4RHT1xyjZxcZphVXHUwMDE1lvDYXHUwMDExlSPKwnY6JPWrXG5junRh/V3pjmBgmlx1MDAxZlx1MDAxNNIoLUPjtS5cdTAwMDBcdTAwMWRGlFx1MDAxZFx1MDAxMNKdOiDfsXNBR0Rccm1cdTAwMDai50XNMUbENe1cXDmqXHUwMDFiNzS1aVTs1ZJBXHUwMDE218lSXHUwMDExZND0k7SUm1x1MDAxZXsni2D/dMWf9vOwZMfw/Vx0THZcZj7AVipcdTAwMDO4tNWWJjneJOdcdTAwMDVrJVtcYuBOsI6UyVx1MDAwMUU5739QrmM4e1x1MDAwNuU65lx1MDAxMFx1MDAxZq1cXFx1MDAxYVx1MDAwMd1cdTAwMTA17emZ7zRktiNvN7NcdTAwMTK9XHUwMDAzo3JJ4FY2XHUwMDEypXiQT0wksydzKohWtpRcdTAwMDZ87atcdTAwMTBzKrBWMpemXHUwMDFkVNIkJk5cdTAwMGab7eiA5EDXmGTu5HDJjpyagkdcdTAwMDPnRkMngcmO4fDpu5JcdTAwMWRx81x1MDAwNLFI/7kr4Vx1MDAwMDQs1zFcdTAwMTggXHUwMDA3pjqGI/j081x1MDAxZDbVccDty29cdTAwMDJlMEd+Iy2defNbkemyJb+ZmyH78lviXHUwMDE50jm/r+BcdTAwMTelOob7W9K171x1MDAxMFx1MDAxZaFcZngwhNfq12U65vH/TXRcYkZR81x1MDAxNqtd+Fx1MDAxNFx1MDAwN7U1ffK8tXz2sfJ8vvRojsTC6+Xv3XJirENcdTAwMWNGT3PsavbdWUulXHUwMDE1h5CK2jXZoudE9HlcdTAwMTGB+fF7pDk2a26kXHUwMDBlmjzfzo1SgvrO9TQ5b0XlW50rXHUwMDE5dcJcdTAwMGUgXHUwMDE5pW9cdTAwMDFm92ub2EpcdTAwMWKAcqfxujpkJl47waxn4EqTXpTXXHUwMDAwydpcdTAwMDRbatRcZrh23oVsXHUwMDBmr1xiIVx1MDAxOOXoUWFDNN1IJFx1MDAxMjmaiSGChltSb9dMeiFJjpaSpqRcbvJftlx1MDAxMmdcdTAwMTggZzRhum+OY77BXHUwMDE1mTmO2MNW1cao+9dMSqKGnYpcdTAwMWGWhXhcdTAwMDfDclx1MDAxY32eSWApV7CV1KVcdTAwMDFcdC2POlx1MDAxOY7II62kM6gl2Fx1MDAxZeTOXHIhmMrHrbQ4XHUwMDA3eFx1MDAwNqngQ/o4XHUwMDA05jgqMqap2WO+KpT8wzbSXHUwMDFkjJNAL8pG8qxpXHUwMDEyxOu98u9WK1lK4MB6Z0XkP85WLpcmi6Q5bmG0XHUwMDBi18414+3hXHUwMDFkZjSOaOfCSeepT2qixWt+jm2m6oFcdTAwMTGMgk1quVx1MDAxZU2itFx1MDAxMlx0qeWfSPZ2zy/wevp9jiaP01x1MDAxNpdfW6TuXFxuXZZ+rvl1bfq9y1x1MDAwZlx1MDAwNtL5XCI/WEll2yHQVKpUXHUwMDE5XHUwMDA28Y2YtDPRXHUwMDA2NnQqdJZ14aWEXHUwMDBmm4/s9vhqavpm47NW3Vm9/Dg4mJ50XHUwMDAzO2FTe5eIbn2TVVx1MDAxZN7HcWBSI2RcdTAwMTClSPCsyYiFSV2Y1O0/QyY19o2G/ISfXHUwMDA3pDS2QZZcYpkrXHUwMDE1ltFI7b6pjXPgqPCAjEbahuZcdTAwMWPpoPzDKEZHdSiR+ZbsTfAnZzSCXHUwMDFlkFx1MDAxNXNJn/2wXHUwMDFkXHUwMDFjx57QqJvjmlx1MDAxMjNO2oFcdTAwMWVOWVLYS1x1MDAxZfLCIe1cdTAwMWJcdTAwMTnWRnPzQtb3K7JcdTAwMTmH6N5Iw1x1MDAxODRV5sffuFx1MDAxNWrUYHijQ3NcdTAwMGa/J5mRaypuNDxcdTAwMTlb/abujUNkM/ZfYUte0lTX0DHvIdmM1GYkilx1MDAxY5rsXHUwMDExXHUwMDE5XHUwMDE5hzx0+8b0bMaOqFx1MDAxY5FNvimbsUtOjihnkmJyRDnY+lRcdTAwMTlpo0ZBIfRS5HTP2kdVJFx1MDAxM5PKOEBcdTAwMTn/XHUwMDFlqYxd7D0q5upcdTAwMTFAo2HAPzSTMXx7gjJcdTAwMTlznN83ZTJm9G3Mm8rIofJo3JaSNsnvw+UySoBcdTAwMTHgr6Sj/rtyXHUwMDE5w1x1MDAwNVxcUOPGcPFcdTAwMWLYuDFUO4T1bcyhvb6lcaPzNFxch9Hs6r7JjOHav5XsRrO2mz7FJL3hWjfirVwiQJhcdTAwMThCN1x1MDAwNHxqZVx1MDAwYpJbiHBcXGLE+Fx1MDAxMFx1MDAwMC+wd2PufMZBK1x1MDAxY7p546A9XHUwMDFjOqNx0CHntjMyLuE3dW/Mn9KY1b0x2JRcZmveXHUwMDE4bupcdTAwMDb1blx1MDAxY3tGY/7mjYOUyLBcdTAwMTmNXHUwMDAztdzQKY1cdTAwMTndXHUwMDFix5/T+P/bu7alKJZt+76/Ysd63nTk/fLoXHUwMDE1UVx1MDAxMVFEJU6E0WKDIFwiXG5cdTAwMDJ6Yv/7XHUwMDE5I6uvVU1VVnezbNZpX1YsoGdnVeacOa9jtMlb5fU0tsmt5fU0tkpcdTAwMDAudcVFXHTJxumxeanGksvb66s1/fOxO/m+frRnXHUwMDBl5K831txf9pJcdTAwMGIsaiS9KJmWR/3N/fqLKfVcbpTWteCuRpjhRHA3VuittDVC9S0pmseQJ1x1MDAwNl2NUUuc6qhXuFx1MDAxMun3q1x1MDAxMsy/l6Or0YpAkCMyXHUwMDEylGCGUo1bwcbYvsOXjfhcdTAwMTZ0UIVdL4uctamxXHUwMDFlu7HPOZ3TdZnayfBcdLg5XHUwMDE1wvB+XHUwMDE3g7W4mWTBs5sh8XZ6XHUwMDFh65FcdTAwMWLJzJlSOFx1MDAxOUPjOU2N1lx0weXldK5W+2TGXHUwMDA1VlpcdTAwMWXnW9/sTY1ccsCNwmOr87o4b6up8YZTOHtXYz1w41x1MDAwMI1LNs/J16txv1x0XHUwMDBlXnVhNjIqn1xytmYxPY2jy7fp07WJxj8urVx1MDAwMFeTXGLRbIVcdTAwMTV65n7GhJ6HZYhyw2DbvcxqaGxx2G6poVFcdTAwMTlccqPmy7Cyt9DO2MaWXGZwXHUwMDExYepgmYw289m6fj8jXCJSK8mwPJchrl1b+3tcIqedscU1Vrett9TN2MZcdTAwMGbIamfM9lPqdXb2bsZcdTAwMWKMyiyu3nz9OktcdTAwMWRby4ijrlx1MDAxZN5Idmz9dfP8o3hzffx9/+fG0ZG8t3X06+HPJY+tVezAWZBe0077sUTCbXBUd3v7XHUwMDFmXHUwMDBmujNNXGY2k1R7PECAIVx1MDAxZUWX00Pr7atcdTAwMWR3uP3z5PRLPN55/e7pXHUwMDFi8/X3g1VovVxurdtZoLVcdTAwMDFcdTAwMTC3ht3LhFx1MDAwMlx1MDAxYnwk4FLElVx1MDAxZF1cdTAwMTk8YSkkKjZcdTAwMDe4yHQulLJcdTAwMDLwIIhP7SBcdTAwMTY3XHUwMDE5/qg5VFRcdTAwMWTjXHL9Iymjt1x1MDAwMoe1JFFaTYRoIVx1MDAxMoxbc1x1MDAxY6E6zlx1MDAxMutewGopmFxyU16iMriKRk5Uzlx1MDAxMkPyk4xcdTAwMTWIdbSpLFEn9zPYVM/JyYGoXHUwMDBlXlOqOcArwVx1MDAwN3257EWXJ93BXHUwMDA1j1BOJ6pQZE6EkexPk5QkwlxycK7AkGHmO6d1g1x1MDAxYlx0byQkXGKL6ntcZkTwXGJcdTAwMTDoiHCeI3DBxG9NS6xgUM/7XHUwMDE2qz7XvDtdhfGe9zRcdTAwMGXcVpxJa1hnau6padCYwZiQRGjuNFxc9bmVeuD3K1wihOBF5rzGWrsziEvg6cqCYnde29hcdTAwMGabXGZHqThf1Fx1MDAwZd1i3o+3Z4Btep4lkVxiMSawKjslLThcdTAwMDORL05uJFGfxiecLitXa6JhKCtUx7BcdTAwMGKEwzSLIEJWQUpEiYj34HtcdTAwMDZX7v9pTdVcZlx1MDAxM4T3hutcdTAwMDZLjErrqeBtLbikYS5ERPRK7TEpyi5cdGzNdS1M0KyiXHUwMDA2XHKX25VcdTAwMWJEZ0CnRESMs6Ch/1x1MDAxMe/Jllu82vKFm1x1MDAwZcyIh+nE3cXUZflccrYlNDdcdTAwMWSHIy3xvFM2pD3hOj7BXHUwMDFkhDvm+dZ9WV7bjmKDXHUwMDBiXGIuXHUwMDA0XHUwMDFjMq9cdTAwMTBcdTAwMDb4Mlx1MDAxY1xce/xWqCbTXHUwMDFkXHUwMDA0zIlqklx1MDAxN2OmjmwpYVx1MDAwZbC1XHUwMDEyLkFwZYS0tnS1XHUwMDE06Nhcclx1MDAwMUMz/TZrjdF7Y1x1MDAwMNpcdTAwMTfY2m9pWOJcZqNcdTAwMDH1b7E9ZW3DNs+AXHUwMDE1XX9cdTAwMGVnmP+oV5T2rLX1ityetLbB0LQnrW0yhe1pa1x1MDAxYqz1XGZzUlxy18lcZpNcXPVcdTAwMTdee+bapjt5XHUwMDA26tomv2FcdTAwMDbu2lx1MDAwNs9mXHUwMDE2roRcdTAwMDbna1x1MDAxNu7aXHUwMDA2XHUwMDE38Y6neJ1cdTAwMGJwzmDTh3/RlOJcdTAwMTU7dmtX9H7df/b049b55d7vtd7eoyVP8da3Ty2Wk6cpwztgmZuFk4dmhb/wTc1Tq1xm7yrDO/j3ZzK8U4BccpdJYsq0XHUwMDEwsoZpV1lcdTAwMTlbTVx1MDAxOV5Ixa3EfGfOxZOV4TVQfimDzFx1MDAwMJ3rJ6z0aJSkJLFI8cJxYCiSQ/uTl+KFo6t9clxuciRcdTAwMTaJP7xCI1N9uCSxSPFcdTAwMTKXOlx1MDAwMajmjL6l5GQgOrCpgFx0zZ7i9VwiUbJV0YH7Kd5cYnk6M9258Fx1MDAwMZGmNVar1vO+x1xuStC8W12t+897XHUwMDFjq61cdPOqTFx1MDAxNVxual61rvR2zGt5Kr0n81x1MDAxYcdcbtJXO/s/58dbXHUwMDBmizY9zlJcYszJ77YgLsnL7+Yzq2QmeNvMS+ckeFtcZnRcdTAwMGbC3eGMbkle24HzrPxuu4n4lDJwxllpYC3K8mZN8JooXHUwMDEwd0bly2+wLT9SVn63XHUwMDA1f1NWfjefX+qW8rtcYr85oit0XHUwMDE5MeJW8rut+MOKzCT8OqPwXHUwMDFlJ9c3XHUwMDAzwdnt5Xcr4WdfYGufJTO/m89jV/9cdTAwMTJnwKa5rfTuXHLHcFx1MDAwNrLCrPRuXHUwMDFiXHUwMDAwopz0blx1MDAxYr7HvPRuXHUwMDBiRsp6QzhcdTAwMDPGVL2pnoHW8/ayu9Ovu1x1MDAxOaDE8rK7reDO8rK7rVhm/1h2t1x1MDAxNV9vvX94t7O7XHUwMDFlXHUwMDExXHUwMDA0rm6Rz/dx7+zd9ZM3V/HigXh99cbJXHUwMDBmj8/shzud3HX9Jlx1MDAxNVegJdx2djejf/fm7C50XHUwMDE213pcdTAwMWPN0q+yu6vs7lx1MDAxMo/Grt3CbOzawodj11x1MDAxNjxcdTAwMWS7tvjx2LVicodmislcdTAwMWaV5YDXz3euLXpCdm3hI7JVWpA5V7jwIdm1hU/JrvVH7/q4OFmp14bjuOg52bWFXHUwMDBmyq4tflJ2bc5R2bXW86jVMtOtyjOTfktz6WR6b+7f9fG1JuBcdTAwMTlmtlnaXGLe5p/7WnRcdTAwMWNEflx1MDAwMaZcdTAwMDOy+kFQjrJcdTAwMTPAJ3J5XHUwMDBlx8qWkVHht0HPLVwiUJFXXHUwMDE1qedN1KwtwVBBLTguXHUwMDEysixmXHUwMDFksaOGqlx1MDAwN4uDX3RGZVx1MDAwNGFccsyTXHUwMDFh1lxigS5cdTAwMGWi0plw4H0oKS25Slx1MDAxZnw512Ww+1xiti1ec2LAaFx1MDAxNFiPdYVYV2u8YyZeUr0kQ15cdTAwMWS9qO6wQqTbhYi1YGGq4z1cdTAwMWNcdTAwMDJcXEpMu4isXHUwMDE27Do0M3yddEyeRSGKayxDIPHWaLHhQJTZoVKpXHUwMDE4XHUwMDE3osQ5XHUwMDE0OrfuVVx1MDAwYlxihzNgU/Kb+Vx1MDAxZpz/rJxFLVx1MDAwYi+uRSejtmyywq7JrLmYXHUwMDFhlmDZyS9tNtRz23sp9UtjTopcdTAwMThipMRJxdmcXHUwMDE2+9qXh9uX/oTm6kSWY9awv/CYWYfEUVE2d421Z5Au+Fx1MDAxOFx1MDAxMlveXHUwMDEya5RcdTAwMDRPjHCR32aKUu7caoxdYVx1MDAxYpzGXHUwMDFipFx1MDAxNygzcLtrXHJccu5cdTAwMWFcXFxiceD35rg8tYZQdshMZ7EuXHUwMDE277Jwu2stNVx1MDAxNMTRXHUwMDAztKzqJPdqzrtEdvCoXHUwMDAxoVx1MDAwMZP4NF458UbNZVx1MDAwN4tcdTAwMTCxrVxiYeB8Z4VttZexZPSC12fwPlxu0Mw53Vx1MDAwNbxdXHUwMDFlXHUwMDE2xZyoy2OpqHdo4Fx1MDAxMMLZZXlDmyBNTmtqg9NFXHUwMDFmmVx1MDAxNTvGRMy1N1/Gc1Lk1fu0i5Z3t5OzrFrgUlx1MDAxOe1Yc3J27ez44vG97kF3Tb/vxp+PtzZ2N5Y8Oav8XHLwXHTp8z52qFx1MDAwNzjq5D1cdTAwMTjb3lx1MDAxObOzXHUwMDA3XHUwMDA3XHUwMDA385AxI3aFObfkb1x1MDAxYi2kyM3CfWfKdoTeckNq9nLjhzr/3btcXH/0+fGHXHUwMDFm3Vx1MDAwN8fdl1/frFKzq9TsXHUwMDFm4mJcdTAwMWVL42RnZj2B+DmyU+pO62dm4d6xWzHKnHn4LNhCj0vZhSxujlx1MDAwMVx1MDAwZq6DX5hmnkqogCkzi7hTuCjyXHUwMDAykzzgQqlTNjVkJdcygFx1MDAwYvFNXHUwMDFle8PQO8OvaVx1MDAwNi6EV8OnIC1ejryUlZXO+MJ5mfRrit+OOrrmW2A/KVx1MDAwYn9bWziGLmP+N1x1MDAwZrlcdTAwMTB3RoqxsrAkc5BcdTAwMGKJ8CBcdTAwMTCGZtUw6o5hPyPrXHUwMDA0dlx1MDAxN55/zFphXHUwMDA2cmFgu1xuXHUwMDBm9tyq3E/I0rGF6UBcdTAwMTiTsylZdMxy0GDUyt5VL+Cmj1cnUpdNXlx0l2OulzVcdTAwMDDlXGK+OFx1MDAxZnNuZlx1MDAxNZFjvuM26NWGXHUwMDFlRVpcdTAwMDA/nzZcZlx1MDAxYbVcdTAwMDNJKmBcdTAwMDNMmE9dizZtXHUwMDAymnB6ylo/nzlcdTAwMTk0abMvXHUwMDBi4fBUMuZcdTAwMTbmbtBjPfzAfNa4dnXtb4vad9f+Mqvf2va3be3Jm8FcdTAwMWSo14z2XHUwMDBlS63izuBQ1ZqVWZy+ert3t0PsyI46NUaA11x1MDAxOGKfP9o6Vr2vXHUwMDE3Wy/PPmw86W1vnW5cdTAwMWbbJVx1MDAwZrE1lVx1MDAxYVx1MDAwZVx1MDAxOFNVzpS4mYOb/ss/XHUwMDEyX09pslx1MDAxYvY+hShcdTAwMDSkjPAzV1x1MDAwMfYqwL5cdTAwMDNcdTAwMDF2gdii8/phXHUwMDA2XrlRXHUwMDAxt4so0+bM0fpcdTAwMDT3QLN8YctVjXRhKZVcdTAwMDC6rMuYO1x1MDAxZIQ28Fx1MDAwZeSUOk66UXHTm6K6O2/sNTsxXHUwMDAwsTBkQWI2zSVRlrBkiEVcdTAwMWLl5YTXrNXFzFx1MDAwNqBKvXCaPzfqiJpvfbO3PN3w/lxud1hcdKGMJPBhVlvF7fBcdTAwMDJMP4KztzvdoCP9cEdcdTAwMGVZkXJcdTAwMDTW6nE/IIOLZnVqd8kpXHJlRdfzXHUwMDExXHUwMDAztKi81NfEl0Fe8oOjKCqHulxcSZuNXHUwMDFjYDRcdTAwMGY933ZmcVx1MDAwM7Q4cLfEXHIwNlx0PZ/GZrBcdTAwMDO0sSj9XHUwMDEwVlx1MDAxMnG1PLo+MznAaIZ5PntcXLe49rdFXHUwMDBlO0D+XVa/r7dEXHUwMDBm0MJcdTAwMTnIYlx1MDAwN2jhrNSq7ez0XHUwMDAw063KLFx1MDAxZV+92bvb0TXtl8EjtcCO2jx7e/niYv3tu/U9xFxmp+birbj4vuzh9d9JvVdcdTAwMTdgz8m7XHUwMDA354JtPnFcdTAwMTVgp9+vXHUwMDAy7H8vR4C94t1cdTAwMWJcdTAwMTO34t1b8e5NXHUwMDExuOLdm1x1MDAxMo+tePduSdqKd29cXN6Kd69W3Ip3b8W7t+Ld+3c1sC5cIt73m3v7+vvntd87h6fvXHUwMDBl4+t44d6fjlx1MDAwMpiB69+lgz768XWqiI5cdTAwMDJRxppWjYLeQWRIXHUwMDAwXHUwMDFl7HtgmVx1MDAxYtvlhO6tjbG/XHKjQ1x1MDAxZjvsNrJsoSd0zKhEW1xyesuBq8LeKFNcdTAwMWa2lv/mz1x1MDAwNvLjcW2baHJcYsNhPVu9R9mksXSIXHUwMDFl+55SPsRcdTAwMTI3KI7l3GrSIeXAdVwiKFtg6LrQ+G6t/rjxX+WgVZWlbVxce//o9NPR6eFk6N0rXl1cdTAwMTF+n1x1MDAxZevTcL6x/eXyu/5+/mn33oH8XHUwMDE2x1x1MDAwM+yDb1xi4fGXXHTJXHUwMDBlV5tKjot30mP9Y6btr8PuXHUwMDE533r/XHUwMDA3o1x1MDAxMFx1MDAxYyF08zK6979sPevu7q9/OLh+t27Cj3ff3Nq0ZcBcdTAwMTmN4/+Cqi7BwmGVfZpcYlx1MDAxOcIwXHUwMDE1+t/Jl5NcdTAwMWL0/3Xx46hQ9ZGOfju9eNz9enRC9VE1Jiys7ZyfP/j0++BLuNrd+rZ98Or7p93ZTNjY/1x1MDAwZkzY6CdDazU2JbIyT1PMk+DJsG6qeVx1MDAxYeufKadriepMJzYnXXsn7dMkhIFcdTAwMWTz/G/P9nx9dXTwbPfo/Vu1vbXR6z7aXG7XP6YrfUXH1eCBWtqZbHNX/cqqZftcdTAwMWKsyMBA/OjtX5Q+PVZmuPHcOk4qiHG+hEZcdTAwMTLi2j1ZyiqDmzSUTsxn8Fx1MDAxZT9+XFwtIygzxdbKsfnDYStcdTAwMWVn8YRqKlx1MDAxNNz7/fJevHf64cMntyXfPN5cdTAwMTSftp678XP47ePll3cv115dvDt5fbX2w/qP+29cdTAwMGXG/2DnrV5cdTAwMGKn17293e6nnrS7XHUwMDBmXn7pPs2qXHUwMDAzpOetqVx1MDAwM1xmv2OkRJn32cSRLe604W/+W1na31llePjkYTjZ+7phT9++3Tm4Otp69/BrmFpl2O39uOhd//vextQqXHUwMDAzNLZ7dNr7Maw01GotXHUwMDA0XUxTWO9uUlipUppSx/y6YL3rNKmxn7v7n3/+6P15nfWTrbZuLKoq66y85/WjUKuzXHUwMDE3P7qn52fdXHUwMDFmOMFV1Vx1MDAxZLV5j1X8dEVxjTJcdTAwMWNTXHUwMDFk+80/S3Prg+mJY/uP1Nzp9UFewa+PfveSS3HDxTzy1qnOU79cYofyvJe6XHUwMDAwWNee+MC9k6ND6vxfJ72DSWNwcbTfPVx1MDAxOf764tuYuzq0M1x1MDAxYlx1MDAxNbfi24+jw6PT7slOZTEzmaJcdTAwMTEqcWVcdTAwMDBcdTAwMDAxnlxio0xioyF6s/HJhfUn3Vx1MDAwN92N7s/3eu+Rfv/47K5cdTAwMTmiXHUwMDFhXG6rXGbnodZcdTAwMTDFkeihIdLVZn7tg46EXHUwMDE3ucOG6Fx1MDAxZm4qRnmPJlPxP6frPahx9+LosneTwVx1MDAxOEHB/C1cdTAwMDajvKRas3FjZ5Mv/3DowUTNXHUwMDAyRFx1MDAwYtzkVye9h8dP3r5++WnPXj4/XHUwMDBm18/iszc32I0lXHQ5VJCd6LQmXHUwMDFhUnR2bFx1MDAwN1x1MDAwYiPCLFWQ+IWS2oryuto2NjlcdTAwMTc/XHUwMDFkuKpBkaIjVYx+yFx1MDAxYz+FXHUwMDE2L3ScgFtjvCbVgDLViEV4VmZko+Pz8OqD+3Vxcra7c/+pO3mxqZ5cdTAwMDc7XHUwMDAxnPwnXHLSvL1No1vu7lx1MDAxOKR/bm9cdTAwMTNcdTAwMGVjXHUwMDEwQnnvyftRhVx1MDAxMJbsbFx1MDAxMFFp0+eqypCpqKYhxEHZrSSSXHUwMDA0u0orP1x1MDAwMJfKaVUxJOa1Rlx1MDAxNohdqky2S1JMRHPKeSW5zFxmiTaY4PSIWLYkUWvtpU3golx0kSprIMlcdTAwMWG8JYWPWCVNqKAxXHUwMDFik8bejctcdTAwMDO/I66XXHUwMDE1Klx1MDAwZeiAZFx1MDAxOYuZtXlcdTAwMDRTsHpBZ00jsIeIw6aCLDk6kM26/FwisboobZB4JcJncCTJjkpsXHUwMDEx1og+glxc+Vx1MDAwMLHUJLRcdTAwMWVIbFx1MDAxNlx1MDAxOSft/URbkuso4UhcdTAwMTSHN5xcYlxu55RmeHUoslx0YpV/uzBcdTAwMWbwRqJWXCJBr/qSNI+tws5cdTAwMWFDXHUwMDFhnOb+sIjrh1CIOLfekU1pUpzlXGKVIT1KgnPMXHUwMDEwh8PsyLGIM0iky5K49GOCJUSfw5dcdTAwMWQ78FM8cVx1MDAxMpPeTVx1MDAwZXO5jnPe8GFJs1x1MDAxMbLESbJcbjlt+/Pjk+I853xcdTAwMTFVqeCDkc19V5FcdTAwMTi97DEz3lx1MDAxMrhST4rDXHUwMDExxj7xmFx1MDAxM1or51x1MDAwNFx1MDAwYuijXHUwMDBlXHUwMDEyS4tkNlx1MDAxOVx1MDAxN+fxXZ5t0rBkVO/mh1xyXHUwMDFkOlx1MDAxZd5HuCCC5N+T4qhf1kqS/1x1MDAxMWtcIkucXHUwMDEwlkQ4QUOZ3KQ4Tlx1MDAwZZBcciVfwXB/4K1cdTAwMTijiDSoSlx1MDAwZutcdTAwMTRcdTAwMWMzo1x1MDAwNshcdTAwMDE54pylelOVVKnN0XfYI2OxcoPALWZMJeKg2EDgy4CPkFF7UlxcMk5OQmogwFCGOOWdcdAgnUBqJ1x1MDAwZUroXGLD8StF8k/cXHUwMDAyOefOSN6DIYFcXDozKVxyd4hcdTAwMTXYcYtrI+tR4Zs6sk9ZXFzppXs3dIhcdTAwMTWKa1xcq5jHcFx1MDAwZvPEp2CvZLp4S4ujX1x1MDAxMFx1MDAxMoBIJFx1MDAwYtZcXKZzXHUwMDE2ac5ZT1BYZyuAi4GXRCT0r8nUMFinyGY3tlx1MDAxZkqlhC9tK7SE2N241YknmuNWkeaJpHZwgqwu4V3270xtQ59a7k9cYiTnXHUwMDE4JKVEXHUwMDBieZRKLXZSkePJZWCBQ5QlSEqUXHUwMDAzXHUwMDE21zLALE4xNmTwapvl4c9cIk6dS2xMPLaT8qCr+Fx1MDAxNo2jYohfnCHPRrKiWtnnJ5tcdTAwMTRcdTAwMDdcdTAwMTdcdTAwMTA+oIk8nj4021x1MDAwMO6F44SLXHUwMDFlkNaWsWFcIuGUuVxyLlHQNkNMdejFWVxcXHUwMDA3ZEEkXHUwMDAye0miTvxvcKczycHY+eYlbkA4iF6EXHUwMDE4yiNcdTAwMGJcdTAwMTLfhitcdTAwMDVcdTAwMWHn+Ue++SUuJFxu+df4f1x1MDAxN5dcdTAwMDfBXHUwMDBiJ6z0WD6xKVx1MDAwZvLp9O37XHUwMDFmXHUwMDA3m737XHUwMDBm91++Wz/c/Cjt0c6S50G87MBcdTAwMTlcZolrXHUwMDBmZnRcdTAwMTRG95OpXHUwMDFkmP1hyHJb/FHMg1x1MDAxMNybgVxmnI0padbGLFxiXHUwMDEx/OFphSaI0lx1MDAwZlx1MDAxYmdcdTAwMWbCJ7uxsXlcdTAwMDHDu37/6EN493SVXHUwMDA0WSVBbiFcdFx1MDAwMv9cdTAwMGa3oZJ9VqNyVCx0Ym1lwJN665v9XHUwMDEzJlx1MDAxMKJcdTAwMTbQSDJhIFApx+5cdTAwMDR4XHUwMDEw9NdcYmyRN5JcdTAwMDV9Qlx1MDAxOMaoXHUwMDAxlt1V81x1MDAwYonOk3hznv6dypk2YbA1noqpJEFgToZORdaAXHKcaHhcXFx1MDAxNnbKWNzQ5URccp5BeqJbxPx0kqcxSaYk5U1KXHUwMDEy6eNZuD9wZjiokLM19JLhXHUwMDAzY0O1YHdlSVwiW91cdTAwMTnQXGYyYllcdTAwMTJJX1x1MDAxOIyHblx1MDAxM02/JJG+JTxcXFt8XdZgkYspJDauz3gyIVGSWFx1MDAxM1x1MDAxMakn8Vx1MDAwMFx1MDAwMmGXI5H03Fx1MDAxY5ooYlx1MDAxM1/mtbCMXG5cdTAwMTCMWO1JzpA1q1x1MDAxNFx1MDAwMp4swqYpl1r2S1wiSYcwoFx1MDAwM1d5Q4z0w7A9xciOLOX5ZMenlIToXHUwMDBmhDW7auWPI7pX8EZcdTAwMGJcboqWXHUwMDFmTyNFnF5cdTAwMTFcIm9CXHSBdlxu21x1MDAxMYpcdTAwMTl4lqJE44NcdTAwMGLbRILb8D4kLcNcdTAwMWaQXHUwMDE3qI7QXHUwMDA2kqo6Z0vysFx1MDAwM5aoiTKTPTyS/kMxq2DgxsKfLssj0yusgkjwJM1BXG6CbalcdTAwMTih43hcdM7alOSVXHUwMDFjjVxmeTrIRHBccrMrTeVxI1x1MDAxMW2UsTpcdTAwMTnlXGZxtOuOwCiwzFrJsjxcdTAwMWM0sjholZK+XHUwMDE58mBiiS1niVZcdTAwMDA1KG9v4Fx1MDAwMeS0XHUwMDEyNL85joK8YFx1MDAwMqxcdTAwMDS1XHSv3JXEpaFF0mRErD7DgiCAx9lzhpzIXHUwMDEyTkx5eW1DeJmodfHVgdMxJeBfyINLTLM54CHNkSelpWbaMGU/fFwixWaqNcJo5Vx1MDAxMD7d5Ov2xZGhXHUwMDA1t6LExWOyOKVTXHJcdTAwMTFcdTAwMDdLkFx0XHUwMDFhW+3KXHUwMDBixMY63J5cYlx1MDAwNjW8h1xmRLA04aSYXHUwMDFkdlxi+KB1JYGIXHUwMDAz4CpcdTAwMTjJXHUwMDFjPFxydJZE3npcdTAwMWGnzFx1MDAwNlx1MDAwZfGWJFwiXG5cdNhh+EhB5KC0RTJlO1x1MDAxM3HKXFyilS3JkypEpi6xusy8T7pqSVmD81x1MDAxYifTeZCHd2uTr+ZJ4JblXHUwMDAy0aiHyPxvhVa5X77gXHUwMDFjXHUwMDFmdI+Zuj8jXHUwMDExd1x1MDAxNoRKXvnKeVvmaVx1MDAxMo60XHUwMDE1ZjSV1upiW7ZoXlx1MDAxYdxxnmFudjh/ocy7vVdcdTAwMDeHV293XHUwMDFlXjj31X55cfFk2cP5UVx1MDAwN0FcdTAwMTHA21x1MDAwZU+2plx1MDAwNVx1MDAxOJ9cdTAwMTOcMYCH6ttcdTAwMDNTXHLgdSdVXHUwMDBihodpXHUwMDE0no9cdTAwMWGlij8pXHUwMDA2TsfRilx1MDAwNlx1MDAxMTzcKM5wxqZcYv5gJ2y9XHUwMDE2rzfufXnxbef995Pu1bPN61VcdTAwMDS/iuBcdTAwMTdcdTAwMWbBa+dZ/4JFTVdnXHUwMDA1okWTY166XHUwMDAyOTqHJo48a9FH6mJR4SzzxJHoXHUwMDBlRld4z1J/RrwkO7TSXHUwMDFlMVx1MDAxMbwkjYi2NOmtce/zmkQom1x1MDAxOXdcIlxmJH+fT5D/iVp0UqLVhOOAXHUwMDA3b2Ve5V2S0lx1MDAxMVx1MDAxZVx1MDAxOZxgYdK4+aRAuM6Ogbu3XCKPklx1MDAxMjEgri7c/1xiXG6msTvgZ3BRsfZcXK4zxHCRffuaNVx1MDAwMC9K8JOyY1x1MDAxYzHZXHUwMDEytWdcdTAwMTY7I3OqQnnD0KRAXp+Ul35cdTAwMGJcdTAwMTc/JcnzyN3qXHUwMDE2mKjz+KhcdTAwMDZ7LPNQX+reoFwimZ1wXHUwMDE271x1MDAwZacqXHUwMDBiN6d+j1VcdTAwMDfhcSB9hCxcdTAwMTBcZuY9hZrVXHUwMDFjxkCMhrJAS+v1RHc091x1MDAxOFx1MDAxMVx1MDAwM3NcdTAwMGKZQME1mkxcYlx1MDAwMVx1MDAxYoxCRJ34PLMyUrXWXHUwMDA216fSUpA1w2Y9sSh9evLybfx0sVx1MDAxYTVmjOZbTfG6JDtPPFx0Xv18r2vB29k/baOcpJzrtPW1wVKSJzyjmk9cdTAwMWL66oq/7Le5yPnUtW9O4M3JWFWu1uakb9BIcVdccu/aWzuuTlx1MDAxM3wjYVxcXHUwMDEw/2Mua8yXh1OKfdWpXHUwMDFkyFVq0u1uXHUwMDBibm6kJJhN440rgaG0vc149DxRN7FcbkVKnJJL0Pa6pWaw/5DoYFx1MDAwNKcplc1b+1x1MDAwMyTsZV13lLqe02XBXHUwMDFhPKNcdTAwMTGlpmZ4Z3CrljrwZCtcdTAwMWIsUT7R5dNcdTAwMTf69P3Lo/XtuHHy5PCBPOz+il/uWtjJPCVuXHUwMDA2J1x1MDAwMmvHt1x1MDAxNHXCUJRqXHUwMDA11bCz/zfMXHUwMDFlJmtbLVx1MDAxYzPrj6PW1D2/XG47V2Hn4N9tXHUwMDE3joNwXjn4XHUwMDBmqaZWLVx1MDAxY8sgU/eRTkTJeXVebcjCpKElROyvVI5cdTAwMTFTpItcdTAwMGJcdTAwMDY+MYBn1f5Ys1x1MDAxYbb+qXJcdTAwMDJcdTAwMTE3hua9YVN5MqPnay1cdTAwMDGTwVlcdTAwMTB+0HJfXHUwMDEyqZw0XHUwMDBl57aoLuSJ9EzPw+/FTU3e+fIqdWQhw/GNso8xSySCMM1cdTAwMTX077zyKq2xXlx1MDAxMSmo7+rmSPROJ+ov4dI6Slx1MDAxMv2oTTC3rlx1MDAxZlwiXHUwMDBid8Nmxf9M++2gaJZF0VC7RHhcdTAwMWRcdTAwMWU+L3t880vwta+ReHxcdTAwMDRcdTAwMDAqqNBUXHUwMDA2fXfTXkvsNVx1MDAxNi6VcaSSy0ldNFx1MDAxY0jWt+GF6tEjzKs1cFY1/XxcdTAwMGafQZMtIGeNtaqNXHUwMDBiUOJcdTAwMDZEXHUwMDFj1HdX5zZArHiTq13k6UulXFw+eVx1MDAxZje7i2k1XHUwMDFh9k4l713Mt5ribfFMXHUwMDE1fTLl9oKWb2vh+9k/ckFogePKSac5j9zCtWKguFx1MDAxMTYkNYWXXHUwMDA1tlXcgW1hc4pGXHUwMDA0XHUwMDE5y1x1MDAwMtvalqp9m9P8NVx1MDAwYmRcdTAwMWFcdTAwMDInq19cdTAwMDXOeeSFXHUwMDBi9NhAY1x1MDAxMSymcZKyxfdMXHUwMDExSOn67dRZu0w2jThsYS7fcpojRPAgY7Q5XFyLPIeWhcSAkDbIoCvDcYhcdTAwMWVcdTAwMTGjXHUwMDBmu3RyNIWdXHUwMDE32ilZrVx1MDAwMsNZsKl31WdcdTAwMGZcdTAwMTlSl1x1MDAwN1x1MDAxNLdFb1HZo2GznMKfXHUwMDA0qKjI6G/uaPpcdTAwMDJ431x1MDAxYyZmv0F5V/B9MFx1MDAwZTrkP7NcZsZBVz222VXYnJJzmNqRJM2Yy1x1MDAwYshv0Zv9m4Nt+FxcuFZ0yJ9df97du/p55LZ2X52J7oG/OO6uXHUwMDFk/v+OtqeycCwk1JaC88DBNlx1MDAwMWPsP/p9ZOLnN4e290W++fXo5FX36btVqL1cbrVXofYq1C69l1WovVxutVehdv/fKtRehdqNXHUwMDAyV6H2KtRehdqrUJv/5mmoxptUnmgo2bH28befXHUwMDFi91x1MDAxZpnnXHUwMDA3n752XHUwMDFmnzz6XHUwMDE5X8RcdTAwMWbXS1x1MDAxZWs7M3FcdTAwMGKMwt5cdTAwMTR5KyhcdTAwMDYnSmgyXHSDM2fofeN8dIfv2kVcclx1MDAwNz+N1k+ZkDZcdTAwMWRcdTAwMDKHkOBcdTAwMWLqZONcYlhjWOhcdTAwMTaGo6ONhe5H2zt7678+3nvz9MuWPXh1//3R0en3VfS9ir5vI/q2RMvGRaqVqHg3NLBRK6usKzqz8oJvnH1iXHUwMDE1XGaggSrBN8HU3GDoJW/0Js1CKeJqpUHb8lXlXHUwMDEyxFx1MDAxNO5t7TxcdTAwMDdpMkQ63L4uXHUwMDBlRlx1MDAxYVVZJJXdRMSTXHUwMDA1XHUwMDA3VoZAfHHEPTnsiytcdDTSwnrQzc1cdTAwMDT7SLyLnFkkXHUwMDFmteKgcfmGtuT7cmlWMlFQZUiMuHbhhHFXY6hG3uSMlGSPpJlcdTAwMTJZUHaa1GOcvbScti8vsfi1hdnWOnPAvlai7vAqQIhcdTAwMGZvUVx1MDAxM+Pwz1xixMFB2OQ5tOlK86a6Y1x1MDAxY0fA4MbH5OFlSVx1MDAxNDhcdTAwMWTkXGakXHUwMDA35Sf7IyHRXHUwMDExQCZcdTAwMWGZxqdsXHUwMDA2xlx1MDAxM45cdTAwMGU22OPCiT61VYaSRCZYXGaHcPMlwrW0MnCuzzlRXiFcdTAwMWKwXHUwMDE1zz3hx7JG61OAXHUwMDAzXXWIrtRkS+Oa6bCEgHtWXHUwMDA0XHUwMDBlzGbMYEK/IFxyZix5XHUwMDAx2G5dXHUwMDEyqFx1MDAwNPNo2H5cclx1MDAwZlx1MDAxZn+ZIVx1MDAxMSpcdTAwMDXVXHUwMDBmg/7m0sCf4aw+Nlx1MDAxYfJoOGVcdTAwMTbYXHUwMDEzPVx1MDAxNVx1MDAxODItXG5cdTAwMGXBkkCt+Fx1MDAwN1xi/WiVcoJcdTAwMTaO0SaUXFzTt3tcdTAwMTWBXHUwMDEz/kizQOVcdTAwMTA9XHUwMDA0hlx1MDAxN32Io8oju0iwJ1x1MDAxNWDKcnrOXHLtXHUwMDE3tYH9fZUwyFx1MDAxMLxcZrrHMeFcdTAwMTBsXHUwMDBlhlx1MDAxNDtqYT+l0kVOtHxusHwmOVx1MDAwNeFcdTAwMTBFTpiGXHUwMDFiXHUwMDEwp1x1MDAxNuFcblx1MDAwZVx1MDAwNaxz+Vxcw6xcIli3XGZcdTAwMGXZUN4sXHUwMDEwXHUwMDA2xkFPpy9cdTAwMTCKZ+BcdTAwMGJcdTAwMTHMg1x1MDAxNsdkZFxc+oFNRZArWu+xOGx9yHhSmsGxXHUwMDE5ZV22Wlx1MDAxMdrD5J9WXHUwMDAxMjOetEFgS7vaIK/9VXJcdTAwMWJcdTAwMDKZWoJcdTAwMTNcdTAwMWZhq0NcdNgzXZ9cdTAwMTZcdTAwMGU+XmHUsNc52T5CNJBwXHUwMDE0vlxyzFJFoMWvXHUwMDExpWfji1x1MDAxMLBEM2A2ccpcZlx1MDAxMI2kiFg2LoRcXPRbwqhFopf18+C67CAqjztcdTAwMTXPQOjGPNQ2q+hcdTAwMDJhXHUwMDFkWCbCqTLuS2K5hfmBVVM5XHUwMDE4n5yTXHS4Ms309v3kcE5qZLPENDOGM1x1MDAwMe1cbqY8PFbUpNqVUf7GPELv5OTo7LxlKkHjaozwQPKR1j5cdTAwMWbsbb6WW1x1MDAxZnunJm66L7/ER7X5aNkzXHS6P8PviMKjyplcdTAwMDRcdTAwMDdrz0BcYjaD4Ik3ZVx1MDAxMqZcdTAwMTJUtMwlJOAgXCKUXHUwMDE2w1vVXFxCzd/0k1x0MGzYND+CtFxcQo6L/0e5gsXrJC1cdTAwMGLndPLnVs6232x8P9h9cvHk3vfz3u/Xb7dcdTAwMWWa3butk4b1XHUwMDE14pywdupvZIFYXHUwMDEynYRcdTAwMTeLS4NcdTAwMWPhK6X8ZyolXFxcdTAwMWRBRsh8XGaTXHUwMDE3v/RcdTAwMGb1dPvz4afj06u3R8evXHUwMDFmPHn38W4rpeyYhFx1MDAxOCWLKvzyKyWifmeasu4rnVx1MDAxY377XHUwMDFm08lZuJKojYgo8otgnz8923zxeGtt8972b/3y8Pqjelx1MDAxZp4uuUb6XGKdU4aV00iow5JGctyema+CykDdpJFzT3tcdTAwMTKI2EnC1cnxZMl4XHJMTYcyXHUwMDFjamMksp9cdTAwMWPnL5uujur+2aeNrz9cdTAwMWZ13z3c+CD2uuJYv51Qx5W+XHUwMDBlv31VXHUwMDA0m69cYlx1MDAxNoU2cUBcdTAwMDBWQmnvXHUwMDE3wVxiQps0L1x1MDAwYrwjYYm4oDwzm1wiVLBEijJcdTAwMTi7LlxmvjX1h2SITHlKpawvet8qXHUwMDAwdI6MXHUwMDEyXHUwMDAznMY8gFvnSJAghii7JZHKh4lcIlmGRO89XHUwMDAx8o3rZ9VKXHUwMDEyXHJWN0JcdTAwMTLNklx1MDAxOFx1MDAxY+zF2OsvSbQwM0R9NUX3bU5cdTAwMGZhlCzqxZCoPqqw0N5cdTAwMTJcdTAwMGJcdTAwMTHnwFm4P/klplEqsSQwpuSqZfLJMVx1MDAxZj+vRF2B6P0zXHUwMDEy616jxoVlNf1l7VlqzdmX2p1mXHUwMDE5TFxiSc4s1lmzyDBqXHUwMDBmo+5cdTAwMDRcdTAwMTFcdTAwMDK5KFxmYY5CVtW4Tl80NtpcdTAwMDfFXGZcdTAwMTJvwJC1xFqlNlx1MDAxZFx1MDAwMVx1MDAxZNGsQ7NcXFx1MDAxN3JUut7wmFx1MDAwZW5uaYk+Y1xcZr92vX1kbc2SXHUwMDAyzeFFh9i2R7biMTR+PGM9jvUmnkrrRVZcdTAwMDbZsbApg0nIQ6pSVWLCmkxnbFPMKY2MV5QqtHbcVLLbkEhcdTAwMGb2JafwkI7dsI3YVqpUllVAmNWAL9Y5ZYJcdTAwMDa9kMRYMuxlsLhcdTAwMDIy6nxJc3UgeU9cdTAwMDWqKmkus/qsRFx1MDAwYtmsZ33LXHUwMDAygyT6cEpcdTAwMTXLXHUwMDEytcGy4fNaKVXG+lIpaHjZVl5gW+PXILC9xb9ccoFcbpbeXHUwMDFhXHUwMDFjXHUwMDFio3X5XHUwMDFktr7k2HIr2GBcdTAwMTm8VsSEmvdcdTAwMWFmrcori5jFpeZzUX7itp5cdTAwMDK0hOBSykYsgJ3YlXmals5cZrt+XHQgJod6Mq/DReAlmlx1MDAxOJjeYlCo3C7T1imkLSQlXHUwMDAzXHUwMDFlV3hiLotqh2xb33VpO2RnStix01x01m6c2LcpP3C6tyl7l+7bp5PdX9fft9ePn31YXHUwMDEzy55cdTAwMWZcYiV46lKCgFxi2jCqXHUwMDAz4ombXHUwMDEyXHUwMDA02Sm7mlx1MDAxNMFcdTAwMDJSdlx1MDAwNJx3ZlxmOW2Vsit+vIQpu9m0kt5cdTAwMDWbV/Lz6PH1+fPXL8TX48uv9v3jr4+O33/w3TuulXRV+SrgXHUwMDBiXHUwMDEyXHR2ybXSXHUwMDEySDN40zQ8vtLK4bffMa0kIUtcdTAwMWOnoGtSSv/5uX3wYnt/4/XGyeuHJy+vdnY+/rrbSildR1x1MDAwN8tWTElU0iXXSUSknFx1MDAxNTSr6tZcdTAwMWRQylx1MDAxOapbivlcdTAwMDYxXHUwMDE2vTWq5LOfl3vP9l6cPftoX5292lx1MDAwZb3umTxadpUsw6lcdTAwMTAxmFx1MDAxY+pQwqjHql2z1bNcdTAwMTD1fTpwU1WQ9SxiQVx1MDAxNFx1MDAwNIG+qoKmI0nY7lx1MDAxNcGx8Te6rIEydUeaMSbAXHUwMDFiNPDt/tHX9/L4m9vf+/FdPvPx1Cm1KmitXG5atzTVpWIxXHUwMDE1dENBa7apLuYshS2TkFx1MDAwZqa6tO1z1WdCqmRMdamAw5VcdTAwMGZgQYRxwfIybFx1MDAwN67wksRiqCtcdTAwMDRcdTAwMGVcdTAwMDdwLjxDYjHVRVx1MDAxY1x1MDAxNjltpLmY6sKDXHUwMDE0lNZZ5SxcdTAwMGV1iVx1MDAxOPrsdpVJ8zTU5Ti5kfBuMiSmoS4jOU/Dd19OKqWpLk5cdTAwMDN5XHQz1pxgz6hnpcb6XHUwMDExO+e8XHUwMDEydUdP8KDnlDlcdTAwMTYu8KZBXHUwMDBivNpI4lx1MDAwNuk5XHUwMDEwnzW2x1x1MDAxMVx1MDAxMOdsIN+al+WlcVCHwqIrXHUwMDE42nNOYf2UXG5cdTAwMGU03oNgfSyPXHUwMDFlpT9HI29cXGO0XHUwMDEysYDBteiygEvWXHUwMDA2oz5cdTAwMDK7MX12XGKvkbQpNkBcdTAwMGLzxlx1MDAxZpumkXD1erjyQcrcoc9iYErraFx1MDAxM46+LleOSnd9o2FumuhcItQ/tth7XHKLm5POVbRekmNcdTAwMTH0+0V5ik1cdTAwMTIpnbljTc6YjFx1MDAxYzusguD8moGuxinVReJZwDDYokzVLFx1MDAwZrYr+lx1MDAxOLx2tkqojGPjiFtcdTAwMDOpXHUwMDA1KWCzPOeVvfH9ac7HcFDKQl0s6VOaXHUwMDA14s7jzKP3slCukkBEUfhG3lWWXHUwMDAzMs3yXHUwMDAyXHUwMDE0XHUwMDAx53X6tVx1MDAwN13mTCYuKrqpJlx1MDAwYlslXHUwMDEymVx1MDAwNGqgWXv2oazKXHUwMDA2r5VsvTj3NP9cdTAwMTnySrZ4PjvYIFx1MDAwZr8mYI8mXHUwMDEzik+UyH9CoLImsFxuViDklC+nhD5cdTAwMDSrhW0xtFx1MDAwZVx1MDAxOXvM0nWIQnGo17lcbsJcdTAwMTmsLo5nXHUwMDFhjI4up3zpOV7NoFwiVkdRaSixQEpUxZHK0ZJo4Fx1MDAxZlxy8Ooq2C+RrEVmuP5cZjXWMYmDaajCQpE3XcFCarpL3mdcdTAwMTWUNVlT8Vx1MDAwZcNNZajAOjK8kzQxnXWw2SmoXHUwMDAy3CSYXHUwMDE5V+agoUilcVx1MDAxZmpcdTAwMTFjhL7kkO78wypbJiY8pVx1MDAxNlCrl09/W39++PPB0e6x+HR5/eFgp+eWPTcgXHUwMDBifm5yOydcdTAwMTbzUqqA3EvsjIFBIKv1TamC7HxdTbJgIfk6eElcdTAwMDGneTUhslx1MDAxNMmAxaslbLQjTlxcvlbGizefz989+XV5/V693HP35cW9X8s+ttWglcp0iFxiXG6jXFyEucuulfCnPUfyV0r5z1RKqYnRXHUwMDAxhyZ/wPnK//726svnZ/7gXth98cXa/c2uvONaKTupXHUwMDA3RFx1MDAxMqhvPNu9nFpcdTAwMTlcdIeDP1lp5fJr5VxmrHxw2CNcIqRcdTAwMTZcdTAwMWQgvzc+XHUwMDFmXWx/1OcvxPur3d5cdTAwMTfnX1x1MDAxZCy7RtpOakpkxt0gpK9iXHUwMDBl0Hc1JCNlgugmjVxcwOBWLnqh4ZBcdTAwMTn7XHUwMDE5K5ekXHUwMDE1/LRr8lxcP167XHUwMDE3Tz9vPnx+fv3+hXt0uN3bMWb8eK30dfjtqzrX/HUuM0CSMVWYltspc81cdTAwMDJe6KFbfabmkshcdTAwMDK8MFxmVDNL5C3VuaRRgnlcdTAwMWYny69y1jpXPy9qyzNcdTAwMTC3V+dcIpFvXp5uSiHrP9Vfz4BeWJOOLUCxXCLcUe/JKP2HJFx1MDAxMr/Q96tcdTAwMWPKlyRcdTAwMTb4hVx1MDAxMVeBSOMrOVx1MDAxMolfqOCuOVJZy3JSu8Av9LllhiF8oVXOVlx0XHUwMDFkXHUwMDA26IXD6Zqc403wwlx1MDAxYlx1MDAxOJ5cdTAwMDfwhf3paWI65agg089MNVx1MDAxN+WsycPYXHUwMDA3MIQ6uZQ0ztGXXHUwMDAywNDdVEpKXHUwMDAwhnG4xFxmgVx0v1x1MDAxMOe3KFxcujLEYlx1MDAwMV/IWr1yJlx1MDAwYlx1MDAxMDFcdTAwMDe+sM1EXHSTwprbq/qWr1wicMIhaVx1MDAxNphcboZEvbQhVku5XHUwMDAz+MKI52bk0SyPJU2cXHUwMDFhmIBcdTAwMWLkJfRCnqtUd21cdTAwMTaYgV6IPcNR5fBeXHUwMDE2MXhcdTAwMThcdTAwMTnlKthgQi9cZtqzvOL8osBcdTAwMGKD6CPcZsirXHUwMDA1LzRcdTAwMTY2jfOemWWumnJ/gV6IaNJyYiynXGbXMFxy29KqZrVMtEcvXFysQFx1MDAxNsRMgiaEs1QhRSrQXHUwMDBiI0y4hZr7XGYszuDY7YPDz/FeWVx1MDAxOeBK6IVyXHUwMDE43mdsMj0gwyGtNLFWwVx1MDAxYUzohYF+l/SCXHUwMDFh2SzRJY3jgFRx0CqOXHUwMDEy0Vx1MDAwYlx1MDAxM/FIXHUwMDE2XHUwMDFmgaWCXHUwMDFhXHUwMDAxnaPvV6VM4JRjXHUwMDFls1x1MDAwMSyLUP32LF/2O2ZALFxmrFFDn0xi0Ki8uoRYXGJDMaqmNcpcXIjr/q/x/y42pSdxXHUwMDE5kt0jXHUwMDFmXHUwMDFmbePhhjDx6aOv8fH9V1u/rjZe/jo9XvZcdTAwMDSC6SRylJimuscgV4pm9diR2nOAXHUwMDEyXHUwMDA3fKxdZEm71eFsiFx1MDAwNFnbkEJYZVxiht9+x/LsnFFmMiu/+rX++vz7o+tzfX794YX5uOt/uVx1MDAwN++u7rRSqtjxaa5Lp16kXHUwMDFik3pLopRcdTAwMDRYl/RxV0ii/1StjER95vZna+Vn+2xjff/yZG19Z6335PurS713ou+2VrrOeIyw7MOWkjhcdTAwMGLEYV9Vv/6pWomTilx1MDAwMMC1wFx1MDAxMt04U1x1MDAwN1rvXHUwMDFkvt19fb71/ejNW3P42S+5Vjrf0Ukr2aupXHUwMDEx1tzyZXm7YKJcdTAwMTF2NFx1MDAxMElhpZX/UK1URpGds1x1MDAwNVx1MDAxNP7D579PXHUwMDBlvl9u9E4+9s729/W6vjxb9q7KJq1cXHSnyO1qpSPbkrKrsPJcdTAwMWaqlCpi873X+Tfl7+MvV+fi0ZM3Z/Lh9r19+X3T757ebZ1cXHiu55Zht0OCk1x1MDAxOFx1MDAxYi5YaWXx4yXUylmQXHRkXHUwMDAy9Vx1MDAwYvnp1029t947PTjdUOvi/frvvUf7n3c2l10nXHUwMDAzR/KcUX1cbvXSNVx1MDAxOTpcdTAwMDVUSDF7cyM9xVx1MDAwMshnm3Fcblx1MDAxMnlcXFx1MDAxNISkI12drShkalxuUc1QId/P7MPfXHUwMDE3PXn4RN8zXHUwMDBmzqV++mXn8aqBa9XAdTtcclxcuEG0XHUwMDBlqeZYQWJGYCiHtbuMulrRwMWeXHUwMDAy1qmjlNXZNuGzKnRF31Y0SjAgXHUwMDEwY9nRwdK5IJwoXFzWqVx1MDAxMSVDIFxmpmbfXHKhcivjzOxe0DJAwYMxZI7P4pz1Ujk2XHUwMDE02GKsriRRR/xeXHUwMDE4P1x1MDAwNFx1MDAxN85cdTAwMTBZXHUwMDE0daM1wlxiwmiWRFrLgvNokC9DYmT3m2Kfmqh0jeBcdTAwMTFY5IRMg9dM7MtcdTAwMWOBqdov6CdNw2SgX2KHpHl5fWB1XHUwMDEyXHUwMDA33Vx1MDAwMGb4Tv6MRDxQXHUwMDEwTNVPOT06tVx1MDAwZjFhKIqp0pydJnSUXHUwMDE2gviYXCLGXG7atnZcbludXHUwMDFhk1mMzzmOXHUwMDEx+kZM4+lcdTAwMGbtI/tcdTAwMTHtoIco54A7XCJcdTAwMTUrXHUwMDEzTWBcdTAwMGa1LLeqXHUwMDExXHUwMDA2ePxezNFqXHUwMDFkcTb8dNCRNFx1MDAxMS9Z2dcmdVbmXHUwMDE4XHUwMDFjdlFho63zXHUwMDExPoCr4G1rh680fbCxLOJZ7LJkXHUwMDFikHUhTZWXJZLtXrMrXG7K39zWk+woI1x1MDAwN4uo4SbI7JLz0GjpO3AnLFFvjWfznFZcdTAwMTUoXHUwMDA1rI7ovdBrqUNGN1x0R+LxWINZ/1xu3S6kaC1cdTAwMDekQ1x1MDAxOd0kXHUwMDE2+6f73L1Tmq2gd1x1MDAwMV9ojcrC9aD5XHUwMDE2XHUwMDEzOls5i3hiWNlMXFx1ttxq3G5xOv4xweklXHUwMDFlwOPQp+unWV4wVFx1MDAwN0I0XHUwMDE35J5lfVx1MDAxZTX3yqyeXHUwMDEymHhFXHUwMDFjIV005FRcclx1MDAwZVx1MDAwZVx1MDAwYv9cdTAwMDZXWlx1MDAwNvk474HUnHtTXHUwMDBmZluT2CCw/T1wXHUwMDBiXHUwMDAyXHUwMDAz88W49ELRIFXB4G5593GP6Vx1MDAxMcXp9rD97UxcdTAwMThw4kfDlEBDYrU5vbVcdTAwMDdcdTAwMDE1MWRu7XfiVXHH23o5eCiS0bNXsI9xPacjRktcdTAwMDO/UEFd8by4/yq9UnlcdTAwMWVcIr1XNpPaINTU5rK2zuvf0HHVR+18+/3eq72nO1fvXHUwMDBlXHUwMDFm9Xb2vzx5vrYxXHUwMDE2U92YqmNEXGZ3fVwiXHUwMDA2xumoxKtm9KNRfDrqXGKphtrTw+X6YLn8N1x1MDAxM+mDz939zz9/9G5KIJTnkVx1MDAxN5FAXHUwMDE4j6VrI9j0XHUwMDFjYysronPDZvGoxyazRllcdTAwMThV+eEgXHUwMDBig7CWdsrmXHUwMDE0Kyqh8vDM/O/YSVx1MDAxYe4+otSLv8bPWP/wXHUwMDFjf1s7O7BPL9/3umvn/sHx/Z0nZ1x1MDAwZv9cdTAwMWH+3X9cdTAwMDfnryZcdTAwMGVnN/LoxbWIw0uB7F9cdTAwMTc/jorDNDpcdTAwMDXfTi9cdTAwMWV3v1x1MDAxZZ1we1SNXHUwMDBlbK6pZ1x1MDAwN/e39843P2xsPHt19uHp5eWvXHUwMDE5dVx1MDAwMIZupVx1MDAwM/+eX1x1MDAwN6RlXHUwMDBmclx1MDAxOMenXHUwMDFmKcFcdTAwMTjsdFx1MDAwNbZcdTAwMTiuK7s+XHUwMDE2p1x1MDAwNMVcdTAwMTn5fmLi5fOnr3/vrv168fIyXj3Y2nw1qVx1MDAxM1x1MDAxM9oyUoL/TFx1MDAxN9ukW9O/sJVueTdcdTAwMTZ3/SHd+r3+8oF9c371WPjnuy/Uy+db+ueXTN1yekK1cL9mqlbHTfwzK1WrUzVEXG5cYpfdmM6MNFxyUcdNqlx1MDAxNsiUpXVcdTAwMTZcdTAwMWNxK1U7/7J3uCbOxdnF268vjtav1Yfj7e15VO2WxDZp8PQvbKPBZKZcdTAwMTlrL/kzXHUwMDFhbHd31Fx1MDAwYr33srdx7+fJm3tf9zdevj/P1GClJlV47IytNHhxXHUwMDFhrINmX+dcdTAwMTi2zphcdTAwMDaPgqSKx4jQ3zNFuGhccvbPzlx1MDAxZe/KJ3unz9Z3L3bOLvyTV/7b/Fx1MDAxYXxXxDZcdTAwMTmG6V/YwjBYXHUwMDFj3jCG9fZnXGbD8aNr/fztk51cdTAwMGL5+/qT3nxiNszjXFy3WYtJt3k8XGJYuc1zuM1cbpeG8ypMM1x1MDAwNfbmXG6+l0bDXHUwMDE2ZM1qtDJcdTAwMDVbXHUwMDA3X1x1MDAxZalLr9flo6e/31x0ud57/6I3v84uXFxsk85O/8JW7jinXHUwMDE0w1x1MDAxZtZZ//HF9evu9vvtN0dv9z8+Xb/69un654w6u1xudfs/nVNnrVxyjiOZ0/zvMVKsSsu4I4ZZzFx1MDAwMk1qpbIvN9+9UNe/3nxfXHUwMDE3r3pcdTAwMTeXX768PF4z86vsXVx1MDAxMdtkXHSmf2FcdTAwMWJLXHUwMDEwhYizNZ8s8vaemrurWIKJt9DPeE1cdTAwMDJXjVHkXHUwMDBlzYCeYlx1MDAwNnRcdTAwMWIzcJD+zWFcdTAwMDZqm8aW0FxiSEdcdTAwMWVVIafmfGumuVxcapeZKd81ceCq15WT3s2UPUpHXHUwMDA2XHUwMDBmqiZP5euj36l/N9xwVic+f+/k6JCP/tc+XHUwMDE22/sx0Y94cbTfPVx1MDAxOf7B16NPn8ZcdTAwMTXgY/e8l1pcdTAwMTiJUjb86T6+qouf/tjIqXp8+3F0eHTaPdlcdTAwMTk+SY1cItVnXHUwMDA2WyjSOLnRSpFm94A9/F9npnrA5sbrNFx1MDAxMmclq4G1nVx1MDAxYbEoPjZgOINcdTAwMWHZ5VWjhsJJWY1snVx1MDAxYdWn52rUyIVcdC1S0XX0+L+VTs2vU4K9XHUwMDE4Uo76SMZ0KlZcdTAwMTRt1Fx1MDAxN05cdTAwMWV1sscvXq2cXHUwMDE4XHUwMDA38J1BrfRccmrVXHUwMDExXHUwMDEz/8xcdTAwMTKoWUNccqWsZrpOzeqTXTVqptSknnk5qWYrPVuAnsFcdTAwMGKMxtupRU/pbo5cdTAwMDWd01FcdTAwMTJwb/GKXHUwMDE2XHTcNI+iybujaFxypY6yosk6RavPUNUomi6x0Fq3clx1MDAwYudXLSVcdTAwMTT8OzGOezGWXHUwMDE4rdxrXHUwMDAzzXLEgNVW3EJ8XHUwMDE1nFx1MDAxYcvdzKBY7lx1MDAwNsVaXHUwMDAyRWooXHKUXHUwMDE1ydUpUn2Cp4VcIq3iq/TTueOrwOkxXHUwMDE1p91R1Vx1MDAxY+YwvpI48sJmje22VCRcIonZeVx1MDAxNMksr1wiNeTry4rUz0MyXHUwMDA3mbb2r+7Z2etcdTAwMGK8r79cdTAwMDazan9dXHUwMDFl9a7uV1x1MDAwZun4pPC/+qrIg9rjXHUwMDA2/O9///Xf/1x1MDAwM+Uj14kifQ== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/data_warehouse/bigquery.tf b/modules/data_warehouse/bigquery.tf index 33175b87..c94ccaa8 100644 --- a/modules/data_warehouse/bigquery.tf +++ b/modules/data_warehouse/bigquery.tf @@ -18,21 +18,24 @@ # # Create the BigQuery dataset resource "google_bigquery_dataset" "ds_edw" { project = module.project-services.project_id - dataset_id = "ds_edw" + dataset_id = "thelook" friendly_name = "My EDW Dataset" description = "My EDW Dataset with tables" location = var.region labels = var.labels delete_contents_on_destroy = var.force_destroy + + depends_on = [time_sleep.wait_after_apis] } -# # Create a BigQuery connection +# # Create a BigQuery connection for Cloud Storage to create BigLake tables resource "google_bigquery_connection" "ds_connection" { project = module.project-services.project_id connection_id = "ds_connection" location = var.region friendly_name = "Storage Bucket Connection" cloud_resource {} + depends_on = [time_sleep.wait_after_apis] } # # Grant IAM access to the BigQuery Connection account for Cloud Storage @@ -42,106 +45,267 @@ resource "google_storage_bucket_iam_binding" "bq_connection_iam_object_viewer" { members = [ "serviceAccount:${google_bigquery_connection.ds_connection.cloud_resource[0].service_account_id}", ] +} - depends_on = [ - google_bigquery_connection.ds_connection, - ] +# # Create a BigQuery connection for Vertex AI to support GenerativeAI use cases +resource "google_bigquery_connection" "vertex_ai_connection" { + project = module.project-services.project_id + connection_id = "genai_connection" + location = var.region + friendly_name = "BigQuery ML Connection" + cloud_resource {} + depends_on = [time_sleep.wait_after_apis] } -# # Create a BigQuery external table -resource "google_bigquery_table" "tbl_edw_taxi" { +# # Grant IAM access to the BigQuery Connection account for Vertex AI +resource "google_project_iam_member" "bq_connection_iam_vertex_ai" { + for_each = toset([ + "roles/aiplatform.user", + "roles/bigquery.connectionUser", + "roles/serviceusage.serviceUsageConsumer", + ] + ) + project = module.project-services.project_id + role = each.key + member = "serviceAccount:${google_bigquery_connection.vertex_ai_connection.cloud_resource[0].service_account_id}" +} + +# # Create a Biglake table for events with metadata caching +resource "google_bigquery_table" "tbl_edw_events" { dataset_id = google_bigquery_dataset.ds_edw.dataset_id - table_id = "taxi_trips" + table_id = "events" project = module.project-services.project_id deletion_protection = var.deletion_protection + schema = file("${path.module}/src/schema/events_schema.json") + external_data_configuration { autodetect = true - connection_id = "${module.project-services.project_id}.${var.region}.ds_connection" + connection_id = google_bigquery_connection.ds_connection.name source_format = "PARQUET" - source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/new-york-taxi-trips/tlc-yellow-trips-2022/taxi-*.Parquet"] + source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/thelook-ecommerce/events.parquet"] + } + + labels = var.labels +} + +# # Create a Biglake table for inventory_items +resource "google_bigquery_table" "tbl_edw_inventory_items" { + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + table_id = "inventory_items" + project = module.project-services.project_id + deletion_protection = var.deletion_protection + + schema = file("${path.module}/src/schema/inventory_items_schema.json") + external_data_configuration { + autodetect = true + connection_id = google_bigquery_connection.ds_connection.name + source_format = "PARQUET" + source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/thelook-ecommerce/inventory_items.parquet"] } - schema = file("${path.module}/src/taxi_trips_schema.json") + labels = var.labels +} + +# # Create a Biglake table with metadata caching for order_items +resource "google_bigquery_table" "tbl_edw_order_items" { + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + table_id = "order_items" + project = module.project-services.project_id + deletion_protection = var.deletion_protection + + schema = file("${path.module}/src/schema/order_items_schema.json") + + external_data_configuration { + autodetect = true + connection_id = google_bigquery_connection.ds_connection.name + source_format = "PARQUET" + source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/thelook-ecommerce/order_items.parquet"] + } labels = var.labels +} - depends_on = [ - google_bigquery_connection.ds_connection, - google_storage_bucket.raw_bucket, - ] +# # Create a Biglake table for orders +resource "google_bigquery_table" "tbl_edw_orders" { + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + table_id = "orders" + project = module.project-services.project_id + deletion_protection = var.deletion_protection + + schema = file("${path.module}/src/schema/orders_schema.json") + + external_data_configuration { + autodetect = true + connection_id = google_bigquery_connection.ds_connection.name + source_format = "PARQUET" + source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/thelook-ecommerce/orders.parquet"] + } + + labels = var.labels } -# Load Queries for Stored Procedure Execution -# # Load Lookup Data Tables -resource "google_bigquery_routine" "sp_provision_lookup_tables" { - project = module.project-services.project_id - dataset_id = google_bigquery_dataset.ds_edw.dataset_id - routine_id = "sp_provision_lookup_tables" - routine_type = "PROCEDURE" - language = "SQL" - definition_body = templatefile("${path.module}/src/sql/sp_provision_lookup_tables.sql", { project_id = module.project-services.project_id }) +# # Create a Biglake table for products +resource "google_bigquery_table" "tbl_edw_products" { + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + table_id = "products" + project = module.project-services.project_id + deletion_protection = var.deletion_protection - depends_on = [ - google_bigquery_dataset.ds_edw, - ] + schema = file("${path.module}/src/schema/products_schema.json") + + external_data_configuration { + autodetect = true + connection_id = google_bigquery_connection.ds_connection.name + source_format = "PARQUET" + source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/thelook-ecommerce/products.parquet"] + } + + labels = var.labels } +# # Create a Biglake table for products +resource "google_bigquery_table" "tbl_edw_users" { + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + table_id = "users" + project = module.project-services.project_id + deletion_protection = var.deletion_protection + + schema = file("${path.module}/src/schema/users_schema.json") -# # Add Looker Studio Data Report Procedure -resource "google_bigquery_routine" "sproc_sp_demo_datastudio_report" { - project = module.project-services.project_id - dataset_id = google_bigquery_dataset.ds_edw.dataset_id - routine_id = "sp_lookerstudio_report" - routine_type = "PROCEDURE" - language = "SQL" - definition_body = templatefile("${path.module}/src/sql/sp_lookerstudio_report.sql", { project_id = module.project-services.project_id }) + external_data_configuration { + autodetect = true + connection_id = google_bigquery_connection.ds_connection.name + source_format = "PARQUET" + source_uris = ["gs://${google_storage_bucket.raw_bucket.name}/thelook-ecommerce/users.parquet"] + } + + labels = var.labels +} + +# Load Queries for Stored Procedure Execution +# # Load Distribution Center Lookup Data Tables +resource "google_bigquery_routine" "sp_provision_lookup_tables" { + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_provision_lookup_tables" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_provision_lookup_tables.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + } + ) +} + +# Add Looker Studio Data Report Procedure +resource "google_bigquery_routine" "sproc_sp_demo_lookerstudio_report" { + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_lookerstudio_report" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_lookerstudio_report.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + } + ) depends_on = [ - google_bigquery_table.tbl_edw_taxi, + google_bigquery_table.tbl_edw_inventory_items, + google_bigquery_table.tbl_edw_order_items, + google_bigquery_routine.sp_provision_lookup_tables, ] } # # Add Sample Queries resource "google_bigquery_routine" "sp_sample_queries" { - project = module.project-services.project_id - dataset_id = google_bigquery_dataset.ds_edw.dataset_id - routine_id = "sp_sample_queries" - routine_type = "PROCEDURE" - language = "SQL" - definition_body = templatefile("${path.module}/src/sql/sp_sample_queries.sql", { project_id = module.project-services.project_id }) + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_sample_queries" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_sample_queries.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + } + ) depends_on = [ - google_bigquery_table.tbl_edw_taxi, + google_bigquery_table.tbl_edw_inventory_items, + google_bigquery_table.tbl_edw_order_items, ] } -# # Add Bigquery ML Model + +# Add Bigquery ML Model for clustering resource "google_bigquery_routine" "sp_bigqueryml_model" { - project = module.project-services.project_id - dataset_id = google_bigquery_dataset.ds_edw.dataset_id - routine_id = "sp_bigqueryml_model" - routine_type = "PROCEDURE" - language = "SQL" - definition_body = templatefile("${path.module}/src/sql/sp_bigqueryml_model.sql", { project_id = module.project-services.project_id }) + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_bigqueryml_model" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_bigqueryml_model.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + } + ) + depends_on = [ + google_bigquery_table.tbl_edw_order_items, + ] +} + +# Create Bigquery ML Model for using text generation +resource "google_bigquery_routine" "sp_bigqueryml_generate_create" { + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_bigqueryml_generate_create" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_bigqueryml_generate_create.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id, + connection_id = google_bigquery_connection.vertex_ai_connection.id, + model_name = var.text_generation_model_name, + region = var.region + } + ) +} + +# Query Bigquery ML Model for describing customer clusters +resource "google_bigquery_routine" "sp_bigqueryml_generate_describe" { + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_bigqueryml_generate_describe" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_bigqueryml_generate_describe.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id, + model_name = var.text_generation_model_name + } + ) depends_on = [ - google_bigquery_table.tbl_edw_taxi, + google_bigquery_routine.sp_bigqueryml_generate_create ] } # # Add Translation Scripts resource "google_bigquery_routine" "sp_sample_translation_queries" { - project = module.project-services.project_id - dataset_id = google_bigquery_dataset.ds_edw.dataset_id - routine_id = "sp_sample_translation_queries" - routine_type = "PROCEDURE" - language = "SQL" - definition_body = templatefile("${path.module}/src/sql/sp_sample_translation_queries.sql", { project_id = module.project-services.project_id }) - + project = module.project-services.project_id + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + routine_id = "sp_sample_translation_queries" + routine_type = "PROCEDURE" + language = "SQL" + definition_body = templatefile("${path.module}/src/sql/sp_sample_translation_queries.sql", { + project_id = module.project-services.project_id, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id + } + ) depends_on = [ - google_bigquery_table.tbl_edw_taxi, + google_bigquery_table.tbl_edw_inventory_items, ] } @@ -151,6 +315,8 @@ resource "google_project_service_identity" "bigquery_data_transfer_sa" { provider = google-beta project = module.project-services.project_id service = "bigquerydatatransfer.googleapis.com" + + depends_on = [time_sleep.wait_after_apis] } # # Grant the DTS service account access @@ -162,6 +328,8 @@ resource "google_project_iam_member" "dts_service_account_roles" { project = module.project-services.project_id role = each.key member = "serviceAccount:${google_project_service_identity.bigquery_data_transfer_sa.email}" + + depends_on = [time_sleep.wait_after_apis] } # Create specific service account for DTS Run @@ -206,7 +374,7 @@ resource "google_bigquery_data_transfer_config" "dts_config" { data_source_id = "scheduled_query" schedule = "every day 00:00" params = { - query = "CALL `${module.project-services.project_id}.ds_edw.sp_bigqueryml_model`()" + query = "CALL `${module.project-services.project_id}.${google_bigquery_dataset.ds_edw.dataset_id}.sp_bigqueryml_model`()" } service_account_name = google_service_account.dts.email diff --git a/modules/data_warehouse/main.tf b/modules/data_warehouse/main.tf index 6d452f99..c29dbe53 100644 --- a/modules/data_warehouse/main.tf +++ b/modules/data_warehouse/main.tf @@ -1,4 +1,4 @@ -/** +/* * Copyright 2023 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -23,6 +23,7 @@ module "project-services" { enable_apis = var.enable_apis activate_apis = [ + "aiplatform.googleapis.com", "bigquery.googleapis.com", "bigqueryconnection.googleapis.com", "bigquerydatatransfer.googleapis.com", @@ -60,6 +61,11 @@ module "project-services" { ] } +resource "time_sleep" "wait_after_apis" { + create_duration = "90s" + depends_on = [module.project-services] +} + // Create random ID to be used for deployment uniqueness resource "random_id" "id" { byte_length = 4 @@ -77,10 +83,12 @@ resource "google_storage_bucket" "raw_bucket" { public_access_prevention = "enforced" + depends_on = [time_sleep.wait_after_apis] + labels = var.labels } -# # Set up the provisioning bucketstorage bucket +# # Set up the provisioning storage bucket resource "google_storage_bucket" "provisioning_bucket" { name = "ds-edw-provisioner-${random_id.id.hex}" project = module.project-services.project_id @@ -90,6 +98,8 @@ resource "google_storage_bucket" "provisioning_bucket" { public_access_prevention = "enforced" + depends_on = [time_sleep.wait_after_apis] + labels = var.labels } @@ -99,6 +109,8 @@ resource "google_pubsub_topic" "topic" { name = "provisioning-topic" project = module.project-services.project_id + depends_on = [time_sleep.wait_after_apis] + labels = var.labels } @@ -112,6 +124,8 @@ resource "google_pubsub_topic_iam_binding" "binding" { # # Get the GCS service account to trigger the pub/sub notification data "google_storage_project_service_account" "gcs_account" { project = module.project-services.project_id + + depends_on = [time_sleep.wait_after_apis] } # # Create the Storage trigger @@ -120,7 +134,9 @@ resource "google_storage_notification" "notification" { bucket = google_storage_bucket.provisioning_bucket.name payload_format = "JSON_API_V1" topic = google_pubsub_topic.topic.id - depends_on = [google_pubsub_topic_iam_binding.binding] + depends_on = [ + google_pubsub_topic_iam_binding.binding, + ] } # # Create the Eventarc trigger @@ -132,7 +148,6 @@ resource "google_eventarc_trigger" "trigger_pubsub_tf" { attribute = "type" value = "google.cloud.pubsub.topic.v1.messagePublished" - } destination { workflow = google_workflows_workflow.workflow.id @@ -148,7 +163,6 @@ resource "google_eventarc_trigger" "trigger_pubsub_tf" { labels = var.labels depends_on = [ - google_workflows_workflow.workflow, google_project_iam_member.eventarc_service_account_invoke_role, ] } @@ -159,6 +173,8 @@ resource "google_service_account" "eventarc_service_account" { project = module.project-services.project_id account_id = "eventarc-sa-${random_id.id.hex}" display_name = "Service Account for Cloud Eventarc" + + depends_on = [time_sleep.wait_after_apis] } # # Grant the Eventarc service account Workflow Invoker Access @@ -166,13 +182,9 @@ resource "google_project_iam_member" "eventarc_service_account_invoke_role" { project = module.project-services.project_id role = "roles/workflows.invoker" member = "serviceAccount:${google_service_account.eventarc_service_account.email}" - - depends_on = [ - google_service_account.eventarc_service_account - ] } -// Sleep for 60 seconds to drop start file +// Sleep for 120 seconds to drop start file resource "time_sleep" "wait_to_startfile" { depends_on = [ google_storage_notification.notification, @@ -180,7 +192,7 @@ resource "time_sleep" "wait_to_startfile" { google_workflows_workflow.workflow ] - create_duration = "60s" + create_duration = "120s" } // Drop start file for workflow to execute diff --git a/modules/data_warehouse/metadata.display.yaml b/modules/data_warehouse/metadata.display.yaml index 0d315116..a36218db 100644 --- a/modules/data_warehouse/metadata.display.yaml +++ b/modules/data_warehouse/metadata.display.yaml @@ -46,3 +46,6 @@ spec: region: name: region title: Region + text_generation_model_name: + name: text_generation_model_name + title: Text Generation Model Name diff --git a/modules/data_warehouse/metadata.yaml b/modules/data_warehouse/metadata.yaml index fca307d2..671d25b4 100644 --- a/modules/data_warehouse/metadata.yaml +++ b/modules/data_warehouse/metadata.yaml @@ -25,78 +25,84 @@ spec: repo: https://github.com/terraform-google-modules/terraform-google-bigquery sourceType: git dir: /modules/data_warehouse - version: 6.1.0 + version: 7.0.0 actuationTool: flavor: Terraform - version: '>= 0.13' + version: ">= 0.13" description: {} content: documentation: - - title: Create a Data Warehouse - url: https://cloud.google.com/architecture/big-data-analytics/data-warehouse - - title: Learn about BigQuery - url: https://cloud.google.com/bigquery/docs/introduction + - title: Create a Data Warehouse + url: https://cloud.google.com/architecture/big-data-analytics/data-warehouse + - title: Learn about BigQuery + url: https://cloud.google.com/bigquery/docs/introduction examples: - - name: basic_bq - location: examples/basic_bq - - name: basic_view - location: examples/basic_view - - name: data_warehouse - location: examples/data_warehouse - - name: multiple_tables - location: examples/multiple_tables - - name: scheduled_queries - location: examples/scheduled_queries + - name: basic_bq + location: examples/basic_bq + - name: basic_view + location: examples/basic_view + - name: data_warehouse + location: examples/data_warehouse + - name: multiple_tables + location: examples/multiple_tables + - name: scheduled_queries + location: examples/scheduled_queries interfaces: variables: - - name: deletion_protection - description: Whether or not to protect GCS resources from deletion when solution is modified or changed. - varType: string - defaultValue: true - - name: enable_apis - description: Whether or not to enable underlying apis in this solution. - varType: string - defaultValue: true - - name: force_destroy - description: Whether or not to protect BigQuery resources from deletion when solution is modified or changed. - varType: string - defaultValue: false - - name: labels - description: A map of labels to apply to contained resources. - varType: map(string) - defaultValue: - edw-bigquery: true - - name: project_id - description: Google Cloud Project ID - varType: string - required: true - - name: region - description: Google Cloud Region - varType: string - required: true + - name: deletion_protection + description: Whether or not to protect GCS resources from deletion when solution is modified or changed. + varType: string + defaultValue: true + - name: enable_apis + description: Whether or not to enable underlying apis in this solution. + varType: string + defaultValue: true + - name: force_destroy + description: Whether or not to protect BigQuery resources from deletion when solution is modified or changed. + varType: string + defaultValue: false + - name: labels + description: A map of labels to apply to contained resources. + varType: map(string) + defaultValue: + data-warehouse: true + - name: project_id + description: Google Cloud Project ID + varType: string + defaultValue: null + required: true + - name: region + description: Google Cloud Region + varType: string + defaultValue: null + required: true + - name: text_generation_model_name + description: Name of the BigQuery ML GenAI remote model that connects to the LLM used for text generation + varType: string + defaultValue: text_generate_model outputs: - - name: bigquery_editor_url - description: The URL to launch the BigQuery editor with the sample query procedure opened - - name: ds_friendly_name - description: Dataset name - - name: lookerstudio_report_url - description: The URL to create a new Looker Studio report displays a sample dashboard for the taxi data analysis - - name: neos_tutorial_url - description: The URL to launch the in-console tutorial for the EDW solution - - name: raw_bucket - description: Raw bucket name + - name: bigquery_editor_url + description: The URL to launch the BigQuery editor with the sample query procedure opened + - name: ds_friendly_name + description: Dataset name + - name: lookerstudio_report_url + description: The URL to create a new Looker Studio report displays a sample dashboard for the e-commerce data analysis + - name: neos_tutorial_url + description: The URL to launch the in-console tutorial for the EDW solution + - name: raw_bucket + description: Raw bucket name requirements: roles: - - level: Project - roles: - - roles/bigquery.admin - - roles/cloudkms.cryptoKeyEncrypterDecrypter - - roles/owner + - level: Project + roles: + - roles/bigquery.admin + - roles/cloudkms.cryptoKeyEncrypterDecrypter + - roles/owner services: - - cloudkms.googleapis.com - - cloudresourcemanager.googleapis.com - - bigquery.googleapis.com - - bigquerystorage.googleapis.com - - bigqueryconnection.googleapis.com - - serviceusage.googleapis.com - - iam.googleapis.com + - cloudkms.googleapis.com + - cloudresourcemanager.googleapis.com + - bigquery.googleapis.com + - bigquerystorage.googleapis.com + - bigqueryconnection.googleapis.com + - serviceusage.googleapis.com + - iam.googleapis.com diff --git a/modules/data_warehouse/outputs.tf b/modules/data_warehouse/outputs.tf index 207794a9..120d3904 100644 --- a/modules/data_warehouse/outputs.tf +++ b/modules/data_warehouse/outputs.tf @@ -25,12 +25,12 @@ output "raw_bucket" { } output "lookerstudio_report_url" { - value = "https://lookerstudio.google.com/reporting/create?c.reportId=402d64d6-2a14-45a1-b159-0dcc88c62cd5&ds.ds0.datasourceName=vw_taxi&ds.ds0.projectId=${var.project_id}&ds.ds0.type=TABLE&ds.ds0.datasetId=ds_edw&ds.ds0.tableId=vw_lookerstudio_report" - description = "The URL to create a new Looker Studio report displays a sample dashboard for the taxi data analysis" + value = "https://lookerstudio.google.com/reporting/create?c.reportId=8a6517b8-8fcd-47a2-a953-9d4fb9ae4794&ds.ds_profit.datasourceName=lookerstudio_report_profit&ds.ds_profit.projectId=${module.project-services.project_id}&ds.ds_profit.type=TABLE&ds.ds_profit.datasetId=${google_bigquery_dataset.ds_edw.dataset_id}&ds.ds_profit.tableId=lookerstudio_report_profit&ds.ds_dc.datasourceName=lookerstudio_report_distribution_centers&ds.ds_dc.projectId=${module.project-services.project_id}&ds.ds_dc.type=TABLE&ds.ds_dc.datasetId=${google_bigquery_dataset.ds_edw.dataset_id}&ds.ds_dc.tableId=lookerstudio_report_distribution_centers" + description = "The URL to create a new Looker Studio report displays a sample dashboard for the e-commerce data analysis" } output "bigquery_editor_url" { - value = "https://console.cloud.google.com/bigquery?project=${var.project_id}&ws=!1m5!1m4!6m3!1s${var.project_id}!2sds_edw!3ssp_sample_queries" + value = "https://console.cloud.google.com/bigquery?project=${module.project-services.project_id}&ws=!1m5!1m4!6m3!1s${module.project-services.project_id}!2s${google_bigquery_dataset.ds_edw.dataset_id}!3ssp_sample_queries" description = "The URL to launch the BigQuery editor with the sample query procedure opened" } diff --git a/modules/data_warehouse/src/schema/distribution_centers_schema.json b/modules/data_warehouse/src/schema/distribution_centers_schema.json new file mode 100644 index 00000000..c50e6779 --- /dev/null +++ b/modules/data_warehouse/src/schema/distribution_centers_schema.json @@ -0,0 +1,22 @@ +[ + { + "mode": "NULLABLE", + "name": "id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "name", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "latitude", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "longitude", + "type": "FLOAT" + } +] diff --git a/modules/data_warehouse/src/schema/events_schema.json b/modules/data_warehouse/src/schema/events_schema.json new file mode 100644 index 00000000..4a5a1f3f --- /dev/null +++ b/modules/data_warehouse/src/schema/events_schema.json @@ -0,0 +1,67 @@ +[ + { + "mode": "NULLABLE", + "name": "id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "user_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "sequence_number", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "session_id", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "created_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "ip_address", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "city", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "state", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "postal_code", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "browser", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "traffic_source", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "uri", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "event_type", + "type": "STRING" + } +] diff --git a/modules/data_warehouse/src/schema/inventory_items_schema.json b/modules/data_warehouse/src/schema/inventory_items_schema.json new file mode 100644 index 00000000..4b064798 --- /dev/null +++ b/modules/data_warehouse/src/schema/inventory_items_schema.json @@ -0,0 +1,62 @@ +[ + { + "mode": "NULLABLE", + "name": "id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "product_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "created_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "sold_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "cost", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "product_category", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "product_name", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "product_brand", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "product_retail_price", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "product_department", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "product_sku", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "product_distribution_center_id", + "type": "INTEGER" + } +] diff --git a/modules/data_warehouse/src/schema/order_items_schema.json b/modules/data_warehouse/src/schema/order_items_schema.json new file mode 100644 index 00000000..9b0d6829 --- /dev/null +++ b/modules/data_warehouse/src/schema/order_items_schema.json @@ -0,0 +1,57 @@ +[ + { + "mode": "NULLABLE", + "name": "id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "order_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "user_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "product_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "inventory_item_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "status", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "created_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "shipped_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "delivered_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "returned_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "sale_price", + "type": "FLOAT" + } +] diff --git a/modules/data_warehouse/src/schema/orders_schema.json b/modules/data_warehouse/src/schema/orders_schema.json new file mode 100644 index 00000000..bb872ca5 --- /dev/null +++ b/modules/data_warehouse/src/schema/orders_schema.json @@ -0,0 +1,47 @@ +[ + { + "mode": "NULLABLE", + "name": "order_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "user_id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "status", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "gender", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "created_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "returned_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "shipped_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "delivered_at", + "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "num_of_item", + "type": "INTEGER" + } +] diff --git a/modules/data_warehouse/src/schema/products_schema.json b/modules/data_warehouse/src/schema/products_schema.json new file mode 100644 index 00000000..da918220 --- /dev/null +++ b/modules/data_warehouse/src/schema/products_schema.json @@ -0,0 +1,47 @@ +[ + { + "mode": "NULLABLE", + "name": "id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "cost", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "category", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "name", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "brand", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "retail_price", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "department", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "sku", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "distribution_center_id", + "type": "INTEGER" + } +] diff --git a/modules/data_warehouse/src/schema/users_schema.json b/modules/data_warehouse/src/schema/users_schema.json new file mode 100644 index 00000000..ae067f0d --- /dev/null +++ b/modules/data_warehouse/src/schema/users_schema.json @@ -0,0 +1,77 @@ +[ + { + "mode": "NULLABLE", + "name": "id", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "first_name", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "last_name", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "email", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "age", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "gender", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "state", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "street_address", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "postal_code", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "city", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "country", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "latitude", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "longitude", + "type": "FLOAT" + }, + { + "mode": "NULLABLE", + "name": "traffic_source", + "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "created_at", + "type": "TIMESTAMP" + } +] diff --git a/modules/data_warehouse/src/sql/sp_bigqueryml_generate_create.sql b/modules/data_warehouse/src/sql/sp_bigqueryml_generate_create.sql new file mode 100644 index 00000000..898e2e00 --- /dev/null +++ b/modules/data_warehouse/src/sql/sp_bigqueryml_generate_create.sql @@ -0,0 +1,17 @@ +-- Copyright 2023 Google LLC +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. + +CREATE OR REPLACE MODEL `${project_id}.${dataset_id}.${model_name}` +REMOTE WITH CONNECTION `${connection_id}` +OPTIONS (REMOTE_SERVICE_TYPE = 'CLOUD_AI_LARGE_LANGUAGE_MODEL_V1'); diff --git a/modules/data_warehouse/src/sql/sp_bigqueryml_generate_describe.sql b/modules/data_warehouse/src/sql/sp_bigqueryml_generate_describe.sql new file mode 100644 index 00000000..cd19742a --- /dev/null +++ b/modules/data_warehouse/src/sql/sp_bigqueryml_generate_describe.sql @@ -0,0 +1,92 @@ +-- Copyright 2023 Google LLC +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. + +/* +This sample query demonstrates how you can use a remote model from Vertex AI to use Generative AI to help describe the results of your BigQuery Machine Learning model. This query requires the sp_bigqueryml_generate_create routine to run first, since that creates the model connection between BigQuery and Vertex AI so you can leverage Vertex's GenAI capabilities. This runs as part of the Workflow created in the Jump Start Solution Deployment, but may take some time to generate. + +It also requires the sp_bigqueryml_model routine to be run, since this query analyzes the output of the K-means model that clusters customers into buying patterns. You can verify if this routine has successfully run by running the following query that describes its output: + +/* +Run a query to see the results of the model +--------------------------------------------- + +SELECT + CONCAT('cluster ', CAST(centroid_id as STRING)) as cluster, + avg_spend as average_spend, + count_orders as count_of_orders, + days_since_order +FROM ( + SELECT + centroid_id, + feature, + ROUND(numerical_value, 2) as value + FROM + ML.CENTROIDS(MODEL `${dataset_id}.customer_segment_clustering`) +) +PIVOT ( + SUM(value) + FOR feature IN ('avg_spend', 'count_orders', 'days_since_order') +) +ORDER BY centroid_id +*/ + +/* +If this query fails because the model doesn't yet exist, you can manually run this routine to create the K-means model with the query below: + +Call sp_bigqueryml_model routine +----------------------------------- + +CALL `thelook.sp_bigqueryml_model`(); +*/ + +/* +SELECT * +FROM ML.GENERATE_TEXT( + MODEL `${project_id}.${dataset_id}.${model_name}`, + ( + with clusters AS( + SELECT + CONCAT('cluster ', CAST(centroid_id as STRING)) as centroid, + avg_spend as average_spend, + count_orders as count_of_orders, + days_since_order + FROM ( + SELECT centroid_id, feature, ROUND(numerical_value, 2) as value + FROM ML.CENTROIDS(MODEL `${project_id}.${dataset_id}.customer_segment_clustering`) + ) + PIVOT ( + SUM(value) + FOR feature IN ('avg_spend', 'count_orders', 'days_since_order') + ) + ORDER BY centroid_id + ) + + SELECT + "Pretend you're a creative strategist, given the following clusters come up with creative brand persona and title labels for each of these clusters, and explain step by step; what would be the next marketing step for these clusters" || " " || clusters.centroid || ", Average Spend $" || clusters.average_spend || ", Count of orders per person " || clusters.count_of_orders || ", Days since last order " || clusters.days_since_order AS prompt + FROM + clusters + ), + -- See the BigQuery "Generate Text" docs to better understand how changing these inputs will impact your results: https://cloud.google.com/bigquery/docs/generate-text#generate_text + STRUCT( + 800 AS max_output_tokens, + 0.8 AS temperature, + 40 AS top_k, + 0.8 AS top_p, + TRUE AS flatten_json_output + ) + ) +; +*/ + +SELECT 'OPEN THE STORED PROCEDURE FOR MORE DETAILS' as sql_text; diff --git a/modules/data_warehouse/src/sql/sp_bigqueryml_model.sql b/modules/data_warehouse/src/sql/sp_bigqueryml_model.sql index 152ee298..83efd546 100644 --- a/modules/data_warehouse/src/sql/sp_bigqueryml_model.sql +++ b/modules/data_warehouse/src/sql/sp_bigqueryml_model.sql @@ -12,29 +12,60 @@ -- See the License for the specific language governing permissions and -- limitations under the License. -/* Run a query to see the prediction results of the model +/* +Run a query to see the results of the model -- -select * from ML.PREDICT(MODEL ds_edw.model_taxi_estimate, - TABLE ds_edw.taxi_trips) - limit 1000; */ +SELECT + CONCAT('cluster ', CAST(centroid_id as STRING)) as cluster, + avg_spend as average_spend, + count_orders as count_of_orders, + days_since_order +FROM ( + SELECT + centroid_id, + feature, + ROUND(numerical_value, 2) as value + FROM + ML.CENTROIDS(MODEL `${dataset_id}.customer_segment_clustering`) +) +PIVOT ( + SUM(value) + FOR feature IN ('avg_spend', 'count_orders', 'days_since_order') +) +ORDER BY centroid_id +*/ --Model Example CREATE OR REPLACE MODEL - `${project_id}.ds_edw.model_taxi_estimate` -OPTIONS ( MODEL_TYPE='LINEAR_REG', - LS_INIT_LEARN_RATE=0.15, - L1_REG=1, - MAX_ITERATIONS=5 ) AS -SELECT - pickup_datetime, - dropoff_datetime, - IFNULL(passenger_count,0) passenger_count, - IFNULL(trip_distance,0) trip_distance, - IFNULL(rate_code,'') rate_code, - IFNULL(payment_type,'') payment_type, - IFNULL(fare_amount,0) label, - IFNULL(pickup_location_id,'') pickup_location_id -FROM - `${project_id}.ds_edw.taxi_trips` -WHERE - fare_amount > 0; + `${project_id}.${dataset_id}.customer_segment_clustering` + OPTIONS( + MODEL_TYPE = 'KMEANS', -- model name + NUM_CLUSTERS = 5, -- how many clusters to create + KMEANS_INIT_METHOD = 'KMEANS++', + STANDARDIZE_FEATURES = TRUE -- note: normalization taking place to scale the range of independent variables (each feature contributes proportionately to the final distance) + ) + AS ( + SELECT + * EXCEPT (user_id) + FROM ( + SELECT + user_id, + DATE_DIFF(CURRENT_DATE(), CAST(MAX(order_created_date) as DATE), day) as days_since_order, ---RECENCY + COUNT(DISTINCT order_id) as count_orders, --FREQUENCY + AVG(sale_price) as avg_spend --MONETARY + FROM ( + SELECT + user_id, + order_id, + sale_price, + created_at as order_created_date + FROM + `${project_id}.${dataset_id}.order_items` + WHERE + created_at BETWEEN TIMESTAMP('2020-07-31 00:00:00') + AND TIMESTAMP('2023-07-31 00:00:00') + ) + GROUP BY user_id + ) + ) +; diff --git a/modules/data_warehouse/src/sql/sp_lookerstudio_report.sql b/modules/data_warehouse/src/sql/sp_lookerstudio_report.sql index 423ed5a5..88d643ca 100644 --- a/modules/data_warehouse/src/sql/sp_lookerstudio_report.sql +++ b/modules/data_warehouse/src/sql/sp_lookerstudio_report.sql @@ -12,99 +12,213 @@ -- See the License for the specific language governing permissions and -- limitations under the License. -CREATE OR REPLACE TABLE `${project_id}.ds_edw.lookerstudio_report` +CREATE OR REPLACE VIEW `${project_id}.${dataset_id}.lookerstudio_report_distribution_centers` OPTIONS( labels=[("data-warehouse","true")] ) AS -WITH TaxiData AS +WITH OrdersData AS ( -SELECT VENDOR_ID as TaxiCompany, - EXTRACT(YEAR FROM Pickup_DateTime) AS Year, - EXTRACT(WEEK FROM Pickup_DateTime) AS WeekNumber, - CONCAT('Week ',FORMAT("%02d", - EXTRACT(WEEK FROM Pickup_DateTime))) AS WeekName, - CONCAT(VENDOR_ID,':',EXTRACT(YEAR FROM Pickup_DateTime),':',FORMAT("%02d",EXTRACT(WEEK FROM Pickup_DateTime))) AS GroupPartition, - COUNT(1) AS NumberOfRides, - AVG(Trip_Distance) AS AvgDistance, - SUM(Fare_Amount) AS Total_Fare_Amount, - SUM(Extra) AS Total_Surcharge, - SUM(MTA_Tax) AS Total_MTA_Tax, - SUM(Tolls_Amount) AS Total_Tolls_Amount, - SUM(imp_Surcharge) AS Total_Improvement_Surcharge, - SUM(Tip_Amount) AS Total_Tip_Amount, - SUM(Total_Amount) AS Total_Total_Amount - FROM `${project_id}.ds_edw.taxi_trips` AS taxi_trips - WHERE Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-02' --'2015-01-01' AND '2021-12-31' -- There is odd data in some of the source files from NYC - GROUP BY 1, 2, 3, 4, 5 + SELECT dc.name AS distribution_center_name, + EXTRACT(YEAR FROM order_items.created_at) AS year, + EXTRACT(WEEK FROM order_items.created_at) AS week_number, + CONCAT('Week ',FORMAT("%02d", + EXTRACT(WEEK FROM order_items.created_at))) AS week_name, + EXTRACT(DATE FROM TIMESTAMP_TRUNC(order_items.created_at, WEEK)) AS week_start_date, + CONCAT(product_distribution_center_id,':',EXTRACT(YEAR FROM order_items.created_at), + ':',FORMAT("%02d",EXTRACT(WEEK FROM order_items.created_at))) AS GroupPartition, + COUNT(order_items.product_id) AS products_ordered_count, + COUNT(DISTINCT order_items.order_id) AS orders_count, + SUM(cost) AS inventory_sold_cost_total, + AVG(cost) AS inventory_sold_cost_avg, + SUM(order_items.sale_price - cost) AS profit_total, + AVG(order_items.sale_price - cost) AS profit_avg, + AVG(TIMESTAMP_DIFF(delivered_at, shipped_at, HOUR)) AS shipping_hours, + AVG(TIMESTAMP_DIFF(shipped_at, order_items.created_at, HOUR)) AS processing_hours, + AVG(TIMESTAMP_DIFF(delivered_at, order_items.created_at, HOUR)) AS order_to_delivery_hours + FROM + `${project_id}.${dataset_id}.order_items` AS order_items + JOIN + `${project_id}.${dataset_id}.inventory_items` AS inventory_items ON order_items.product_id = inventory_items.product_id AND order_items.inventory_item_id = inventory_items.id + JOIN + `${project_id}.${dataset_id}.distribution_centers` AS dc ON inventory_items.product_distribution_center_id = dc.id + WHERE + order_items.created_at IS NOT NULL + AND order_items.created_at <= CURRENT_TIMESTAMP() + GROUP BY 1, 2, 3, 4, 5, 6 ) , LagPercents AS ( -SELECT TaxiCompany, - Year, - WeekNumber, - WeekName, - NumberOfRides, - GroupPartition, - AvgDistance, - Total_Fare_Amount, - Total_Surcharge, - Total_MTA_Tax, - Total_Tolls_Amount, - Total_Improvement_Surcharge, - Total_Tip_Amount, - Total_Total_Amount, - LAG(NumberOfRides) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_NumberOfRides, - LAG(AvgDistance) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_AvgDistance, - LAG(Total_Fare_Amount) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_Fare_Amount, - LAG(Total_Surcharge) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_Surcharge, - LAG(Total_MTA_Tax) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_MTA_Tax, - LAG(Total_Tolls_Amount) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_Tolls_Amount, - LAG(Total_Improvement_Surcharge) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_Improvement_Surcharge, - LAG(Total_Tip_Amount) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_Tip_Amount, - LAG(Total_Total_Amount) OVER (PARTITION BY TaxiCompany ORDER BY Year, WeekNumber ASC) AS Prior_Week_Total_Total_Amount - FROM TaxiData + SELECT distribution_center_name, + year, + week_number, + week_name, + week_start_date, + GroupPartition, + products_ordered_count, + orders_count, + profit_total, + profit_avg, + inventory_sold_cost_total, + inventory_sold_cost_avg, + shipping_hours, + processing_hours, + order_to_delivery_hours, + LAG(products_ordered_count) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_products_ordered_count, + LAG(orders_count) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_orders_count, + LAG(profit_total) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_profit_total, + LAG(profit_avg) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_profit_avg, + LAG(inventory_sold_cost_total) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_inventory_sold_cost_total, + LAG(inventory_sold_cost_avg) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_inventory_sold_cost_avg, + LAG(shipping_hours) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_shipping_hours, + LAG(processing_hours) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_processing_hours, + LAG(order_to_delivery_hours) OVER (PARTITION BY distribution_center_name ORDER BY year DESC, week_number DESC) AS prior_week_order_to_delivery_hours + FROM OrdersData ) , PercentChange AS ( -SELECT TaxiCompany, - Year, - WeekNumber, - WeekName, - GroupPartition, - NumberOfRides, - AvgDistance, - Total_Fare_Amount, - Total_Surcharge, - Total_MTA_Tax, - Total_Tolls_Amount, - Total_Improvement_Surcharge, - Total_Tip_Amount, - Total_Total_Amount, - Prior_Week_NumberOfRides, - Prior_Week_AvgDistance, - Prior_Week_Total_Fare_Amount, - Prior_Week_Total_Surcharge, - Prior_Week_Total_MTA_Tax, - Prior_Week_Total_Tolls_Amount, - Prior_Week_Total_Improvement_Surcharge, - Prior_Week_Total_Tip_Amount, - Prior_Week_Total_Total_Amount, - SAFE_DIVIDE(CAST(NumberOfRides - Prior_Week_NumberOfRides AS NUMERIC) , CAST(Prior_Week_NumberOfRides AS NUMERIC)) AS PercentChange_NumberOfRides, - SAFE_DIVIDE(CAST(AvgDistance - Prior_Week_AvgDistance AS NUMERIC) , CAST(Prior_Week_AvgDistance AS NUMERIC)) AS PercentChange_AvgDistance, - SAFE_DIVIDE((Total_Fare_Amount - Prior_Week_Total_Fare_Amount) , Prior_Week_Total_Fare_Amount) AS PercentChange_Total_Fare_Amount, - SAFE_DIVIDE((Total_Surcharge - Prior_Week_Total_Surcharge) , Prior_Week_Total_Surcharge) AS PercentChange_Total_Surcharge, - SAFE_DIVIDE((Total_MTA_Tax - Prior_Week_Total_MTA_Tax) , Prior_Week_Total_MTA_Tax) AS PercentChange_Total_MTA_Tax, - SAFE_DIVIDE((Total_Tolls_Amount - Prior_Week_Total_Tolls_Amount) , Prior_Week_Total_Tolls_Amount) AS PercentChange_Total_Tolls_Amount, - SAFE_DIVIDE((Total_Improvement_Surcharge - Prior_Week_Total_Improvement_Surcharge) , Prior_Week_Total_Improvement_Surcharge) AS PercentChange_Total_Improvement_Surcharge, - SAFE_DIVIDE((Total_Tip_Amount - Prior_Week_Total_Tip_Amount) , Prior_Week_Total_Tip_Amount) AS PercentChange_Total_Tip_Amount, - SAFE_DIVIDE((Total_Total_Amount - Prior_Week_Total_Total_Amount) , Prior_Week_Total_Total_Amount) AS PercentChange_Total_Total_Amount + SELECT distribution_center_name, + year, + week_number, + week_name, + week_start_date, + GroupPartition, + products_ordered_count, + orders_count, + profit_total, + profit_avg, + inventory_sold_cost_total, + inventory_sold_cost_avg, + shipping_hours, + processing_hours, + order_to_delivery_hours, + prior_week_products_ordered_count, + prior_week_orders_count, + prior_week_profit_total, + prior_week_profit_avg, + prior_week_inventory_sold_cost_total, + prior_week_inventory_sold_cost_avg, + prior_week_shipping_hours, + prior_week_processing_hours, + prior_week_order_to_delivery_hours, + SAFE_DIVIDE(CAST(products_ordered_count - prior_week_products_ordered_count AS NUMERIC) , CAST(prior_week_products_ordered_count AS NUMERIC)) AS percent_change_products_ordered_count, + SAFE_DIVIDE(CAST(orders_count - prior_week_orders_count AS NUMERIC) , CAST(prior_week_orders_count AS NUMERIC)) AS percent_change_orders_count, + SAFE_DIVIDE((profit_total - prior_week_profit_total) , prior_week_profit_total) AS percent_change_profit_total, + SAFE_DIVIDE((profit_avg - prior_week_profit_avg) , prior_week_profit_avg) AS percent_change_profit_avg, + SAFE_DIVIDE((inventory_sold_cost_total - prior_week_inventory_sold_cost_total) , prior_week_inventory_sold_cost_total) AS percent_change_inventory_sold_cost_total, + SAFE_DIVIDE((inventory_sold_cost_avg - prior_week_inventory_sold_cost_avg) , prior_week_inventory_sold_cost_avg) AS percent_change_inventory_sold_cost_avg, + SAFE_DIVIDE((shipping_hours - prior_week_shipping_hours) , prior_week_shipping_hours) AS percent_change_shipping_hours, + SAFE_DIVIDE((processing_hours - prior_week_processing_hours) , prior_week_processing_hours) AS percent_change_processing_hours, + SAFE_DIVIDE((order_to_delivery_hours - prior_week_order_to_delivery_hours) , prior_week_order_to_delivery_hours) AS percent_change_order_to_delivery_hours FROM LagPercents ) SELECT * - FROM PercentChange +FROM PercentChange ORDER BY GroupPartition; -CREATE OR REPLACE VIEW `${project_id}.ds_edw.vw_lookerstudio_report` as -SELECT * FROM `${project_id}.ds_edw.lookerstudio_report` -WHERE Year in (2022); +CREATE OR REPLACE VIEW `${project_id}.${dataset_id}.lookerstudio_report_profit` +OPTIONS( + labels=[("data-warehouse","true")] +) +AS +with SubsetInventory AS( + SELECT + SUM(ROUND(product_retail_price,2)) AS revenue_total, + SUM(ROUND(cost,2)) AS cost_total, + SUM(ROUND(product_retail_price-cost, 2)) AS profit_total, + CONCAT(product_department, " - ", product_category) AS product_dept_cat, + EXTRACT(DATE from sold_at) AS sold_at_day + FROM + `${project_id}.${dataset_id}.inventory_items` + WHERE + sold_at <= CURRENT_TIMESTAMP() + GROUP BY + product_dept_cat, sold_at_day +), + +Inventory7d AS ( + SELECT + product_dept_cat, + sold_at_day AS day, + revenue_total, + cost_total, + profit_total, + SUM(ROUND(revenue_total,2)) OVER (PARTITION BY product_dept_cat ORDER BY UNIX_DATE(sold_at_day) ASC RANGE BETWEEN 6 PRECEDING and CURRENT ROW) AS revenue_last_7d, + SUM(ROUND(cost_total,2)) OVER (PARTITION BY product_dept_cat ORDER BY UNIX_DATE(sold_at_day) ASC RANGE BETWEEN 6 PRECEDING and CURRENT ROW) AS cost_last_7d + FROM + SubsetInventory +), + +Lags AS ( + SELECT + product_dept_cat, + day, + revenue_total, + cost_total, + profit_total, + revenue_last_7d, + cost_last_7d, + ROUND(SAFE_SUBTRACT(revenue_last_7d, cost_last_7d),2) AS profit_last_7d, + LAG(revenue_last_7d,30) OVER (PARTITION BY product_dept_cat ORDER BY UNIX_DATE(day) ASC) AS prior_month_revenue_last_7d, + LAG(cost_last_7d,30) OVER (PARTITION BY product_dept_cat ORDER BY UNIX_DATE(day) ASC) AS prior_month_cost_last_7d, + LAG(revenue_last_7d,365) OVER (PARTITION BY product_dept_cat ORDER BY UNIX_DATE(day) ASC) AS prior_year_revenue_last_7d, + LAG(cost_last_7d,365) OVER (PARTITION BY product_dept_cat ORDER BY UNIX_DATE(day) ASC) AS prior_year_cost_last_7d, + FROM + Inventory7d +), + +LagPercentages AS ( + SELECT + day, + product_dept_cat, + revenue_total, + cost_total, + profit_total, + revenue_last_7d, + prior_month_revenue_last_7d, + prior_year_revenue_last_7d, + SAFE_DIVIDE((revenue_last_7d - prior_month_revenue_last_7d), prior_month_revenue_last_7d) AS percent_change_revenue_month, + SAFE_DIVIDE((revenue_last_7d - prior_year_revenue_last_7d), prior_year_revenue_last_7d) AS percent_change_revenue_year, + cost_last_7d, + prior_month_cost_last_7d, + prior_year_cost_last_7d, + SAFE_DIVIDE((cost_last_7d - prior_month_cost_last_7d), prior_month_cost_last_7d) AS percent_change_cost_month, + SAFE_DIVIDE((cost_last_7d - prior_year_cost_last_7d), prior_year_cost_last_7d) AS percent_change_cost_year, + profit_last_7d, + ROUND(SAFE_SUBTRACT(prior_month_revenue_last_7d, prior_month_cost_last_7d),2) AS prior_month_profit_last_7d, + ROUND(SAFE_SUBTRACT(prior_year_revenue_last_7d, prior_year_cost_last_7d),2) AS prior_year_profit_last_7d, + FROM + Lags +), + +ProfitPercentages AS ( + SELECT + day, + product_dept_cat, + revenue_total, + revenue_last_7d, + prior_month_revenue_last_7d, + percent_change_revenue_month, + prior_year_revenue_last_7d, + percent_change_revenue_year, + cost_total, + cost_last_7d, + prior_month_cost_last_7d, + percent_change_cost_month, + prior_year_cost_last_7d, + percent_change_cost_year, + profit_total, + profit_last_7d, + prior_month_profit_last_7d, + SAFE_DIVIDE((profit_last_7d - prior_month_profit_last_7d), prior_month_profit_last_7d) AS percent_change_profit_month, + prior_year_profit_last_7d, + SAFE_DIVIDE((profit_last_7d - prior_year_profit_last_7d), prior_year_profit_last_7d) AS percent_change_profit_year + FROM + LagPercentages + ORDER BY + day DESC +) + +SELECT * +FROM ProfitPercentages +ORDER BY day DESC; diff --git a/modules/data_warehouse/src/sql/sp_provision_lookup_tables.sql b/modules/data_warehouse/src/sql/sp_provision_lookup_tables.sql index 1cacb53b..3a6457f5 100644 --- a/modules/data_warehouse/src/sql/sp_provision_lookup_tables.sql +++ b/modules/data_warehouse/src/sql/sp_provision_lookup_tables.sql @@ -12,36 +12,36 @@ -- See the License for the specific language governing permissions and -- limitations under the License. -CREATE OR REPLACE TABLE `${project_id}.ds_edw.vendor` - ( - Vendor_Id INTEGER, - Vendor_Description STRING - ) -OPTIONS( - labels=[("data-warehouse","true")] -) -AS -SELECT 1, 'Creative Mobile Technologies, LLC' -UNION ALL -SELECT 2, 'VeriFone Inc.'; +CREATE OR REPLACE TABLE `${project_id}.${dataset_id}.distribution_centers` -CREATE OR REPLACE TABLE `${project_id}.ds_edw.payment_type` ( - Payment_Type_Id INTEGER, - Payment_Type_Description STRING + id INTEGER, + name STRING, + longitude FLOAT64, + latitude FLOAT64, + distribution_center_geom GEOGRAPHY ) -OPTIONS( - labels=[("data-warehouse","true")] -) + OPTIONS( + labels=[("data-warehouse","true")] + ) AS -SELECT 1, 'Credit card' +SELECT 1, 'Memphis TN', -89.9711, 35.1174, ST_GEOGPOINT(-89.9711, 35.1174) +UNION ALL +SELECT 2, 'Chicago IL', -87.6847, 41.8369, ST_GEOGPOINT(-87.6847, 41.8369) +UNION ALL +SELECT 3, 'Houston TX', -95.3698, 29.7604, ST_GEOGPOINT(-95.3698, 29.7604) +UNION ALL +SELECT 4, 'Los Angeles CA', -118.25, 34.05, ST_GEOGPOINT(-118.25, 34.05) +UNION ALL +SELECT 5, 'New Orleans LA', -90.0667, 29.95, ST_GEOGPOINT(-90.0667, 29.95) UNION ALL -SELECT 2, 'Cash' +SELECT 6, 'Port Authority of New York/New Jersey NY/NJ', -73.7834, 40.634, ST_GEOGPOINT(-73.7834, 40.634) UNION ALL -SELECT 3, 'No charge' +SELECT 7, 'Philadelphia PA', -75.1667, 39.95, ST_GEOGPOINT(-75.1667, 39.95) UNION ALL -SELECT 4, 'Dispute' +SELECT 8, 'Mobile AL', -88.0431, 30.6944, ST_GEOGPOINT(-88.0431, 30.6944) UNION ALL -SELECT 5, 'Unknown' +SELECT 9, 'Charleston SC', -79.9333, 32.7833, ST_GEOGPOINT(-79.9333, 32.7833) UNION ALL -SELECT 6, 'Voided trip'; +SELECT 10, 'Savannah GA', -81.1167, 32.0167, ST_GEOGPOINT(-81.1167, 32.0167) +; diff --git a/modules/data_warehouse/src/sql/sp_sample_queries.sql b/modules/data_warehouse/src/sql/sp_sample_queries.sql index c88183ba..fdb4ace3 100644 --- a/modules/data_warehouse/src/sql/sp_sample_queries.sql +++ b/modules/data_warehouse/src/sql/sp_sample_queries.sql @@ -29,118 +29,118 @@ Clean up / Reset script: --Rank, Pivot, Json --- Query: Get trips over $50 for each day of the week. --- Shows: Date Functions, Joins, Group By, Having, Ordinal Group/Having -SELECT FORMAT_DATE("%w", Pickup_DateTime) AS WeekdayNumber, - FORMAT_DATE("%A", Pickup_DateTime) AS WeekdayName, - vendor.Vendor_Description, - payment_type.Payment_Type_Description, - SUM(taxi_trips.Total_Amount) AS high_value_trips - FROM `${project_id}.ds_edw.taxi_trips` AS taxi_trips - INNER JOIN `${project_id}.ds_edw.vendor` AS vendor - ON cast(taxi_trips.Vendor_Id as INT64) = vendor.Vendor_Id - AND taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - LEFT JOIN `${project_id}.ds_edw.payment_type` AS payment_type - ON cast(taxi_trips.payment_type as INT64) = payment_type.Payment_Type_Id -GROUP BY 1, 2, 3, 4 -HAVING SUM(taxi_trips.Total_Amount) > 50 -ORDER BY WeekdayNumber, 3, 4; +-- Query: See the order price quartiles for each day of the week. +-- Shows: Date Functions, Joins, Group By, Having, Ordinal Group/Having, Quantiles +SELECT + FORMAT_DATE("%w", created_at) AS WeekdayNumber, + FORMAT_DATE("%A", created_at) AS WeekdayName, + APPROX_QUANTILES(order_price, 4) AS quartiles + FROM ( + SELECT + created_at, + SUM(sale_price) AS order_price + FROM + `${project_id}.${dataset_id}.order_items` + GROUP BY + order_id, 1 + HAVING SUM(sale_price) > 10) + GROUP BY + 1, 2 + ORDER BY + WeekdayNumber, 3 +; +-- Query: Items with less than 30 days of inventory remaining +WITH Orders AS ( + SELECT + order_items.product_id AS product_id, + COUNT(order_items.id) AS count_sold_30d + FROM + `${project_id}.${dataset_id}.order_items` AS order_items + WHERE + order_items.created_at > TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 30 DAY) + GROUP BY + product_id +), --- Query: amounts (Cash/Credit) by passenger type -WITH TaxiDataRanking AS -( -SELECT CAST(Pickup_DateTime AS DATE) AS Pickup_Date, - cast(taxi_trips.payment_type as INT64) as Payment_Type_Id, - taxi_trips.Passenger_Count, - taxi_trips.Total_Amount, - RANK() OVER (PARTITION BY CAST(Pickup_DateTime AS DATE), - taxi_trips.payment_type - ORDER BY taxi_trips.Passenger_Count DESC, - taxi_trips.Total_Amount DESC) AS Ranking - FROM `${project_id}.ds_edw.taxi_trips` AS taxi_trips - WHERE taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - AND cast(taxi_trips.payment_type as INT64) IN (1,2) -) -SELECT Pickup_Date, - Payment_Type_Description, - Passenger_Count, - Total_Amount - FROM TaxiDataRanking - INNER JOIN `${project_id}.ds_edw.payment_type` AS payment_type - ON TaxiDataRanking.Payment_Type_Id = payment_type.Payment_Type_Id -WHERE Ranking = 1 -ORDER BY Pickup_Date, Payment_Type_Description; - +OnHand AS ( + SELECT + inventory.product_id AS product_id, + inventory.product_name AS product_name, + COUNT(inventory.id) AS count_in_stock + FROM + `${project_id}.${dataset_id}.inventory_items` AS inventory + WHERE + inventory.sold_at IS NULL + GROUP BY + product_id, + product_name + ORDER BY + count_in_stock DESC +), --- Query: data summed by payment type and passenger count, then pivoted based upon payment type -WITH MonthlyData AS -( -SELECT FORMAT_DATE("%B", taxi_trips.Pickup_DateTime) AS MonthName, - FORMAT_DATE("%m", taxi_trips.Pickup_DateTime) AS MonthNumber, - CASE WHEN cast(taxi_trips.payment_type as INT64) = 1 THEN 'Credit' - WHEN cast(taxi_trips.payment_type as INT64) = 2 THEN 'Cash' - WHEN cast(taxi_trips.payment_type as INT64) = 3 THEN 'NoCharge' - WHEN cast(taxi_trips.payment_type as INT64) = 4 THEN 'Dispute' - END AS PaymentDescription, - taxi_trips.Passenger_Count, - taxi_trips.Total_Amount - FROM `${project_id}.ds_edw.taxi_trips` AS taxi_trips - WHERE taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - AND Passenger_Count IS NOT NULL - AND cast(payment_type as INT64) IN (1,2,3,4) +End30dInventory AS ( + SELECT + OnHand.*, + Orders.count_sold_30d, + count_in_stock - count_sold_30d AS expected_inventory_30d + FROM + OnHand + INNER JOIN + Orders USING (product_id) ) -SELECT MonthName, - Passenger_Count, - FORMAT("%'d", CAST(Credit AS INTEGER)) AS Credit, - FORMAT("%'d", CAST(Cash AS INTEGER)) AS Cash, - FORMAT("%'d", CAST(NoCharge AS INTEGER)) AS NoCharge, - FORMAT("%'d", CAST(Dispute AS INTEGER)) AS Dispute - FROM MonthlyData - PIVOT(SUM(Total_Amount) FOR PaymentDescription IN ('Credit', 'Cash', 'NoCharge', 'Dispute')) -ORDER BY MonthNumber, Passenger_Count; +SELECT + RANK() OVER (ORDER BY expected_inventory_30d ASC) AS rank, + End30dInventory.product_name, + End30dInventory.expected_inventory_30d, + End30dInventory.count_in_stock AS current_stock, + End30dInventory.count_sold_30d +FROM + End30dInventory +ORDER BY + rank ASC, current_stock DESC +; --- Query: data pivoted by payment type -WITH MonthlyData AS -( -SELECT FORMAT_DATE("%B", taxi_trips.Pickup_DateTime) AS MonthName, - FORMAT_DATE("%m", taxi_trips.Pickup_DateTime) AS MonthNumber, - CASE WHEN cast(taxi_trips.payment_type as INT64) = 1 THEN 'Credit' - WHEN cast(taxi_trips.payment_type as INT64) = 2 THEN 'Cash' - WHEN cast(taxi_trips.payment_type as INT64) = 3 THEN 'NoCharge' - WHEN cast(taxi_trips.payment_type as INT64) = 4 THEN 'Dispute' - END AS PaymentDescription, - SUM(taxi_trips.Total_Amount) AS Total_Amount - FROM `${project_id}.ds_edw.taxi_trips` AS taxi_trips - WHERE taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - AND Passenger_Count IS NOT NULL - AND cast(taxi_trips.payment_type as INT64) IN (1,2,3,4) - GROUP BY 1, 2, 3 +-- Query: data summed by month, then pivoted by department +with MonthlyData AS( + SELECT + sold_at, + FORMAT_DATE("%B", inventory.sold_at) AS month_name, + FORMAT_DATE("%m", inventory.sold_at) AS month_number, + SAFE_SUBTRACT(inventory.product_retail_price, inventory.cost) AS profit, + inventory.product_department AS product_department + FROM + `${project_id}.${dataset_id}.inventory_items` AS inventory + WHERE + sold_at IS NOT NULL ) -SELECT MonthName, - FORMAT("%'d", CAST(Credit AS INTEGER)) AS Credit, - FORMAT("%'d", CAST(Cash AS INTEGER)) AS Cash, - FORMAT("%'d", CAST(NoCharge AS INTEGER)) AS NoCharge, - FORMAT("%'d", CAST(Dispute AS INTEGER)) AS Dispute - FROM MonthlyData - PIVOT(SUM(Total_Amount) FOR PaymentDescription IN ('Credit', 'Cash', 'NoCharge', 'Dispute')) -ORDER BY MonthNumber; +SELECT + month_name, + FORMAT("%'d", CAST(Profit_Men AS INTEGER)) AS Profit_Men, + FORMAT("%'d", CAST(Profit_Women AS INTEGER)) AS Profit_Women +FROM + MonthlyData +PIVOT + (SUM(profit) AS Profit FOR product_department IN ("Men", "Women")) +ORDER BY month_number ASC +; --- Query: See what day of the week in each month has the greatest amount (that's the month/day to work) -WITH WeekdayData AS -( -SELECT FORMAT_DATE("%B", Pickup_DateTime) AS MonthName, - FORMAT_DATE("%m", Pickup_DateTime) AS MonthNumber, - FORMAT_DATE("%A", Pickup_DateTime) AS WeekdayName, - SUM(taxi_trips.Total_Amount) AS Total_Amount - FROM `${project_id}.ds_edw.taxi_trips` AS taxi_trips - WHERE taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - AND cast(taxi_trips.payment_type as INT64) IN (1,2,3,4) +-- Query: See what day of the week in each month has the greatest amount of sales(that's the month/day to work) +WITH WeekdayData AS ( + SELECT + FORMAT_DATE("%B", inventory.sold_at) AS month_name, + FORMAT_DATE("%m", inventory.sold_at) AS month_number, + FORMAT_DATE("%A", inventory.sold_at) AS weekday_name, + SUM(inventory.product_retail_price) AS revenue + FROM + `${project_id}.${dataset_id}.inventory_items` AS inventory + WHERE + inventory.sold_at IS NOT NULL GROUP BY 1, 2, 3 ) -SELECT MonthName, +SELECT month_name, FORMAT("%'d", CAST(Sunday AS INTEGER)) AS Sunday, FORMAT("%'d", CAST(Monday AS INTEGER)) AS Monday, FORMAT("%'d", CAST(Tuesday AS INTEGER)) AS Tuesday, @@ -149,5 +149,49 @@ SELECT MonthName, FORMAT("%'d", CAST(Friday AS INTEGER)) AS Friday, FORMAT("%'d", CAST(Saturday AS INTEGER)) AS Saturday, FROM WeekdayData - PIVOT(SUM(Total_Amount) FOR WeekdayName IN ('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday')) -ORDER BY MonthNumber; + PIVOT(SUM(revenue) FOR weekday_name IN ('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday')) +ORDER BY month_number +; + +-- Query: Revenue pivoted by category name for each month. +-- This query dynamically generates the pivot column names based on the distinct values in the product_category column +EXECUTE IMMEDIATE FORMAT(""" + with Subset AS( + SELECT + EXTRACT(MONTH FROM inventory.sold_at) AS month_number, + inventory.product_category, + inventory.product_retail_price + FROM + `${project_id}.${dataset_id}.inventory_items` AS inventory + WHERE + inventory.sold_at IS NOT NULL) + + SELECT + CASE + WHEN month_number = 1 THEN 'January' + WHEN month_number = 2 THEN 'February' + WHEN month_number = 3 THEN 'March' + WHEN month_number = 4 THEN 'April' + WHEN month_number = 5 THEN 'May' + WHEN month_number = 6 THEN 'June' + WHEN month_number = 7 THEN 'July' + WHEN month_number = 8 THEN 'August' + WHEN month_number = 9 THEN 'September' + WHEN month_number = 10 THEN 'October' + WHEN month_number = 11 THEN 'November' + WHEN month_number = 12 THEN 'December' + END AS month_name, + * EXCEPT (month_number) + FROM + Subset + PIVOT (SUM(Subset.product_retail_price) as Revenue FOR product_category IN %s) + ORDER BY month_number; + """, + ( + SELECT + CONCAT("(", STRING_AGG(DISTINCT CONCAT("'", product_category, "'"), ','), ")") + FROM + `${project_id}.${dataset_id}.inventory_items` + ) +) +; diff --git a/modules/data_warehouse/src/sql/sp_sample_translation_queries.sql b/modules/data_warehouse/src/sql/sp_sample_translation_queries.sql index c59ede6a..fa7c410f 100644 --- a/modules/data_warehouse/src/sql/sp_sample_translation_queries.sql +++ b/modules/data_warehouse/src/sql/sp_sample_translation_queries.sql @@ -16,56 +16,27 @@ The queries below are examples of non-BigQuery SQL syntax that can be used with the interactive translator to see before and after changes performed. -The sample queries below use PostgreSQL syntax.*/ +The sample query below uses PostgreSQL syntax.*/ /* Query 1 ------------- -CREATE TABLE taxi_trips (payment_type VARCHAR, Vendor_Id VARCHAR); -SELECT FORMAT_DATE("%w", Pickup_DateTime) AS WeekdayNumber, - FORMAT_DATE("%A", Pickup_DateTime) AS WeekdayName, - vendor.Vendor_Description, - payment_type.Payment_Type_Description, - SUM(taxi_trips.Total_Amount) AS high_value_trips - FROM ds_edw.taxi_trips AS taxi_trips - INNER JOIN ds_edw.vendor AS vendor - ON cast(taxi_trips.Vendor_Id as int) = vendor.Vendor_Id - AND taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - LEFT JOIN ds_edw.payment_type AS payment_type - ON taxi_trips.payment_type::int = payment_type.Payment_Type_Id -GROUP BY 1, 2, 3, 4 -HAVING SUM(taxi_trips.Total_Amount) > 50 -ORDER BY WeekdayNumber, 3, 4; +CREATE TABLE ${project_id}.${dataset_id}.inventory_items (id VARCHAR, product_id VARCHAR, created_at TIMESTAMP, sold_at TIMESTAMP, cost NUMERIC, product_category VARCHAR, product_name VARCHAR, product_brand VARCHAR, product_retail_price NUMERIC, product_department VARCHAR, product_sku VARCHAR, product_distribution_center_id VARCHAR); +CREATE TABLE ${project_id}.${dataset_id}.order_items (id INTEGER, order_id INTEGER, user_id INTEGER, product_id INTEGER, inventory_item_id INTEGER, status VARCHAR, created_at TIMESTAMP, shipped_at TIMESTAMP, delivered_at TIMESTAMP, returned_at TIMESTAMP, sale_price NUMERIC); + +SELECT + EXTRACT(dow from order_items.created_at) AS WeekdayNumber, + TO_CHAR(order_items.created_at, 'DAY') AS WeekdayName, + inventory.product_category AS product_category, + COUNT(DISTINCT order_items.order_id) AS num_high_value_orders +FROM ${project_id}.${dataset_id}.inventory_items AS inventory + INNER JOIN ${project_id}.${dataset_id}.order_items AS order_items + ON inventory.id::int = order_items.inventory_item_id + AND cast(inventory.product_id as int) = order_items.product_id + AND order_items.created_at BETWEEN TO_TIMESTAMP('2022-01-01','YYYY-MM-DD') AND TO_TIMESTAMP('2022-12-31','YYYY-MM-DD') +GROUP BY 1, 2, 3 +HAVING AVG(order_items.sale_price) > 85; */ -/* Query 2 -------------- -CREATE TABLE taxi_trips (payment_type VARCHAR, Vendor_Id VARCHAR); - -WITH TaxiDataRanking AS -( -SELECT CAST(Pickup_DateTime AS DATE) AS Pickup_Date, - taxi_trips.payment_type as Payment_Type_Id, - taxi_trips.Passenger_Count, - taxi_trips.Total_Amount, - RANK() OVER (PARTITION BY CAST(Pickup_DateTime AS DATE), - taxi_trips.payment_type - ORDER BY taxi_trips.Passenger_Count DESC, - taxi_trips.Total_Amount DESC) AS Ranking - FROM ds_edw.taxi_trips AS taxi_trips -WHERE taxi_trips.Pickup_DateTime BETWEEN '2022-01-01' AND '2022-02-01' - AND taxi_trips.payment_type::int IN (1,2) -) -SELECT Pickup_Date, - Payment_Type_Description, - Passenger_Count, - Total_Amount - FROM TaxiDataRanking - INNER JOIN ds_edw.payment_type AS payment_type - ON TaxiDataRanking.Payment_Type_Id = payment_type.Payment_Type_Id -WHERE Ranking = 1 -ORDER BY Pickup_Date, Payment_Type_Description; -*/ - SELECT 'OPEN THE STORED PROCEDURE FOR MORE DETAILS TO USE THE TRANSLATION SERVICE' as sql_text; diff --git a/modules/data_warehouse/src/taxi_trips_schema.json b/modules/data_warehouse/src/taxi_trips_schema.json deleted file mode 100644 index 5bf80035..00000000 --- a/modules/data_warehouse/src/taxi_trips_schema.json +++ /dev/null @@ -1,116 +0,0 @@ -[ - { - "name": "vendor_id", - "type": "STRING", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "pickup_datetime", - "type": "TIMESTAMP", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "dropoff_datetime", - "type": "TIMESTAMP", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "passenger_count", - "type": "INTEGER", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "trip_distance", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "rate_code", - "type": "STRING", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "store_and_fwd_flag", - "type": "STRING", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "payment_type", - "type": "STRING", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "fare_amount", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "extra", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "mta_tax", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "tip_amount", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "tolls_amount", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "imp_surcharge", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "airport_fee", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "total_amount", - "type": "NUMERIC", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "pickup_location_id", - "type": "STRING", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "data_file_year", - "type": "INTEGER", - "mode": "NULLABLE", - "description": "" - }, - { - "name": "data_file_month", - "type": "INTEGER", - "mode": "NULLABLE", - "description": "" - } - ] diff --git a/modules/data_warehouse/templates/workflow.tftpl b/modules/data_warehouse/templates/workflow.tftpl index b39338a6..b0df5dd9 100644 --- a/modules/data_warehouse/templates/workflow.tftpl +++ b/modules/data_warehouse/templates/workflow.tftpl @@ -38,7 +38,7 @@ copy_objects: call: googleapis.storage.v1.objects.list args: bucket: $${source_bucket} - prefix: "new-york-taxi-trips/tlc-yellow-trips-2022" + prefix: "thelook-ecommerce" result: list_result - start_counter: assign: @@ -79,10 +79,13 @@ create_tables: - assignStepTables: assign: - results: {} + - dataset_id: ${dataset_id} - project_id: $${sys.get_env("GOOGLE_CLOUD_PROJECT_ID")} - map: - 1: $${"CALL `"+project_id+".ds_edw.sp_provision_lookup_tables`();"} - 2: $${"CALL `"+project_id+".ds_edw.sp_lookerstudio_report`();"} + 1: $${"CALL `"+project_id+"."+dataset_id+".sp_provision_lookup_tables`();"} + 2: $${"CALL `"+project_id+"."+dataset_id+".sp_lookerstudio_report`();"} + 3: $${"CALL `"+project_id+"."+dataset_id+".sp_bigqueryml_model`();"} + 4: $${"CALL `"+project_id+"."+dataset_id+".sp_bigqueryml_generate_create`();"} - loopStepTables: for: value: key diff --git a/modules/data_warehouse/variables.tf b/modules/data_warehouse/variables.tf index 55f4438f..6c494453 100644 --- a/modules/data_warehouse/variables.tf +++ b/modules/data_warehouse/variables.tf @@ -24,6 +24,12 @@ variable "region" { description = "Google Cloud Region" } +variable "text_generation_model_name" { + type = string + description = "Name of the BigQuery ML GenAI remote model that connects to the LLM used for text generation" + default = "text_generate_model" + +} variable "labels" { type = map(string) description = "A map of labels to apply to contained resources." diff --git a/modules/data_warehouse/versions.tf b/modules/data_warehouse/versions.tf index c274758f..8cfd8e9b 100644 --- a/modules/data_warehouse/versions.tf +++ b/modules/data_warehouse/versions.tf @@ -18,11 +18,11 @@ terraform { required_providers { google = { source = "hashicorp/google" - version = "~> 4.52" + version = ">= 4.52, < 6" } google-beta = { source = "hashicorp/google-beta" - version = "~> 4.52" + version = ">= 4.52, < 6" } random = { source = "hashicorp/random" @@ -40,6 +40,6 @@ terraform { required_version = ">= 0.13" provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-bigquery:data_warehouse/v6.1.1" + module_name = "blueprints/terraform/terraform-google-bigquery:data_warehouse/v7.0.0" } } diff --git a/modules/data_warehouse/workflows.tf b/modules/data_warehouse/workflows.tf index c8835944..81973415 100644 --- a/modules/data_warehouse/workflows.tf +++ b/modules/data_warehouse/workflows.tf @@ -14,8 +14,7 @@ * limitations under the License. */ -# Set up Workflows service account -# # Set up the Workflows service account +# Set up the Workflows service account resource "google_service_account" "workflow_service_account" { project = module.project-services.project_id account_id = "cloud-workflow-sa-${random_id.id.hex}" @@ -32,12 +31,11 @@ resource "google_project_iam_member" "workflow_service_account_roles" { "roles/bigquery.connectionUser", "roles/bigquery.jobUser", "roles/bigquery.dataEditor", - ]) - + ] + ) project = module.project-services.project_id role = each.key member = "serviceAccount:${google_service_account.workflow_service_account.email}" - } # # Create the workflow @@ -49,7 +47,8 @@ resource "google_workflows_workflow" "workflow" { service_account = google_service_account.workflow_service_account.id source_contents = templatefile("${path.module}/templates/workflow.tftpl", { - raw_bucket = google_storage_bucket.raw_bucket.name + raw_bucket = google_storage_bucket.raw_bucket.name, + dataset_id = google_bigquery_dataset.ds_edw.dataset_id }) labels = var.labels diff --git a/modules/scheduled_queries/README.md b/modules/scheduled_queries/README.md index 8347558c..96811182 100644 --- a/modules/scheduled_queries/README.md +++ b/modules/scheduled_queries/README.md @@ -7,7 +7,7 @@ Example: ```hcl module "dataset" { source = "terraform-google-modules/bigquery/google" - version = "~> 6.1" + version = "~> 7.0" dataset_id = "example_dataset" dataset_name = "example_dataset" diff --git a/modules/scheduled_queries/metadata.yaml b/modules/scheduled_queries/metadata.yaml index fbaa5a29..1edd83d8 100644 --- a/modules/scheduled_queries/metadata.yaml +++ b/modules/scheduled_queries/metadata.yaml @@ -25,7 +25,7 @@ spec: repo: https://github.com/terraform-google-modules/terraform-google-bigquery sourceType: git dir: /modules/scheduled_queries - version: 6.1.0 + version: 7.0.0 actuationTool: flavor: Terraform version: '>= 0.13' diff --git a/modules/scheduled_queries/versions.tf b/modules/scheduled_queries/versions.tf index 2c48c3c9..07b70238 100644 --- a/modules/scheduled_queries/versions.tf +++ b/modules/scheduled_queries/versions.tf @@ -20,11 +20,11 @@ terraform { google = { source = "hashicorp/google" - version = "~> 4.0" + version = ">= 4.0, < 6" } } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-bigquery:scheduled_queries/v6.1.1" + module_name = "blueprints/terraform/terraform-google-bigquery:scheduled_queries/v7.0.0" } } diff --git a/modules/udf/README.md b/modules/udf/README.md index 8bd56717..ea65a655 100644 --- a/modules/udf/README.md +++ b/modules/udf/README.md @@ -18,7 +18,7 @@ module "dataset" { module "add_udfs" { source = "terraform-google-modules/bigquery/google//modules/udf" - version = "~> 6.1" + version = "~> 7.0" dataset_id = module.dataset.bigquery_dataset.dataset_id project_id = module.dataset.bigquery_dataset.project diff --git a/modules/udf/metadata.yaml b/modules/udf/metadata.yaml index c0712239..4c791c7e 100644 --- a/modules/udf/metadata.yaml +++ b/modules/udf/metadata.yaml @@ -25,7 +25,7 @@ spec: repo: https://github.com/terraform-google-modules/terraform-google-bigquery sourceType: git dir: /modules/udf - version: 6.1.0 + version: 7.0.0 actuationTool: flavor: Terraform version: '>= 0.13' diff --git a/modules/udf/versions.tf b/modules/udf/versions.tf index e82789c1..37ecb836 100644 --- a/modules/udf/versions.tf +++ b/modules/udf/versions.tf @@ -20,12 +20,12 @@ terraform { google = { source = "hashicorp/google" - version = ">= 3.53, < 5.0" + version = ">= 3.53, < 6" } } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-bigquery:udf/v6.1.1" + module_name = "blueprints/terraform/terraform-google-bigquery:udf/v7.0.0" } } diff --git a/test/integration/go.mod b/test/integration/go.mod index b6e5e13d..ee2b13b5 100644 --- a/test/integration/go.mod +++ b/test/integration/go.mod @@ -3,7 +3,7 @@ module github.com/terraform-google-modules/terraform-google-bigquery/test/integr go 1.20 require ( - github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.8.1 + github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.9.0 github.com/stretchr/testify v1.8.4 ) diff --git a/test/integration/go.sum b/test/integration/go.sum index 28647a6a..93df89fb 100644 --- a/test/integration/go.sum +++ b/test/integration/go.sum @@ -187,8 +187,8 @@ cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoIS dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.8.1 h1:erzHPGm9u0JWWTLSHDRcPTV0CnEAVH1QmPoFDlYB/PU= -github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.8.1/go.mod h1:MKce59reXZa9rwYplsr7DBbDIw444JNZvH5hmGEMJTg= +github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.9.0 h1:ebMd3XxPg0fufE8E32cGIT4ymbJDT8+AmguE1aNmcxw= +github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.9.0/go.mod h1:MKce59reXZa9rwYplsr7DBbDIw444JNZvH5hmGEMJTg= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7lmo= github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= diff --git a/test/setup/versions.tf b/test/setup/versions.tf index c8bfbd15..e3c89fc3 100644 --- a/test/setup/versions.tf +++ b/test/setup/versions.tf @@ -18,12 +18,10 @@ terraform { required_version = ">= 0.13" required_providers { google = { - source = "hashicorp/google" - version = ">= 3.53.0, < 5.0" + source = "hashicorp/google" } google-beta = { - source = "hashicorp/google-beta" - version = ">= 3.53.0, < 5.0" + source = "hashicorp/google-beta" } } } diff --git a/versions.tf b/versions.tf index 49d5fcfc..12c29831 100644 --- a/versions.tf +++ b/versions.tf @@ -21,12 +21,12 @@ terraform { google = { source = "hashicorp/google" - version = ">= 4.42, < 5.0" + version = ">= 4.42, < 6" } } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-bigquery/v6.1.1" + module_name = "blueprints/terraform/terraform-google-bigquery/v7.0.0" } }