diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..40751761a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,218 @@ +# This file is inspired by https://github.com/alexkaratarakis/gitattributes +# +# Auto detect text files and perform LF normalization +* text=auto + +# The above will handle all files NOT found below +# These files are text and should be normalized (Convert crlf => lf) + +# Source code +*.coffee text +*.css text diff=css +*.htm text diff=html +*.html text diff=html +*.inc text +*.ini text +*.java text +*.js text +*.jsx text +*.less text +*.ls text +*.map text -diff +*.od text +*.onlydata text +*.php text diff=php +*.pl text +*.ps1 text eol=crlf +*.py text diff=python +*.rb text diff=ruby +*.sass text +*.scm text +*.scss text diff=css +.husky/* text eol=lf +*.sql text +*.styl text +*.tag text +*.ts text +*.xml text +*.xhtml text diff=html +*.md text eol=lf +*.vue text eol=lf +*.tsx text eol=lf + +# Scripts +*.bash text eol=lf +*.fish text eol=lf +*.sh text eol=lf +*.zsh text eol=lf +# These are explicitly windows files and should use crlf +*.bat text eol=crlf +*.cmd text eol=crlf +*.ps1 text eol=crlf + +# Serialisation +*.json text +*.toml text +*.xml text +*.yaml text +*.yml text + +# Documents +*.bibtex text diff=bibtex +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain +*.md text diff=markdown +*.mdx text diff=markdown +*.tex text diff=tex +*.adoc text +*.textile text +*.mustache text +*.csv text +*.tab text +*.tsv text +*.txt text +*.sql text +*.epub diff=astextplain +AUTHORS text +CHANGELOG text +CHANGES text +CONTRIBUTING text +COPYING text +copyright text +*COPYRIGHT* text +INSTALL text +license text +LICENSE text +NEWS text +readme text +*README* text +TODO text + +# Graphics +*.ai binary +*.bmp binary +*.eps binary +*.gif binary +*.gifv binary +*.ico binary +*.jng binary +*.jp2 binary +*.jpg binary +*.jpeg binary +*.jpx binary +*.jxr binary +*.pdf binary +*.png binary +*.psb binary +*.psd binary +# SVG treated as an asset (binary) by default. If you want to treat it as text, +# comment-out the following line and uncomment the line after. +*.svg binary +#*.svg text +*.svgz binary +*.tif binary +*.tiff binary +*.wbmp binary +*.webp binary + +# These files are binary and should be left untouched +# (binary is a macro for -text -diff) +*.class binary +*.jar binary +*.war binary + +## LINTERS +.csslintrc text +.eslintrc text +.jscsrc text +.jshintrc text +.jshintignore text +.stylelintrc text + +# Configs +*.cnf text +*.conf text +*.config text +.editorconfig text +.env text +.gitattributes text eol=lf +.gitconfig text +.htaccess text +*.lock text -diff +package.json text eol=lf +package-lock.json text eol=lf -diff +*.npmignore text +pnpm-lock.yaml text eol=lf -diff +.prettierrc text +yarn.lock text -diff +browserslist text +Makefile text +makefile text + +## HEROKU +Procfile text +.slugignore text + +## AUDIO +*.kar binary +*.m4a binary +*.mid binary +*.midi binary +*.mp3 binary +*.ogg binary +*.ra binary + +## VIDEO +*.3gpp binary +*.3gp binary +*.as binary +*.asf binary +*.asx binary +*.fla binary +*.flv binary +*.m4v binary +*.mng binary +*.mov binary +*.mp4 binary +*.mpeg binary +*.mpg binary +*.swc binary +*.swf binary +*.webm binary + +## ARCHIVES +*.7z binary +*.gz binary +*.rar binary +*.tar binary +*.zip binary + +## FONTS +*.ttf binary +*.eot binary +*.otf binary +*.woff binary +*.woff2 binary + +# Executables +*.exe binary +*.pyc binary + +# Text files where line endings should be preserved +*.patch -text + +# +# Exclude files from exporting +# + +.gitattributes export-ignore +.gitignore export-ignore +.gitkeep export-ignore diff --git a/.github/workflows/deploy-site-preview.yml b/.github/workflows/deploy-site-preview.yml new file mode 100644 index 000000000..b8b2c7b09 --- /dev/null +++ b/.github/workflows/deploy-site-preview.yml @@ -0,0 +1,104 @@ +name: deploy-site-preview +on: + pull_request: + types: [opened, synchronize, reopened] + workflow_dispatch: + +jobs: + deploy-preview: + permissions: + actions: read + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@master + + - name: setup node + uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'yarn' + + - name: Install deps + run: npm i lerna -g && yarn + + - name: build components + run: npm run init + + - name: build site + run: NODE_OPTIONS=--max-old-space-size=8192 AssetsPublicPath=/ yarn build:site + + - name: netlify install + run: yarn add netlify-cli -D + + - name: get PreviewID + run: | + if ${{ github.event_name == 'pull_request' }}; then + echo "PreviewID=${{ github.event.number }}" >> $GITHUB_ENV + else + echo "PreviewID=main" >> $GITHUB_ENV + fi + + - name: netlify deploy + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} + run: netlify deploy --auth $NETLIFY_AUTH_TOKEN --site $NETLIFY_SITE_ID --dir=packages/arco-vue-docs/dist --alias=pr-preview-${{ env.PreviewID }} + + add-pr-comment: + runs-on: ubuntu-latest + needs: deploy-preview + if: github.event_name == 'pull_request' + steps: + - name: checkout + uses: actions/checkout@master + + - name: setup node + uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'yarn' + + - name: PR Comment + uses: mshick/add-pr-comment@v2 + env: + PR_NUMBER: ${{ github.event.number }} + with: + # Message to comment + message: | + [📚 📚 Site Preview: https://pr-preview-${{ env.PR_NUMBER }}--arco-design-vue.netlify.app](https://pr-preview-${{ env.PR_NUMBER }}--arco-design-vue.netlify.app) + + image-test: + runs-on: ubuntu-latest + needs: deploy-preview + steps: + - name: checkout + uses: actions/checkout@v3 + with: + fetch-depth: 2 + + - name: setup node + uses: actions/setup-node@v3 + with: + node-version: 16 + cache: 'yarn' + + - name: Install deps + run: npm i lerna -g && yarn + + - name: build components + run: npm run init + + - name: get PreviewID + run: | + if ${{ github.event_name == 'pull_request' }}; then + echo "PreviewID=${{ github.event.number }}" >> $GITHUB_ENV + else + echo "PreviewID=main" >> $GITHUB_ENV + fi + + - name: gen screenshots + run: yarn test:screenshot --domain=https://pr-preview-${{ env.PreviewID }}--arco-design-vue.netlify.app + + - name: upload screenshots to argos-cli + run: npx @argos-ci/cli upload ./packages/web-vue/__screenshots__ diff --git a/.github/workflows/issue-duplicate.yml b/.github/workflows/issue-duplicate.yml new file mode 100644 index 000000000..0295e3545 --- /dev/null +++ b/.github/workflows/issue-duplicate.yml @@ -0,0 +1,17 @@ +name: Issue Mark Duplicate + +on: + issue_comment: + types: [created, edited] + +jobs: + mark-duplicate: + runs-on: ubuntu-latest + steps: + - name: mark-duplicate + uses: actions-cool/issues-helper@v2 + with: + actions: 'mark-duplicate' + token: ${{ secrets.GITHUB_TOKEN }} + duplicate-labels: "🔄 Duplicate" + close-issue: true diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml new file mode 100644 index 000000000..b88cbde09 --- /dev/null +++ b/.github/workflows/issue-labeled.yml @@ -0,0 +1,57 @@ +name: Issue Labeled + +on: + issues: + types: [labeled] + +permissions: + contents: read + +jobs: + issue-labeled: + permissions: + issues: write + pull-requests: write + runs-on: ubuntu-latest + steps: + - name: PR Welcome + if: github.event.label.name == '❤️ PR Welcome' || github.event.label.name == '🙏 Help wanted' + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + body: | + 我们完全同意该提议/反馈,欢迎直接在此仓库创建 Pull Request 来解决这个问题。贡献前请务必阅读[贡献指南](https://github.com/arco-design/arco-design-vue/blob/main/CONTRIBUTING.zh-CN.md),Pull Request 时根据需改动内容填写[预设模板](https://github.com/arco-design/arco-design-vue/blob/main/.github/PULL_REQUEST_TEMPLATE.md),我们会尽快进行 Review,感谢您的贡献! + + We agree with this suggestion/feedback and welcome to create a Pull Request in this repository to help address the issue. Before contributing, please make sure to read the [Contributing Guide](https://github.com/arco-design/arco-design-vue/blob/main/CONTRIBUTING.md). When submitting a Pull Request, kindly use the appropriate [PR template](https://github.com/arco-design/arco-design-vue/blob/main/.github/PULL_REQUEST_TEMPLATE.md) based on the changes you’re making. We’ll review it as soon as possible. Thank you for your contribution! + + - name: Need more info + if: github.event.label.name == '📄 Need more info' + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + body: | + 你好 @${{ github.event.issue.user.login }},我们需要你提供更多的信息或复现链接以便于我们帮你排查定位问题。7 天内未跟进此 issue 将会被自动关闭。 + + Hello @${{ github.event.issue.user.login }}, we need more information or a reproducible link from you to help us investigate and pinpoint the issue. If there is no follow-up within 7 days, this issue will be automatically closed. + + - name: Invalid + if: github.event.label.name == '🙅 Invalid' + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment,close-issue' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + body: | + 你好 @${{ github.event.issue.user.login }}, 您的 Issue 已被标记为无效而自动关闭,原因可能如下: + + - 不符合我们的格式要求、可能缺少足够的上下文或关键信息,无法有效解决问题。 + - 非 bug 反馈和需求讨论(如询问如何使用等问题)。 + - 它可能是已有 Issue 的重复项。请在提交新的 Issue 之前检查现有的 Issue。 + + 可点击加入[Arco Design 飞书用户群](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=0c2qaa71-ed40-40e7-9389-9f3e182011a5)询问,感谢您的理解与配合! + + diff --git a/.github/workflows/issue-manager.yml b/.github/workflows/issue-manager.yml new file mode 100644 index 000000000..0d1304578 --- /dev/null +++ b/.github/workflows/issue-manager.yml @@ -0,0 +1,44 @@ +name: Issue Manager + +on: + schedule: + - cron: "0 0 * * *" + +permissions: + contents: read + +jobs: + issue-close: + permissions: + issues: write + pull-requests: write + runs-on: ubuntu-latest + if: ${{ github.repository_owner == 'arco-design' }} + steps: + - name: Needs more info + uses: actions-cool/issues-helper@v3 + with: + actions: 'close-issues' + labels: '📄 Need more info' + inactive-day: 7 + body: | + 由于该 issue 被标记为需要更多信息,却 7 天未收到回应。现关闭 issue,若有任何问题,可评论回复或点击加入[Arco Design 飞书用户群](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=0c2qaa71-ed40-40e7-9389-9f3e182011a5)询问。 + + This issue has been marked as needing more information, but there hasn’t been a response for 7 days, so we’re closing it for now. If you have any questions, feel free to comment here or join the [Arco Design Feishu user group](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=0c2qaa71-ed40-40e7-9389-9f3e182011a5) to ask for help. + + + + check-inactive: + permissions: + issues: write + pull-requests: write + runs-on: ubuntu-latest + if: ${{ github.repository_owner == 'arco-design' }} + steps: + - name: check-inactive + uses: actions-cool/issues-helper@v3 + with: + actions: 'check-inactive' + inactive-label: '💤 Inactive' + inactive-day: 30 + diff --git a/.github/workflows/issue-remove-inactive.yml b/.github/workflows/issue-remove-inactive.yml new file mode 100644 index 000000000..6f49f6c1f --- /dev/null +++ b/.github/workflows/issue-remove-inactive.yml @@ -0,0 +1,22 @@ +name: Issue Remove Inactive + +on: + issues: + types: [edited] + issue_comment: + types: [created, edited] + +permissions: + contents: read + +jobs: + issue-remove-inactive: + runs-on: ubuntu-latest + steps: + - name: remove inactive + if: github.event.issue.state == 'open' && github.actor == github.event.issue.user.login + uses: actions-cool/issues-helper@v3 + with: + actions: 'remove-labels' + issue-number: ${{ github.event.issue.number }} + labels: '💤 Inactive' diff --git a/.prettierrc.js b/.prettierrc.js index 24da7c88e..0f1f8b9a8 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -4,5 +4,6 @@ module.exports = { printWidth: 80, singleQuote: true, quoteProps: 'consistent', + endOfLine: 'auto', htmlWhitespaceSensitivity: 'strict', }; diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3a5967241..c0331839a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -75,20 +75,20 @@ This repository is managed by lerna and includes the following packages: > components/componentName ``` -├── README.zh-CN.md (Note:Don't edit this file, it's generated by script) -├── README.en-US.md (Note:Don't edit this file, it's generated by script) -├── TEMPLATE.md (Template used to generate README file) +├── README.zh-CN.md (Note:Don't edit this file, it's generated by script) +├── README.en-US.md (Note:Don't edit this file, it's generated by script) +├── TEMPLATE.md (Template used to generate README file) ├── __test__ │ ├── __snapshots__ -│ │ └── demo.test.js.snap (Snapshot) +│ │ └── demo.test.js.snap (Snapshot) │ ├── demo.test.ts (Snapshot test) -│ └── index.test.ts (Unit test) -├── __demo__ (Demos for each component) +│ └── index.test.ts (Unit test) +├── __demo__ (Demos for each component) │ ├── basic.md │ └── advanced.md -├── index.tsx(Component export) +├── index.tsx(Component export) └── style - └── index.less(Component style) + └── index.less(Component style) └── index.ts (Component style entry) ``` diff --git a/CONTRIBUTING.zh-CN.md b/CONTRIBUTING.zh-CN.md index 8b6e6e87d..b5e913096 100644 --- a/CONTRIBUTING.zh-CN.md +++ b/CONTRIBUTING.zh-CN.md @@ -27,7 +27,7 @@ 1. Fork [此仓库](https://github.com/arco-design/arco-design-vue),从 `main` 创建分支。新功能实现请发 pull request 到 `feature` 分支。其他更改发到 `main` 分支。 2. 使用 `npm install -g` 安装 `lerna` 和 `yarn` 等基础包。 -3. 执行 `yarn install` 安装 `workspaces` 中各个包的依赖(如果遇到 `YN0018` 错误,可以使用 `YARN_CHECKSUM_BEHAVIOR=update yarn` 进行安装)。 +3. 执行 `yarn install` 安装 `workspaces` 中各个包的依赖(如果遇到 `YN0018` 错误,可以使用 `YARN_CHECKSUM_BEHAVIOR=update yarn` 进行安装)。 4. 执行 `npm run init` 初始化项目。 5. 执行 `npm run start` 启动和预览站点. 6. 对代码库进行更改。如果适用的话,请确保写了相应的测试。 @@ -68,7 +68,7 @@ Commit messages 请遵循[conventional-changelog 标准](https://www.conventiona 2. `vue-site`: Vue组件库文档站 3. `arco-vue-scripts`: Vue组件库脚本 4. `arco-vue-md-loader`: Vue组件库中markdown文档的webpack loader -5. `arco-vue-site-nav`: Vue组件库文档站的顶部导航栏(使用React物料) +5. `arco-vue-site-nav`: Vue组件库文档站的顶部导航栏(使用React物料) ### Web-Vue 组件目录 @@ -77,22 +77,22 @@ Commit messages 请遵循[conventional-changelog 标准](https://www.conventiona ``` ├── README.zh-CN.md (注意:不要编辑这个文件,它是由脚本自动生成的) ├── README.en-US.md (注意:不要编辑这个文件,它是由脚本自动生成的) -├── TEMPLATE.md (用于生成 README 文件的模板) +├── TEMPLATE.md (用于生成 README 文件的模板) ├── __test__ │ ├── __snapshots__ │ │ └── demo.test.js.snap │ ├── demo.test.ts (快照测试) -│ └── index.test.ts (单元测试) -├── __demo__ (组件演示) +│ └── index.test.ts (单元测试) +├── __demo__ (组件演示) │ ├── basic.md │ └── advanced.md -├── index.tsx(组件导出) +├── index.tsx(组件导出) └── style - └── index.less(组件样式) + └── index.less(组件样式) └── index.ts (组件样式导出) ``` -请注意: 如果进行了会影响 README 的变更(例如 API 变更),请确保运行 `npm run docgen` 来更新组件的 README。 +请注意: 如果进行了会影响 README 的变更(例如 API 变更),请确保运行 `npm run docgen` 来更新组件的 README。 组件库的相关操作在`web-vue`目录下操作. diff --git a/commitlint.config.js b/commitlint.config.js index c34aa79d0..abd0efe9c 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,3 +1,23 @@ module.exports = { - extends: ['@commitlint/config-conventional'] + extends: ['@commitlint/config-conventional'], + rules: { + 'subject-case': [0], + 'type-enum': [ + 2, + 'always', + [ + 'build', + 'chore', + 'ci', + 'docs', + 'feat', + 'fix', + 'enhance', + 'refactor', + 'revert', + 'style', + 'test', + ], + ], + }, }; diff --git a/package.json b/package.json index c80da4739..a6f6c049f 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "init": "lerna run build --stream --scope=@arco-design/{vite-plugin-arco-vue-docs,arco-vue-scripts} && lerna link && lerna run build --scope=@arco-design/arco-vue-docs-navbar && lerna run init --scope=@arco-design/web-vue", "start": "yarn workspace @arco-design/arco-vue-docs run start", "build:site": "yarn workspace @arco-design/arco-vue-docs run build", + "test:screenshot": "yarn workspace @arco-design/web-vue run test:screenshot", "build:component": "yarn workspace @arco-design/web-vue run build", "test": "yarn workspace @arco-design/web-vue run test", "storybook": "yarn workspace @arco-design/web-vue-storybook run storybook" diff --git a/packages/arco-changelog/.eslintignore b/packages/arco-changelog/.eslintignore new file mode 100644 index 000000000..c85fa3526 --- /dev/null +++ b/packages/arco-changelog/.eslintignore @@ -0,0 +1,4 @@ +node_modules/* +dist/* +/*.json +/*.js diff --git a/packages/arco-changelog/.eslintrc.js b/packages/arco-changelog/.eslintrc.js new file mode 100644 index 000000000..f187ecfea --- /dev/null +++ b/packages/arco-changelog/.eslintrc.js @@ -0,0 +1,57 @@ +module.exports = { + parser: '@typescript-eslint/parser', + parserOptions: { + sourceType: 'module', + ecmaVersion: 2020, + }, + env: { + node: true, + }, + plugins: ['@typescript-eslint'], + extends: [ + // Airbnb JavaScript Style Guide https://github.com/airbnb/javascript + 'airbnb-base', + 'plugin:@typescript-eslint/recommended', + 'plugin:import/typescript', + 'plugin:prettier/recommended', + ], + settings: { + 'import/resolver': { + typescript: { + project: './tsconfig.json', + }, + }, + }, + rules: { + 'prettier/prettier': 1, + '@typescript-eslint/no-explicit-any': 0, + '@typescript-eslint/explicit-module-boundary-types': 0, + '@typescript-eslint/no-non-null-assertion': 0, + '@typescript-eslint/no-empty-function': 1, + '@typescript-eslint/ban-ts-comment': 0, + 'import/extensions': [ + 'error', + 'ignorePackages', + { js: 'never', jsx: 'never', ts: 'never', tsx: 'never' }, + ], + 'import/no-extraneous-dependencies': 0, + 'import/no-unresolved': [2, { caseSensitive: false }], + 'import/prefer-default-export': 0, + 'no-underscore-dangle': 0, + 'no-nested-ternary': 0, + 'no-shadow': 0, + 'prefer-template': 1, + 'no-param-reassign': 0, + 'no-plusplus': 0, + 'no-use-before-define': 0, + 'no-restricted-syntax': 0, + 'no-empty': [2, { allowEmptyCatch: true }], + 'no-bitwise': 0, + 'no-return-assign': 0, + 'no-unused-expressions': [ + 'error', + { allowShortCircuit: true, allowTernary: true }, + ], + 'no-continue': 0, + }, +}; diff --git a/packages/arco-changelog/.gitignore b/packages/arco-changelog/.gitignore new file mode 100644 index 000000000..5059bc7b1 --- /dev/null +++ b/packages/arco-changelog/.gitignore @@ -0,0 +1,6 @@ +.idea/ +.vscode/ + +dist/ +node_modules/ +**/.DS_Store diff --git a/packages/arco-changelog/.prettierrc.js b/packages/arco-changelog/.prettierrc.js new file mode 100644 index 000000000..0f1f8b9a8 --- /dev/null +++ b/packages/arco-changelog/.prettierrc.js @@ -0,0 +1,9 @@ +module.exports = { + tabWidth: 2, + semi: true, + printWidth: 80, + singleQuote: true, + quoteProps: 'consistent', + endOfLine: 'auto', + htmlWhitespaceSensitivity: 'strict', +}; diff --git a/packages/arco-changelog/README.md b/packages/arco-changelog/README.md new file mode 100644 index 000000000..8c799d0de --- /dev/null +++ b/packages/arco-changelog/README.md @@ -0,0 +1,151 @@ +# Arco Changelog + +A simple github changelog generator + +## Installation + +``` +npm install @arco-design/arco-changelog +``` + +## Command + ++ `arco-changelog` + +生成日志文件 + ++ `arco-changelog template` + + `--gitlab` 生成 Gitlab 项目的 MR 模板 + +在项目中创建 Github 的 Pull Request 模板 + +## Usage + +1. Create a 'changelog.config.js' file and fill in the necessary config. You can find all configuration properties below + +```js +// changelog.config.js + +module.exports = { + repo: 'arco-design/arco-design-vue' +} + +``` + +2. run `arco-changelog` + +## Config Options + +### repo + ++ Type: string ++ Required + +用于获取 Pull Request 的项目地址 + +### type + ++ Type: String ++ Default: "github" + +指定项目仓库的类型 + +### merged + ++ Type: boolean ++ Default: true + +是否只获取合并过的 PR + +### requestConfig + ++ Type: Function `(config: { + repo: string; + version: string; + merged: boolean; + }) => AxiosRequestConfig` ++ Default: undefined + +自定义请求信息,返回结果可参考 [axios](https://github.com/axios/axios#request-config) + +### emitFiles + ++ Type: Function `(changelog: Changelog) => EmitFile[]` ++ Default: undefined + +生成更新日志文件的方法 + +changelog 工具使用 [nunjucks](https://mozilla.github.io/nunjucks/) 作为模板引擎。返回数据中的 `template` 字段指定模板文件的位置,`data` 字段指定模板数据 + +### filename + ++ Type: Object `{ zh: string; en: string }` ++ Default: undefined + +指定默认配置生成日志文件的文件名,分为中英文文件。例如:`{ zh: 'changelog/CHANGELOG.zh.md'; en: 'changelog/CHANGELOG.en.md' }` + +```ts +export interface EmitFile { + file: string; + template: string; + data: Record; +} + +export interface Changelog { + version: string; + date: string; + list: ChangelogData[]; +} + +export interface ChangelogData { + type: string; + pr: PullRequest; + issues?: string[]; + + [key: string]: any; +} + +export interface PullRequest { + id: number; + url: string; +} +``` + +### typeDict + ++ Type: Object ++ Default: typeDict + +更新日志的类型字典 + +```js +const typeDict = { + feature: 'New feature', + bugfix: 'Bug fix', + docs: 'Documentation change', + refactor: 'Refactoring', + style: 'Component style change', + enhancement: 'Enhancement', + test: 'Test cases', + ci: 'Continuous integration', + typescript: 'Typescript definition change', + attention: 'Breaking change', +} +``` + +### keyDict + ++ Type: Object ++ Default: keyDict + +更新日志数据的 key 所对应的表格标题字典 + +```js +const keyDict = { + type: 'Type', + component: 'Component', + changelogZh: 'Changelog(CN)', + changelogEn: 'Changelog(EN)', + issues: 'Related issues', +} +``` diff --git a/packages/arco-changelog/copy-template.js b/packages/arco-changelog/copy-template.js new file mode 100644 index 000000000..31201bdcf --- /dev/null +++ b/packages/arco-changelog/copy-template.js @@ -0,0 +1,30 @@ +#!/usr/bin/env node + +const fs = require('fs-extra'); + +fs.copySync('src/vue/template.en-US.njk', 'dist/vue/template.en-US.njk', { + overwrite: true, +}); +fs.copySync('src/vue/template.zh-CN.njk', 'dist/vue/template.zh-CN.njk', { + overwrite: true, +}); +fs.copySync( + 'src/default/template.en-US.njk', + 'dist/default/template.en-US.njk', + { + overwrite: true, + } +); +fs.copySync( + 'src/default/template.zh-CN.njk', + 'dist/default/template.zh-CN.njk', + { + overwrite: true, + } +); +fs.copySync('src/.github', 'dist/.github', { + overwrite: true, +}); +fs.copySync('src/.gitlab', 'dist/.gitlab', { + overwrite: true, +}); diff --git a/packages/arco-changelog/package.json b/packages/arco-changelog/package.json new file mode 100644 index 000000000..2a477ef76 --- /dev/null +++ b/packages/arco-changelog/package.json @@ -0,0 +1,56 @@ +{ + "name": "@arco-design/arco-changelog", + "version": "0.3.2", + "description": "Arco Changelog", + "author": "ArcoDesign Team", + "license": "MIT", + "main": "dist/index.js", + "bin": "dist/cmd.js", + "files": [ + "dist" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/arco-design/arco-design-vue.git" + }, + "scripts": { + "dev": "tsc --watch", + "build": "tsc && node copy-template.js", + "lint-staged": "npx lint-staged" + }, + "lint-staged": { + "*.{js,ts,jsx,tsx}": [ + "eslint --fix", + "prettier --write" + ] + }, + "devDependencies": { + "@types/fs-extra": "^9.0.6", + "@types/inquirer": "^7.3.3", + "@types/nunjucks": "^3.1.5", + "@typescript-eslint/eslint-plugin": "^4.18.0", + "@typescript-eslint/parser": "^4.12.0", + "eslint": "^7.21.0", + "eslint-config-airbnb-base": "^14.2.1", + "eslint-config-prettier": "^8.3.0", + "eslint-import-resolver-typescript": "^2.4.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-prettier": "^3.3.1", + "prettier": "^2.2.1", + "ts-node": "^10.1.0" + }, + "dependencies": { + "axios": "^0.21.1", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "comment-parser": "^1.1.5", + "fast-glob": "^3.2.7", + "fs-extra": "^9.1.0", + "glob": "^7.1.6", + "inquirer": "^8.1.2", + "moment": "^2.29.1", + "nunjucks": "^3.2.3", + "ora": "^5.2.0", + "typescript": "^4.2.4" + } +} diff --git a/packages/arco-changelog/src/.github/PULL_REQUEST_TEMPLATE.md b/packages/arco-changelog/src/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..7aa745375 --- /dev/null +++ b/packages/arco-changelog/src/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,58 @@ + + + + +## Type of changes + + + + +- [ ] New feature +- [ ] Bug fix +- [ ] Enhancement +- [ ] Component style change +- [ ] Typescript definition change +- [ ] Documentation change +- [ ] Coding style change +- [ ] Refactoring +- [ ] Test cases +- [ ] Continuous integration +- [ ] Breaking change +- [ ] Others + +## Background and context + + + + +## Solution + + + +## How is the change tested? + + + + +## Changelog + +| Component | Changelog(CN) | Changelog(EN) | Related issues | +| --------- | ------------- | ------------- | -------------- | +| | | | | + + + +## Checklist: + +- [ ] Test suite passes (`npm run test`) +- [ ] Provide changelog for relevant changes (e.g. bug fixes and new features) if applicable. +- [ ] Changes are submitted to the appropriate branch (e.g. features should be submitted to `feature` branch and others + should be submitted to `main` branch) + +## Other information + + diff --git a/packages/arco-changelog/src/.gitlab/merge_request_templates/CHANGELOG.md b/packages/arco-changelog/src/.gitlab/merge_request_templates/CHANGELOG.md new file mode 100644 index 000000000..7aa745375 --- /dev/null +++ b/packages/arco-changelog/src/.gitlab/merge_request_templates/CHANGELOG.md @@ -0,0 +1,58 @@ + + + + +## Type of changes + + + + +- [ ] New feature +- [ ] Bug fix +- [ ] Enhancement +- [ ] Component style change +- [ ] Typescript definition change +- [ ] Documentation change +- [ ] Coding style change +- [ ] Refactoring +- [ ] Test cases +- [ ] Continuous integration +- [ ] Breaking change +- [ ] Others + +## Background and context + + + + +## Solution + + + +## How is the change tested? + + + + +## Changelog + +| Component | Changelog(CN) | Changelog(EN) | Related issues | +| --------- | ------------- | ------------- | -------------- | +| | | | | + + + +## Checklist: + +- [ ] Test suite passes (`npm run test`) +- [ ] Provide changelog for relevant changes (e.g. bug fixes and new features) if applicable. +- [ ] Changes are submitted to the appropriate branch (e.g. features should be submitted to `feature` branch and others + should be submitted to `main` branch) + +## Other information + + diff --git a/packages/arco-changelog/src/changelog.ts b/packages/arco-changelog/src/changelog.ts new file mode 100644 index 000000000..0a980b022 --- /dev/null +++ b/packages/arco-changelog/src/changelog.ts @@ -0,0 +1,63 @@ +import marked, { Tokens } from 'marked'; +import { invertKeyValues } from './utils/invert'; +import { ChangelogData } from './interface'; + +export const getChangelogList = ( + content: string, + config: { + pr: any; + typeDict: Record; + keyDict: Record; + } +) => { + const _content = content.replace(/\r\n/g, '\n'); + const _typeDict = invertKeyValues(config.typeDict); + const _keyDict = invertKeyValues(config.keyDict); + + const typeRule = new RegExp( + '##\\s*Types? of changes.+?\\[\\s*[xX]\\s*]\\s*(.+?)(?:\\n|$)', + 'si' + ); + const typeMatch = _content.match(typeRule)?.[1].trim(); + const defaultType = typeMatch && _typeDict[typeMatch]; + + const rule = new RegExp('##\\s*Changelog\\n(.+?)(?:##|$)', 'si'); + const match = _content.match(rule)?.[1]; + if (!match) return undefined; + const tokens = marked.lexer(match); + const table = tokens.filter( + (token) => token.type === 'table' + )[0] as Tokens.Table; + if (!table) return undefined; + + const keys = table.header.map((header) => { + return _keyDict[header]; + }); + + return table.cells.reduce((list, cur) => { + const data = cur.reduce( + (data, value, index) => { + const key = keys[index]; + if (key === 'type') { + data[key] = _typeDict[value]; + } else if (key === 'issues') { + data[key] = value + .split(',') + .map((item) => item.match(/#\d+/)?.[0]) + .filter((item) => Boolean(item)) as string[]; + } else { + data[key] = value; + } + + return data; + }, + { + type: defaultType, + pr: config.pr, + } as ChangelogData + ); + + list.push(data); + return list; + }, [] as ChangelogData[]); +}; diff --git a/packages/arco-changelog/src/cmd.ts b/packages/arco-changelog/src/cmd.ts new file mode 100644 index 000000000..0fb35bda9 --- /dev/null +++ b/packages/arco-changelog/src/cmd.ts @@ -0,0 +1,29 @@ +#!/usr/bin/env node + +import { Command } from 'commander'; +import fs from 'fs-extra'; +import path from 'path'; +import { changelog } from './index'; +import { run } from './copy-github'; + +const program = new Command(); + +const packageContent = fs.readFileSync( + path.resolve(__dirname, '../package.json'), + 'utf8' +); +const packageData: any = JSON.parse(packageContent); + +program + .name('arco-changelog') + .version(packageData.version) + .action(async () => { + await changelog(); + }) + .command('template') + .option('--gitlab', 'generate gitlab template') + .action(async ({ gitlab }) => { + run({ gitlab }); + }); + +program.parse(process.argv); diff --git a/packages/arco-changelog/src/config.ts b/packages/arco-changelog/src/config.ts new file mode 100644 index 000000000..2514d4758 --- /dev/null +++ b/packages/arco-changelog/src/config.ts @@ -0,0 +1,54 @@ +import path from 'path'; +import fs from 'fs-extra'; +import { ChangelogConfig } from './interface'; +import { getEmitFiles } from './default/emit-files'; +import vueConfig from './vue/vue.config'; + +export const typeDict = { + feature: 'New feature', + bugfix: 'Bug fix', + docs: 'Documentation change', + refactor: 'Refactoring', + style: 'Component style change', + enhancement: 'Enhancement', + test: 'Test cases', + ci: 'Continuous integration', + typescript: 'Typescript definition change', + attention: 'Breaking change', +}; + +export const keyDict = { + type: 'Type', + component: 'Component', + changelogZh: 'Changelog(CN)', + changelogEn: 'Changelog(EN)', + issues: 'Related issues', +}; + +const defaultConfig: ChangelogConfig = { + repo: '', + merged: true, + type: 'github', + emitFiles: getEmitFiles(), + typeDict, + keyDict, +}; + +export const getConfig = async (): Promise> => { + const config = { ...defaultConfig } as Required; + const filename = path.resolve(process.cwd(), 'changelog.config.js'); + try { + await fs.access(filename); + const data = (await import(filename)).default as ChangelogConfig; + if (data.arcoComponent === 'vue') { + Object.assign(config, vueConfig); + } + Object.assign(config, data); + if (data.filename) { + config.emitFiles = getEmitFiles({ filename: data.filename }); + } + } catch (err) { + console.log(err); + } + return config; +}; diff --git a/packages/arco-changelog/src/copy-github.js b/packages/arco-changelog/src/copy-github.js new file mode 100644 index 000000000..f9c38efcf --- /dev/null +++ b/packages/arco-changelog/src/copy-github.js @@ -0,0 +1,22 @@ +import path from 'path'; +import fs from 'fs-extra'; + +export const run = ({ gitlab }) => { + if (gitlab) { + fs.copySync( + path.resolve(__dirname, '.gitlab'), + path.resolve(process.cwd(), '.gitlab'), + { + overwrite: true, + } + ); + } else { + fs.copySync( + path.resolve(__dirname, '.github'), + path.resolve(process.cwd(), '.github'), + { + overwrite: true, + } + ); + } +}; diff --git a/packages/arco-changelog/src/default/emit-files.ts b/packages/arco-changelog/src/default/emit-files.ts new file mode 100644 index 000000000..b9279111a --- /dev/null +++ b/packages/arco-changelog/src/default/emit-files.ts @@ -0,0 +1,40 @@ +import path from 'path'; +import { Changelog, EmitFile } from '../interface'; + +export const getEmitFiles = (config?: any) => { + return (changelog: Changelog): EmitFile[] => { + const allCN: Record = {}; + const addEN: Record = {}; + + for (const item of changelog.list) { + const contentCN = `${item.changelogZh} ([#${item.pr.id}](${item.pr.url}))`; + const contentEN = `${item.changelogEn} ([#${item.pr.id}](${item.pr.url}))`; + addAll({ ...item, content: contentCN }, allCN); + addAll({ ...item, content: contentEN }, addEN); + } + + return [ + { + file: config?.filename?.zh ?? 'CHANGELOG.zh-CN.md', + template: path.resolve(__dirname, 'template.zh-CN.njk'), + data: { version: changelog.version, date: changelog.date, ...allCN }, + }, + { + file: config?.filename?.en ?? 'CHANGELOG.md', + template: path.resolve(__dirname, 'template.en-US.njk'), + data: { version: changelog.version, date: changelog.date, ...addEN }, + }, + ]; + }; +}; + +const addAll = (data: any, changelog: any) => { + if (!changelog[data.type]) { + changelog[data.type] = []; + } + if (!data.component || data.component === 'common') { + changelog[data.type].push(data.content); + } else { + changelog[data.type].push(`**${data.component}:** ${data.content}`); + } +}; diff --git a/packages/arco-changelog/src/default/template.en-US.njk b/packages/arco-changelog/src/default/template.en-US.njk new file mode 100644 index 000000000..480996ddb --- /dev/null +++ b/packages/arco-changelog/src/default/template.en-US.njk @@ -0,0 +1,52 @@ +## {{ version }} + +`{{ date }}` + +{% if attention -%} + ### ⚠️ Important Attention + + {% for content in attention -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if feature -%} + ### 🆕 Feature + + {% for content in feature -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if bugfix -%} + ### 🐛 BugFix + + {% for content in bugfix -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if enhancement -%} + ### 💎 Enhancement + + {% for content in enhancement -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if style -%} + ### 💅 Style + + {% for content in style -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if typescript -%} + ### 🆎 TypeScript + + {% for content in typescript -%} + - {{ content }} + {% endfor %} + +{% endif %} diff --git a/packages/arco-changelog/src/default/template.zh-CN.njk b/packages/arco-changelog/src/default/template.zh-CN.njk new file mode 100644 index 000000000..c4ac247aa --- /dev/null +++ b/packages/arco-changelog/src/default/template.zh-CN.njk @@ -0,0 +1,52 @@ +## {{ version }} + +`{{ date }}` + +{% if attention -%} + ### ⚠️ 重点注意 + + {% for content in attention -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if feature -%} + ### 🆕 新增功能 + + {% for content in feature -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if bugfix -%} + ### 🐛 问题修复 + + {% for content in bugfix -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if enhancement -%} + ### 💎 功能优化 + + {% for content in enhancement -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if style -%} + ### 💅 样式更新 + + {% for content in style -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if typescript -%} + ### 🆎 类型修正 + + {% for content in typescript -%} + - {{ content }} + {% endfor %} + +{% endif %} diff --git a/packages/arco-changelog/src/index.ts b/packages/arco-changelog/src/index.ts new file mode 100644 index 000000000..46ca81633 --- /dev/null +++ b/packages/arco-changelog/src/index.ts @@ -0,0 +1,130 @@ +import fs from 'fs-extra'; +import inquirer from 'inquirer'; +import axios from 'axios'; +import moment from 'moment'; +import { configure } from 'nunjucks'; +import { getConfig } from './config'; +import { getPackage } from './utils/config'; +import { Changelog, EmitFile } from './interface'; +import { getChangelogList } from './changelog'; + +const nunjucksEnv = configure(__dirname, { + autoescape: false, + trimBlocks: true, + lstripBlocks: true, +}); + +const appendChangelog = async (emit: EmitFile) => { + const { file, template, data } = emit; + const content = nunjucksEnv.render(template, data); + + try { + await fs.access(file); + const origin = await fs.readFile(file, 'utf-8'); + const match = origin.match(/^(```yaml\n.*?\n```\n\n)?(.*)$/s); + if (match) { + await fs.writeFile(file, `${match[1] ?? ''}${content}\n${match[2]}`); + } + } catch { + // eslint-disable-next-line + await fs.writeFile(file, '```yaml\nchangelog: true\n```\n\n' + content); + } +}; + +const getRequestURL = (config: { + repo: string; + version: string; + merged?: boolean; +}) => { + let url = `https://api.github.com/search/issues?accept=application/vnd.github.v3+json&q=repo:${config.repo}+is:pr+milestone:${config.version}`; + + if (config.merged) { + url += '+is:merged'; + } + + return url; +}; + +export const changelog = async () => { + const config = await getConfig(); + const packageData = await getPackage(); + + let version = (packageData.version ?? '') as string; + + const answer = await inquirer.prompt({ + type: 'input', + name: 'version', + message: 'Please input the version', + default: version, + validate(input: any) { + return /\d+\.\d+\.\d+(-beta\.\d+)?/.test(input); + }, + }); + + version = answer.version; + + const res = await axios.request( + config.requestConfig?.({ + repo: config.repo, + version, + merged: config.merged, + }) ?? { + method: 'get', + url: getRequestURL({ + repo: config.repo, + version, + merged: config.merged, + }), + } + ); + + if (res.status === 200) { + const { data } = res; + const changelog: Changelog = { + version, + date: moment().format('YYYY-MM-DD'), + list: [], + }; + + if (config.type === 'gitlab') { + for (const item of data ?? []) { + if (item.description) { + const list = getChangelogList(item.description, { + pr: { + id: item.iid, + url: item.web_url, + }, + typeDict: config.typeDict, + keyDict: config.keyDict, + }); + if (list) { + changelog.list = changelog.list.concat(list); + } + } + } + } else { + for (const item of data?.items ?? []) { + const list = getChangelogList(item.body, { + pr: item, + typeDict: config.typeDict, + keyDict: config.keyDict, + }); + if (list) { + changelog.list = changelog.list.concat(list); + } + } + } + + if (changelog.list.length > 0) { + const emits = config.emitFiles(changelog); + + for (const item of emits) { + // eslint-disable-next-line no-await-in-loop + await appendChangelog(item); + } + } else { + // eslint-disable-next-line no-console + console.log('No update information found'); + } + } +}; diff --git a/packages/arco-changelog/src/interface.ts b/packages/arco-changelog/src/interface.ts new file mode 100644 index 000000000..f4cdd6f86 --- /dev/null +++ b/packages/arco-changelog/src/interface.ts @@ -0,0 +1,42 @@ +import { AxiosRequestConfig } from 'axios'; + +export interface ChangelogConfig { + repo: string; + merged?: boolean; + requestConfig?: (config: { + repo: string; + version: string; + merged: boolean; + }) => AxiosRequestConfig; + emitFiles?: (changelog: Changelog) => EmitFile[]; + typeDict?: Record; + type?: 'github' | 'gitlab'; + arcoComponent?: 'react' | 'vue'; + keyDict?: Record; + filename?: { zh: string; en: string }; +} + +export interface PullRequest { + id: number; + url: string; +} + +export interface ChangelogData { + type: string; + pr: PullRequest; + issues?: string[]; + + [key: string]: any; +} + +export interface Changelog { + version: string; + date: string; + list: ChangelogData[]; +} + +export interface EmitFile { + file: string; + template: string; + data: Record; +} diff --git a/packages/arco-changelog/src/test.md b/packages/arco-changelog/src/test.md new file mode 100644 index 000000000..5949e7b49 --- /dev/null +++ b/packages/arco-changelog/src/test.md @@ -0,0 +1,58 @@ + + + + +## Types of changes + + + + +- [x] New feature +- [ ] Bug fix +- [ ] Enhancement +- [ ] Component style change +- [ ] Typescript definition change +- [ ] Documentation change +- [ ] Coding style change +- [ ] Refactoring +- [ ] Test cases +- [ ] Continuous integration +- [ ] Breaking change +- [ ] Others + +## Background and context + + + + +## Solution + + + +## How is the change tested? + + + + +## Changelog + +| Component | Changelog(CN) | Changelog(EN) | Related issues | +| --------- | ------------- | ------------- | -------------- | +| upload | 新增 `bundle-upload` 属性,支持捆绑上传 | Added `bundle-upload` property to support bundle upload | Close #647 | + + + +## Checklist: + +- [ ] Test suite passes (`npm run test`) +- [ ] Provide changelog for relevant changes (e.g. bug fixes and new features) if applicable. +- [ ] Changes are submitted to the appropriate branch (e.g. features should be submitted to `feature` branch and others + should be submitted to `main` branch) + +## Other information + + diff --git a/packages/arco-changelog/src/utils/config.ts b/packages/arco-changelog/src/utils/config.ts new file mode 100644 index 000000000..ee235d0d4 --- /dev/null +++ b/packages/arco-changelog/src/utils/config.ts @@ -0,0 +1,27 @@ +import path from 'path'; +import fs from 'fs-extra'; + +export const getConfig = async () => { + const filename = path.resolve(process.cwd(), 'changelog.config.ts'); + try { + await fs.access(filename); + return import(filename); + } catch { + return {}; + } +}; +let packageCache: Record; + +export const getPackage = async (): Promise> => { + if (!packageCache) { + const content = await fs.readFile( + path.resolve(process.cwd(), 'package.json'), + 'utf8' + ); + try { + packageCache = JSON.parse(content); + } catch {} + } + + return packageCache ?? {}; +}; diff --git a/packages/arco-changelog/src/utils/convert-case.ts b/packages/arco-changelog/src/utils/convert-case.ts new file mode 100644 index 000000000..8df39bc58 --- /dev/null +++ b/packages/arco-changelog/src/utils/convert-case.ts @@ -0,0 +1,13 @@ +export const toKebabCase = (string: string): string => { + return string.replace(/[A-Z]+/g, (match, offset) => { + return `${offset > 0 ? '-' : ''}${match.toLocaleLowerCase()}`; + }); +}; + +export const toPascalCase = (string: string): string => { + return string + .replace(/^./, (match) => match.toLocaleUpperCase()) + .replace(/-(.)/g, (match, p1: string) => { + return p1.toLocaleUpperCase(); + }); +}; diff --git a/packages/arco-changelog/src/utils/invert.ts b/packages/arco-changelog/src/utils/invert.ts new file mode 100644 index 000000000..94f69f97d --- /dev/null +++ b/packages/arco-changelog/src/utils/invert.ts @@ -0,0 +1,6 @@ +export const invertKeyValues = (obj: Record) => { + return Object.keys(obj).reduce((acc, key) => { + acc[obj[key]] = key; + return acc; + }, {} as Record); +}; diff --git a/packages/arco-changelog/src/utils/version.ts b/packages/arco-changelog/src/utils/version.ts new file mode 100644 index 000000000..92136fe69 --- /dev/null +++ b/packages/arco-changelog/src/utils/version.ts @@ -0,0 +1,65 @@ +const getLastVersion = (content: string) => { + const match = content.match(/## (\d+\.\d+\.\d+(-beta\.\d+)?)/); + return match?.[1]; +}; + +const getBetaVersions = (content: string) => { + const matches = Array.from( + content.matchAll(/## (\d+\.\d+\.\d+(-beta\.\d+)?)/g) + ); + const versions = []; + for (const item of matches) { + if (/beta/.test(item[1])) { + versions.push(item[1]); + } else { + break; + } + } + return versions; +}; + +const getVersionNumber = (version: string): number => { + if (!version) { + return 0; + } + switch (version) { + case 'alpha': + return -3; + case 'beta': + return -2; + case 'rc': + return -1; + default: + return parseInt(version, 10); + } +}; + +export const compareVersion = (v1: string, v2: string) => { + const mainArray1 = v1.split('-'); + const mainArray2 = v2.split('-'); + // Major version + const array1 = mainArray1[0].split('.'); + const array2 = mainArray2[0].split('.'); + const maxL = Math.max(array1.length, array2.length); + for (let i = 0; i < maxL; i++) { + const v1 = getVersionNumber(array1[i]); + const v2 = getVersionNumber(array2[i]); + if (v1 !== v2) { + return v1 > v2 ? 1 : -1; + } + } + + // Beta part + const subArray1 = (mainArray1[1] ?? '').split('.'); + const subArray2 = (mainArray2[1] ?? '').split('.'); + const maxSL = Math.max(subArray1.length, subArray2.length); + for (let i = 0; i < maxSL; i++) { + const v1 = getVersionNumber(subArray1[i]); + const v2 = getVersionNumber(subArray2[i]); + if (v1 !== v2) { + return v1 > v2 ? 1 : -1; + } + } + + return 0; +}; diff --git a/packages/arco-changelog/src/vue/emit-files.ts b/packages/arco-changelog/src/vue/emit-files.ts new file mode 100644 index 000000000..a5d2d5833 --- /dev/null +++ b/packages/arco-changelog/src/vue/emit-files.ts @@ -0,0 +1,84 @@ +import path from 'path'; +import { Changelog, EmitFile } from '../interface'; + +export const emitFiles = (changelog: Changelog): EmitFile[] => { + const allCN: Record = {}; + const addEN: Record = {}; + const componentCN: Record = {}; + const componentEN: Record = {}; + + for (const item of changelog.list) { + const contentCN = `${item.changelogZh} ([#${item.pr.id}](${item.pr.url}))`; + const contentEN = `${item.changelogEn} ([#${item.pr.id}](${item.pr.url}))`; + addAll({ ...item, content: contentCN }, allCN); + addAll({ ...item, content: contentEN }, addEN); + addComponent({ ...item, content: contentCN }, componentCN); + addComponent({ ...item, content: contentEN }, componentEN); + } + + const emits: EmitFile[] = [ + { + file: 'CHANGELOG.zh-CN.md', + template: path.resolve(__dirname, 'template.zh-CN.njk'), + data: { version: changelog.version, date: changelog.date, ...allCN }, + }, + { + file: 'CHANGELOG.md', + template: path.resolve(__dirname, 'template.en-US.njk'), + data: { version: changelog.version, date: changelog.date, ...addEN }, + }, + ]; + + emits.push(...getComponentEmits(componentCN, true)); + emits.push(...getComponentEmits(componentEN)); + + return emits; +}; + +const addAll = (data: any, changelog: any) => { + if (!changelog[data.type]) { + changelog[data.type] = []; + } + if (!data.component || data.component === 'common') { + changelog[data.type].push(data.content); + } else { + changelog[data.type].push(`**${data.component}:** ${data.content}`); + } +}; + +const addComponent = (data: any, changelog: any) => { + if (!data.component || data.component === 'common') { + return; + } + if (!changelog[data.component]) { + changelog[data.component] = {}; + } + if (!changelog[data.component][data.type]) { + changelog[data.component][data.type] = []; + } + changelog[data.component][data.type].push(data.content); +}; + +const getComponentEmits = (changelog: Record, zh?: boolean) => { + const emits: EmitFile[] = []; + for (const component of Object.keys(changelog)) { + const file = + component === 'icon' + ? `components/icon-component/CHANGELOG.${zh ? 'zh-CN.md' : 'md'}` + : `components/${component}/CHANGELOG.${zh ? 'zh-CN.md' : 'md'}`; + + emits.push({ + file, + template: path.resolve( + __dirname, + `template.${zh ? 'zh-CN' : 'en-US'}.njk` + ), + data: { + version: changelog.version, + date: changelog.date, + ...changelog[component], + }, + }); + } + return emits; +}; diff --git a/packages/arco-changelog/src/vue/template.en-US.njk b/packages/arco-changelog/src/vue/template.en-US.njk new file mode 100644 index 000000000..480996ddb --- /dev/null +++ b/packages/arco-changelog/src/vue/template.en-US.njk @@ -0,0 +1,52 @@ +## {{ version }} + +`{{ date }}` + +{% if attention -%} + ### ⚠️ Important Attention + + {% for content in attention -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if feature -%} + ### 🆕 Feature + + {% for content in feature -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if bugfix -%} + ### 🐛 BugFix + + {% for content in bugfix -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if enhancement -%} + ### 💎 Enhancement + + {% for content in enhancement -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if style -%} + ### 💅 Style + + {% for content in style -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if typescript -%} + ### 🆎 TypeScript + + {% for content in typescript -%} + - {{ content }} + {% endfor %} + +{% endif %} diff --git a/packages/arco-changelog/src/vue/template.zh-CN.njk b/packages/arco-changelog/src/vue/template.zh-CN.njk new file mode 100644 index 000000000..c4ac247aa --- /dev/null +++ b/packages/arco-changelog/src/vue/template.zh-CN.njk @@ -0,0 +1,52 @@ +## {{ version }} + +`{{ date }}` + +{% if attention -%} + ### ⚠️ 重点注意 + + {% for content in attention -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if feature -%} + ### 🆕 新增功能 + + {% for content in feature -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if bugfix -%} + ### 🐛 问题修复 + + {% for content in bugfix -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if enhancement -%} + ### 💎 功能优化 + + {% for content in enhancement -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if style -%} + ### 💅 样式更新 + + {% for content in style -%} + - {{ content }} + {% endfor %} + +{% endif %} +{% if typescript -%} + ### 🆎 类型修正 + + {% for content in typescript -%} + - {{ content }} + {% endfor %} + +{% endif %} diff --git a/packages/arco-changelog/src/vue/vue.config.ts b/packages/arco-changelog/src/vue/vue.config.ts new file mode 100644 index 000000000..d70293aa6 --- /dev/null +++ b/packages/arco-changelog/src/vue/vue.config.ts @@ -0,0 +1,7 @@ +import { emitFiles } from './emit-files'; + +export default { + repo: 'arco-design/arco-design-vue', + merged: true, + emitFiles, +}; diff --git a/packages/arco-changelog/tsconfig.json b/packages/arco-changelog/tsconfig.json new file mode 100644 index 000000000..fb9531158 --- /dev/null +++ b/packages/arco-changelog/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "sourceMap": true, + "outDir": "dist", + "module": "CommonJS", + "target": "ES2015", + "allowJs": true, + "moduleResolution": "node", + "baseUrl": ".", + "strict": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "skipLibCheck": true, + "lib": [ + "DOM", + "ES2020" + ] + }, + "include": [ + "src" + ] +} diff --git a/packages/arco-vue-docs-navbar/package.json b/packages/arco-vue-docs-navbar/package.json index 513a61f07..7d3ed24ff 100644 --- a/packages/arco-vue-docs-navbar/package.json +++ b/packages/arco-vue-docs-navbar/package.json @@ -1,7 +1,7 @@ { "name": "@arco-design/arco-vue-docs-navbar", "private": true, - "version": "0.1.0", + "version": "0.2.0", "description": "Arco Vue 2.0 Docs NavBar", "author": "ArcoDesign Team", "license": "MIT", @@ -11,11 +11,12 @@ ], "scripts": { "build": "vite build -c vite.config.ts && npm run dtsgen", - "dtsgen": "tsc" + "dtsgen": "tsc", + "less": "lessc src/navbar.less src/navbar.css" }, "devDependencies": { "@arco-design/web-react": "^2.28.2", - "@arco-materials/site-navbar": "^1.2.2", + "@arco-materials/site-navbar-new": "^1.2.9", "@svgr/core": "^5.5.0", "@typescript-eslint/eslint-plugin": "^4.18.0", "@typescript-eslint/parser": "^4.12.0", diff --git a/packages/arco-vue-docs-navbar/src/index.tsx b/packages/arco-vue-docs-navbar/src/index.tsx index 423e58e67..3df8f6773 100644 --- a/packages/arco-vue-docs-navbar/src/index.tsx +++ b/packages/arco-vue-docs-navbar/src/index.tsx @@ -2,9 +2,10 @@ import React from 'react'; // @ts-ignore import ReactDOM from 'react-dom'; -import Navbar from '@arco-materials/site-navbar'; +import Navbar from '@arco-materials/site-navbar-new'; import { ConfigProvider } from '@arco-design/web-react'; import './index.less'; +import './navbar.css'; interface NavBarOptions { version?: string; @@ -26,9 +27,12 @@ const ReactApp = ({ algoliaTag="vue" defaultVersion={version} onChangeTheme={(theme: string) => { - document.querySelector('#react-root')?.setAttribute('arco-theme', theme) + document + .querySelector('#react-root') + ?.setAttribute('arco-theme', theme); }} - loginHref={`/login?redirectUrl=${window.location.href}`} + loginHref={`/common/login?redirectUrl=${window.location.href}`} + hideRtl versions={[ { version: '1.x', diff --git a/packages/arco-vue-docs-navbar/src/navbar.css b/packages/arco-vue-docs-navbar/src/navbar.css new file mode 100644 index 000000000..cf9ecdc22 --- /dev/null +++ b/packages/arco-vue-docs-navbar/src/navbar.css @@ -0,0 +1,1212 @@ +.ac-navbar-search-history-header { + display: flex; + align-items: center; + justify-content: space-between; +} +.ac-navbar-search-history-list { + padding: 0; + margin: 12px 0 32px 0; + max-height: 170px; + overflow-y: auto; +} +.ac-navbar-search-history-item { + position: relative; + display: flex; + align-items: center; + height: 40px; + padding: 0 10px; + margin-bottom: 2px; + color: var(--color-text-1); + text-decoration: none; + cursor: pointer; +} +.ac-navbar-search-history-item:hover { + background-color: var(--color-fill-1); +} +.ac-navbar-search-history-item:hover .ac-navbar-search-modal-title { + color: rgb(var(--primary-6)); +} +.ac-navbar-search-history-item .arco-icon-history, +.ac-navbar-search-history-item .arco-react-icon-history { + font-size: 16px; + margin-right: 8px; +} +.ac-navbar-search-history-close { + position: absolute !important; + right: 10px; + top: 14px; +} +html.rtl .ac-navbar-search-modal-close { + position: absolute !important; + right: initial; + left: 10px; + top: 14px; +} +html.rtl .ac-navbar-search-modal-item .arco-icon-history, +html.rtl .ac-navbar-search-modal-item .arco-react-icon-history { + font-size: 16px; + margin-right: 0; + margin-left: 8px; +} +.ac-navbar-search-hot { + display: flex; +} +.ac-navbar-search-hot-half { + width: 50%; +} +.ac-navbar-search-hot-title { + margin-bottom: 12px; +} +.ac-navbar-search-hot-list { + display: flex; + flex-direction: column; + padding: 0; +} +.ac-navbar-search-hot-item { + position: relative; + display: flex; + align-items: center; + width: 100%; + height: 56px; + margin: 2px 0; + color: var(--color-text-2); + padding: 0 8px; + box-sizing: border-box; + font-size: 16px; + font-weight: 400; + border-radius: 4px; + text-decoration: none; + transition: all 0.2s; + cursor: pointer; +} +.ac-navbar-search-hot-item-icon, +.ac-navbar-search-hot-item-icon-active { + position: absolute; + top: 0; + left: 0; +} +.ac-navbar-search-hot-item-icon { + opacity: 1; +} +.ac-navbar-search-hot-item-icon-active { + opacity: 0; +} +.ac-navbar-search-hot-item:hover { + color: rgb(var(--primary-6)); + background-color: var(--color-fill-2); +} +.ac-navbar-search-hot-item:hover .ac-navbar-search-modal-svg-wrapper { + background: var(--color-bg-2); +} +.ac-navbar-search-hot-item:hover .ac-navbar-search-modal-enter-icon { + opacity: 1; +} +.ac-navbar-search-hot-item:hover .ac-navbar-search-modal-item-icon { + opacity: 0; +} +.ac-navbar-search-hot-item:hover .ac-navbar-search-modal-item-icon-active { + opacity: 1; +} +.ac-navbar-search-hot-svg-wrapper { + position: relative; + background: var(--color-fill-2); + display: flex; + align-items: center; + justify-content: center; + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 20px; +} +.ac-navbar-search-hot-enter-icon { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + width: 28px; + height: 24px; + background: var(--color-fill-3); + border-radius: 4px; + right: 10px; + top: 50%; + transform: translateY(-50%); + opacity: 0; +} +.ac-navbar-search-hot-svg-wrapper-rect { + border-radius: 8px; +} +body[arco-theme='dark'] .ac-navbar-search-modal-item-icon { + filter: invert(1) grayscale(1) brightness(1.1); +} +html.rtl .ac-navbar-search-modal-half:first-child { + margin-left: 20px; + margin-right: 0; +} +html.rtl .ac-navbar-search-modal-svg-wrapper { + margin-left: 20px; + margin-right: 0; +} +html.rtl .ac-navbar-search-modal-title { + text-align: right; +} +html.rtl .ac-navbar-search-modal-enter-icon { + right: initial; + left: 10px; + transform: scaleX(-1) translateY(-50%); +} +.ac-navbar-search-modal-container { + height: 460px; + padding: 24px; + padding-top: 0; + box-sizing: border-box; + overflow-y: auto; +} +.ac-navbar-search-modal-container-exact { + padding: 12px 0 16px; + box-sizing: border-box; +} +.ac-navbar-search-modal-container-exact-item { + position: relative; + display: flex; + align-items: center; + padding: 8px; + height: 56px; + box-sizing: border-box; + border-radius: 8px; + margin: 2px 0; + cursor: pointer; + transition: all 0.2s; +} +.ac-navbar-search-modal-container-exact-icon { + position: relative; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + margin-right: 24px; + width: 40px; + height: 40px; + background-color: var(--color-fill-1); +} +.ac-navbar-search-modal-container-item { + position: relative; + padding: 8px 16px; + border-radius: 4px; + cursor: pointer; + transition: all 0.2s; +} +.ac-navbar-search-modal-container-item-type { + display: flex; + align-items: center; + justify-content: center; + height: 22px; + padding: 1px 8px; + background-color: #4e5969; + border-radius: 2px; + color: #fff; + margin-left: 12px; + font-size: 12px; + box-sizing: border-box; +} +.ac-navbar-search-modal-container-item-vue { + font-weight: bold; +} +.ac-navbar-search-modal-container-item-design { + background: var(--color-fill-2); + color: var(--color-text-1); +} +.ac-navbar-search-modal-container-item-title { + line-height: 24px; + font-size: 16px; + margin-bottom: 6px; + color: var(--color-text-2); +} +.ac-navbar-search-modal-container-item-desc { + color: var(--color-text-2); + font-size: 14px; + line-height: 22px; +} +.ac-navbar-search-modal-container-item-active { + background-color: var(--color-fill-1); +} +.ac-navbar-search-modal-container-item-active .ac-navbar-search-modal-item-type { + background-color: rgb(var(--primary-6)); +} +.ac-navbar-search-modal-container-item-active .ac-navbar-search-modal-item-vue { + background-color: rgb(var(--cyan-6)); +} +.ac-navbar-search-modal-container-item-active .ac-navbar-search-modal-item-design { + color: #ffff; + border: none; +} +.ac-navbar-search-modal-container-item-active .ac-navbar-search-modal-exact-icon { + opacity: 1; +} +.ac-navbar-search-modal-container-item-active .ac-navbar-search-modal-enter-icon { + opacity: 1; +} +.ac-navbar-search-modal-container-enter-icon { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + width: 28px; + height: 24px; + background: var(--color-fill-3); + border-radius: 4px; + right: 10px; + top: 50%; + transform: translateY(-50%); + opacity: 0; + transition: all 0.2s; +} +.ac-navbar-search-modal-container-doc { + margin-bottom: 8px; +} +.ac-navbar-search-modal-container-doc-title { + font-size: 12px; + margin-bottom: 4px; +} +.ac-navbar-search-modal-container-doc-item { + display: flex; + box-sizing: border-box; + padding: 4px 8px; + border-radius: 4px; + cursor: pointer; + position: relative; +} +.ac-navbar-search-modal-container-doc-item-icon { + transform: scale(0.8); + display: flex; +} +.ac-navbar-search-modal-container-doc-item-icon svg { + color: var(--color-text-3); + opacity: 0.6; + stroke-width: 1.8; +} +.ac-navbar-search-modal-container-doc-item-icon-line { + height: 48px; +} +.ac-navbar-search-modal-container-doc-item-icon-anchor, +.ac-navbar-search-modal-container-doc-item-icon-doc { + height: 20px; + padding: 14px 0; + margin-right: 6px; +} +.ac-navbar-search-modal-container-doc-item-icon-line { + height: 48px; +} +.ac-navbar-search-modal-container-doc-item-result { + font-size: 13px; + display: flex; + flex-direction: column; + justify-content: center; +} +.ac-navbar-search-modal-container-doc-item-result-desc { + vertical-align: middle; + padding-right: 36px; +} +html.rtl .ac-navbar-search-modal-exact-icon { + margin-left: 24px; + margin-right: 0; +} +html.rtl .ac-navbar-search-modal-list-item-type { + margin-right: 12px; + margin-left: 0; +} +html.rtl .ac-navbar-search-modal-enter-icon { + right: initial; + left: 10px; + transform: scaleX(-1) translateY(-50%); +} +html.rtl .ac-navbar-search-modal-doc-title { + text-align: right; +} +html.rtl .ac-navbar-search-modal-doc-item-result-desc { + padding-right: 0; + padding-left: 36px; +} +html.rtl .ac-navbar-search-modal-doc-item-result-label { + text-align: right; +} +html.rtl .ac-navbar-search-modal-doc-item-icon svg { + transform: scaleX(-1); +} +.ac-navbar-container { + width: 100%; + height: 60px; + box-sizing: border-box; + min-height: 60px; + max-height: 60px; + display: flex; + justify-content: space-between; + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 999; + border-bottom: 1px solid var(--color-border); + background-color: var(--color-bg-2); +} +.ac-navbar-container-no-border { + border-bottom: none; +} +.ac-navbar-btn-icon { + font-size: 18px !important; + color: var(--color-text-1) !important; + margin: 0 10px; + line-height: 24px !important; +} +.ac-navbar-mask { + position: fixed; + width: 100vw; + height: 100vh; + background-color: var(--color-mask-bg); + left: 0; + top: 0; + z-index: 990; +} +.ac-navbar-fadeIn-enter, +.ac-navbar-fadeIn-appear { + opacity: 0; +} +.ac-navbar-fadeIn-enter-active, +.ac-navbar-fadeIn-appear-active { + opacity: 1; + transition: opacity 0.3s; +} +.ac-navbar-fadeIn-exit { + opacity: 1; +} +.ac-navbar-fadeIn-exit-active { + opacity: 0; + transition: opacity 0.3s; +} +.ac-navbar-dropdown { + display: flex; + justify-content: center; + padding-bottom: 20px; + width: 1180px; +} +.ac-navbar-dropdown-block { + padding-top: 30px; + box-sizing: border-box; + overflow: hidden; + height: 100%; +} +.ac-navbar-dropdown-title { + display: flex; + justify-content: space-between; + align-items: center; + height: 48px; + border-bottom: 1px solid var(--color-border); + color: var(--color-text-1); + font-size: 20px; +} +.ac-navbar-dropdown-list { + display: grid; + grid-template-columns: 1fr 1fr; + grid-row-gap: 12px; + grid-column-gap: 24px; + padding: 20px 0; +} +.ac-navbar-dropdown-item { + display: flex; + align-items: center; + cursor: pointer; + box-sizing: border-box; + padding: 4px; + border-radius: 8px; + color: var(--color-text-1); + text-decoration: none; +} +.ac-navbar-dropdown-item-icon { + display: flex; + align-items: center; + justify-content: center; + width: 40px; + height: 40px; + border-radius: 8px; + background-color: rgb(var(--primary-6)); + flex-shrink: 0; + margin-right: 8px; +} +.ac-navbar-dropdown-item-name { + margin: 0 16px; + font-weight: 500; +} +.ac-navbar-dropdown-item-desc { + margin-top: 2px; + color: var(--color-text-2); + font-size: 12px; +} +.ac-navbar-dropdown-item:hover { + background-color: var(--color-fill-2); + color: rgb(var(--primary-6)); +} +.ac-navbar-dropdown-develop .ac-navbar-dropdown-item-icon { + background-color: #000; +} +.ac-navbar-dropdown-develop .ac-navbar-dropdown-block-left .ac-navbar-dropdown-item-icon { + background-color: transparent; +} +.ac-navbar-dropdown-develop .ac-navbar-dropdown-block-left .ac-navbar-dropdown-item-name { + margin: 0 8px 0 0; + display: flex; +} +.ac-navbar-dropdown-develop .ac-navbar-dropdown-block-left .ac-navbar-dropdown-item-version { + display: flex; + align-items: center; + padding: 0 8px; + background-color: var(--color-fill-3); + border-radius: 2px; + margin: 0 8px; + font-size: 12px; + color: var(--color-text-1); + transition: all 0.2s; +} +.ac-navbar-dropdown-develop .ac-navbar-dropdown-block-left .ac-navbar-dropdown-item:hover .ac-navbar-dropdown-item-version { + background-color: rgb(var(--primary-6)); + color: #fff; +} +.ac-navbar-dropdown-ecosystem .ac-navbar-dropdown-list { + width: 100%; + padding: 24px 0; + display: grid; + grid-template-columns: 33% 33% 33%; + grid-row-gap: 12px; + grid-column-gap: 20px; +} +.ac-navbar-dropdown-ecosystem .ac-navbar-dropdown-item-desc { + margin: 2px 16px 0 16px; + color: var(--color-text-2); + font-size: 12px; + font-weight: normal; +} +.ac-navbar-navTab { + display: flex; +} +.ac-navbar-navTab-item { + display: flex; + padding: 18px 8px; + height: 60px; + box-sizing: border-box; + align-items: center; +} +.ac-navbar-navTab-item-link { + padding: 3px 8px; + border-radius: 2px; + color: var(--color-text-1); + position: relative; + font-weight: 500; + cursor: pointer; + text-decoration: none; +} +.ac-navbar-navTab-item-link:hover { + color: var(--color-text-1); +} +.ac-navbar-navTab-item-link svg { + font-size: 12px; + stroke-width: 6px; + vertical-align: -1px; + color: var(--color-text-1); + margin: 0 4px; + transition: all 0.2s; +} +.ac-navbar-navTab-item-link:focus-visible { + outline: 2px solid rgb(var(--primary-6)); +} +.ac-navbar-navTab-item-active .ac-navbar-navTab-item-link { + background-color: var(--color-fill-2); +} +.ac-navbar-navTab-item-active .ac-navbar-navTab-item-link svg { + transform: rotate(180deg); +} +.ac-navbar-navTab-container { + width: 100vw; + display: flex; + justify-content: center; + position: relative; + z-index: 998; + background-color: var(--color-bg-2); + overflow: hidden; +} +.ac-navbar-global-notice { + position: fixed; + top: 60px; + width: 100%; + height: 32px; + line-height: 32px; + background-color: rgb(var(--blue-6)); + color: var(--color-white); + display: flex; + justify-content: center; + z-index: 980; +} +.ac-navbar-global-notice-container { + width: calc(100% - 120px); + text-align: center; + color: var(--color-white) !important; + text-decoration: none; +} +.ac-navbar-global-notice-container > span { + font-size: 13px; + margin-left: 36px; + margin-right: 48px; +} +.ac-navbar-global-notice-close-icon { + position: absolute; + right: 20px; + cursor: pointer; + width: 20px; + height: 20px; + line-height: 20px; + margin-top: 6px; + text-align: center; + border-radius: 4px; +} +.ac-navbar-global-notice-close-icon:hover { + background-color: rgba(255, 255, 255, 0.3); +} +@media screen and (max-width: 920px) { + .ac-navbar-global-notice { + position: relative; + top: 0; + height: 28px; + line-height: 28px; + } + .ac-navbar-global-notice a > b { + display: none; + } + .ac-navbar-global-notice a > span { + font-weight: 500; + margin: 0; + font-size: 12px; + } + .ac-navbar-global-notice-close-icon { + margin-top: 4px; + } +} +:global(html.rtl) .ac-navbar-global-notice svg { + transform: scaleX(-1); +} +.ac-navbar-left-panel { + background: var(--color-bg-3); + border: 1px solid var(--color-border); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); + border-radius: 8px; +} +.ac-navbar-left-panel-list { + display: grid; + grid-template-columns: 50% 50%; + padding: 16px; + width: 400px; +} +.ac-navbar-left-panel-return-home { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 32px; + height: 68px; + box-sizing: border-box; + border-bottom: 1px solid var(--color-border); + transition: all 0.2s; + cursor: pointer; +} +.ac-navbar-left-panel-return-home .arco-icon-arrow-right, +.ac-navbar-left-panel-return-home .arco-react-icon-arrow-right { + color: var(--color-text-1); + font-size: 18px; +} +.ac-navbar-left-panel-return-home:hover { + background-color: var(--color-fill-1); +} +.ac-navbar-left-panel-return-home:hover .arco-icon-arrow-right, +.ac-navbar-left-panel-return-home:hover .arco-react-icon-arrow-right { + color: rgb(var(--primary-6)); +} +.ac-navbar-left-panel-item { + opacity: 0; + cursor: pointer; + position: relative; + z-index: 2; + padding: 16px; + display: flex; + justify-content: flex-start; + align-items: center; + text-decoration: none; +} +.ac-navbar-left-panel-item::after { + position: absolute; + z-index: -1; + content: ''; + display: block; + width: 100%; + height: 100%; + background: var(--color-fill-1); + border-radius: 4px; + left: 0; + opacity: 0; + transform: scale(0.94); + transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); +} +.ac-navbar-left-panel-item-logo { + position: relative; + width: 24px; + height: 24px; + margin-right: 16px; +} +.ac-navbar-left-panel-item-logo > span { + display: block; + position: absolute; + top: 0; + left: 0; + transition: all 0.25s ease-out; +} +.ac-navbar-left-panel-item-logo-common { + opacity: 1; +} +.ac-navbar-left-panel-item-logo-active { + opacity: 0; +} +.ac-navbar-left-panel-item-text-title { + font-size: 16px; + font-family: 'Nunito Sans', sans-serif; + font-weight: 800; + color: var(--color-text-1); + margin: 0; + transition: all 0.2s ease-out; +} +.ac-navbar-left-panel-item-text-desc { + font-family: PingFang SC; + font-style: normal; + font-weight: 400; + font-size: 12px; + line-height: 12px; + color: var(--color-text-2); + position: absolute; + word-break: keep-all; + transform: translateY(0); + opacity: 0; + transition: all 0.2s ease-out; +} +.ac-navbar-left-panel-item:hover::after { + opacity: 1; + transform: scale(1); +} +.ac-navbar-left-panel-item:hover .ac-navbar-left-panel-item-text-title { + transform: translateY(-8px); + color: var(--color-text-1); +} +.ac-navbar-left-panel-item:hover .ac-navbar-left-panel-item-text-desc { + transform: translateY(-4px); + opacity: 1; +} +.ac-navbar-left-panel-item:hover .ac-navbar-left-panel-item-logo-common { + opacity: 0; +} +.ac-navbar-left-panel-item:hover .ac-navbar-left-panel-item-logo-active { + opacity: 1; +} +.ac-navbar-left-panel-trigger { + position: relative; + display: flex; + align-items: center; + justify-content: center; + color: var(--color-text-1); + width: 60px; + height: 60px; + box-sizing: border-box; + cursor: pointer; +} +.ac-navbar-left-panel-trigger-icon { + width: 24px; + height: 24px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 4px; +} +.ac-navbar-left-panel-trigger:hover .ac-navbar-left-panel-trigger-icon { + background-color: var(--color-fill-1); +} +.ac-navbar-left-panel-trigger:focus-visible .ac-navbar-left-panel-trigger-icon { + outline: 2px solid rgb(var(--primary-6)); +} +.ac-navbar-left-panel-trigger::after { + content: ' '; + display: block; + position: absolute; + width: 1px; + height: 24px; + background-color: var(--color-border); + right: 0; + top: 50%; + transform: translateY(-50%); +} +.ac-navbar-left-panel-down-enter, +.ac-navbar-left-panel-down-appear { + opacity: 0; + box-shadow: 0 0 0 rgba(0, 0, 0, 0); + transform-origin: 0% 0%; + transform: scale(0.55) translateY(-6px); +} +.ac-navbar-left-panel-down-enter-active, +.ac-navbar-left-panel-down-appear-active { + opacity: 1; + transform: scale(1) translateY(0); + transform-origin: 0% 0%; + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); + transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); +} +.ac-navbar-left-panel-down-exit { + opacity: 1; + transform: scale(1) translateY(0); + transform-origin: 0% 0%; + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); +} +.ac-navbar-left-panel-down-exit-active { + opacity: 0; + box-shadow: 0 0 0 rgba(0, 0, 0, 0); + transform-origin: 0% 0%; + transform: scale(0.55) translateY(-6px); + transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); +} +html.rtl .ac-navbar-left-panel { + direction: rtl; +} +html.rtl .ac-navbar-left-panel-item-logo { + margin-right: 0; + margin-left: 16px; +} +html.rtl .ac-navbar-left-panel-return-home .arco-icon-arrow-right, +html.rtl .ac-navbar-left-panel-return-home .arco-react-icon-arrow-right { + transform: scaleX(-1); +} +html.rtl .ac-navbar-left-panel-trigger::after { + content: ' '; + display: block; + position: absolute; + width: 1px; + height: 24px; + background-color: var(--color-border); + right: inherit; + left: 0; + top: 50%; + transform: translateY(-50%); +} +.ac-navbar-left-panel-mobile .ac-navbar-left-panel-list { + display: grid; + grid-template-columns: 100%; + padding: 8px; + width: 260px; +} +.ac-navbar-left-panel-mobile-trigger { + width: 48px; + height: 48px; +} +.ac-navbar-left-panel-mobile-trigger .ac-navbar-left-panel-trigger-icon { + transform: scale(0.8); +} +.ac-navbar-logo { + display: flex; + align-items: center; + justify-content: center; + width: 180px; + height: 60px; + box-sizing: border-box; + text-decoration: none; +} +.ac-navbar-logo .logo:focus-visible > svg { + outline: 2px solid rgb(var(--primary-6)); +} +.ac-navbar-message-box { + display: flex; + flex-direction: column; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + border-radius: var(--border-radius-medium); + border: 1px solid var(--color-fill-3); + box-sizing: border-box; + background-color: var(--color-bg-popup); + width: 324px; + max-height: 360px; +} +.ac-navbar-message-box-header { + width: 100%; + height: 40px; + min-height: 40px; + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 20px; + box-sizing: border-box; + border-bottom: 1px solid var(--color-fill-3); +} +.ac-navbar-message-box-header-title { + font-weight: 500; +} +.ac-navbar-message-box-list { + flex: 1; + padding: 4px 0; + box-sizing: border-box; + overflow-y: auto; + overflow-x: hidden; +} +.ac-navbar-message-box-item { + display: inline-block; + width: 100%; + padding: 8px 20px; + box-sizing: border-box; + text-decoration: none; + transition: all 0.2s; +} +.ac-navbar-message-box-item:hover { + background-color: var(--color-fill-2); +} +.ac-navbar-message-box-item[href]:hover .title { + color: rgb(var(--primary-6)); +} +.ac-navbar-message-box-item-description { + font-size: 12px; + color: var(--color-text-2); + line-height: auto; +} +.ac-navbar-message-box-item-date { + font-size: 12px; + color: var(--color-text-3); +} +.ac-navbar-search-input { + display: flex; + align-items: center; + justify-content: space-between; + height: 32px; + width: 140px; + background-color: var(--color-fill-2); + border-radius: 2px; + padding: 0 8px; + margin: 0 24px; + transition: all 0.2s; + cursor: pointer; +} +.ac-navbar-search-input:hover { + background-color: var(--color-fill-3); +} +.ac-navbar-search-input:focus-visible { + outline: 2px solid rgb(var(--primary-6)); +} +.ac-navbar-search-input svg { + color: var(--color-text-1); + vertical-align: -1px; +} +.ac-navbar-search-input-placeholder { + color: var(--color-text-3); + margin: 0 6px; + vertical-align: 1px; +} +.ac-navbar-search-input-command { + display: flex; +} +.ac-navbar-search-input-key { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + padding: 6px; + width: 17.21px; + height: 20px; + left: 117px; + top: 6px; + background: #fff; + border: 1px solid #c9cdd4; + box-sizing: border-box; + box-shadow: 0 1px 0 #c9cdd4; + border-radius: 3px; + font-size: 12px; + color: var(--color-text-3); +} +.ac-navbar-search-input-key:first-child { + margin: 0 4px; +} +body[arco-theme='dark'] .ac-navbar-search-input-key { + background: #202022; + border: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12); + color: rgba(255, 255, 255, 0.4); +} +.ac-navbar-search-modal { + border-radius: 8px !important; + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important; +} +.ac-navbar-search-modal .arco-modal-content, +.ac-navbar-search-modal .arco-react-modal-content { + padding: 0; +} +.ac-navbar-search-modal-content { + padding: 24px; +} +.ac-navbar-search-modal-input-wrapper { + display: flex; + align-items: center; + justify-content: space-between; + height: 60px; + padding: 0 20px; + box-sizing: border-box; + background: var(--color-bg-3); + border-bottom: 1px solid var(--color-border); + border-radius: 8px 8px 0 0; +} +.ac-navbar-search-modal-left { + display: flex; + align-items: center; +} +.ac-navbar-search-modal-left svg { + color: rgb(var(--primary-6)); + font-size: 20px; + margin-right: 10px; +} +.ac-navbar-search-modal-left input { + border: none; + outline: none; + height: 32px; + line-height: 32px; + font-size: 16px; + background-color: transparent; + color: var(--color-text-1); +} +.ac-navbar-search-modal-right { + display: flex; +} +.ac-navbar-search-modal-key-word { + font-size: 12px; + color: var(--color-text-3); + margin-left: 8px; + margin-right: 4px; +} +.ac-navbar-search-modal-count { + padding: 24px 24px 12px 24px; +} +.DocSearch-Footer { + border-top: 1px solid var(--color-border); + align-items: center; + height: 48px; + display: flex; + flex-direction: row; + justify-content: space-between; + padding: 0 24px; +} +.DocSearch-Footer :global(.DocSearch-Label) { + color: var(--color-text-2) !important; +} +.DocSearch-Footer svg { + color: var(--primary-6) !important; + margin-left: 8px; + vertical-align: -6px; +} +html.rtl .DocSearch-Footer svg { + margin-right: 8px; + margin-left: 0; +} +html.rtl .ac-navbar-search-modal-left svg { + margin-right: 0; + margin-left: 10px; +} +html.rtl .ac-navbar-search-modal-key-word { + margin-right: 8px; + margin-left: 4px; +} +.ac-navbar-select-nav { + padding: 18px 2px; + height: 60px; + box-sizing: border-box; + display: flex; + align-items: center; +} +.ac-navbar-select-nav .arco-select-view { + font-weight: 500; +} +.ac-navbar-select-nav .arco-select-view svg { + stroke-width: 6px; +} +.ac-navbar-select-nav-option svg { + padding-right: 8px; +} +html.rtl .ac-navbar-select-nav-option svg { + padding-left: 8px; + padding-right: 0; +} +.ac-navbar-profile { + padding: 4px 0; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + border-radius: var(--border-radius-medium); + border: 1px solid var(--color-fill-3); + box-sizing: border-box; + background-color: var(--color-bg-popup); +} +.ac-navbar-profile-user { + display: flex; + padding: 12px; + align-items: center; + box-sizing: border-box; + border-bottom: 1px solid var(--color-fill-3); +} +.ac-navbar-profile-user-settings { + margin-top: 4px !important; + margin-bottom: 4px !important; + padding-top: 4px; + border-top: 1px solid var(--color-fill-3); +} +.ac-navbar-profile-info { + display: flex; + flex-direction: column; + justify-content: center; + margin-left: 8px; +} +.ac-navbar-profile-info-nickname { + font-weight: 500; + font-size: 14px; +} +.ac-navbar-profile-info-email { + font-size: 12px; + line-height: 13px; + width: 100%; +} +.ac-navbar-profile-version { + justify-content: space-between; + width: 100%; +} +.ac-navbar-profile-version svg { + color: var(--color-text-2); +} +.ac-navbar-profile-item { + display: flex; + align-items: center; + height: 36px; + padding: 0 14px; + box-sizing: border-box; + color: var(--color-text-1); + text-decoration: none; + cursor: pointer; + transition: all 0.2s; +} +.ac-navbar-profile-item-icon { + margin-right: 10px; + font-size: 16px; + margin-bottom: -2px; + color: var(--color-text-1); +} +.ac-navbar-profile-item:hover { + background-color: var(--color-fill-2); +} +.ac-navbar-profile-avatar { + background-color: var(--color-bg-4) !important; + cursor: pointer; + box-sizing: content-box !important; + padding: 2px; + transition: all 0.2s; + margin-right: 20px; +} +.ac-navbar-profile-avatar:hover { + filter: drop-shadow(0 2px 3px rgba(78, 89, 105, 0.14)); +} +.ac-navbar-profile-avatar-need-login { + background-color: var(--color-fill-4) !important; +} +html.rtl .ac-navbar-profile-info { + margin-left: 0; + margin-right: 8px; +} +html.rtl .ac-navbar-profile-item svg { + margin-right: 0; + margin-left: 10px; +} +html.rtl .ac-navbar-profile-avatar { + margin-right: 0; + margin-left: 20px; +} +.ac-navbar-user-settings { + padding: 4px; +} +.ac-navbar-user-settings-card { + margin-bottom: 30px; +} +.ac-navbar-user-settings-card-header { + display: flex; + justify-content: space-between; + align-items: center; +} +.ac-navbar-user-settings-card-header h3 { + font-size: 14px; + color: var(--color-text-2); + margin-bottom: 12px; +} +.ac-navbar-user-settings-card-info { + padding: 8px; + align-items: center; +} +.ac-navbar-user-settings-card-info-desc { + margin-left: 18px; +} +.ac-navbar-user-settings-card-info-desc .arco-descriptions-item-label { + font-size: 13px; +} +.ac-navbar-user-settings-card-info-desc td { + padding: 4px 6px; +} +.ac-navbar-user-settings-card-info-desc .arco-typography { + font-size: 16px; + line-height: 22px; + color: var(--color-text-2); +} +.ac-navbar-user-settings-card-info-desc-id { + display: flex; + font-size: 13px; + color: var(--color-text-3); + line-height: 16px; + margin-top: 6px; +} +.ac-navbar-user-settings-card-info-desc-id > div { + text-align: center; + font-size: 12px; + line-height: 16px; + width: 16px; + height: 16px; + font-weight: bold; + border-radius: 4px; + background-color: var(--color-text-4); + color: var(--color-white); + margin-right: 4px; +} +.ac-navbar-user-settings-card-info-desc-id > span { + line-height: 14px; +} +.ac-navbar-user-settings-card-info-email { + color: var(--color-text-2); +} +.ac-navbar-user-settings-card-info-email > span { + margin-left: 12px; + font-size: 12px; +} +.ac-navbar-user-settings-card-info-email-success { + color: rgb(var(--green-6)); +} +.ac-navbar-user-settings-card-info-email-warning { + color: rgb(var(--orange-6)); +} +.ac-navbar-user-settings-card-info-token { + display: flex; + justify-content: space-between; + margin-top: 14px; + border-bottom: 1px solid var(--color-border-2); + padding-bottom: 4px; +} +.ac-navbar-user-settings-card-info-token .arco-typography { + font-size: 13px; + width: 280px; + margin-bottom: 8px; +} +.ac-navbar-user-settings-card-info-token-time { + color: var(--color-text-3); + font-size: 12px; + margin-top: 4px; + line-height: 22px; +} diff --git a/packages/arco-vue-docs-navbar/src/navbar.less b/packages/arco-vue-docs-navbar/src/navbar.less new file mode 100644 index 000000000..a0f85cfdf --- /dev/null +++ b/packages/arco-vue-docs-navbar/src/navbar.less @@ -0,0 +1,6 @@ +@prefix: ac-navbar; + +@import './style/history.less'; +@import './style/hot.less'; +@import './style/list.less'; +@import '@arco-materials/site-navbar-new/dist/css/index.less'; diff --git a/packages/arco-vue-docs-navbar/src/style/history.less b/packages/arco-vue-docs-navbar/src/style/history.less new file mode 100644 index 000000000..c57126d07 --- /dev/null +++ b/packages/arco-vue-docs-navbar/src/style/history.less @@ -0,0 +1,66 @@ +@hi-prefixCls: ~'@{prefix}-search-history'; + +.@{hi-prefixCls} { + &-header { + display: flex; + align-items: center; + justify-content: space-between; + } + + &-list { + padding: 0; + margin: 12px 0 32px 0; + max-height: 170px; + overflow-y: auto; + } + + &-item { + position: relative; + display: flex; + align-items: center; + height: 40px; + padding: 0 10px; + margin-bottom: 2px; + color: var(--color-text-1); + text-decoration: none; + cursor: pointer; + + &:hover { + background-color: var(--color-fill-1); + + .@{prefixCls}-title { + color: rgb(var(--primary-6)); + } + } + + .arco-icon-history, + .arco-react-icon-history { + font-size: 16px; + margin-right: 8px; + } + } + + &-close { + position: absolute !important; + right: 10px; + top: 14px; + } +} + +html.rtl { + .@{prefixCls}-close { + position: absolute !important; + right: initial; + left: 10px; + top: 14px; + } + + .@{prefixCls}-item { + .arco-icon-history, + .arco-react-icon-history { + font-size: 16px; + margin-right: 0; + margin-left: 8px; + } + } +} diff --git a/packages/arco-vue-docs-navbar/src/style/hot.less b/packages/arco-vue-docs-navbar/src/style/hot.less new file mode 100644 index 000000000..c60d307b1 --- /dev/null +++ b/packages/arco-vue-docs-navbar/src/style/hot.less @@ -0,0 +1,132 @@ +@ho-prefixCls: ~'@{prefix}-search-hot'; + +.@{ho-prefixCls} { + display: flex; + + &-half { + width: 50%; + } + + &-title { + margin-bottom: 12px; + } + + &-list { + display: flex; + flex-direction: column; + padding: 0; + } + + &-item { + position: relative; + display: flex; + align-items: center; + width: 100%; + height: 56px; + margin: 2px 0; + color: var(--color-text-2); + padding: 0 8px; + box-sizing: border-box; + font-size: 16px; + font-weight: 400; + border-radius: 4px; + text-decoration: none; + transition: all 0.2s; + cursor: pointer; + + &-icon, + &-icon-active { + position: absolute; + top: 0; + left: 0; + } + + &-icon { + opacity: 1; + } + + &-icon-active { + opacity: 0; + } + + &:hover { + color: rgb(var(--primary-6)); + background-color: var(--color-fill-2); + + .@{prefixCls}-svg-wrapper { + background: var(--color-bg-2); + } + + .@{prefixCls}-enter-icon { + opacity: 1; + } + + .@{prefixCls}-item-icon { + opacity: 0; + } + + .@{prefixCls}-item-icon-active { + opacity: 1; + } + } + } + + &-svg-wrapper { + position: relative; + background: var(--color-fill-2); + display: flex; + align-items: center; + justify-content: center; + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 20px; + } + + &-enter-icon { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + width: 28px; + height: 24px; + background: var(--color-fill-3); + border-radius: 4px; + right: 10px; + top: 50%; + transform: translateY(-50%); + opacity: 0; + } + + &-svg-wrapper-rect { + border-radius: 8px; + } +} + +body[arco-theme='dark'] .@{prefixCls}-item-icon { + filter: invert(1) grayscale(1) brightness(1.1); +} + +html.rtl { + .@{prefixCls} { + &-half:first-child { + margin-left: 20px; + margin-right: 0; + } + + &-svg-wrapper { + margin-left: 20px; + margin-right: 0; + } + + &-title { + text-align: right; + } + + &-enter-icon { + right: initial; + left: 10px; + transform: scaleX(-1) translateY(-50%); + } + } +} diff --git a/packages/arco-vue-docs-navbar/src/style/list.less b/packages/arco-vue-docs-navbar/src/style/list.less new file mode 100644 index 000000000..3647f70c8 --- /dev/null +++ b/packages/arco-vue-docs-navbar/src/style/list.less @@ -0,0 +1,225 @@ + +@li-prefixCls: ~'@{prefix}-search-modal-container'; +@doc-item-content-height: 48px; + +.@{li-prefixCls} { + height: 460px; + padding: 24px; + padding-top: 0; + box-sizing: border-box; + overflow-y: auto; + + &-exact { + padding: 12px 0 16px; + box-sizing: border-box; + + &-item { + position: relative; + display: flex; + align-items: center; + padding: 8px; + height: 56px; + box-sizing: border-box; + border-radius: 8px; + margin: 2px 0; + cursor: pointer; + transition: all 0.2s; + } + + &-icon { + position: relative; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + margin-right: 24px; + width: 40px; + height: 40px; + background-color: var(--color-fill-1); + } + } + + &-item { + position: relative; + padding: 8px 16px; + border-radius: 4px; + cursor: pointer; + transition: all 0.2s; + + &-type { + display: flex; + align-items: center; + justify-content: center; + height: 22px; + padding: 1px 8px; + background-color: #4e5969; + border-radius: 2px; + color: #fff; + margin-left: 12px; + font-size: 12px; + box-sizing: border-box; + } + + &-vue { + font-weight: bold; + } + + &-design { + background: var(--color-fill-2); + color: var(--color-text-1); + } + + &-title { + line-height: 24px; + font-size: 16px; + margin-bottom: 6px; + color: var(--color-text-2); + } + + &-desc { + color: var(--color-text-2); + font-size: 14px; + line-height: 22px; + } + } + + &-item-active { + background-color: var(--color-fill-1); + + .@{prefixCls}-item-type { + background-color: rgb(var(--primary-6)); + } + + .@{prefixCls}-item-vue { + background-color: rgb(var(--cyan-6)); + } + + .@{prefixCls}-item-design { + color: #ffff; + border: none; + } + + .@{prefixCls}-exact-icon { + opacity: 1; + } + + .@{prefixCls}-enter-icon { + opacity: 1; + } + } + + &-enter-icon { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + width: 28px; + height: 24px; + background: var(--color-fill-3); + border-radius: 4px; + right: 10px; + top: 50%; + transform: translateY(-50%); + opacity: 0; + transition: all 0.2s; + } + + &-doc { + margin-bottom: 8px; + + &-title { + font-size: 12px; + margin-bottom: 4px; + } + + &-item { + display: flex; + box-sizing: border-box; + padding: 4px 8px; + border-radius: 4px; + cursor: pointer; + position: relative; + + &-icon { + transform: scale(0.8); + display: flex; + + svg { + color: var(--color-text-3); + opacity: 0.6; + stroke-width: 1.8; + } + + &-line { + height: @doc-item-content-height; + } + + &-anchor, + &-doc { + height: 20px; + padding: 14px 0; + margin-right: 6px; + } + } + + &-icon-line { + height: @doc-item-content-height; + } + + &-result { + font-size: 13px; + display: flex; + flex-direction: column; + justify-content: center; + + &-desc { + vertical-align: middle; + padding-right: 36px; + } + } + } + } +} + +html.rtl { + .@{prefixCls}-exact-icon { + margin-left: 24px; + margin-right: 0; + } + + .@{prefixCls}-list-item-type { + margin-right: 12px; + margin-left: 0; + } + + .@{prefixCls}-enter-icon { + right: initial; + left: 10px; + transform: scaleX(-1) translateY(-50%); + } + + .@{prefixCls}-doc { + &-title { + text-align: right; + } + + &-item { + &-result { + &-desc { + padding-right: 0; + padding-left: 36px; + } + + &-label { + text-align: right; + } + } + + &-icon { + svg { + transform: scaleX(-1); + } + } + } + } +} diff --git a/packages/arco-vue-docs/.prettierrc.js b/packages/arco-vue-docs/.prettierrc.js index 24da7c88e..0f1f8b9a8 100644 --- a/packages/arco-vue-docs/.prettierrc.js +++ b/packages/arco-vue-docs/.prettierrc.js @@ -4,5 +4,6 @@ module.exports = { printWidth: 80, singleQuote: true, quoteProps: 'consistent', + endOfLine: 'auto', htmlWhitespaceSensitivity: 'strict', }; diff --git a/packages/arco-vue-docs/app.vue b/packages/arco-vue-docs/app.vue index 78690f95a..d4ec21797 100644 --- a/packages/arco-vue-docs/app.vue +++ b/packages/arco-vue-docs/app.vue @@ -15,12 +15,12 @@ @close="handleCloseGlobalNotice" > - Vue3 将成为默认版本,Arco 助力开发者轻装启航 + Arco Toolbox Figma 插件工具全新发布,有奖公测中~ 查看更多 @@ -51,7 +51,7 @@ import { onBeforeUnmount, } from 'vue'; import { useRoute } from 'vue-router'; -import { PageDurationTracker, teaLog } from '@arco-design/arco-site-utils'; +import { PageDurationTracker, teaLog } from '@arco-materials/site-utils'; import { collapseInjectionKey } from './context'; import AsideNav from './components/aside-nav/index.vue'; import { getLocalStorage, setLocalStorage } from './utils/local-storage'; @@ -74,12 +74,12 @@ export default defineComponent({ const showNav = ref(true); const showAnchor = ref(true); const showGlobalNotice = ref( - getLocalStorage('arco-global-notice') !== '3-vue' + getLocalStorage('arco-global-notice') !== '23-hide' ); const handleCloseGlobalNotice = () => { showGlobalNotice.value = false; - setLocalStorage('arco-global-notice', '3-vue'); + setLocalStorage('arco-global-notice', '23-hide'); }; const toggleNav = () => { diff --git a/packages/arco-vue-docs/components/article/style.less b/packages/arco-vue-docs/components/article/style.less index 29d6ccbd1..c4e6fda6f 100644 --- a/packages/arco-vue-docs/components/article/style.less +++ b/packages/arco-vue-docs/components/article/style.less @@ -48,6 +48,10 @@ .article-description { color: var(--color-text-2); line-height: 20px; + + &:not(:last-child) { + margin-right: 200px; + } } .article-content { diff --git a/packages/arco-vue-docs/components/aside-nav/style.less b/packages/arco-vue-docs/components/aside-nav/style.less index de174d8a3..9d1873184 100644 --- a/packages/arco-vue-docs/components/aside-nav/style.less +++ b/packages/arco-vue-docs/components/aside-nav/style.less @@ -16,6 +16,9 @@ position: absolute; top: 186px; right: -12px; + display: flex; + align-items: center; + justify-content: center; background-color: var(--color-bg-5); border: 1px solid var(--color-fill-3); box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1); @@ -133,6 +136,12 @@ margin: 0 0 4px; padding: 0 12px; + .aside-nav-item-link { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + &-active { font-weight: 500; background-color: var(--color-fill-2) !important; diff --git a/packages/arco-vue-docs/components/cell-code/index.vue b/packages/arco-vue-docs/components/cell-code/index.vue index 4eeec3726..6f5da8246 100644 --- a/packages/arco-vue-docs/components/cell-code/index.vue +++ b/packages/arco-vue-docs/components/cell-code/index.vue @@ -28,6 +28,16 @@ + + + + + { + if (contentRef.value?.textContent) { + openStackblitz(contentRef.value.textContent); + } + }; + const handleClickCodeSandbox = () => { if (contentRef.value?.textContent) { openCodeSandbox(contentRef.value.textContent); @@ -104,6 +121,7 @@ export default defineComponent({ t, handleClick, handleClickCopy, + handleClickStackblitz, handleClickCodeSandbox, contentRef, style, diff --git a/packages/arco-vue-docs/components/footer/index.vue b/packages/arco-vue-docs/components/footer/index.vue index 894ffa412..6d7802968 100644 --- a/packages/arco-vue-docs/components/footer/index.vue +++ b/packages/arco-vue-docs/components/footer/index.vue @@ -46,7 +46,7 @@ Powered by ArcoDesign diff --git a/packages/arco-vue-docs/components/token-table/token-table.vue b/packages/arco-vue-docs/components/token-table/token-table.vue new file mode 100644 index 000000000..bf7e88a4e --- /dev/null +++ b/packages/arco-vue-docs/components/token-table/token-table.vue @@ -0,0 +1,114 @@ + + + + + diff --git a/packages/arco-vue-docs/docs/faq.en-US.md b/packages/arco-vue-docs/docs/faq.en-US.md new file mode 100644 index 000000000..df9a67ce8 --- /dev/null +++ b/packages/arco-vue-docs/docs/faq.en-US.md @@ -0,0 +1,40 @@ +```yaml +meta: + type: Developer Guide +title: FAQ +description: Frequently Asked Questions in the Use of the Component Library +``` + +## Controlled and Uncontrolled + +The concept of `controlled` is used in the Arco Design Vue component library, as the name suggests, the display state of the component will always be the same as the incoming value. We recommend using input components in controlled mode. + +At this time, you can modify the value of `model-value` through `two-way binding (v-model)` or `change` event to ensure the same value inside and outside the component. + +In controlled mode, if you want to control the displayed value, you can use the `change` event to handle it. + +If we don't want to control the value of the component, we can use the uncontrolled mode, in which case the value of the component will be maintained inside the component, and the initial value can be set by `default-value`. In uncontrolled mode, you can get the value of the component through the `change` event. + +pay attention: +The `default-*` class attributes are used to set initial values in uncontrolled mode and do not affect subsequent states. When this value and the controlled value are used at the same time, the controlled value takes precedence. + + +## Update At Scroll + +By default, the drop-down menu will follow the change of the window scroll bar to update the position. If the component containing the drop-down menu is placed in a scrollable container, there will be a problem that the drop-down menu does not update the position when the container is scrolled. At this time, you can use the trigger inside the component. configuration, will `updateAtScroll` +Set to `true` to enable rolling update support. + +If there are many such scenes in the project, you can enable this property globally through the [ConfigProvider](/vue/component/config-provider) component. + +## The use of virtual lists + +Components that support setting up virtual lists [List](/vue/component/list) 、[Select](/vue/component/Select)、[Table](/vue/component/table)、[Tree](/vue/component/tree) set `virtual-list-props` Enable the virtual list function. + +The rendering of virtual list elements can be divided into two cases: **elements are highly fixed** and **elements are highly dynamic**. + +|Name|Description|Type|Default|version| +|---|---|---|:---:|:---| +|height|Viewable area height|`number \| string`|`-`|| +|fixedSize| Whether the elements in the list are of fixed size (height) |`boolean`|`false`|2.34.1| +|estimatedSize| Estimated size (height) [this value is not valid when `fixedSize` is `true`], and if it is closer to the average size, the scroll bar length will look more accurate. It is recommended to allocate the average calculated by yourself. The default dynamic height will use the average of the first Section |`number`|`-`|2.34.1| +|buffer| The number of elements mounted in advance outside the boundary of the viewport. (`Section = buffer * 3`) the default value is `10` (that is, Section defaults to 30). It is recommended to adjust the height of the list viewport. This value will affect performance. |`number`|`10`|2.34.1| diff --git a/packages/arco-vue-docs/docs/faq.zh-CN.md b/packages/arco-vue-docs/docs/faq.zh-CN.md new file mode 100644 index 000000000..66649756f --- /dev/null +++ b/packages/arco-vue-docs/docs/faq.zh-CN.md @@ -0,0 +1,40 @@ +```yaml +meta: + type: 开发指南 +title: 常见问题 +description: 组件库使用中的常见问题解答 +``` + +## 受控与非受控 + +Arco Design Vue 组件库中使用了 `受控` 的概念,正如其名,组件的显示状态将始终与传入值相同。我们推荐通过受控模式来使用输入组件。 + +这时可以通过 `双向绑定(v-model)` 或者 `change` 事件来修改 `model-value` 的值,来保证组件内部与外部的值相同。 + +在受控模式中,如果希望控制显示的值,可以使用 `change` 事件进行处理。 + +如果我们不希望控制组件的值,可以使用非受控模式,此时组件的值将维护在组件内部,可以通过 `default-value` 来设置初始值。非受控模式下可以通过 `change` 事件来获取组件的值。 + +特别注意: +`default-*` 类属性用来设置非受控模式下的初始值,不会影响后续的状态。此值与受控值同时使用时,受控值优先生效。 + + +## 下拉菜单的滚动跟随 + +下拉菜单默认会跟随 window 滚动条的变化更新位置,如果将包含下拉菜单的组件放置在一个可滚动的容器中,会出现容器滚动时下拉菜单没有更新位置的问题,此时可以通过组件内部的 trigger 配置,将 `updateAtScroll` +设置为 `true` 开启滚动更新的支持。 + +如果项目内此场景较多,可以通过 [ConfigProvider](/vue/component/config-provider) 组件全局开启此属性。 + +## 虚拟列表的使用 + +支持设置虚拟列表的组件 [List](/vue/component/list) 、[Select](/vue/component/Select)、[Table](/vue/component/table)、[Tree](/vue/component/tree) 设置 `virtual-list-props` 开启虚拟列表功能。 + +虚拟列表元素的渲染分为 **元素高度固定**,**元素高度动态** 两种情况。 + +|参数名|描述|类型|默认值|版本| +|---|---|---|:---:|:---| +|height|可视区域高度|`number \| string`|`-`|| +|fixedSize| 列表内元素是否为固定大小(高度)|`boolean`|`false`|2.34.1| +|estimatedSize| 预估大小(高度)[当 `fixedSize` 为 `true` 时,此值无效],如果它更接近平均大小,则滚动条长度看起来将更准确。建议分配自己计算的平均值。默认动态高度将使用首个 Section 的平均值|`number`|`-`|2.34.1| +|buffer|视口边界外提前挂载的元素数量。(`Section = buffer * 3`)默认值为 `10`(也就是 Section 默认为 30), 建议根据列表视口的高度做调整,此值太大会影响性能。|`number`|`10`|2.34.1| diff --git a/packages/arco-vue-docs/docs/i18n.en-US.md b/packages/arco-vue-docs/docs/i18n.en-US.md index 80c00df2c..7bf66dc91 100644 --- a/packages/arco-vue-docs/docs/i18n.en-US.md +++ b/packages/arco-vue-docs/docs/i18n.en-US.md @@ -5,7 +5,7 @@ title: Globalization description: All component texts use Chinese by default, and other languages can be used by setting. ``` -*Auto translate by google.* +_Auto translate by google._ Internationalization is achieved through the [ConfigProvider](/vue/component/config-provider) component. @@ -24,17 +24,31 @@ import enUS from '@arco-design/web-vue/es/locale/lang/en-us'; export default { data() { return { - enUS - } - } -} + enUS, + }; + }, +}; ``` ## Supported regional languages -|Language|Area code| -|---|---| -|Simple Chinese|zh-CN| -|English (US)|en-US| -|Japanese|ja-JP| +| Language | Area code | +| ------------------- | --------- | +| Simple Chinese | zh-CN | +| English (US) | en-US | +| Japanese | ja-JP | +| Traditional Chinese | zh-TW | +| Portuguese | pt-PT | +| Spanish | es-ES | +| Indonesian | id-ID | +| French, France | fr-FR | +| German, Germany | de-DE | +| Korean | ko-KR | +| Italian, Italy | it-IT | +| Thai | th-TH | +| Melayu (Malaysia) | ms-MY | +| Vietnamese | vi-VN | +| Khmer (Cambodia) | km-KH | +| Arabic (Egypt) | ar-EG | +| Russian (Russia) | ru-RU | diff --git a/packages/arco-vue-docs/docs/i18n.zh-CN.md b/packages/arco-vue-docs/docs/i18n.zh-CN.md index 6709db315..f2cee6cce 100644 --- a/packages/arco-vue-docs/docs/i18n.zh-CN.md +++ b/packages/arco-vue-docs/docs/i18n.zh-CN.md @@ -22,17 +22,31 @@ import enUS from '@arco-design/web-vue/es/locale/lang/en-us'; export default { data() { return { - enUS - } - } -} + enUS, + }; + }, +}; ``` ## 支持的地区语言 -|语言|地区编码| -|---|---| -|简体中文|zh-CN| -|英文|en-US| -|日文|ja-JP| +| 语言 | 地区编码 | +| -------------------- | -------- | +| 简体中文 | zh-CN | +| 英文 | en-US | +| 日文 | ja-JP | +| 繁体中文(中国台湾) | zh-TW | +| 葡萄牙语 | pt-PT | +| 西班牙语 | es-ES | +| 印度尼西亚语 | id-ID | +| 法语(法国) | fr-FR | +| 德语(德国) | de-DE | +| 韩语 | ko-KR | +| 意大利语(意大利) | it-IT | +| 马来语(马来西亚) | ms-MY | +| 泰语 | th-TH | +| 越南语 | vi-VN | +| 高棉语(柬埔寨) | km-KH | +| 阿拉伯语(埃及) | ar-EG | +| 俄语(俄罗斯) | ru-RU | diff --git a/packages/arco-vue-docs/docs/pro/build.en-US.md b/packages/arco-vue-docs/docs/pro/build.en-US.md index c8de2c2c3..120d357ae 100644 --- a/packages/arco-vue-docs/docs/pro/build.en-US.md +++ b/packages/arco-vue-docs/docs/pro/build.en-US.md @@ -43,4 +43,4 @@ export default defineConfig({ }); ``` -For more specific configuration details, please refer to [vite](https://www.vitejs.net/)[Official Website](https://www.vitejs.net/). +For more specific configuration details, please refer to [vite](https://vitejs.dev/)[Official Website](https://vitejs.dev/). diff --git a/packages/arco-vue-docs/docs/pro/build.zh-CN.md b/packages/arco-vue-docs/docs/pro/build.zh-CN.md index 4937cafc3..6de69afbd 100644 --- a/packages/arco-vue-docs/docs/pro/build.zh-CN.md +++ b/packages/arco-vue-docs/docs/pro/build.zh-CN.md @@ -41,4 +41,4 @@ export default defineConfig({ }); ``` -更多具体配置详见[vite](https://www.vitejs.net/)[官网](https://www.vitejs.net/)。 +更多具体配置详见[vite](https://vitejs.dev/)[官网](https://vitejs.dev/)。 diff --git a/packages/arco-vue-docs/docs/pro/directory.en-US.md b/packages/arco-vue-docs/docs/pro/directory.en-US.md index 50b7aa9ac..3b4347b55 100644 --- a/packages/arco-vue-docs/docs/pro/directory.en-US.md +++ b/packages/arco-vue-docs/docs/pro/directory.en-US.md @@ -36,4 +36,4 @@ description: The organizational structure of the project file. └── tsconfig.json ``` -ps: Filter description +ps: [Filter description](https://v3-migration.vuejs.org/breaking-changes/filters.html) diff --git a/packages/arco-vue-docs/docs/pro/directory.zh-CN.md b/packages/arco-vue-docs/docs/pro/directory.zh-CN.md index a83f7e8ca..ee884afef 100644 --- a/packages/arco-vue-docs/docs/pro/directory.zh-CN.md +++ b/packages/arco-vue-docs/docs/pro/directory.zh-CN.md @@ -34,4 +34,4 @@ description: 项目文件的组织结构 └── tsconfig.json ``` -ps: 过滤器说明 +ps:[过滤器说明](https://v3-migration.vuejs.org/breaking-changes/filters.html) diff --git a/packages/arco-vue-docs/docs/pro/faq.en-US.md b/packages/arco-vue-docs/docs/pro/faq.en-US.md new file mode 100644 index 000000000..21189579a --- /dev/null +++ b/packages/arco-vue-docs/docs/pro/faq.en-US.md @@ -0,0 +1,120 @@ +```yaml +meta: + type: Arco Pro +title: FAQ +description: Arco Design Pro Vue FAQ Collection +``` + +*Auto translate by google.* + +## Initialization + +### 1. Initialization of arco-cli failed + +![](http://p3-armor.byteimg.com/tos-cn-i-49unhts6dw/iShot_2022-05-26_16.12.14.png~tplv-49unhts6dw-image.image) + +If the dependency installation fails, go to the directory of the initialization project and execute the npm install or yarn install installation operation again. + +## Development + +### 1. How to set highlight for menu items? +See [Routes and menu](/vue/docs/pro/routes-and-menu) for details + +### 2.Menu hides children +See [Routes and menu](/vue/docs/pro/routes-and-menu) for details + +### 3.Configure first-level menu items + +Due to the architecture, configuring a single first-level menu item requires the cooperation of multiple menu configuration items. See [#85]([/vue/docs/pro/routes-and-menu](https://github.com/arco-design/arco-design-pro-vue/issues/85#issuecomment-1142289501)) for details + +### 4.Using jsx in Vue3 + +详见 [babel-plugin-jsx](https://github.com/vuejs/babel-plugin-jsx) + +### 5.Cross-domain proxy +See [vite configuration](https://cn.vitejs.dev/config/#server-open) for details + +### 6.Code cannot be pushed + +Because of the use of [husky](https://github.com/typicode/husky), the hook [normalizes](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.greljkmo14y0) the uploaded commit information check. + +Please follow the documentation for git commit information normalization. + +If you do not need this function, you can delete husky related files and corresponding scripts. (**Not recommended**) + +## Build + +### 1. Rollup failed to resolve import "XXXXXX/node_modules/@arco-design/web-vue/es/xxx-xxx/style/css.js” + +The error comes from loading the build plugin (config/plugin/styleImport.ts) on demand. There are several reasons for this problem. + +- The new version of the component library has added components. + +- The component itself is missing and not added. + +- The unplugin-vue-components dependency library version is too low. + +Solution please [move](https://github.com/arco-design/arco-design-pro-vue/issues/71). + +### 2. Executing build TS type error + +![](http://p3-armor.byteimg.com/tos-cn-i-49unhts6dw/iShot_2022-05-26_17.36.59.png~tplv-49unhts6dw-image.image) + +Reason for error: + +- There is a problem with the spelling itself. + +- The new version of the component library has made changes to the type declaration. + +Solution: + +- Follow the type hints to make changes. + +- Turn off vue-tsc checks. (**Not recommended**) + +```ts +// package.json + + "build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts" // before fixing + + "build": "vite build --config ./config/vite.config.prod.ts" // 修改后 +``` + +### 3. Vue-tsc builds slowly + +- Reinstall vue-tsc to the latest version. + +```shell +# npm +npm install vue-tsc@latest +# yarn +yarn add vue-tsc@latest +``` + +- Turn off vue-tsc checks. (**Not recommended**) + + + +### 4. Preview the packaged project + +```shell +# npm +npm run preview +# yarn +yarn preview +``` +**PS: The preview command will execute the build operation first in Pro.** + +## Deployment + +### 1. After the page is deployed successfully, refresh the 404 page + +[Moving to Vue Router](https://router.vuejs.org/guide/essentials/history-mode.html) + +## Other + +### 1. Can the developed projects be upgraded to the latest version? + +Arco Pro, as a project template, does not have the ability to smoothly upgrade to the latest version. + +If you need a new version capability, you can initialize a project and copy your business code into it, and then make the corresponding changes. diff --git a/packages/arco-vue-docs/docs/pro/faq.zh-CN.md b/packages/arco-vue-docs/docs/pro/faq.zh-CN.md new file mode 100644 index 000000000..6a6379141 --- /dev/null +++ b/packages/arco-vue-docs/docs/pro/faq.zh-CN.md @@ -0,0 +1,118 @@ +```yaml +meta: + type: Arco Pro 最佳实践 +title: 常见问题 +description: Arco Design Pro Vue 常见问题合集 +``` + +## 初始化 + +### 一、arco-cli初始化失败 + +![](http://p3-armor.byteimg.com/tos-cn-i-49unhts6dw/iShot_2022-05-26_16.12.14.png~tplv-49unhts6dw-image.image) + +依赖安装失败的问题,进入到初始化项目的目录,重新执行执行npm install 或 yarn install安装操作即可。 + +## 开发相关 + +### 一、菜单项如何设置高亮? +详见 [路由和菜单](/vue/docs/pro/routes-and-menu) + +### 二、菜单隐藏子项 +详见 [路由和菜单](/vue/docs/pro/routes-and-menu) + +### 三、配置一级菜单项 + +因为架构缘故,配置单独的一级菜单项,需要多个菜单配置项进行配合。详见 [#85]([/vue/docs/pro/routes-and-menu](https://github.com/arco-design/arco-design-pro-vue/issues/85#issuecomment-1142289501)) + +### 四、Vue3 中使用 jsx 写法 + +详见 [babel-plugin-jsx](https://github.com/vuejs/babel-plugin-jsx) + +### 五、跨域代理 +详见 [vite配置](https://cn.vitejs.dev/config/#server-open) + +### 六、代码无法提交 + +因为使用了 [husky](https://github.com/typicode/husky) 的缘故,钩子对上传的commit信息进行[规范化](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.greljkmo14y0)校验。 + +请按照文档进行git commit信息规范化。 + +如果不需要该功能,可以删除掉husky相关文件和对应脚本。(**不推荐**) + + +## 构建相关 + +### 一. Rollup failed to resolve import "XXXXXX/node_modules/@arco-design/web-vue/es/xxx-xxx/style/css.js” + +报错源于按需加载构建插件(config/plugin/styleImport.ts),该问题产生分别有以下几个原因 + +- 新版组件库新增了组件。 + +- 组件本身遗漏未进行添加。 + +- unplugin-vue-components 依赖库版本过低。 + +解决方法请 [移步](https://github.com/arco-design/arco-design-pro-vue/issues/71)。 + +### 二、执行构建TS类型报错 + +![](http://p3-armor.byteimg.com/tos-cn-i-49unhts6dw/iShot_2022-05-26_17.36.59.png~tplv-49unhts6dw-image.image) + +报错原因: + +- 写法本身存在问题。 + +- 新版组件库对类型声明进行了变更修改。 + +解决方法: + +- 按照类型提示进行修改。 + +- 关闭vue-tsc检查。(**不推荐**) + +```ts +// package.json + + "build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts" // 修改前 + + "build": "vite build --config ./config/vite.config.prod.ts" // 修改后 +``` + +### 三、vue-tsc构建缓慢 + +- 重新安装vue-tsc至最新版本。 + +```shell +# npm +npm install vue-tsc@latest +# yarn +yarn add vue-tsc@latest +``` + +- 关闭vue-tsc检查。(**不推荐**) + + +### 四、预览打包项目 + +```shell +# npm +npm run preview +# yarn +yarn preview +``` +**PS: 该预览命令在Pro中会先执行build操作。** + +## 部署相关 + +### 一、页面部署成功后刷新出现404页面 + +[移步 Vue Router](https://router.vuejs.org/guide/essentials/history-mode.html) + +## 其它 + +### 一、已经开发的项目是否能够升级到最新版? + +Arco Pro作为一个项目模板,不具备平滑升级过渡到最新版本的能力。 + +如需新版本能力,可以初始化一个项目后将自己的业务代码拷贝进去,在进行相应的更改即可。 diff --git a/packages/arco-vue-docs/docs/pro/npm-scripts.en-US.md b/packages/arco-vue-docs/docs/pro/npm-scripts.en-US.md index e548fb4af..21f3770b0 100644 --- a/packages/arco-vue-docs/docs/pro/npm-scripts.en-US.md +++ b/packages/arco-vue-docs/docs/pro/npm-scripts.en-US.md @@ -12,6 +12,8 @@ description: package.json script presets convenient and practical commands ``` ├── README.md ├── config +│ ├── plugin # vite plugin +│ ├── vite.config.base.ts # Basic Environment Configuration │ ├── vite.config.dev.ts # Development environment configuration │ ├── vite.config.prod.ts # Production environment configuration └── package.json @@ -39,12 +41,12 @@ The command invoked is as follows npm run build ``` -The commands to be called are as follows. According to actual needs, please refer to [vite](https://www.vitejs.net/)[Official Website](https://www.vitejs.net/) for output configuration. +The commands to be called are as follows. According to actual needs, please refer to [vite](https://vitejs.dev/)[Official Website](https://vitejs.dev/) for output configuration. ```json { "scripts": { - "dev": "vite --config ./config/vite.config.dev.ts", + "build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts", } } ``` diff --git a/packages/arco-vue-docs/docs/pro/npm-scripts.zh-CN.md b/packages/arco-vue-docs/docs/pro/npm-scripts.zh-CN.md index 704a96a74..4d079346c 100644 --- a/packages/arco-vue-docs/docs/pro/npm-scripts.zh-CN.md +++ b/packages/arco-vue-docs/docs/pro/npm-scripts.zh-CN.md @@ -10,6 +10,8 @@ description: package.json script 预置方便实用的命令 ``` ├── README.md ├── config +│ ├── plugin # vite插件 +│ ├── vite.config.base.ts # 基础环境配置 │ ├── vite.config.dev.ts # 开发环境配置 │ ├── vite.config.prod.ts # 生产环境配置 └── package.json @@ -37,12 +39,12 @@ npm run dev npm run build ``` -调用的命令如下,可以根据实际需要,查阅[vite](https://www.vitejs.net/)[官网](https://www.vitejs.net/),进行输出配置。 +调用的命令如下,可以根据实际需要,查阅[vite](https://vitejs.dev/)[官网](https://vitejs.dev/),进行输出配置。 ```json { "scripts": { - "dev": "vite --config ./config/vite.config.dev.ts", + "build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts", } } ``` diff --git a/packages/arco-vue-docs/docs/pro/permission.en-US.md b/packages/arco-vue-docs/docs/pro/permission.en-US.md index 09c6b4e78..879fcff50 100644 --- a/packages/arco-vue-docs/docs/pro/permission.en-US.md +++ b/packages/arco-vue-docs/docs/pro/permission.en-US.md @@ -12,12 +12,12 @@ The common front-end permission control in the middle and background can be roug 1. Menu permission control, manage permissions for a certain menu/page , you can see this page, otherwise it will show no permission. -![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/116622141d7b228ad2259c81cd32d095.gif~tplv-uwbnlip3yd-3.awebp) +[//]: # (![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/116622141d7b228ad2259c81cd32d095.gif~tplv-uwbnlip3yd-3.awebp)) 2. Menu permission control, manage permissions for a certain menu/page , you can see this page, otherwise it will show no permission. -![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/7b410fa5dad6e47665c264fae910c0c8.gif~tplv-uwbnlip3yd-3.awebp) +[//]: # (![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/7b410fa5dad6e47665c264fae910c0c8.gif~tplv-uwbnlip3yd-3.awebp)) ## Usage @@ -70,7 +70,7 @@ Arco Design Pro encapsulates the `v-permission` directives . Can be used on comp As follows, place the authorized role types in the array. ```vue - + Delete ``` @@ -192,4 +192,4 @@ export default { checkPermission(el, binding); }, }; -``` \ No newline at end of file +``` diff --git a/packages/arco-vue-docs/docs/pro/permission.zh-CN.md b/packages/arco-vue-docs/docs/pro/permission.zh-CN.md index ea54b7015..e3c29510c 100644 --- a/packages/arco-vue-docs/docs/pro/permission.zh-CN.md +++ b/packages/arco-vue-docs/docs/pro/permission.zh-CN.md @@ -11,11 +11,11 @@ description: 权限控制是中后台场景非常常见的基础功能,在 v2. 1. 菜单权限控制,针对**某个菜单/页面**进行权限管理,有则能看到此页面,否则将展示无权限。 -![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/116622141d7b228ad2259c81cd32d095.gif~tplv-uwbnlip3yd-3.awebp) +[//]: # (![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/116622141d7b228ad2259c81cd32d095.gif~tplv-uwbnlip3yd-3.awebp)) 2. **针对某页面中的某触发器**进行权限管理,例如对列表页的某一条数据进行删除操作。有权限情况下则展示删除按钮。 -![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/7b410fa5dad6e47665c264fae910c0c8.gif~tplv-uwbnlip3yd-3.awebp) +[//]: # (![](http://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/7b410fa5dad6e47665c264fae910c0c8.gif~tplv-uwbnlip3yd-3.awebp)) ## 使用 @@ -67,7 +67,7 @@ Arco Design Pro 封装了 `v-permission` 指令。可在组件或者原生元素 如下,将有权限的角色类型放置在数组中即可。 ```vue - + 删除 ``` diff --git a/packages/arco-vue-docs/docs/pro/routes-and-menu.en-US.md b/packages/arco-vue-docs/docs/pro/routes-and-menu.en-US.md index 7405ada7a..044dd23aa 100644 --- a/packages/arco-vue-docs/docs/pro/routes-and-menu.en-US.md +++ b/packages/arco-vue-docs/docs/pro/routes-and-menu.en-US.md @@ -9,168 +9,76 @@ description: Route and menu generation The routing is usually tied to the menu. In order to reduce the amount of maintenance, we directly generate the menu through the routing table. -## Routing +## Router -First of all, you need to understand the routing table configuration +First, you need to understand the configuration of the routing table. For basic routing configuration, please refer to the official documentation of [Vue-Router](https://router.vuejs.org/) ```ts -import {createRouter, createWebHistory} from'vue-router'; - -import Login from'./modules/login'; -import PageLayout from'@/layout/page-layout.vue'; -import appRoutes from'./modules'; - -const router = createRouter({ - history: createWebHistory(), - routes: [ - Login, - { - path:'/app', - component: PageLayout, - children: appRoutes, - }, - ], -}); -``` - -example - - ```ts -// In this example, the final path of the page is app/dashboard/workplace +// In this example, the final path to the page is /dashboard/workplace export default { - path:'dashboard', - name:'dashboard', // route name + path: 'dashboard', + name: 'dashboard', component: () => import('@/views/dashboard/index.vue'), meta: { - locale:'menu.dashboard', // First level menu name (language pack key name) - requiresAuth: true, // Whether authentication is required - icon:'icon-dashboard', // menu configuration icon + locale: 'menu.dashboard', + requiresAuth: true, + icon: 'icon-dashboard', }, children: [ { - path:'workplace', - name:'workplace', + path: 'workplace', + name: 'workplace', component: () => import('@/views/dashboard/workplace/index.vue'), meta: { - locale:'menu.dashboard.workplace', // secondary menu name (language pack key name) - requiresAuth: true, // Whether authentication is required - roles: ['admin'], // role - hideInMenu: false, // Hide menu items + locale: 'menu.dashboard.workplace', + requiresAuth: true, + roles: ['admin'], + hideInMenu: false, }, }, ], }; ``` -## menu +Route `Meta` meta information -The menu generation process can be found in the menu component: +| Key | Description | Type | default| +| ------------- | ------------- | -------------- | -------------- | +roles | Configure the role that can access the page. If it does not match, it will be forbidden to access the routing page | string[]| - | +requiresAuth | Whether login authentication is required | boolean| false | +icon | Menu configuration icon | string| - | +locale | First-level menu name (language pack key name) | string| - | +hideInMenu | Whether to hide this item in the left menu | boolean| - | +hideChildrenInMenu | Force single item to be displayed in left menu | boolean| - | +activeMenu | If set name, the menu will be highlighted according to the name you set | string| - | +order | Sort routing menu items. If this value is set, the higher the value, the higher the front. | number| - | +noAffix | If set to true, the tabs will not be added to the tab-bar. | boolean| - | +ignoreCache | If set to true the page will not be cached | boolean| - | -- Get the routing tree with routing information through router.getRoutes(). +## Menu - ```ts -// components/menu/index.vue -import { defineComponent } from 'vue'; -import { useRouter } from 'vue-router'; -export default defineComponent({ - setup() { - const router = useRouter(); - const appRoute = computed(() => { - return router - .getRoutes() - .find((el) => el.name === 'root') as RouteRecordNormalized; - }); - ...... - }, -}); -``` +Front-end menu generation process: -- The route tree obtained in the previous step is used for permission filtering to generate the menu tree for rendering. - -```tsx -const menuTree = computed(() => { - const copyRouter = JSON.parse(JSON.stringify(appRoute.value.children)); - function travel(_routes: RouteRecordRaw[], layer: number) { - if (!_routes) return null; - const collector: any = _routes.map((element) => { - // no access - if (!permission.accessRouter(element)) { - return null; - } - - // leaf node - if (!element.children) { - return element; - } - - // Associated child node - const subItem = travel(element.children, layer); - if (subItem.length) { - element.children = subItem; - return element; - } - // the else logic - if (layer > 1) { - element.children = subItem; - return element; - } - return null; - }); - return collector.filter(Boolean); - } - return travel(copyRouter, 0); -}); -``` +- Through the computed property of [appRoute](https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/components/menu/useMenuTree.ts#L10), a routing tree with routing information is obtained. -- Recursively generate menus by rendering the menu tree. (This example uses jsx syntax) - -```tsx -const renderSubMenu = () => { - function travel(_route: RouteRecordRaw[], nodes = []) { - if (_route) { - _route.forEach((element) => { - // This is demo, modify nodes as needed - const icon = element?.meta?.icon ? `<${element?.meta?.icon}/>` : ``; - const subMenuItem = ( - h(compile(icon)), - title: () => h(compile(t(element?.meta?.locale || ''))), - }} - > - {element?.children?.map((elem) => { - return ( - goto(elem)}> - {t(elem?.meta?.locale || '')} - {travel(elem.children ?? [])} - - ); - })} - - ); - nodes.push(subMenuItem as never); - }); - } - return nodes; - } - return travel(menuTree.value); // recursion menuTree -}; -return () => ( - - {renderSubMenu()} - -); -``` +- Use the routing information obtained in the previous step to filter permissions to generate a menu [tree for rendering](https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/components/menu/useMenuTree.ts#L23). + +- Recursively generate menus by [rendering]((https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/components/menu/index.vue#L48)) the menu tree. + +Server menu generation process: + +- Add the [action](https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/store/modules/app/index.ts#L47) of the api request to the Store to obtain the routing configuration of the server. + +- Add the action of the api request to the Store to obtain the routing configuration of the server. + +- Through the computed property of [appRoute](https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/components/menu/useMenuTree.ts#L10), a routing tree with routing information is obtained. + +- Use the routing information obtained in the previous step to filter permissions to generate a menu [tree for rendering](https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/components/menu/useMenuTree.ts#L23). + +- Recursively generate menus by [rendering]((https://github.com/arco-design/arco-design-pro-vue/blob/23a21ceb939e1e2334e8c3b0f1f8a8049503ad9d/arco-design-pro-vite/src/components/menu/index.vue#L48)) the menu tree. + +**Note: Compared with the local menu generation process, the server menu only has more interface requests and server routing configuration information storage steps.** +**Individual companies may have corresponding authority management systems to generate corresponding server-side routing configuration information and store them for front-end interface retrieval. However, the overall situation is similar, as long as the routing configuration information returned by the back-end interface conforms to the above routing configuration specifications and can be correctly parsed by the front-end** ## Steps to add a new menu item @@ -179,9 +87,7 @@ After understanding the routing and menu generation, you can configure a new men - Add a monitor folder in views/dashboard and add index.vue to it ```ts - -import {defineComponent} from'vue'; -export default defineComponent({}) + +``` ### IconFontOptions @@ -18,12 +36,16 @@ title: |src|iconfont.cn 项目生成的在线 js 文件地址|`string`|`-`| |extraProps|传递给内部 Icon 组件的额外属性|`object`|`-`| +在 `src` 都设置有效的情况下,组件在渲染前会自动引入 [iconfont.cn](http://iconfont.cn/ "_blank") 项目中的图标符号集,无需手动引入。 +见 [iconfont.cn](https://www.iconfont.cn/help/detail?spm=a313x.7781069.1998910419.15&helptype=code "_blank") 使用帮助: 查看如何生成 js 地址。 + ### `` Props |Attribute|Description|Type|Default| |---|---|---|:---:| |type|图标类型|`string`|`-`| |size|大小|`number` \| `string`|`-`| +|rotate|旋转角度|`number`|`-`| |spin|是否旋转|`boolean`|`false`| --- @@ -31,7 +53,7 @@ title: ## en-US Items from iconfont.cn can be added to the `type` of the `Icon` component. -Call the tool method `Icon.addFromIconfontCn` exposed by the component library, and pass the code that exports the symbol in iconfont.cn into the src attribute to load the project icon library. +Call the tool method `Icon.addFromIconfontCn` exposed by the component library, and pass the code that exports the symbol in [iconfont.cn](http://iconfont.cn/ "_blank") into the src attribute to load the project icon library. The idea is to create a component that uses the `` tag to render the icon. ** Currently does not support on-demand loading ** @@ -42,12 +64,16 @@ The idea is to create a component that uses the `` tag to render the icon. |src|The online js file address generated by the iconfont.cn project|`string`|`-`| |extraProps|Extra properties passed to the inner Icon component|`object`|`-`| +When both `src` settings are valid, the component automatically introduces the icon symbol set in the iconfont.cn project before rendering, eliminating the need for manual introduction. +See [iconfont.cn](https://www.iconfont.cn/help/detail?spm=a313x.7781069.1998910419.15&helptype=code "_blank") for help on how to generate js addresses. + ### `` Props |Attribute|Description|Type|Default| |---|---|---|:---:| |type|Icon type|`string`|`-`| |size|Size|`number` \| `string`|`-`| +|rotate|Rotate angle|`number`|`-`| |spin|Whether to spin|`boolean`|`false`| --- diff --git a/packages/arco-vue-docs/pages/icon/__demo__/spin.md b/packages/arco-vue-docs/pages/icon/__demo__/spin.md index 5511b7142..7b40e13fb 100644 --- a/packages/arco-vue-docs/pages/icon/__demo__/spin.md +++ b/packages/arco-vue-docs/pages/icon/__demo__/spin.md @@ -6,13 +6,13 @@ title: ## zh-CN -通过设置 `spin`,可以将图标设置为旋转状态。 +通过设置 `spin`,可以将图标设置为旋转状态。也可以使用 `rotate` 自定义旋转角度。 --- ## en-US -By setting `spin`, the icon can be set to a rotating state. +By setting `spin`, the icon can be set to a rotating state. You can also use `rotate` to customize the rotation angle. --- @@ -21,6 +21,7 @@ By setting `spin`, the icon can be set to a rotating state. + ``` diff --git a/packages/arco-vue-docs/pages/icon/icon-demo.vue b/packages/arco-vue-docs/pages/icon/icon-demo.vue index dcc181c7e..7066c4939 100644 --- a/packages/arco-vue-docs/pages/icon/icon-demo.vue +++ b/packages/arco-vue-docs/pages/icon/icon-demo.vue @@ -1,68 +1,119 @@ + + diff --git a/packages/arco-vue-docs/pages/token/tokens.ts b/packages/arco-vue-docs/pages/token/tokens.ts new file mode 100644 index 000000000..8c84d262b --- /dev/null +++ b/packages/arco-vue-docs/pages/token/tokens.ts @@ -0,0 +1,761 @@ +export const tokens = [ + { + name: '主色', + nameEN: 'Primary', + type: 'color', + tokens: [ + { + name: 'primary-6', + desc: '常规', + descEN: 'Normal', + value: 'rgb(var(--arcoblue-6))', + cssvar: true, + }, + { + name: 'primary-5', + desc: '悬浮(hover)', + descEN: 'Hover', + value: 'rgb(var(--arcoblue-5))', + cssvar: true, + }, + { + name: 'primary-7', + desc: '点击(click)', + descEN: 'Click', + value: 'rgb(var(--arcoblue-7))', + cssvar: true, + }, + { + name: 'primary-4', + desc: '特殊场景', + descEN: 'Special scene', + value: 'rgb(var(--arcoblue-4))', + cssvar: true, + }, + { + name: 'primary-3', + desc: '一般禁用', + descEN: 'Normally disabled', + value: 'rgb(var(--arcoblue-3))', + cssvar: true, + }, + { + name: 'primary-2', + desc: '文字禁用', + descEN: 'Text disabled', + value: 'rgb(var(--arcoblue-2))', + cssvar: true, + }, + { + name: 'primary-1', + desc: '浅色/白底悬浮', + descEN: 'Light/white suspension', + value: 'rgb(var(--arcoblue-1))', + cssvar: true, + }, + ], + }, + { + name: '成功色', + nameEN: 'Success', + type: 'color', + tokens: [ + { + name: 'success-6', + desc: '常规', + descEN: 'Normal', + value: 'rgb(var(--green-6))', + cssvar: true, + }, + { + name: 'success-5', + desc: '悬浮(hover)', + descEN: 'Hover', + value: 'rgb(var(--green-5))', + cssvar: true, + }, + { + name: 'success-7', + desc: '点击(click)', + descEN: 'Click', + value: 'rgb(var(--green-7))', + cssvar: true, + }, + { + name: 'success-4', + desc: '特殊场景', + descEN: 'Special scene', + value: 'rgb(var(--green-4))', + cssvar: true, + }, + { + name: 'success-3', + desc: '一般禁用', + descEN: 'Normally disabled', + value: 'rgb(var(--green-3))', + cssvar: true, + }, + { + name: 'success-2', + desc: '文字禁用', + descEN: 'Text disabled', + value: 'rgb(var(--green-2))', + cssvar: true, + }, + { + name: 'success-1', + desc: '浅色/白底悬浮', + descEN: 'Light/white suspension', + value: 'rgb(var(--green-1))', + cssvar: true, + }, + ], + }, + { + name: '警示色', + nameEN: 'Warning', + type: 'color', + tokens: [ + { + name: 'warning-6', + desc: '常规', + descEN: 'Normal', + value: 'rgb(var(--orange-6))', + cssvar: true, + }, + { + name: 'warning-5', + desc: '悬浮(hover)', + descEN: 'Hover', + value: 'rgb(var(--orange-5))', + cssvar: true, + }, + { + name: 'warning-7', + desc: '点击(click)', + descEN: 'Click', + value: 'rgb(var(--orange-7))', + cssvar: true, + }, + { + name: 'warning-4', + desc: '特殊场景', + descEN: 'Special scene', + value: 'rgb(var(--orange-4))', + cssvar: true, + }, + { + name: 'warning-3', + desc: '一般禁用', + descEN: 'Normally disabled', + value: 'rgb(var(--orange-3))', + cssvar: true, + }, + { + name: 'warning-2', + desc: '文字禁用', + descEN: 'Text disabled', + value: 'rgb(var(--orange-2))', + cssvar: true, + }, + { + name: 'warning-1', + desc: '浅色/白底悬浮', + descEN: 'Light/white suspension', + value: 'rgb(var(--orange-1))', + cssvar: true, + }, + ], + }, + { + name: '错误色', + nameEN: 'Danger', + type: 'color', + tokens: [ + { + name: 'danger-6', + desc: '常规', + descEN: 'Normal', + value: 'rgb(var(--red-6))', + cssvar: true, + }, + { + name: 'danger-5', + desc: '悬浮(hover)', + descEN: 'Hover', + value: 'rgb(var(--red-5))', + cssvar: true, + }, + { + name: 'danger-7', + desc: '点击(click)', + descEN: 'Click', + value: 'rgb(var(--red-7))', + cssvar: true, + }, + { + name: 'danger-4', + desc: '特殊场景', + descEN: 'Special scene', + value: 'rgb(var(--red-4))', + cssvar: true, + }, + { + name: 'danger-3', + desc: '一般禁用', + descEN: 'Normally disabled', + value: 'rgb(var(--red-3))', + cssvar: true, + }, + { + name: 'danger-2', + desc: '文字禁用', + descEN: 'Text disabled', + value: 'rgb(var(--red-2))', + cssvar: true, + }, + { + name: 'danger-1', + desc: '浅色/白底悬浮', + descEN: 'Light/white suspension', + value: 'rgb(var(--red-1))', + cssvar: true, + }, + ], + }, + { + name: '链接色', + nameEN: 'Link', + type: 'color', + tokens: [ + { + name: 'link-6', + desc: '常规', + descEN: 'Normal', + value: 'rgb(var(--arcoblue-6))', + cssvar: true, + }, + { + name: 'link-5', + desc: '悬浮(hover)', + descEN: 'Hover', + value: 'rgb(var(--arcoblue-5))', + cssvar: true, + }, + { + name: 'link-7', + desc: '点击(click)', + descEN: 'Click', + value: 'rgb(var(--arcoblue-7))', + cssvar: true, + }, + { + name: 'link-4', + desc: '特殊场景', + descEN: 'Special scene', + value: 'rgb(var(--arcoblue-4))', + cssvar: true, + }, + { + name: 'link-3', + desc: '一般禁用', + descEN: 'Normally disabled', + value: 'rgb(var(--arcoblue-3))', + cssvar: true, + }, + { + name: 'link-2', + desc: '文字禁用', + descEN: 'Text disabled', + value: 'rgb(var(--arcoblue-2))', + cssvar: true, + }, + { + name: 'link-1', + desc: '浅色/白底悬浮', + descEN: 'Light/white suspension', + value: 'rgb(var(--arcoblue-1))', + cssvar: true, + }, + ], + }, + { + name: '边框颜色', + nameEN: 'Border Color', + type: 'color', + tokens: [ + { + name: 'color-border-1', + desc: '浅色', + descEN: 'Light color', + value: 'var(--color-neutral-2)', + cssvar: true, + }, + { + name: 'color-border-2', + desc: '一般', + descEN: 'Normal', + value: 'var(--color-neutral-3)', + cssvar: true, + }, + { + name: 'color-border-3', + desc: '深/悬浮', + descEN: 'Deep/Hover', + value: 'var(--color-neutral-4)', + cssvar: true, + }, + { + name: 'color-border-4', + desc: '重/按钮描边', + descEN: 'Heavy/Button Border', + value: 'var(--color-neutral-6)', + cssvar: true, + }, + ], + }, + { + name: '填充颜色', + nameEN: 'Fill Color', + type: 'color', + tokens: [ + { + name: 'color-fill-1', + desc: '浅/禁用', + descEN: 'Light/Disabled', + value: 'var(--color-neutral-1)', + darkValue: 'fade(#FFF, 4%)', + cssvar: true, + }, + { + name: 'color-fill-2', + desc: '常规/白底悬浮', + descEN: 'Normal/White Hover', + value: 'var(--color-neutral-2)', + darkValue: 'fade(#FFF, 8%)', + cssvar: true, + }, + { + name: 'color-fill-3', + desc: '深/灰底悬浮', + descEN: 'Deep/Gray Hover', + value: 'var(--color-neutral-3)', + darkValue: 'fade(#FFF, 12%)', + cssvar: true, + }, + { + name: 'color-fill-4', + desc: '重/特殊场景', + descEN: 'Heavy/Special scene', + value: 'var(--color-neutral-4)', + darkValue: 'fade(#FFF, 16%)', + cssvar: true, + }, + ], + }, + { + name: '文字颜色', + type: 'color', + tokens: [ + { + name: 'color-text-1', + desc: '强调/正文标题', + descEN: 'Emphasis/Body Title', + value: 'var(--color-neutral-10)', + darkValue: 'fade(#FFF, 90%)', + cssvar: true, + }, + { + name: 'color-text-2', + desc: '次强调/正文标题', + descEN: 'Sub-Emphasis/Body Title', + value: 'var(--color-neutral-8)', + darkValue: 'fade(#FFF, 70%)', + cssvar: true, + }, + { + name: 'color-text-3', + desc: '次要信息', + descEN: 'Secondary information', + value: 'var(--color-neutral-6)', + darkValue: 'fade(#FFF, 50%)', + cssvar: true, + }, + { + name: 'color-text-4', + desc: '置灰信息', + descEN: 'Grayed out information', + value: 'var(--color-neutral-4)', + darkValue: 'fade(#FFF, 30%)', + cssvar: true, + }, + ], + }, + { + name: '背景颜色', + nameEN: 'Background Color', + type: 'color', + tokens: [ + { + name: 'color-bg-1', + desc: '整体背景色', + descEN: 'Overall background color', + value: '#FFF', + darkValue: '#17171A', + cssvar: true, + }, + { + name: 'color-bg-2', + desc: '一级容器背景', + descEN: 'Primary container background', + value: '#FFF', + darkValue: '#232324', + cssvar: true, + }, + { + name: 'color-bg-3', + desc: '二级容器背景', + descEN: 'Secondary container background', + value: '#FFF', + darkValue: '#2A2A2B', + cssvar: true, + }, + { + name: 'color-bg-4', + desc: '三级容器背景', + descEN: 'Tertiary container background', + value: '#FFF', + darkValue: '#313132', + cssvar: true, + }, + { + name: 'color-bg-5', + desc: '下拉弹出框、Tooltip 背景颜色', + descEN: 'Popup, Tooltip background color', + value: '#FFF', + darkValue: '#373739', + cssvar: true, + }, + { + name: 'color-bg-white', + desc: '白色背景', + descEN: 'White background', + value: '#FFF', + darkValue: '#F6F6F6', + cssvar: true, + }, + ], + }, + // size + { + name: '字体大小', + nameEN: 'Font Size', + type: 'size', + tokens: [ + { + name: 'font-size-body-3', + desc: '正文-常规', + descEN: 'Body - General', + value: '14px', + }, + { + name: 'font-size-body-2', + desc: '正文-常规-小', + descEN: 'Body - Regular - Small', + value: '13px', + }, + { + name: 'font-size-body-1', + desc: '辅助文案/次要文案', + descEN: 'Auxiliary Copywriting/Secondary Copywriting', + value: '12px', + }, + { + name: 'font-size-caption', + desc: '水印文本', + descEN: 'Watermark text', + value: '12px', + }, + { + name: 'font-size-title-1', + desc: '标题-小', + descEN: 'Title - Small', + value: '16px', + }, + { + name: 'font-size-title-2', + desc: '标题-中', + descEN: 'Title - Medium', + value: '20px', + }, + { + name: 'font-size-title-3', + desc: '标题-大', + descEN: 'Title - Large', + value: '24px', + }, + { + name: 'font-size-display-1', + desc: '运营标题-小', + descEN: 'Operational Title - Small', + value: '36px', + }, + { + name: 'font-size-display-2', + desc: '运营标题-中', + descEN: 'Operational Title - Medium', + value: '48px', + }, + { + name: 'font-size-display-3', + desc: '运营标题-大', + descEN: 'Operational Title - Large', + value: '56px', + }, + ], + }, + { + name: '字重', + nameEN: 'Font Wight', + type: 'size', + tokens: [ + { + name: 'font-weight-400', + desc: '常规', + descEN: 'Normal', + value: '400', + }, + { + name: 'font-weight-500', + desc: '中等(加粗)', + descEN: 'Medium (bold)', + value: '500', + }, + { + name: 'font-weight-600', + desc: '半粗', + descEN: 'Half thick', + value: '600', + }, + { + name: 'font-weight-700', + desc: '粗体', + descEN: 'Bold', + value: '700', + }, + { + name: 'font-weight-800', + desc: '中黑', + descEN: 'Medium black', + value: '800', + }, + { + name: 'font-weight-900', + desc: '黑体', + descEN: 'Black body', + value: '900', + }, + { + name: 'font-weight-300', + desc: '细体', + descEN: 'Fine body', + value: '300', + }, + { + name: 'font-weight-200', + desc: '纤细', + descEN: 'Slim', + value: '200', + }, + { + name: 'font-weight-100', + desc: '极细', + descEN: 'Very fine', + value: '100', + }, + ], + }, + { + name: '尺寸', + nameEN: 'Size', + type: 'size', + tokens: [ + { + name: 'size-none', + desc: '0', + value: '0', + }, + { + name: 'size-1', + desc: '4px', + value: '4px', + }, + { + name: 'size-2', + desc: '8px', + value: '8px', + }, + { + name: 'size-3', + desc: '12px', + value: '12px', + }, + { + name: 'size-4', + desc: '迷你(24px)', + value: '16px', + }, + { + name: 'size-5', + desc: '20px', + value: '20px', + }, + { + name: 'size-N', + desc: '变量对应的值为 (4 * N)px 大小', + descEN: 'The corresponding value of the variable is (4 * N)px size', + value: '(4 * N)px', + }, + { + name: 'size-50', + desc: '200px', + value: '200px', + }, + ], + }, + { + name: '组件尺寸', + nameEN: 'Component Size', + type: 'size', + tokens: [ + { + name: 'size-mini', + desc: '迷你(24px)', + descEN: 'mini(24px)', + value: '@size-6', + }, + { + name: 'size-small', + desc: '较小(28px)', + descEN: 'small(28px)', + value: '@size-7', + }, + { + name: 'size-default', + desc: '中等(32px)', + descEN: 'medium(32px)', + value: '@size-8', + }, + { + name: 'size-large', + desc: '较大(36px)', + descEN: 'large(36px)', + value: '@size-9', + }, + ], + }, + { + name: '边框宽度', + nameEN: 'Border Size', + type: 'size', + tokens: [ + { + name: 'border-none', + desc: '无边框', + descEN: 'None Border', + value: '0', + }, + { + name: 'border-1', + desc: '常规', + descEN: 'Normal', + value: '1px', + }, + { + name: 'border-2', + desc: '较粗', + descEN: 'Thicker', + value: '2px', + }, + { + name: 'border-3', + desc: '粗', + descEN: 'Bold', + value: '3px', + }, + ], + }, + { + name: '边框圆角', + nameEN: 'Border Radius', + type: 'size', + tokens: [ + { + name: 'border-radius-none', + desc: '直角', + descEN: 'Right angle', + value: '0', + cssvar: true, + }, + { + name: 'border-radius-small', + desc: '圆角-常规', + descEN: 'Rounded Corners - Regular', + value: '2px', + cssvar: true, + }, + { + name: 'border-radius-medium', + desc: '圆角-中等', + descEN: 'Rounded Corners - Medium', + value: '4px', + cssvar: true, + }, + { + name: 'border-radius-large', + desc: '圆角-较大', + descEN: 'Rounded Corners - Larger', + value: '8px', + cssvar: true, + }, + { + name: 'border-radius-circle', + desc: '圆角-全圆角', + descEN: 'Rounded Corners - Full Rounded Corners', + value: '50%', + cssvar: true, + }, + ], + }, + { + name: '阴影', + nameEN: 'Shadow', + type: 'size', + tokens: [ + { + name: 'shadow-special', + desc: '特殊阴影', + descEN: 'Special shade', + value: '0 0 1px rgba(0, 0, 0, 0.3)', + }, + { + name: 'shadow1-center', + desc: '阴影样式1', + descEN: 'shadow style 1', + value: '0 -2px 5px rgba(0, 0, 0, 0.1)', + }, + { + name: 'shadow2-center', + desc: '阴影样式2', + descEN: 'shadow style 2', + value: '0 0 10px rgba(0, 0, 0, 0.1)', + }, + { + name: 'shadow3-center', + desc: '阴影样式3', + descEN: 'shadow style 3', + value: '0 0 20px rgba(0, 0, 0, 0.1)', + }, + ], + }, +]; diff --git a/packages/arco-vue-docs/router.ts b/packages/arco-vue-docs/router.ts index e2043f5c8..d3c72f762 100644 --- a/packages/arco-vue-docs/router.ts +++ b/packages/arco-vue-docs/router.ts @@ -37,6 +37,8 @@ const Carousel = () => import('@web-vue/components/carousel/README.zh-CN.md'); const CarouselEn = () => import('@web-vue/components/carousel/README.en-US.md'); const Collapse = () => import('@web-vue/components/collapse/README.zh-CN.md'); const CollapseEn = () => import('@web-vue/components/collapse/README.en-US.md'); +const Calendar = () => import('@web-vue/components/calendar/README.zh-CN.md'); +const CalendarEn = () => import('@web-vue/components/calendar/README.en-US.md'); const Comment = () => import('@web-vue/components/comment/README.zh-CN.md'); const CommentEn = () => import('@web-vue/components/comment/README.en-US.md'); const Descriptions = () => @@ -175,6 +177,24 @@ const Trigger = () => import('@web-vue/components/trigger/README.zh-CN.md'); const TriggerEn = () => import('@web-vue/components/trigger/README.en-US.md'); const Split = () => import('@web-vue/components/split/README.zh-CN.md'); const SplitEn = () => import('@web-vue/components/split/README.en-US.md'); +const OverflowList = () => + import('@web-vue/components/overflow-list/README.zh-CN.md'); +const OverflowListEn = () => + import('@web-vue/components/overflow-list/README.en-US.md'); +const Scrollbar = () => import('@web-vue/components/scrollbar/README.zh-CN.md'); +const ScrollbarEn = () => + import('@web-vue/components/scrollbar/README.en-US.md'); +const Watermark = () => import('@web-vue/components/watermark/README.zh-CN.md'); +const WatermarkEn = () => + import('@web-vue/components/watermark/README.en-US.md'); +const VerificationCode = () => + import('@web-vue/components/verification-code/README.zh-CN.md'); +const VerificationCodeEn = () => + import('@web-vue/components/verification-code/README.en-US.md'); +const ColorPicker = () => + import('@web-vue/components/color-picker/README.zh-CN.md'); +const ColorPickerEn = () => + import('@web-vue/components/color-picker/README.en-US.md'); const docs = [ { @@ -192,11 +212,20 @@ const docs = [ component: Theme, componentEn: ThemeEn, }, + { + name: 'token', + component: () => import('./pages/token/token.vue'), + }, { name: 'i18n', component: I18n, componentEn: I18nEn, }, + { + name: 'faq', + component: () => import('./docs/faq.zh-CN.md'), + componentEn: () => import('./docs/faq.en-US.md'), + }, { name: 'changelog', component: Changelog, @@ -259,6 +288,11 @@ const proDocs = [ component: () => import('./docs/pro/build.zh-CN.md'), componentEn: () => import('./docs/pro/build.en-US.md'), }, + { + name: 'faq', + component: () => import('./docs/pro/faq.zh-CN.md'), + componentEn: () => import('./docs/pro/faq.en-US.md'), + }, ]; const components = [ @@ -324,6 +358,11 @@ const components = [ component: Badge, componentEn: BadgeEn, }, + { + name: 'calendar', + component: Calendar, + componentEn: CalendarEn, + }, { name: 'card', component: Card, @@ -424,6 +463,11 @@ const components = [ component: Checkbox, componentEn: CheckboxEn, }, + { + name: 'colorPicker', + component: ColorPicker, + componentEn: ColorPickerEn, + }, { name: 'datePicker', component: DatePicker, @@ -444,6 +488,11 @@ const components = [ component: InputNumber, componentEn: InputNumberEn, }, + { + name: 'verificationCode', + component: VerificationCode, + componentEn: VerificationCodeEn, + }, { name: 'inputTag', component: InputTag, @@ -634,6 +683,21 @@ const components = [ component: Split, componentEn: SplitEn, }, + { + name: 'overflow', + component: OverflowList, + componentEn: OverflowListEn, + }, + { + name: 'scrollbar', + component: Scrollbar, + componentEn: ScrollbarEn, + }, + { + name: 'watermark', + component: Watermark, + componentEn: WatermarkEn, + }, ], }, ]; diff --git a/packages/arco-vue-docs/style/index.less b/packages/arco-vue-docs/style/index.less index dcd599b6e..e0d739471 100644 --- a/packages/arco-vue-docs/style/index.less +++ b/packages/arco-vue-docs/style/index.less @@ -40,7 +40,7 @@ .site-global-notice { position: fixed; - top: 61px; + top: 60px; z-index: 980; display: flex; justify-content: center; diff --git a/packages/arco-vue-docs/utils/code-sandbox.ts b/packages/arco-vue-docs/utils/code-sandbox.ts index 038565ec7..922b91925 100644 --- a/packages/arco-vue-docs/utils/code-sandbox.ts +++ b/packages/arco-vue-docs/utils/code-sandbox.ts @@ -1,16 +1,5 @@ import { getParameters } from 'codesandbox/lib/api/define'; - -const mainContent = `import { createApp } from 'vue'; -import ArcoVue from '@arco-design/web-vue'; -import App from './App.vue'; -import '@arco-design/web-vue/dist/arco.css'; -import './style.css'; - -const app = createApp(App); -app.use(ArcoVue); -app.mount('#app');`; - -const styleContent = `#app { padding: 20px; }`; +import { mainContent, styleContent } from './code-template'; const babelContent = `module.exports = { presets: [ diff --git a/packages/arco-vue-docs/utils/code-stackblitz.ts b/packages/arco-vue-docs/utils/code-stackblitz.ts new file mode 100644 index 000000000..b9b7f955e --- /dev/null +++ b/packages/arco-vue-docs/utils/code-stackblitz.ts @@ -0,0 +1,70 @@ +import stackblitz from '@stackblitz/sdk'; +import { mainContent, styleContent } from './code-template'; + +export const htmlContent = ` +
+ +`; + +export const stackblitzRc = ` + { + "installDependencies": false, + "startCommand": "turbo && turbo dev" + } +`; + +export const viteConfigContent = ` + import { defineConfig } from 'vite'; + import vue from '@vitejs/plugin-vue'; + import vueJsx from '@vitejs/plugin-vue-jsx'; + export default defineConfig({ + plugins: [vue(), vueJsx()], + }); +`; + +export const packageJSONContent = JSON.stringify( + { + name: 'arco-vue-demo', + version: '0.0.0', + private: true, + scripts: { + dev: 'vite', + build: 'vite build', + serve: 'vite preview', + }, + dependencies: { + 'vue': '^3.2.0', + 'dayjs': '^1.0', + '@arco-design/web-vue': 'latest', + }, + devDependencies: { + 'vite': '^2.9.8', + '@vitejs/plugin-vue': '^2.3.2', + '@vitejs/plugin-vue-jsx': '^1.3.10', + }, + }, + null, + 2 +); + +export const openStackblitz = (content: string) => { + stackblitz.openProject( + { + title: `arco-design-demo`, + description: 'arco-design-demo', + template: 'node', + files: { + 'src/App.vue': content, + 'src/style.css': styleContent, + 'src/main.js': mainContent, + 'index.html': htmlContent, + 'package.json': packageJSONContent, + 'vite.config.js': viteConfigContent, + '.stackblitzrc': stackblitzRc, + }, + }, + { + openFile: 'src/App.vue', + } + ); +}; diff --git a/packages/arco-vue-docs/utils/code-template.ts b/packages/arco-vue-docs/utils/code-template.ts new file mode 100644 index 000000000..dc939d84f --- /dev/null +++ b/packages/arco-vue-docs/utils/code-template.ts @@ -0,0 +1,11 @@ +export const mainContent = `import { createApp } from 'vue'; +import ArcoVue from '@arco-design/web-vue'; +import App from './App.vue'; +import '@arco-design/web-vue/dist/arco.css'; +import './style.css'; + +const app = createApp(App); +app.use(ArcoVue); +app.mount('#app');`; + +export const styleContent = `#app { padding: 20px; }`; diff --git a/packages/arco-vue-docs/utils/login.ts b/packages/arco-vue-docs/utils/login.ts index b73cd36fe..337479c6f 100644 --- a/packages/arco-vue-docs/utils/login.ts +++ b/packages/arco-vue-docs/utils/login.ts @@ -16,7 +16,7 @@ export async function checkLogin() { } else { if (!window.isLogin) { try { - const { data } = await axios.get('/api/auth/userInfo', { + const { data } = await axios.get('/common/api/auth/userInfo', { withCredentials: true, }); window.isLogin = true; diff --git a/packages/arco-vue-docs/utils/strings.ts b/packages/arco-vue-docs/utils/strings.ts new file mode 100644 index 000000000..66657094d --- /dev/null +++ b/packages/arco-vue-docs/utils/strings.ts @@ -0,0 +1,10 @@ +export const strEndsWith = (str: string, search: string) => { + return str.substring(str.length - search.length, str.length) === search; +}; + +export const strIncludes = (str: string, search: string, start = 0) => { + if (start + search.length > str.length) { + return false; + } + return str.indexOf(search, start) !== -1; +}; diff --git a/packages/arco-vue-scripts/.prettierrc.js b/packages/arco-vue-scripts/.prettierrc.js index 24da7c88e..0f1f8b9a8 100644 --- a/packages/arco-vue-scripts/.prettierrc.js +++ b/packages/arco-vue-scripts/.prettierrc.js @@ -4,5 +4,6 @@ module.exports = { printWidth: 80, singleQuote: true, quoteProps: 'consistent', + endOfLine: 'auto', htmlWhitespaceSensitivity: 'strict', }; diff --git a/packages/arco-vue-scripts/src/configs/vite.material.library.ts b/packages/arco-vue-scripts/src/configs/vite.material.library.ts index ec85c3061..ae6aa4349 100644 --- a/packages/arco-vue-scripts/src/configs/vite.material.library.ts +++ b/packages/arco-vue-scripts/src/configs/vite.material.library.ts @@ -3,7 +3,7 @@ import vue from '@vitejs/plugin-vue'; import vueJsx from '@vitejs/plugin-vue-jsx'; import svgLoader from 'vite-svg-loader'; import external from '../plugins/vite-plugin-external'; -import buildVirtual from '../plugins/vite-plugin-build-virtual'; +import vueExportHelper from '../plugins/vite-plugin-vue-export-helper'; const config: InlineConfig = { mode: 'production', @@ -39,7 +39,7 @@ const config: InlineConfig = { }, }, // @ts-ignore vite内部类型错误 - plugins: [external(), vue(), vueJsx(), svgLoader(), buildVirtual()], + plugins: [external(), vue(), vueJsx(), svgLoader(), vueExportHelper()], }; export default config; diff --git a/packages/arco-vue-scripts/src/configs/vite.prod.ts b/packages/arco-vue-scripts/src/configs/vite.prod.ts index afdceb775..89dd89cd4 100644 --- a/packages/arco-vue-scripts/src/configs/vite.prod.ts +++ b/packages/arco-vue-scripts/src/configs/vite.prod.ts @@ -3,7 +3,7 @@ import glob from 'glob'; import vue from '@vitejs/plugin-vue'; import vueJsx from '@vitejs/plugin-vue-jsx'; import external from '../plugins/vite-plugin-external'; -import buildVirtual from '../plugins/vite-plugin-build-virtual'; +import vueExportHelper from '../plugins/vite-plugin-vue-export-helper'; const langFiles = glob.sync('components/locale/lang/*.ts'); @@ -41,7 +41,7 @@ const config: InlineConfig = { }, }, // @ts-ignore vite内部类型错误 - plugins: [external(), vue(), vueJsx(), buildVirtual()], + plugins: [external(), vue(), vueJsx(), vueExportHelper()], }; export default config; diff --git a/packages/arco-vue-scripts/src/configs/vite.site.prod.ts b/packages/arco-vue-scripts/src/configs/vite.site.prod.ts index cbcf14209..582191a52 100644 --- a/packages/arco-vue-scripts/src/configs/vite.site.prod.ts +++ b/packages/arco-vue-scripts/src/configs/vite.site.prod.ts @@ -8,9 +8,13 @@ import paths from '../utils/paths'; const root = process.cwd(); +const base = + process.env.AssetsPublicPath || + 'https://lf-cdn-tos.bytescm.com/obj/static/arcodesign/vue/'; + export default defineConfig({ mode: 'production', - base: 'https://lf-cdn-tos.bytescm.com/obj/static/arcodesign/vue/', + base, css: { preprocessorOptions: { less: { diff --git a/packages/arco-vue-scripts/src/index.ts b/packages/arco-vue-scripts/src/index.ts index cc5ab7caf..f085f243e 100755 --- a/packages/arco-vue-scripts/src/index.ts +++ b/packages/arco-vue-scripts/src/index.ts @@ -15,6 +15,7 @@ import buildSite from './scripts/build-site'; import buildMaterial from './scripts/build-material'; import buildMaterialLibrary from './scripts/build-material-library'; import test from './scripts/test'; +// import screentshotTest from './scripts/test/screentshot'; import changelog from './scripts/changelog'; import jsongen from './scripts/jsongen'; @@ -129,6 +130,15 @@ program await test(components, program.args.slice(1)); }); +// program +// .command('test:screenshot') +// .description('run test:screenshot for components.') +// .option('-d, --domain ', 'gen screentshots') +// .option('-o, --outDir ', 'gen screentshots') +// .action(async ({ domain, outDir }) => { +// await screentshotTest(domain, outDir); +// }); + program .command('changelog') .description( diff --git a/packages/arco-vue-scripts/src/plugins/vite-plugin-build-virtual/index.ts b/packages/arco-vue-scripts/src/plugins/vite-plugin-build-virtual/index.ts deleted file mode 100644 index 0f4f6f662..000000000 --- a/packages/arco-vue-scripts/src/plugins/vite-plugin-build-virtual/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Plugin } from 'vite'; -import path from 'path'; - -export default function virtualPlugin(): Plugin { - return { - name: 'vite:build-virtual', - enforce: 'post', - generateBundle(_, bundle) { - for (const item of Object.values(bundle)) { - if (/_virtual/.test(item.fileName)) { - const ext = path.extname(item.fileName); - if (!ext) { - item.fileName += '.js'; - } - } - } - }, - }; -} diff --git a/packages/arco-vue-scripts/src/plugins/vite-plugin-vue-export-helper/index.ts b/packages/arco-vue-scripts/src/plugins/vite-plugin-vue-export-helper/index.ts new file mode 100644 index 000000000..38ae0eb64 --- /dev/null +++ b/packages/arco-vue-scripts/src/plugins/vite-plugin-vue-export-helper/index.ts @@ -0,0 +1,30 @@ +import type { Plugin } from 'vite'; + +const EXPORT_HELPER_ID = 'plugin-vue:export-helper'; +const helperCode = ` +export default (sfc, props) => { + for (const [key, val] of props) { + sfc[key] = val + } + return sfc +} +`; + +export default function virtualPlugin(): Plugin { + return { + name: 'vite:vue-export-helper', + enforce: 'pre', + resolveId(source: string) { + if (source === EXPORT_HELPER_ID) { + return `${EXPORT_HELPER_ID}.js`; + } + return null; + }, + load(source) { + if (source === `${EXPORT_HELPER_ID}.js`) { + return helperCode; + } + return null; + }, + }; +} diff --git a/packages/arco-vue-scripts/src/scripts/changelog/utils.ts b/packages/arco-vue-scripts/src/scripts/changelog/utils.ts index a0c812da1..3c6aafac5 100644 --- a/packages/arco-vue-scripts/src/scripts/changelog/utils.ts +++ b/packages/arco-vue-scripts/src/scripts/changelog/utils.ts @@ -68,6 +68,11 @@ const componentList = [ 'typography', 'upload', 'image', + 'overflow-list', + 'scrollbar', + 'watermark', + 'color-picker', + 'verification-code', ]; export const isValidComponent = (component: string) => { diff --git a/packages/arco-vue-scripts/src/scripts/dtsgen/index.ts b/packages/arco-vue-scripts/src/scripts/dtsgen/index.ts index 2d664824c..8b186b034 100644 --- a/packages/arco-vue-scripts/src/scripts/dtsgen/index.ts +++ b/packages/arco-vue-scripts/src/scripts/dtsgen/index.ts @@ -89,26 +89,28 @@ export async function build(input: string, options?: { outDir?: string }) { }) ); - await Promise.all( - sourceFiles.map(async (sourceFile) => { - // eslint-disable-next-line no-console - console.log(`Transform start: ${sourceFile.getFilePath()}`); - const diagnostics = sourceFile.getPreEmitDiagnostics(); - // eslint-disable-next-line no-console - console.log(project.formatDiagnosticsWithColorAndContext(diagnostics)); - const emitOutput = sourceFile.getEmitOutput(); - const outputFiles = emitOutput.getOutputFiles(); - await Promise.all( - outputFiles.map(async (outputFile) => { - const filepath = outputFile.getFilePath(); - await fs.ensureDir(path.dirname(filepath)); - await fs.writeFile(filepath, outputFile.getText(), 'utf8'); - // eslint-disable-next-line no-console - console.log(`Emitted ${filepath}`); - }) - ); - }) - ); + try { + await Promise.all( + sourceFiles.map(async (sourceFile) => { + // eslint-disable-next-line no-console + console.log(`Transform start: ${sourceFile.getFilePath()}`); + const diagnostics = sourceFile.getPreEmitDiagnostics(); + // eslint-disable-next-line no-console + console.log(project.formatDiagnosticsWithColorAndContext(diagnostics)); + const emitOutput = sourceFile.getEmitOutput(); + const outputFiles = emitOutput.getOutputFiles(); + await Promise.all( + outputFiles.map(async (outputFile) => { + const filepath = outputFile.getFilePath(); + await fs.ensureDir(path.dirname(filepath)); + await fs.writeFile(filepath, outputFile.getText(), 'utf8'); + // eslint-disable-next-line no-console + console.log(`Emitted ${filepath}`); + }) + ); + }) + ); + } catch {} } const removeVueSpecifier = (sourceFile: SourceFile) => { diff --git a/packages/arco-vue-scripts/src/scripts/icongen/index.ts b/packages/arco-vue-scripts/src/scripts/icongen/index.ts index 69b47a887..80578cdf1 100644 --- a/packages/arco-vue-scripts/src/scripts/icongen/index.ts +++ b/packages/arco-vue-scripts/src/scripts/icongen/index.ts @@ -11,6 +11,7 @@ import { getComponentIndex, getIconVue, getIndex, + getType, } from './vue-template'; interface IconData { @@ -169,10 +170,36 @@ function buildIndex(data: IconData[]) { ); } +function buildType(data: IconData[]) { + const exports = []; + for (const iconData of data) { + for (const item of iconData.list) { + exports.push( + `${item.componentName}: typeof import('@arco-design/web-vue/es/icon')['${item.componentName}'];` + ); + } + } + + const typeContent = getType({ exports }); + + fs.outputFile( + path.resolve(paths.iconComponents, 'icon-components.ts'), + typeContent, + (err) => { + if (err) { + console.log(`Build Type Failed: ${err}`); + } else { + console.log('Build Type Success!'); + } + } + ); +} + const icongen = async () => { const data = getSVGData(); await buildIconComponent(data); buildIndex(data); + buildType(data); }; export default icongen; diff --git a/packages/arco-vue-scripts/src/scripts/icongen/svgo.config.ts b/packages/arco-vue-scripts/src/scripts/icongen/svgo.config.ts index 073bc5752..d437376ec 100644 --- a/packages/arco-vue-scripts/src/scripts/icongen/svgo.config.ts +++ b/packages/arco-vue-scripts/src/scripts/icongen/svgo.config.ts @@ -31,10 +31,11 @@ const options: OptimizeOptions = { params: { attributes: [ { ':class': 'cls' }, - { ':style': 'sizeStyle' }, + { ':style': 'innerStyle' }, { ':stroke-width': 'strokeWidth' }, { ':stroke-linecap': 'strokeLinecap' }, { ':stroke-linejoin': 'strokeLinejoin' }, + { '@click': 'onClick' }, ], }, }, diff --git a/packages/arco-vue-scripts/src/scripts/icongen/vue-template.ts b/packages/arco-vue-scripts/src/scripts/icongen/vue-template.ts index a29062479..f3c806f9f 100644 --- a/packages/arco-vue-scripts/src/scripts/icongen/vue-template.ts +++ b/packages/arco-vue-scripts/src/scripts/icongen/vue-template.ts @@ -14,7 +14,7 @@ export const getIconVue = ({ diff --git a/packages/web-vue-storybook/stories/components/date-picker.vue b/packages/web-vue-storybook/stories/components/date-picker.vue new file mode 100644 index 000000000..932ca6345 --- /dev/null +++ b/packages/web-vue-storybook/stories/components/date-picker.vue @@ -0,0 +1,45 @@ + + + diff --git a/packages/web-vue-storybook/stories/components/form.vue b/packages/web-vue-storybook/stories/components/form.vue new file mode 100644 index 000000000..e0de81538 --- /dev/null +++ b/packages/web-vue-storybook/stories/components/form.vue @@ -0,0 +1,109 @@ + + + diff --git a/packages/web-vue-storybook/stories/components/json.ts b/packages/web-vue-storybook/stories/components/json.ts new file mode 100644 index 000000000..727ecb8d5 --- /dev/null +++ b/packages/web-vue-storybook/stories/components/json.ts @@ -0,0 +1,60002 @@ +export const bigData = [ + { + "key": "5006c1e3-e9b1-4c74-a4d6-109a351b1ddd", + "label": "label-0", + "height": 507, + "background": "green" + }, + { + "key": "1471c97b-9a2a-4374-b454-a87a820de37c", + "label": "label-1", + "height": 258, + "background": "yellow" + }, + { + "key": "b7334077-213a-462d-a94c-6f636b00404a", + "label": "label-2", + "height": 163, + "background": "blue" + }, + { + "key": "5041ddfd-be41-40ca-9d25-dd1551ae210c", + "label": "label-3", + "height": 431, + "background": "green" + }, + { + "key": "ee179644-929c-473a-b112-12ecbb87cd9a", + "label": "label-4", + "height": 410, + "background": "blue" + }, + { + "key": "fcb6133d-2c16-4649-86e5-79f6c67c0e5a", + "label": "label-5", + "height": 370, + "background": "yellow" + }, + { + "key": "a4b97676-42d3-43ca-9bf7-cfd6e6bcf2ae", + "label": "label-6", + "height": 42, + "background": "red" + }, + { + "key": "aabdba2d-c700-4543-a295-ed4e0292d84d", + "label": "label-7", + "height": 100, + "background": "green" + }, + { + "key": "34c7c79e-e67b-44b4-9c95-abcaca24e86f", + "label": "label-8", + "height": 405, + "background": "red" + }, + { + "key": "6f2354ff-f4db-4be9-b688-50c420b279eb", + "label": "label-9", + "height": 121, + "background": "blue" + }, + { + "key": "02078b71-5c62-4a22-a09a-9292ac2c0225", + "label": "label-10", + "height": 128, + "background": "blue" + }, + { + "key": "5424c0d5-1792-42f3-a5ca-864321a32042", + "label": "label-11", + "height": 416, + "background": "red" + }, + { + "key": "e8e41b43-9867-4699-ba56-04dfe12dfe69", + "label": "label-12", + "height": 363, + "background": "blue" + }, + { + "key": "31ada137-7271-48a7-b656-4ddefbfd3bae", + "label": "label-13", + "height": 318, + "background": "red" + }, + { + "key": "9242132a-d66d-4b2a-931a-4eb2c749df1d", + "label": "label-14", + "height": 329, + "background": "green" + }, + { + "key": "9fb205c3-4b39-40ef-ad88-a7da95774fd6", + "label": "label-15", + "height": 95, + "background": "green" + }, + { + "key": "026395be-9705-4f1a-8f48-87486251b176", + "label": "label-16", + "height": 371, + "background": "yellow" + }, + { + "key": "757ed4c7-8524-4e06-ae02-747479720ff6", + "label": "label-17", + "height": 170, + "background": "green" + }, + { + "key": "2d07936b-b209-4838-9761-2ed4a46911e3", + "label": "label-18", + "height": 471, + "background": "blue" + }, + { + "key": "74b4a59e-f121-4caa-a5dc-09d25b8e01e0", + "label": "label-19", + "height": 310, + "background": "blue" + }, + { + "key": "1b77a6e0-7ec4-4282-a525-35c8f3548d8b", + "label": "label-20", + "height": 262, + "background": "blue" + }, + { + "key": "1184d048-c844-41ec-a95c-bfc0e2bc1ee9", + "label": "label-21", + "height": 444, + "background": "blue" + }, + { + "key": "8fda13ae-3e3b-45e5-bbd6-f22d0ee672f0", + "label": "label-22", + "height": 420, + "background": "blue" + }, + { + "key": "4d9048ca-6fec-4adc-9e84-b27d2dee6dd7", + "label": "label-23", + "height": 339, + "background": "green" + }, + { + "key": "63f78a6d-649c-486a-87d4-3a25e0563fb9", + "label": "label-24", + "height": 524, + "background": "yellow" + }, + { + "key": "d8828253-f6bd-4952-b01e-fa855965ccc6", + "label": "label-25", + "height": 475, + "background": "yellow" + }, + { + "key": "d0416eaa-900e-4e3c-aee5-ac3d96291e9f", + "label": "label-26", + "height": 376, + "background": "blue" + }, + { + "key": "f307cc33-e323-4edd-ad85-42234e85eab8", + "label": "label-27", + "height": 454, + "background": "red" + }, + { + "key": "68923947-bd36-4058-b419-f5e8ee7978f7", + "label": "label-28", + "height": 209, + "background": "green" + }, + { + "key": "d8cd76b6-e578-4fd1-b21d-ba24132ec7a3", + "label": "label-29", + "height": 357, + "background": "green" + }, + { + "key": "450c538e-8525-4fa0-b01c-dcc495cea320", + "label": "label-30", + "height": 63, + "background": "yellow" + }, + { + "key": "1a1a5a0a-8078-4c69-b8a3-56612480f0cf", + "label": "label-31", + "height": 196, + "background": "blue" + }, + { + "key": "2f4081dc-d4b9-4eab-939e-c832a7d20ccd", + "label": "label-32", + "height": 132, + "background": "blue" + }, + { + "key": "4592c615-e398-47a1-9083-ae7b5bab97a1", + "label": "label-33", + "height": 151, + "background": "blue" + }, + { + "key": "1f787e34-ee4e-4b57-ae51-f267aad39e37", + "label": "label-34", + "height": 463, + "background": "red" + }, + { + "key": "2c4fa879-1575-4839-94c6-c69ed449bdf7", + "label": "label-35", + "height": 44, + "background": "green" + }, + { + "key": "a7058f0f-1f5a-4f80-9c82-bfb20095bd09", + "label": "label-36", + "height": 483, + "background": "blue" + }, + { + "key": "d5966c7c-7149-4b9f-a78a-5136e344664f", + "label": "label-37", + "height": 433, + "background": "blue" + }, + { + "key": "fbb01709-129c-4c58-8502-bdfe91c55f02", + "label": "label-38", + "height": 70, + "background": "yellow" + }, + { + "key": "2f1a5e43-9912-4716-8957-7a2146239acc", + "label": "label-39", + "height": 169, + "background": "red" + }, + { + "key": "acf6f672-36ef-49db-86ce-ce5d8ee56dde", + "label": "label-40", + "height": 246, + "background": "yellow" + }, + { + "key": "48cafd07-a1df-4ebb-b276-90ca66f01621", + "label": "label-41", + "height": 228, + "background": "blue" + }, + { + "key": "8b2bfcb4-bf50-47c4-aac8-568b71056026", + "label": "label-42", + "height": 283, + "background": "blue" + }, + { + "key": "9ebe9ccd-746e-4aea-878b-0871b8b39d3f", + "label": "label-43", + "height": 445, + "background": "red" + }, + { + "key": "d5121f57-8151-4f81-b102-639ccbbce689", + "label": "label-44", + "height": 264, + "background": "blue" + }, + { + "key": "a497098c-fcfa-4e1f-8256-895a19a50a76", + "label": "label-45", + "height": 135, + "background": "red" + }, + { + "key": "7ef88755-c491-48f0-bd52-200503ae0c21", + "label": "label-46", + "height": 495, + "background": "green" + }, + { + "key": "9c2ae151-15be-41f0-a3d9-5a1ee34e26c1", + "label": "label-47", + "height": 291, + "background": "yellow" + }, + { + "key": "109dc76a-ad81-49aa-8816-16d288bd0277", + "label": "label-48", + "height": 436, + "background": "yellow" + }, + { + "key": "1c450a92-766b-4344-b754-78c3e86824da", + "label": "label-49", + "height": 344, + "background": "yellow" + }, + { + "key": "34ec07cd-3782-4cc5-bf85-36d3a4840cdb", + "label": "label-50", + "height": 80, + "background": "blue" + }, + { + "key": "029cec27-0182-4cde-a86d-479eb3992033", + "label": "label-51", + "height": 396, + "background": "green" + }, + { + "key": "1aa9daec-8504-4c6a-a6e6-6f0c2a286dab", + "label": "label-52", + "height": 264, + "background": "green" + }, + { + "key": "5e5133b5-c82c-4a77-aa2a-b7e553d335df", + "label": "label-53", + "height": 162, + "background": "yellow" + }, + { + "key": "9411df55-b0c9-4988-90d6-173fc5d124bb", + "label": "label-54", + "height": 220, + "background": "red" + }, + { + "key": "286f36cc-033a-49a8-8c54-bd213c7a78bb", + "label": "label-55", + "height": 504, + "background": "yellow" + }, + { + "key": "adc2ce72-57b8-405a-9971-e516ed6d7d56", + "label": "label-56", + "height": 479, + "background": "green" + }, + { + "key": "e1fe1069-e3d4-414c-8609-99119bfd3dad", + "label": "label-57", + "height": 274, + "background": "yellow" + }, + { + "key": "7baefb15-1ffb-4b63-9fc1-6dcea31a6694", + "label": "label-58", + "height": 153, + "background": "blue" + }, + { + "key": "6314dbf2-93d1-43ea-b20e-2c5bf9bde142", + "label": "label-59", + "height": 45, + "background": "yellow" + }, + { + "key": "d3a6391d-9dcc-446b-8f81-520a6b5af140", + "label": "label-60", + "height": 75, + "background": "red" + }, + { + "key": "59cb7357-f466-43d3-8ab8-76665f02ad95", + "label": "label-61", + "height": 67, + "background": "yellow" + }, + { + "key": "b80cb21a-972e-4f9e-b463-3ddf6668626e", + "label": "label-62", + "height": 99, + "background": "red" + }, + { + "key": "97836b02-73fa-489d-80aa-f36746d30d23", + "label": "label-63", + "height": 463, + "background": "yellow" + }, + { + "key": "ac6e5043-24dd-4981-8967-51ab7752eef8", + "label": "label-64", + "height": 438, + "background": "yellow" + }, + { + "key": "da38d053-13ca-4c2d-8035-9b3e15dca386", + "label": "label-65", + "height": 186, + "background": "red" + }, + { + "key": "4e258cf3-9d34-4120-8152-cdcd54a05cc3", + "label": "label-66", + "height": 238, + "background": "blue" + }, + { + "key": "317e3623-7e4c-4ac2-9114-fdf0d0643fa3", + "label": "label-67", + "height": 70, + "background": "blue" + }, + { + "key": "3ddce237-5200-4865-b52e-bd0335103018", + "label": "label-68", + "height": 268, + "background": "yellow" + }, + { + "key": "d83f3e13-c1a0-4649-8e64-f8671dec3b76", + "label": "label-69", + "height": 354, + "background": "green" + }, + { + "key": "125ebcde-1e36-4f13-b6b5-9b09f00cf5f6", + "label": "label-70", + "height": 167, + "background": "green" + }, + { + "key": "c7372ccf-a60e-4021-9db5-4e94350b229a", + "label": "label-71", + "height": 275, + "background": "blue" + }, + { + "key": "fd1bab38-84bd-4dc4-889b-0791b3d767d2", + "label": "label-72", + "height": 166, + "background": "green" + }, + { + "key": "50ffaf18-37d9-4b62-afac-f67ac173977b", + "label": "label-73", + "height": 122, + "background": "yellow" + }, + { + "key": "6fe6561f-4391-4ca2-89d4-faa50de892f1", + "label": "label-74", + "height": 270, + "background": "red" + }, + { + "key": "c5ee800d-67b8-4add-857e-f7c6302ff1d9", + "label": "label-75", + "height": 435, + "background": "yellow" + }, + { + "key": "327597a0-824c-4b7b-927e-973f7b879431", + "label": "label-76", + "height": 88, + "background": "red" + }, + { + "key": "d762dbca-09f0-4630-9628-5060b6182dcc", + "label": "label-77", + "height": 445, + "background": "yellow" + }, + { + "key": "72ac386f-fdc0-477b-8641-7d79812ca5f7", + "label": "label-78", + "height": 167, + "background": "red" + }, + { + "key": "e3fe0ee0-fafc-4e89-9c7b-9ccb6ca3e99e", + "label": "label-79", + "height": 58, + "background": "green" + }, + { + "key": "217498c6-0baa-43c0-9a20-077738ab6b67", + "label": "label-80", + "height": 362, + "background": "red" + }, + { + "key": "bbb1b759-37a8-4341-8d1d-d24ce317cd19", + "label": "label-81", + "height": 181, + "background": "red" + }, + { + "key": "fd9d4338-dc63-456c-ab9f-00d87a9a0ef1", + "label": "label-82", + "height": 510, + "background": "red" + }, + { + "key": "b7371aba-2f9d-4953-a155-f6264500b1f3", + "label": "label-83", + "height": 276, + "background": "red" + }, + { + "key": "bb1d66ce-5164-43ee-a3b9-3a5849da9431", + "label": "label-84", + "height": 447, + "background": "red" + }, + { + "key": "62740bf3-cac7-4db3-bd26-f249f63f0f52", + "label": "label-85", + "height": 218, + "background": "green" + }, + { + "key": "8fde7540-f44f-45c7-803b-776547052818", + "label": "label-86", + "height": 33, + "background": "red" + }, + { + "key": "c935ac71-825f-4f62-9faa-7b96e44433d3", + "label": "label-87", + "height": 377, + "background": "green" + }, + { + "key": "5138df4b-2f43-4502-bf2d-7c45f93c51ee", + "label": "label-88", + "height": 162, + "background": "green" + }, + { + "key": "1605bd72-c2a1-42db-b180-4077aaafa476", + "label": "label-89", + "height": 72, + "background": "yellow" + }, + { + "key": "b6314360-9085-4fb0-9fb1-2f5c674405ff", + "label": "label-90", + "height": 195, + "background": "green" + }, + { + "key": "be70eb38-6ebd-4907-a44c-493b376f13b8", + "label": "label-91", + "height": 162, + "background": "yellow" + }, + { + "key": "3be15d2c-11d8-47f6-8fcf-e9e79a730a9e", + "label": "label-92", + "height": 152, + "background": "blue" + }, + { + "key": "56fc0d3d-090d-4fcc-9cfd-740933e09807", + "label": "label-93", + "height": 156, + "background": "yellow" + }, + { + "key": "04f4a1ee-200d-47ff-b76b-da808126e157", + "label": "label-94", + "height": 354, + "background": "green" + }, + { + "key": "ba4b7b34-135c-4e2f-98a8-ef62d57899a1", + "label": "label-95", + "height": 163, + "background": "yellow" + }, + { + "key": "3ed4676d-143d-4faf-b823-c7dad09214fa", + "label": "label-96", + "height": 211, + "background": "yellow" + }, + { + "key": "a885ecd2-9194-4e49-bb34-8c08b99035f3", + "label": "label-97", + "height": 477, + "background": "red" + }, + { + "key": "d8137642-8310-4d65-bbc5-a405d7c0ce83", + "label": "label-98", + "height": 264, + "background": "blue" + }, + { + "key": "5482aa46-44c4-499e-894a-dcfdc31190e0", + "label": "label-99", + "height": 366, + "background": "blue" + }, + { + "key": "7a239253-0392-46fa-8b32-e1239960cd81", + "label": "label-100", + "height": 64, + "background": "blue" + }, + { + "key": "ec418815-053b-422e-b88c-8fd1c650e901", + "label": "label-101", + "height": 323, + "background": "red" + }, + { + "key": "253a3585-4f03-4348-a13b-fa5f6a6a8db5", + "label": "label-102", + "height": 223, + "background": "red" + }, + { + "key": "5d442154-3c68-49c3-85ab-4a4814cb3250", + "label": "label-103", + "height": 155, + "background": "red" + }, + { + "key": "beaa87e4-b092-4e20-b4f2-d56cdc5aaaf7", + "label": "label-104", + "height": 180, + "background": "yellow" + }, + { + "key": "77869ecf-7c6f-45c4-b112-95a8d1e183ec", + "label": "label-105", + "height": 453, + "background": "red" + }, + { + "key": "590faccc-8f11-46fc-b48c-fac5f62f9eb2", + "label": "label-106", + "height": 269, + "background": "red" + }, + { + "key": "f5b1b382-6681-4f28-b6b4-57193526f212", + "label": "label-107", + "height": 322, + "background": "red" + }, + { + "key": "1384c4a1-2bed-4305-868f-c1c84a41a69b", + "label": "label-108", + "height": 262, + "background": "green" + }, + { + "key": "2e45153a-85a3-49b2-a922-b9923d1805bf", + "label": "label-109", + "height": 40, + "background": "green" + }, + { + "key": "cc161462-773c-452f-8e53-fc5cde94cc02", + "label": "label-110", + "height": 424, + "background": "green" + }, + { + "key": "4083e4f0-a2e6-494f-92df-f5a67d83d262", + "label": "label-111", + "height": 43, + "background": "yellow" + }, + { + "key": "1dfbd91c-4aff-49d6-b999-0a4bf2922141", + "label": "label-112", + "height": 276, + "background": "green" + }, + { + "key": "52cff71d-be51-48f1-88fa-58983f4117c1", + "label": "label-113", + "height": 351, + "background": "yellow" + }, + { + "key": "297e5cff-bf94-4719-8651-9954617f3573", + "label": "label-114", + "height": 340, + "background": "red" + }, + { + "key": "9e3cc0ef-2962-4a35-ae19-4a5649fe70b6", + "label": "label-115", + "height": 57, + "background": "yellow" + }, + { + "key": "2841e059-94c1-4826-879f-1fa90cf6946e", + "label": "label-116", + "height": 201, + "background": "green" + }, + { + "key": "c42965f1-c4f6-4fe5-9d3a-6d661d61844d", + "label": "label-117", + "height": 387, + "background": "red" + }, + { + "key": "dae63a35-111e-44dd-b96b-9a184681d3ce", + "label": "label-118", + "height": 274, + "background": "red" + }, + { + "key": "b28a90f4-3259-468d-826e-1812e299b80a", + "label": "label-119", + "height": 518, + "background": "yellow" + }, + { + "key": "946e1dce-7e45-4e0b-8fe6-87647f309ec0", + "label": "label-120", + "height": 299, + "background": "blue" + }, + { + "key": "af7d9c1f-9496-4ffe-b1e4-7566dcd72c07", + "label": "label-121", + "height": 337, + "background": "blue" + }, + { + "key": "65726c80-e6ee-4017-a954-1087f03ff693", + "label": "label-122", + "height": 289, + "background": "red" + }, + { + "key": "9562fe29-abc3-4a72-b2b4-7df509b0c597", + "label": "label-123", + "height": 308, + "background": "green" + }, + { + "key": "047da0ec-f0d2-43db-a0ee-e99404e80ff5", + "label": "label-124", + "height": 312, + "background": "blue" + }, + { + "key": "d1d025eb-e5d6-4ef1-826f-37ad920a74b5", + "label": "label-125", + "height": 243, + "background": "green" + }, + { + "key": "3af5f478-371b-4cc6-88f7-cc24bb4738f7", + "label": "label-126", + "height": 227, + "background": "blue" + }, + { + "key": "c49e979a-dc1a-4ec0-913d-6232c1cb2348", + "label": "label-127", + "height": 337, + "background": "green" + }, + { + "key": "ba04fba5-83fd-4aa5-b4cb-d233de260fbe", + "label": "label-128", + "height": 58, + "background": "blue" + }, + { + "key": "981c89a3-bdac-49b7-83de-3bf0e79378a7", + "label": "label-129", + "height": 45, + "background": "blue" + }, + { + "key": "ac75e44b-2cd1-48ff-815b-506a5022b9ba", + "label": "label-130", + "height": 197, + "background": "yellow" + }, + { + "key": "c035b504-5b02-4b55-881d-e4e0ca4f1d51", + "label": "label-131", + "height": 57, + "background": "yellow" + }, + { + "key": "402e1f71-2508-4937-ae5e-8401c7380f99", + "label": "label-132", + "height": 218, + "background": "blue" + }, + { + "key": "9d4d3ee3-d4df-4fbe-a912-c5527db1f9ec", + "label": "label-133", + "height": 109, + "background": "blue" + }, + { + "key": "1cab43be-8b00-4ae9-ac4c-bba9657d75c4", + "label": "label-134", + "height": 523, + "background": "green" + }, + { + "key": "f2a9b28f-cdaa-4968-9a83-bd9f80d9c183", + "label": "label-135", + "height": 404, + "background": "green" + }, + { + "key": "5e77d845-5c22-44f3-b153-6db84060cfc8", + "label": "label-136", + "height": 236, + "background": "red" + }, + { + "key": "a049c370-f2aa-4965-8bdf-90f9b1bc53d8", + "label": "label-137", + "height": 308, + "background": "yellow" + }, + { + "key": "c31f52f2-325e-4cb8-99e3-73d05d071137", + "label": "label-138", + "height": 367, + "background": "green" + }, + { + "key": "e85c838b-b905-4c0c-8c1c-82ad5c415a8c", + "label": "label-139", + "height": 244, + "background": "red" + }, + { + "key": "2b9a964d-8623-4df4-afd9-769ecf9c63a7", + "label": "label-140", + "height": 433, + "background": "green" + }, + { + "key": "bca73c0f-6b33-4083-93f5-164cf803301e", + "label": "label-141", + "height": 474, + "background": "blue" + }, + { + "key": "7ce33346-39f3-43a2-bfd4-6993027df1a3", + "label": "label-142", + "height": 371, + "background": "blue" + }, + { + "key": "5a3735b2-a0b4-4819-b2ec-a6fb724595b5", + "label": "label-143", + "height": 199, + "background": "yellow" + }, + { + "key": "90bd5236-d60c-4d28-9c61-4ceadfcec26f", + "label": "label-144", + "height": 497, + "background": "green" + }, + { + "key": "f3d36c88-4f8c-4b2a-8703-200fb4902ea4", + "label": "label-145", + "height": 287, + "background": "yellow" + }, + { + "key": "fb87f2c9-832d-4602-a117-41e1d608585f", + "label": "label-146", + "height": 250, + "background": "green" + }, + { + "key": "46d92415-b992-4887-9a1b-1968fd058fd0", + "label": "label-147", + "height": 499, + "background": "yellow" + }, + { + "key": "e522786f-745b-44b5-9002-db7599054aff", + "label": "label-148", + "height": 407, + "background": "blue" + }, + { + "key": "42c9e457-6308-41b1-bdee-8d1cd7dfe536", + "label": "label-149", + "height": 36, + "background": "green" + }, + { + "key": "2c288ebd-416a-4c3d-b06a-ff60a4341256", + "label": "label-150", + "height": 182, + "background": "red" + }, + { + "key": "d5f5a8a5-3a9d-487b-945f-ca60e25f5c79", + "label": "label-151", + "height": 402, + "background": "yellow" + }, + { + "key": "f826fc24-c4c3-4cbd-a5f3-4ab33cf7f005", + "label": "label-152", + "height": 319, + "background": "blue" + }, + { + "key": "5697680f-ca84-4fed-b442-831506bc36d7", + "label": "label-153", + "height": 515, + "background": "yellow" + }, + { + "key": "ad965740-3609-438e-bbe5-58e3633a5252", + "label": "label-154", + "height": 478, + "background": "blue" + }, + { + "key": "37297930-6570-4ef9-a3f4-1cad3a8062c2", + "label": "label-155", + "height": 183, + "background": "yellow" + }, + { + "key": "f75f7aff-70ec-4312-8e45-6183054802d8", + "label": "label-156", + "height": 346, + "background": "yellow" + }, + { + "key": "741c423c-969d-4de8-890c-7dafaa5d1504", + "label": "label-157", + "height": 129, + "background": "blue" + }, + { + "key": "5597fa8d-1bfb-4dfe-af27-74303509ffde", + "label": "label-158", + "height": 489, + "background": "blue" + }, + { + "key": "76284eaa-6160-4765-8ef7-6fb25a579ced", + "label": "label-159", + "height": 312, + "background": "red" + }, + { + "key": "821f19ec-f1c3-438c-b34a-6f242aabed15", + "label": "label-160", + "height": 83, + "background": "yellow" + }, + { + "key": "d7da4f5a-01fd-4753-a1b6-9d480ae770f9", + "label": "label-161", + "height": 103, + "background": "yellow" + }, + { + "key": "6c2e63ae-7de5-4d9b-b68b-8520d5d8202e", + "label": "label-162", + "height": 164, + "background": "yellow" + }, + { + "key": "072acb22-6b6e-4b2b-8117-d721168d7f43", + "label": "label-163", + "height": 475, + "background": "red" + }, + { + "key": "b800f85a-f3f2-45bc-81df-404a4ffd0753", + "label": "label-164", + "height": 522, + "background": "yellow" + }, + { + "key": "84d38e65-8d0d-497b-8b62-b47a19ac5ee4", + "label": "label-165", + "height": 441, + "background": "green" + }, + { + "key": "054dea99-979f-40f9-96fe-3fb4bae0091b", + "label": "label-166", + "height": 57, + "background": "green" + }, + { + "key": "87e50010-3b52-4378-a732-0bf2a7ef06de", + "label": "label-167", + "height": 388, + "background": "yellow" + }, + { + "key": "18bfe68e-a2f7-405f-b02a-4a6f9c24e7ee", + "label": "label-168", + "height": 45, + "background": "yellow" + }, + { + "key": "5fbb98d3-8daa-4535-aeee-5c45a2a61609", + "label": "label-169", + "height": 382, + "background": "red" + }, + { + "key": "0e3b57c0-f65a-46b4-b4b4-43bad6f0ed36", + "label": "label-170", + "height": 371, + "background": "yellow" + }, + { + "key": "b24a0e03-26ad-41d6-bf28-7a49dd997e2f", + "label": "label-171", + "height": 511, + "background": "green" + }, + { + "key": "eced09e5-c1d1-458a-a354-f0d94a80474f", + "label": "label-172", + "height": 236, + "background": "green" + }, + { + "key": "80df5159-b127-4490-9d67-44a65eb19d9e", + "label": "label-173", + "height": 119, + "background": "green" + }, + { + "key": "f602f23e-d5a8-4892-b4e8-a5efe12676f4", + "label": "label-174", + "height": 323, + "background": "blue" + }, + { + "key": "716a3ab4-66d5-4509-9d6e-f019801964c6", + "label": "label-175", + "height": 104, + "background": "yellow" + }, + { + "key": "ea2bba65-b448-4309-b529-97a44aad2d68", + "label": "label-176", + "height": 324, + "background": "blue" + }, + { + "key": "5e0d0d7f-24da-4c09-8404-fad43af9017e", + "label": "label-177", + "height": 418, + "background": "yellow" + }, + { + "key": "057dc088-0bf4-48bd-ab51-d47579817959", + "label": "label-178", + "height": 451, + "background": "blue" + }, + { + "key": "db2a5bb0-942f-44d9-ac64-a6b5cb7a3c83", + "label": "label-179", + "height": 447, + "background": "green" + }, + { + "key": "a9da1743-9db0-412e-9a59-a3d91c18464a", + "label": "label-180", + "height": 409, + "background": "yellow" + }, + { + "key": "b6ec79aa-c64d-45b6-80dc-7ccdc42b41b3", + "label": "label-181", + "height": 289, + "background": "blue" + }, + { + "key": "7a9e1d47-6752-4acb-aa89-0fbecc237f10", + "label": "label-182", + "height": 183, + "background": "yellow" + }, + { + "key": "cc06097d-989c-48ed-9aaa-3bda20d23a59", + "label": "label-183", + "height": 54, + "background": "green" + }, + { + "key": "49f6fd74-f6e8-42a6-9abe-6c5298133a9f", + "label": "label-184", + "height": 397, + "background": "red" + }, + { + "key": "c9ecd1b0-80ca-4f15-8a53-08cea8fd2fb7", + "label": "label-185", + "height": 484, + "background": "red" + }, + { + "key": "a4979dee-c710-4f79-93b5-2dbc90b926c6", + "label": "label-186", + "height": 528, + "background": "green" + }, + { + "key": "0b21ec50-5add-4967-8db1-010d1966558a", + "label": "label-187", + "height": 233, + "background": "red" + }, + { + "key": "34482c78-3bcc-4a60-abed-d8a1117fab37", + "label": "label-188", + "height": 238, + "background": "red" + }, + { + "key": "09340f07-51ac-45dd-a9ef-9ed22853981b", + "label": "label-189", + "height": 393, + "background": "red" + }, + { + "key": "d0869ab5-6de0-489c-9aff-5007d125050d", + "label": "label-190", + "height": 245, + "background": "blue" + }, + { + "key": "3a8d017a-e2df-4796-ba44-086d1667815c", + "label": "label-191", + "height": 285, + "background": "green" + }, + { + "key": "2bd34690-7d92-4b1a-a8a8-17cb07d1c75e", + "label": "label-192", + "height": 338, + "background": "yellow" + }, + { + "key": "384e364a-e041-47b4-9e1d-241db6840e6f", + "label": "label-193", + "height": 129, + "background": "yellow" + }, + { + "key": "d0cdaf13-c5bb-456e-9d89-4c0d28f357b9", + "label": "label-194", + "height": 298, + "background": "yellow" + }, + { + "key": "df8ee5bc-d305-4763-97e0-4f02ae743d1b", + "label": "label-195", + "height": 474, + "background": "blue" + }, + { + "key": "dd341894-b06e-4049-a27a-05cb91f3da4b", + "label": "label-196", + "height": 403, + "background": "blue" + }, + { + "key": "6d2006d8-0b54-41ac-8a4f-46c4ebcc97e7", + "label": "label-197", + "height": 364, + "background": "red" + }, + { + "key": "6d187b48-f865-4663-b133-35d181198fcc", + "label": "label-198", + "height": 44, + "background": "green" + }, + { + "key": "bb94780d-479d-4adc-af6b-0f7794056be3", + "label": "label-199", + "height": 422, + "background": "blue" + }, + { + "key": "fa4c76d4-2f27-4215-8b51-6603c4711d70", + "label": "label-200", + "height": 35, + "background": "yellow" + }, + { + "key": "aa29fb5b-c746-4ada-bd90-22b2472a6905", + "label": "label-201", + "height": 351, + "background": "yellow" + }, + { + "key": "4c1e3330-3a3c-4ae5-90be-1766c04a9354", + "label": "label-202", + "height": 394, + "background": "green" + }, + { + "key": "cb94e342-cacc-47cd-93a6-00e16117cec9", + "label": "label-203", + "height": 192, + "background": "yellow" + }, + { + "key": "cac04f20-f1a4-4726-a6b6-b162b987bf98", + "label": "label-204", + "height": 121, + "background": "blue" + }, + { + "key": "faf0a9f6-690f-43ab-b566-60af73203a43", + "label": "label-205", + "height": 510, + "background": "red" + }, + { + "key": "3b68d156-2aff-4d45-8eb7-8d44e4c4aaf3", + "label": "label-206", + "height": 454, + "background": "red" + }, + { + "key": "9575b39e-22e0-466a-ae59-9dab0fb47ed6", + "label": "label-207", + "height": 508, + "background": "yellow" + }, + { + "key": "292ae8e8-3c14-4394-90da-e53909220781", + "label": "label-208", + "height": 401, + "background": "red" + }, + { + "key": "54e7b756-03b9-4c60-8959-17bd9dc5c166", + "label": "label-209", + "height": 175, + "background": "green" + }, + { + "key": "ccd75986-4f78-4dfc-a398-944e2a637ea3", + "label": "label-210", + "height": 158, + "background": "blue" + }, + { + "key": "fd1c4616-9c5f-4a24-b020-fceacff54883", + "label": "label-211", + "height": 69, + "background": "red" + }, + { + "key": "f3462e70-9e8e-4cf5-8533-9e6c588be742", + "label": "label-212", + "height": 93, + "background": "blue" + }, + { + "key": "f87b25fd-99bc-4114-bf91-fd70f7384870", + "label": "label-213", + "height": 491, + "background": "green" + }, + { + "key": "f33dffd0-c3e3-4840-b7b0-1751912d6344", + "label": "label-214", + "height": 320, + "background": "red" + }, + { + "key": "233754ca-44ce-4fbf-a598-7c78b61464fd", + "label": "label-215", + "height": 80, + "background": "red" + }, + { + "key": "dc31278d-8045-4939-ae76-ee0643ca7c92", + "label": "label-216", + "height": 43, + "background": "red" + }, + { + "key": "8fb3f303-7259-41ff-b113-06b15d0e0c23", + "label": "label-217", + "height": 363, + "background": "blue" + }, + { + "key": "720d3ed6-9855-4f4a-9f02-6de781235209", + "label": "label-218", + "height": 214, + "background": "yellow" + }, + { + "key": "39a385cf-f84b-4bec-a2b5-fd48ed3ce13f", + "label": "label-219", + "height": 37, + "background": "blue" + }, + { + "key": "786b5e86-815a-4e47-8dec-178204280c98", + "label": "label-220", + "height": 68, + "background": "yellow" + }, + { + "key": "35804727-3d86-451b-92d5-2268e58ab0df", + "label": "label-221", + "height": 375, + "background": "yellow" + }, + { + "key": "f2f71d57-0a25-4447-bdae-72b293fed11f", + "label": "label-222", + "height": 359, + "background": "yellow" + }, + { + "key": "42174ccd-249b-405d-9365-6ea4f78941df", + "label": "label-223", + "height": 178, + "background": "blue" + }, + { + "key": "63a83cd5-a06d-4f54-953a-34c9d01cc5f3", + "label": "label-224", + "height": 135, + "background": "blue" + }, + { + "key": "cf6c2a85-afa4-4af3-b4f7-2465607ec44e", + "label": "label-225", + "height": 91, + "background": "green" + }, + { + "key": "a86cac5a-9092-497a-946a-b5f411af2492", + "label": "label-226", + "height": 282, + "background": "yellow" + }, + { + "key": "a9c8d90c-1551-4fba-aa5a-9374a1e45960", + "label": "label-227", + "height": 135, + "background": "green" + }, + { + "key": "ea9325bc-6e1a-4a6b-b890-012abd79f3e6", + "label": "label-228", + "height": 139, + "background": "blue" + }, + { + "key": "cc67eeae-c168-43c0-b29b-fd480bfbc96d", + "label": "label-229", + "height": 98, + "background": "blue" + }, + { + "key": "2f9f8e28-4131-424d-97ed-8cf9074c1150", + "label": "label-230", + "height": 191, + "background": "blue" + }, + { + "key": "a1cf096c-a21d-4dcc-9a49-8ef7227fe3c4", + "label": "label-231", + "height": 492, + "background": "red" + }, + { + "key": "d095eb3e-a2e9-43b6-afad-5e0202cc9898", + "label": "label-232", + "height": 114, + "background": "blue" + }, + { + "key": "d48a868c-f1bc-427c-ad23-ef18ee7d2ef2", + "label": "label-233", + "height": 332, + "background": "green" + }, + { + "key": "f0df4d88-ede5-4608-990e-8f1fb31604e3", + "label": "label-234", + "height": 41, + "background": "yellow" + }, + { + "key": "3df4fdbe-b21c-460f-bff3-602cc58fd48b", + "label": "label-235", + "height": 474, + "background": "blue" + }, + { + "key": "844ff17d-95cb-40e0-8134-d2d6461711a5", + "label": "label-236", + "height": 108, + "background": "green" + }, + { + "key": "4151de58-e247-4565-8e69-5891ae543986", + "label": "label-237", + "height": 371, + "background": "green" + }, + { + "key": "4cd128ce-9300-480d-9d1c-d51022636e21", + "label": "label-238", + "height": 498, + "background": "red" + }, + { + "key": "3a211bf2-8c5a-4822-8493-53260153c795", + "label": "label-239", + "height": 275, + "background": "red" + }, + { + "key": "7b8041ee-5604-4e04-8d52-f63e6eb94d30", + "label": "label-240", + "height": 390, + "background": "yellow" + }, + { + "key": "f3937ea4-8a51-46c0-8b55-1db5a20cb263", + "label": "label-241", + "height": 286, + "background": "red" + }, + { + "key": "8e3ff98f-2da0-4bbe-af2c-df48a0b875c6", + "label": "label-242", + "height": 98, + "background": "blue" + }, + { + "key": "3620f4f2-4887-4eb0-baf0-6e99571a8eb7", + "label": "label-243", + "height": 505, + "background": "red" + }, + { + "key": "2fc79757-92e4-4936-8ea9-2e590cff0561", + "label": "label-244", + "height": 196, + "background": "yellow" + }, + { + "key": "65bb84eb-7e3b-4d71-8310-f153a5646360", + "label": "label-245", + "height": 46, + "background": "blue" + }, + { + "key": "0a1b350e-36d9-4c98-a832-061f7f460d1b", + "label": "label-246", + "height": 268, + "background": "red" + }, + { + "key": "7aee2bcf-190a-4d53-8645-2ac32a248bb2", + "label": "label-247", + "height": 345, + "background": "green" + }, + { + "key": "f83720ac-ffc3-4079-8c61-5948e86bb479", + "label": "label-248", + "height": 481, + "background": "red" + }, + { + "key": "80eef2d3-485e-4bac-ac6a-d647e52563bf", + "label": "label-249", + "height": 189, + "background": "red" + }, + { + "key": "fd841cdb-537f-4967-a9b8-310bbf278919", + "label": "label-250", + "height": 523, + "background": "red" + }, + { + "key": "d72f6e19-d5e8-40c5-9575-0ebbe66d0268", + "label": "label-251", + "height": 384, + "background": "yellow" + }, + { + "key": "5ec055d2-6fea-4b07-951e-3c6ec3ac2884", + "label": "label-252", + "height": 475, + "background": "yellow" + }, + { + "key": "6cb54898-b78d-4360-a436-7894adcbaee2", + "label": "label-253", + "height": 514, + "background": "red" + }, + { + "key": "45db9c1a-8034-4bfa-9620-577fb5ff7b2f", + "label": "label-254", + "height": 320, + "background": "yellow" + }, + { + "key": "59fd8cf0-1b77-4e96-adfd-a438cf2a4ce3", + "label": "label-255", + "height": 500, + "background": "green" + }, + { + "key": "8246a479-de79-41c3-a61a-9dcdfc235a41", + "label": "label-256", + "height": 399, + "background": "red" + }, + { + "key": "e3eda63a-0143-4253-9a9e-c8e7f20c957e", + "label": "label-257", + "height": 381, + "background": "green" + }, + { + "key": "c3b0cae4-ffb1-468a-8647-71b1ea8f54d2", + "label": "label-258", + "height": 324, + "background": "blue" + }, + { + "key": "0aa1fe70-5380-4102-ad62-9c63c7507bbc", + "label": "label-259", + "height": 487, + "background": "red" + }, + { + "key": "1e093a02-2a19-41a4-a900-7b8caf41bd1c", + "label": "label-260", + "height": 269, + "background": "yellow" + }, + { + "key": "ca049065-aa5d-48d5-8c44-8e611c985ad2", + "label": "label-261", + "height": 230, + "background": "red" + }, + { + "key": "6e7d8f48-7ba7-457c-9e49-1d3b78bdb035", + "label": "label-262", + "height": 228, + "background": "yellow" + }, + { + "key": "21e790f0-638c-4035-9f23-69cc5d085c33", + "label": "label-263", + "height": 32, + "background": "red" + }, + { + "key": "77070684-6194-4c3d-a00a-6366e35044ed", + "label": "label-264", + "height": 283, + "background": "red" + }, + { + "key": "77d0bb04-23a1-4cfb-9402-004bb01d3bfa", + "label": "label-265", + "height": 167, + "background": "red" + }, + { + "key": "7c99715b-7523-4b47-8e8c-5479344ddfa9", + "label": "label-266", + "height": 110, + "background": "yellow" + }, + { + "key": "5d8a221c-4894-40b0-b580-f38f17a1305a", + "label": "label-267", + "height": 202, + "background": "yellow" + }, + { + "key": "8df88145-78a2-42bf-8f18-114f798031c1", + "label": "label-268", + "height": 434, + "background": "yellow" + }, + { + "key": "74add212-3e80-4e33-9cc4-1271f7a4a9a5", + "label": "label-269", + "height": 315, + "background": "green" + }, + { + "key": "edea59a2-f6b0-4800-9989-4b3ef518eeab", + "label": "label-270", + "height": 214, + "background": "blue" + }, + { + "key": "9adcf291-a19f-453c-895f-ae494c8492f7", + "label": "label-271", + "height": 57, + "background": "blue" + }, + { + "key": "879e2d5f-a9e5-40e3-93cc-bc269d658897", + "label": "label-272", + "height": 174, + "background": "red" + }, + { + "key": "f89ef5e0-f71c-4591-946f-ad53b76e09ca", + "label": "label-273", + "height": 151, + "background": "yellow" + }, + { + "key": "9f408b07-0aa5-4754-ac2b-b6a7b48e6660", + "label": "label-274", + "height": 433, + "background": "red" + }, + { + "key": "24ff8af8-2f95-41b9-961a-6c01107f72b5", + "label": "label-275", + "height": 502, + "background": "green" + }, + { + "key": "463ebd3b-4ae2-47a5-9077-409cd2f54b59", + "label": "label-276", + "height": 427, + "background": "blue" + }, + { + "key": "064c9ac8-ea3b-4b9a-9f42-6a6296bfdce8", + "label": "label-277", + "height": 494, + "background": "yellow" + }, + { + "key": "44306fd0-4754-4f29-a212-5cc463e671a9", + "label": "label-278", + "height": 257, + "background": "yellow" + }, + { + "key": "16db7ceb-cf4f-42ab-89a1-55b7a6dbfd28", + "label": "label-279", + "height": 203, + "background": "red" + }, + { + "key": "31cee137-8f39-4696-be14-668f2b2bc7fc", + "label": "label-280", + "height": 149, + "background": "green" + }, + { + "key": "7ee50a27-358d-4322-ae70-e24e83ac7c72", + "label": "label-281", + "height": 159, + "background": "red" + }, + { + "key": "9269534c-1bb2-4b19-aac8-ab6586569194", + "label": "label-282", + "height": 491, + "background": "red" + }, + { + "key": "95ded2f0-fa9e-4f70-b1bc-8398ded2c05a", + "label": "label-283", + "height": 274, + "background": "yellow" + }, + { + "key": "db931618-4eec-4af3-a98e-8e5c94007aa3", + "label": "label-284", + "height": 106, + "background": "yellow" + }, + { + "key": "d6737311-c707-4cf3-b1c7-d2376c57082c", + "label": "label-285", + "height": 296, + "background": "green" + }, + { + "key": "6799b184-9b7d-4df2-8232-44a1c89a8d30", + "label": "label-286", + "height": 70, + "background": "red" + }, + { + "key": "6f6c5aa3-f3f4-42ff-bad1-947360099ce5", + "label": "label-287", + "height": 314, + "background": "red" + }, + { + "key": "59904ae6-aab2-4c45-a4f5-11baf35486cb", + "label": "label-288", + "height": 463, + "background": "blue" + }, + { + "key": "66bc87b1-f10c-43e4-90a6-3f06d25fa6db", + "label": "label-289", + "height": 131, + "background": "yellow" + }, + { + "key": "b0f48a48-a675-465f-9952-fd16c3fd7faa", + "label": "label-290", + "height": 392, + "background": "red" + }, + { + "key": "ff18458f-dff6-4859-b62d-bf70a18ce251", + "label": "label-291", + "height": 199, + "background": "green" + }, + { + "key": "2d448232-4e21-432a-b0ae-bfc0f511fb24", + "label": "label-292", + "height": 39, + "background": "green" + }, + { + "key": "8b479d64-de53-4b1c-977e-338661305342", + "label": "label-293", + "height": 468, + "background": "red" + }, + { + "key": "2e1a0546-b8a6-45b6-9de7-e2637cdbc340", + "label": "label-294", + "height": 178, + "background": "blue" + }, + { + "key": "b32df8cc-fc35-415d-bf62-780e09d6c3f8", + "label": "label-295", + "height": 287, + "background": "green" + }, + { + "key": "9139addf-d996-44dd-83c8-538a8eadafea", + "label": "label-296", + "height": 89, + "background": "yellow" + }, + { + "key": "899b49e7-489c-4c0b-a4f0-8ead5f0ed7d5", + "label": "label-297", + "height": 511, + "background": "yellow" + }, + { + "key": "81408af5-b314-4764-a80b-f836d57e8e5b", + "label": "label-298", + "height": 494, + "background": "red" + }, + { + "key": "4464c525-2470-49a1-88cd-6ba05999c0cf", + "label": "label-299", + "height": 499, + "background": "blue" + }, + { + "key": "50e65a0f-2017-492e-85e6-31cd654d4c82", + "label": "label-300", + "height": 265, + "background": "blue" + }, + { + "key": "a1a1bcd2-c9d3-458c-a60d-fef9692cdddd", + "label": "label-301", + "height": 321, + "background": "red" + }, + { + "key": "06685f5f-862d-46b0-9e5e-b7758d08a88e", + "label": "label-302", + "height": 486, + "background": "yellow" + }, + { + "key": "39d6c81c-54f0-48e8-bfd8-49c872301923", + "label": "label-303", + "height": 117, + "background": "green" + }, + { + "key": "cc911e22-f28a-40e7-b639-60e0a80e4d69", + "label": "label-304", + "height": 258, + "background": "yellow" + }, + { + "key": "71356fa7-bde6-47ee-b64a-edb85c0d1984", + "label": "label-305", + "height": 493, + "background": "blue" + }, + { + "key": "17f385dd-c7ca-4a2b-9844-be64e2c1db23", + "label": "label-306", + "height": 325, + "background": "red" + }, + { + "key": "d6051e3e-ac1c-48fc-b50e-e021899ffa59", + "label": "label-307", + "height": 188, + "background": "green" + }, + { + "key": "1e941fa4-ca2f-43f1-b78c-6fad299aa52c", + "label": "label-308", + "height": 261, + "background": "blue" + }, + { + "key": "ef3cd17a-8756-4423-9fab-fba4904fe8bb", + "label": "label-309", + "height": 60, + "background": "yellow" + }, + { + "key": "8e51e740-b3a9-408a-80ae-68bcd19466a2", + "label": "label-310", + "height": 60, + "background": "red" + }, + { + "key": "d50054b6-6f4f-488b-aab6-d21ed3c57eae", + "label": "label-311", + "height": 212, + "background": "red" + }, + { + "key": "134b27c5-2261-40da-8620-a940545236ec", + "label": "label-312", + "height": 442, + "background": "red" + }, + { + "key": "c4c04ca2-6855-449d-971d-35a30ebf69b9", + "label": "label-313", + "height": 369, + "background": "yellow" + }, + { + "key": "21b39d63-745f-433e-96c7-3095bc26f03f", + "label": "label-314", + "height": 474, + "background": "red" + }, + { + "key": "71dadd24-fe3a-4dc8-8c88-efc72a9019d1", + "label": "label-315", + "height": 410, + "background": "green" + }, + { + "key": "0a3a0692-c6f3-43bd-b118-f529ec554784", + "label": "label-316", + "height": 110, + "background": "red" + }, + { + "key": "ab85a910-8703-4ca3-b0d4-786342b56b16", + "label": "label-317", + "height": 208, + "background": "red" + }, + { + "key": "6b2779b6-cd2f-4a4c-a800-24c3bee3a7ee", + "label": "label-318", + "height": 77, + "background": "yellow" + }, + { + "key": "916ca9b1-ba57-4078-bbf2-7917b44327c1", + "label": "label-319", + "height": 503, + "background": "yellow" + }, + { + "key": "e048a682-38e3-4177-9c49-c24f39a40bab", + "label": "label-320", + "height": 443, + "background": "green" + }, + { + "key": "e4b535fc-64cd-435d-abd8-f287978bb90c", + "label": "label-321", + "height": 248, + "background": "yellow" + }, + { + "key": "b56d683f-439f-444b-a193-116fa9485c25", + "label": "label-322", + "height": 262, + "background": "blue" + }, + { + "key": "39ad0722-94f9-40bd-bd97-25599602e959", + "label": "label-323", + "height": 340, + "background": "red" + }, + { + "key": "cd36ab3f-8058-4d5b-968c-faf44edbf002", + "label": "label-324", + "height": 486, + "background": "green" + }, + { + "key": "19b82fc1-79b9-49df-896b-a4eb83052f3e", + "label": "label-325", + "height": 379, + "background": "red" + }, + { + "key": "a4cfc5f5-ab23-479f-b8ad-e3403005e785", + "label": "label-326", + "height": 198, + "background": "green" + }, + { + "key": "6d1d5119-4615-44d4-850c-34f861d7530b", + "label": "label-327", + "height": 412, + "background": "blue" + }, + { + "key": "0e13bfce-20f7-4234-9bc2-ba1706d656c6", + "label": "label-328", + "height": 453, + "background": "yellow" + }, + { + "key": "abc7f16b-2c4d-4699-b343-544b7bdb10d4", + "label": "label-329", + "height": 306, + "background": "green" + }, + { + "key": "f4602ad2-3cef-4a49-8bb9-22c4b820ef10", + "label": "label-330", + "height": 506, + "background": "blue" + }, + { + "key": "a903562d-af2e-413f-bb4e-493624eba156", + "label": "label-331", + "height": 168, + "background": "red" + }, + { + "key": "07581a6b-a6f9-41f6-82cf-e799f1314179", + "label": "label-332", + "height": 428, + "background": "yellow" + }, + { + "key": "09a563d0-139b-4036-9f6f-06303f895b04", + "label": "label-333", + "height": 368, + "background": "green" + }, + { + "key": "2c1f46ec-43fd-4b9b-9032-306448c43ae1", + "label": "label-334", + "height": 105, + "background": "yellow" + }, + { + "key": "5997ee50-4754-4854-90dd-4994e22bd547", + "label": "label-335", + "height": 171, + "background": "yellow" + }, + { + "key": "6780ae3d-ff7e-475d-9ca3-298ca70b9115", + "label": "label-336", + "height": 36, + "background": "red" + }, + { + "key": "554b20d9-1136-4ad4-b60d-ed587ecae335", + "label": "label-337", + "height": 218, + "background": "yellow" + }, + { + "key": "1c53d19d-b111-424d-832c-d8edf155e138", + "label": "label-338", + "height": 450, + "background": "yellow" + }, + { + "key": "ba060dad-6c64-4915-a05e-aaa34563f510", + "label": "label-339", + "height": 522, + "background": "blue" + }, + { + "key": "48a356ea-1315-4ee1-8d45-006aaf6d652c", + "label": "label-340", + "height": 106, + "background": "yellow" + }, + { + "key": "c5c9f388-9a95-428c-8a7d-80f28e5ccf29", + "label": "label-341", + "height": 50, + "background": "green" + }, + { + "key": "15349ff2-c8af-4979-963e-6b5bb183aeff", + "label": "label-342", + "height": 340, + "background": "green" + }, + { + "key": "1c1686f8-f9fe-4771-b774-aa55e9dcb911", + "label": "label-343", + "height": 252, + "background": "yellow" + }, + { + "key": "846ef6af-12c5-4138-8161-51f5af1a8a44", + "label": "label-344", + "height": 109, + "background": "blue" + }, + { + "key": "47d6c3d0-cf6b-4540-beea-96825f711c76", + "label": "label-345", + "height": 162, + "background": "yellow" + }, + { + "key": "e9c35224-d1f9-436b-96a8-14cd20a33138", + "label": "label-346", + "height": 231, + "background": "blue" + }, + { + "key": "bd58ec93-9144-4712-9f48-d3c3555b6d3b", + "label": "label-347", + "height": 405, + "background": "yellow" + }, + { + "key": "36324c65-a5c3-40ae-88ae-2a811902eecd", + "label": "label-348", + "height": 440, + "background": "yellow" + }, + { + "key": "68de9b5e-e180-426b-81e2-13192b0b6a76", + "label": "label-349", + "height": 431, + "background": "yellow" + }, + { + "key": "58a02f30-d97f-43ba-ac12-5a3ad33bdb2f", + "label": "label-350", + "height": 504, + "background": "green" + }, + { + "key": "28fe4eff-a4d0-43dc-9c80-b3ca9905386d", + "label": "label-351", + "height": 254, + "background": "blue" + }, + { + "key": "3ad68992-dce9-4ea4-98ac-b4deb797df77", + "label": "label-352", + "height": 283, + "background": "green" + }, + { + "key": "08bafbfc-4365-4168-a6f4-aee480bd58ea", + "label": "label-353", + "height": 440, + "background": "yellow" + }, + { + "key": "86947385-bcbb-49a7-8476-913899c05519", + "label": "label-354", + "height": 437, + "background": "yellow" + }, + { + "key": "ea3696cd-5eef-413d-85c4-356bef672836", + "label": "label-355", + "height": 110, + "background": "blue" + }, + { + "key": "503a3251-c5d5-4c13-a3cd-ee989dcf0faa", + "label": "label-356", + "height": 73, + "background": "blue" + }, + { + "key": "df9c9e69-e784-4521-aa76-973b273f35a0", + "label": "label-357", + "height": 99, + "background": "red" + }, + { + "key": "ee5b4258-5842-44e1-a19f-5ccdeb152255", + "label": "label-358", + "height": 294, + "background": "yellow" + }, + { + "key": "66dfe346-163e-4a36-8f50-49a650045220", + "label": "label-359", + "height": 294, + "background": "yellow" + }, + { + "key": "bfd2e44a-1381-442a-ab8d-729d1a26fc7b", + "label": "label-360", + "height": 527, + "background": "red" + }, + { + "key": "3b75e959-fc93-465c-a7da-e4f275ee4b33", + "label": "label-361", + "height": 501, + "background": "green" + }, + { + "key": "44bd76ba-4471-46cb-b15a-8018447e771a", + "label": "label-362", + "height": 34, + "background": "green" + }, + { + "key": "87f43f2e-d07f-4668-9285-82f53bc82711", + "label": "label-363", + "height": 335, + "background": "yellow" + }, + { + "key": "b8cf7f71-7ec1-4135-9d86-a9633f9e8fb0", + "label": "label-364", + "height": 319, + "background": "yellow" + }, + { + "key": "50a76fd0-7c2f-4d6e-86bb-b99f353ceb34", + "label": "label-365", + "height": 179, + "background": "red" + }, + { + "key": "b28d4364-463a-4f84-b0db-0948321a045c", + "label": "label-366", + "height": 109, + "background": "yellow" + }, + { + "key": "dff41042-fb25-4593-967e-2bcf02a53c81", + "label": "label-367", + "height": 231, + "background": "red" + }, + { + "key": "3156f2d3-2bac-4c92-9e5e-995f38289128", + "label": "label-368", + "height": 377, + "background": "yellow" + }, + { + "key": "615bbb2d-636a-44ef-ab54-5b96e40999df", + "label": "label-369", + "height": 374, + "background": "red" + }, + { + "key": "d97dd533-6e1b-4bf6-a2c2-b58ad648fdc4", + "label": "label-370", + "height": 428, + "background": "blue" + }, + { + "key": "f064a48f-006b-4252-8f2d-8d03af30a691", + "label": "label-371", + "height": 517, + "background": "blue" + }, + { + "key": "f5ba9272-e729-4113-b425-48b57663c83a", + "label": "label-372", + "height": 468, + "background": "yellow" + }, + { + "key": "1ee1b36c-1295-4481-9b0f-5c3f1181e708", + "label": "label-373", + "height": 268, + "background": "green" + }, + { + "key": "753397a9-b107-4bc4-8798-f331b195c550", + "label": "label-374", + "height": 233, + "background": "green" + }, + { + "key": "8fc257e0-9943-40b9-9ab9-ca1973fb6d74", + "label": "label-375", + "height": 373, + "background": "blue" + }, + { + "key": "024965f9-4b21-4a5f-bb7f-0916458670e1", + "label": "label-376", + "height": 333, + "background": "blue" + }, + { + "key": "f486fe47-4198-4f5b-a8fb-c189fb3ac9dc", + "label": "label-377", + "height": 36, + "background": "red" + }, + { + "key": "0942b3e1-e4f0-4be8-a3db-a9b05243843b", + "label": "label-378", + "height": 157, + "background": "red" + }, + { + "key": "1b45a536-9bc1-4fb6-a247-44f2f63732de", + "label": "label-379", + "height": 61, + "background": "green" + }, + { + "key": "d23895ca-a494-4e6f-974e-d47feebd0706", + "label": "label-380", + "height": 174, + "background": "red" + }, + { + "key": "9009d63a-fb5a-4af4-986d-5bc9568e56ef", + "label": "label-381", + "height": 357, + "background": "blue" + }, + { + "key": "2cdb959b-4835-4cd9-8b59-6bdac594d445", + "label": "label-382", + "height": 48, + "background": "yellow" + }, + { + "key": "11836c56-be47-4463-8bd3-cba2ec53a2fd", + "label": "label-383", + "height": 64, + "background": "red" + }, + { + "key": "751c6891-2b5c-4c36-a9e0-1193d1365527", + "label": "label-384", + "height": 325, + "background": "yellow" + }, + { + "key": "f1b8cd79-791e-46ca-a29d-2286f5e301f5", + "label": "label-385", + "height": 61, + "background": "blue" + }, + { + "key": "ca23f55b-427f-4a7b-8fce-965a6ac7f14d", + "label": "label-386", + "height": 115, + "background": "blue" + }, + { + "key": "ec79efe5-db65-4e25-8c10-cef0cc257d98", + "label": "label-387", + "height": 35, + "background": "blue" + }, + { + "key": "7d9da017-388f-4481-b0e8-05125bf88f81", + "label": "label-388", + "height": 422, + "background": "blue" + }, + { + "key": "cf2b5718-2b20-4198-b701-fecfbbc9ce5b", + "label": "label-389", + "height": 127, + "background": "blue" + }, + { + "key": "336706f6-8e12-4c3f-ac37-85bbf11c01d9", + "label": "label-390", + "height": 44, + "background": "red" + }, + { + "key": "e1df2667-c9cd-46d3-b7ca-204e3a3a8060", + "label": "label-391", + "height": 392, + "background": "blue" + }, + { + "key": "dc55e7ff-39a1-4edc-84bf-301f51df02f3", + "label": "label-392", + "height": 374, + "background": "red" + }, + { + "key": "b95aa50d-2840-4392-9d1f-3b5bde82ab4b", + "label": "label-393", + "height": 493, + "background": "blue" + }, + { + "key": "d197114f-bcfd-4a85-bd5f-dbf59f17e20d", + "label": "label-394", + "height": 502, + "background": "red" + }, + { + "key": "362413d7-be08-43a7-92bb-288926fc968a", + "label": "label-395", + "height": 80, + "background": "blue" + }, + { + "key": "eeb3761d-665a-423e-8398-1fb969f3f6c8", + "label": "label-396", + "height": 244, + "background": "red" + }, + { + "key": "c35f4e4f-6f42-4b07-a171-c58b850dfd42", + "label": "label-397", + "height": 117, + "background": "red" + }, + { + "key": "9b3fb54d-13c4-4587-aa93-75feef63862c", + "label": "label-398", + "height": 477, + "background": "yellow" + }, + { + "key": "d1155c5b-582a-429a-aaa7-4ab47939ee12", + "label": "label-399", + "height": 62, + "background": "red" + }, + { + "key": "7eb4b6b6-c826-41c2-a9dd-b3c644b54c6f", + "label": "label-400", + "height": 414, + "background": "green" + }, + { + "key": "cf154728-fa83-415b-bb12-81ed9cf92932", + "label": "label-401", + "height": 307, + "background": "blue" + }, + { + "key": "bc9e1d76-fc71-48e6-b03a-057e3024dec3", + "label": "label-402", + "height": 200, + "background": "red" + }, + { + "key": "fe461683-eccd-4a4c-b0b6-559b8dfb273b", + "label": "label-403", + "height": 269, + "background": "blue" + }, + { + "key": "b03add47-db8f-4967-820f-4eba449f7e24", + "label": "label-404", + "height": 257, + "background": "yellow" + }, + { + "key": "bd233b73-98dc-4ecc-90d2-b3eb4c82ae12", + "label": "label-405", + "height": 437, + "background": "red" + }, + { + "key": "69a50e81-4bc5-4bb5-868a-6332bb94f93d", + "label": "label-406", + "height": 263, + "background": "yellow" + }, + { + "key": "f9578d7d-22c1-41b8-a25a-bbcd109780a4", + "label": "label-407", + "height": 509, + "background": "green" + }, + { + "key": "aab1706a-a420-47db-bf4e-1d020b65a18c", + "label": "label-408", + "height": 434, + "background": "green" + }, + { + "key": "f36ba6c3-6dc7-40d4-b61d-8eed4d19cf20", + "label": "label-409", + "height": 74, + "background": "green" + }, + { + "key": "adc66c60-5e8f-4025-b42f-da7f2f4f2c83", + "label": "label-410", + "height": 321, + "background": "red" + }, + { + "key": "eee19cfb-17ef-41ee-a003-4c55e4ff7b59", + "label": "label-411", + "height": 442, + "background": "yellow" + }, + { + "key": "08f7317c-632c-4693-a0d5-a85a44475e6c", + "label": "label-412", + "height": 443, + "background": "blue" + }, + { + "key": "940601b9-752d-4d7c-b15f-495303e93afe", + "label": "label-413", + "height": 73, + "background": "blue" + }, + { + "key": "b7a5fede-6344-4c2a-841d-260b5a8e101a", + "label": "label-414", + "height": 283, + "background": "red" + }, + { + "key": "803e2299-0566-49b9-879f-c9842cc0bd52", + "label": "label-415", + "height": 58, + "background": "blue" + }, + { + "key": "696ff001-336c-43b4-b7d2-b32205382a65", + "label": "label-416", + "height": 76, + "background": "green" + }, + { + "key": "6fbd39e9-59bd-4dd0-98c3-63dcd96d7d56", + "label": "label-417", + "height": 53, + "background": "red" + }, + { + "key": "f4025351-6bfb-4a1c-8582-41c97806b816", + "label": "label-418", + "height": 481, + "background": "red" + }, + { + "key": "285a3e73-45be-4ce2-9575-0b09e0043257", + "label": "label-419", + "height": 86, + "background": "blue" + }, + { + "key": "b3b9bf7f-e999-4dd4-a79f-1ec0e36a3027", + "label": "label-420", + "height": 430, + "background": "green" + }, + { + "key": "a413f3ea-8786-4a42-96e2-5a5f9ec947f0", + "label": "label-421", + "height": 235, + "background": "red" + }, + { + "key": "e33f5790-2565-4c6a-896b-8acb422a950b", + "label": "label-422", + "height": 343, + "background": "red" + }, + { + "key": "ea25d07a-6c8d-4716-96df-b9008de2d230", + "label": "label-423", + "height": 169, + "background": "green" + }, + { + "key": "de20d5bf-4315-48e3-811e-0a10ecd09b06", + "label": "label-424", + "height": 455, + "background": "green" + }, + { + "key": "5c2aad3d-df04-4b42-8b79-df9cb7701912", + "label": "label-425", + "height": 509, + "background": "yellow" + }, + { + "key": "a13e8654-57fa-4168-9482-8751d050d796", + "label": "label-426", + "height": 181, + "background": "red" + }, + { + "key": "2d958657-cca2-44f5-ae4b-f6254df23fdb", + "label": "label-427", + "height": 182, + "background": "yellow" + }, + { + "key": "df2e706e-0d6a-46e1-9986-07a6c1981fa7", + "label": "label-428", + "height": 304, + "background": "yellow" + }, + { + "key": "d7d8a9dd-0ab0-4c2b-abf4-69550093e3c6", + "label": "label-429", + "height": 347, + "background": "yellow" + }, + { + "key": "868c9d9f-b930-4ad2-a8b4-bc5eff2b92ee", + "label": "label-430", + "height": 323, + "background": "blue" + }, + { + "key": "a18a7810-ca1e-455f-a4c4-1e624da372e1", + "label": "label-431", + "height": 349, + "background": "red" + }, + { + "key": "3489974d-d99b-414f-a437-be92200b8bdd", + "label": "label-432", + "height": 360, + "background": "green" + }, + { + "key": "ab5cdb21-2e52-47cf-8e4d-070a1dcf2946", + "label": "label-433", + "height": 437, + "background": "blue" + }, + { + "key": "871e9cf0-0489-4eab-b5d0-43868f392124", + "label": "label-434", + "height": 132, + "background": "green" + }, + { + "key": "3704378b-4a58-4c37-a30e-aae693ea217d", + "label": "label-435", + "height": 317, + "background": "yellow" + }, + { + "key": "c87efa07-3978-46a9-a481-e257077084fb", + "label": "label-436", + "height": 484, + "background": "green" + }, + { + "key": "9180e47e-ddcb-4c8d-8dc1-1a5a56117716", + "label": "label-437", + "height": 228, + "background": "yellow" + }, + { + "key": "7f46d6c7-11df-482c-9e7e-457360ca3891", + "label": "label-438", + "height": 505, + "background": "blue" + }, + { + "key": "adcf5afd-965f-436b-acc8-9a4f4211b14c", + "label": "label-439", + "height": 38, + "background": "red" + }, + { + "key": "44c0cf4a-3bec-45aa-b129-dbcb365628b2", + "label": "label-440", + "height": 285, + "background": "green" + }, + { + "key": "b04bf21b-4721-412a-a062-83a26d953039", + "label": "label-441", + "height": 505, + "background": "blue" + }, + { + "key": "b497e4bd-7ef7-45dc-9ac7-8d68afc1d172", + "label": "label-442", + "height": 354, + "background": "green" + }, + { + "key": "877eab54-600c-4acb-99f8-8475ed926f70", + "label": "label-443", + "height": 172, + "background": "green" + }, + { + "key": "8c53782a-e9d0-4c5f-ae74-44fa26dadf09", + "label": "label-444", + "height": 386, + "background": "red" + }, + { + "key": "761e4b78-d0da-4e4d-9a4f-6c8ecce5a104", + "label": "label-445", + "height": 340, + "background": "red" + }, + { + "key": "fd615a36-5634-4e6d-a811-797f90a13fe9", + "label": "label-446", + "height": 83, + "background": "blue" + }, + { + "key": "62051ddd-6d9c-4327-bec2-835241dc0b91", + "label": "label-447", + "height": 421, + "background": "red" + }, + { + "key": "ec22c2ca-d638-4bc5-bfbf-4f904babcb66", + "label": "label-448", + "height": 62, + "background": "green" + }, + { + "key": "e4cdb789-74a7-4748-8e85-86cbc9758a78", + "label": "label-449", + "height": 55, + "background": "red" + }, + { + "key": "22956d83-b5f2-4d12-92ca-ee6d5a95a24b", + "label": "label-450", + "height": 183, + "background": "yellow" + }, + { + "key": "82c3e63e-fc20-484c-86e0-59b0ac9e2b86", + "label": "label-451", + "height": 511, + "background": "blue" + }, + { + "key": "7e653cef-0842-4e5b-808d-284b7df2d84c", + "label": "label-452", + "height": 389, + "background": "yellow" + }, + { + "key": "44913968-2a1a-471b-9b8b-b0a174d52449", + "label": "label-453", + "height": 105, + "background": "yellow" + }, + { + "key": "e9bfef02-71eb-4492-a48d-a0a420ffa31f", + "label": "label-454", + "height": 70, + "background": "yellow" + }, + { + "key": "1fe709f4-1a3f-46f7-8752-ca75bad58d8f", + "label": "label-455", + "height": 518, + "background": "red" + }, + { + "key": "c5a69acc-75b7-4a27-9e3e-542d326dbf30", + "label": "label-456", + "height": 530, + "background": "blue" + }, + { + "key": "9d4145c1-e4bf-412d-8052-fa0e2821750a", + "label": "label-457", + "height": 182, + "background": "blue" + }, + { + "key": "6dd10858-3964-44b5-8249-b000b18a0787", + "label": "label-458", + "height": 529, + "background": "green" + }, + { + "key": "2de060c9-13ca-4202-9ee3-c488cbde0ad7", + "label": "label-459", + "height": 216, + "background": "green" + }, + { + "key": "7e635efb-1638-4371-8ca8-6a5b75fdb75a", + "label": "label-460", + "height": 207, + "background": "green" + }, + { + "key": "cba60e0b-ffec-446f-a8ac-6eb95115c8f2", + "label": "label-461", + "height": 314, + "background": "green" + }, + { + "key": "555b7b34-d995-487e-8d7f-3b834bf772e3", + "label": "label-462", + "height": 162, + "background": "yellow" + }, + { + "key": "b053b8f0-335e-4755-96f8-46a34b92910c", + "label": "label-463", + "height": 414, + "background": "blue" + }, + { + "key": "0dbf9ced-9dad-458e-a53f-98c0995eca4c", + "label": "label-464", + "height": 288, + "background": "green" + }, + { + "key": "6786ac4c-b174-4c5c-a9ac-f803e34905c0", + "label": "label-465", + "height": 225, + "background": "red" + }, + { + "key": "2ed9c783-057b-4a41-9047-05c0f8de0980", + "label": "label-466", + "height": 267, + "background": "blue" + }, + { + "key": "d84bc446-b70e-4c96-9090-95c755587fa1", + "label": "label-467", + "height": 167, + "background": "red" + }, + { + "key": "39ca6668-9c11-44af-9d90-5565ad0b6f5e", + "label": "label-468", + "height": 199, + "background": "red" + }, + { + "key": "2ed5ecdc-a377-4dad-af68-df87a81b5902", + "label": "label-469", + "height": 92, + "background": "blue" + }, + { + "key": "cf862633-a894-4ff0-991d-0860f1a2e4e0", + "label": "label-470", + "height": 127, + "background": "green" + }, + { + "key": "2f2d0c3f-08e0-48fb-90b4-3fcf860bc998", + "label": "label-471", + "height": 295, + "background": "yellow" + }, + { + "key": "0e8d0c99-ed75-40f7-961a-bbb645baafd3", + "label": "label-472", + "height": 46, + "background": "blue" + }, + { + "key": "477f054e-4b67-4098-ade2-3bdb89f0adbc", + "label": "label-473", + "height": 381, + "background": "blue" + }, + { + "key": "1966778d-8c58-4b79-b5a1-0a81174529e4", + "label": "label-474", + "height": 149, + "background": "blue" + }, + { + "key": "fc5375f3-3e2f-4c1d-a530-8eb5128b038f", + "label": "label-475", + "height": 245, + "background": "red" + }, + { + "key": "0722d776-698c-42bb-8cf4-7a8bec334bed", + "label": "label-476", + "height": 262, + "background": "yellow" + }, + { + "key": "277ed881-db8d-4a3d-89e9-391478219ba2", + "label": "label-477", + "height": 156, + "background": "blue" + }, + { + "key": "e1be8578-2542-4ff0-8af0-e67d6ae8b6b9", + "label": "label-478", + "height": 147, + "background": "yellow" + }, + { + "key": "f2a86fc2-6970-44ca-bf32-62300f373679", + "label": "label-479", + "height": 530, + "background": "green" + }, + { + "key": "9ab6a92d-b6e8-4396-a2f3-734270a1d978", + "label": "label-480", + "height": 111, + "background": "green" + }, + { + "key": "4c670161-9199-41ee-92a0-dced32fd70bb", + "label": "label-481", + "height": 480, + "background": "blue" + }, + { + "key": "fc5060e7-0be7-4dc2-8681-3ebfa9df381c", + "label": "label-482", + "height": 464, + "background": "blue" + }, + { + "key": "2ac8f5d1-0ef2-40c1-ac6f-0f339794442d", + "label": "label-483", + "height": 527, + "background": "blue" + }, + { + "key": "d65dcec8-134f-4021-9e83-9c62574177c5", + "label": "label-484", + "height": 179, + "background": "green" + }, + { + "key": "f844bd84-b774-4c6f-bf61-5aac991c6852", + "label": "label-485", + "height": 96, + "background": "red" + }, + { + "key": "238fa11d-b3c1-49d1-b4cb-d0322b70a3d9", + "label": "label-486", + "height": 107, + "background": "red" + }, + { + "key": "8a089fef-ff40-446b-9a64-de4625892320", + "label": "label-487", + "height": 328, + "background": "yellow" + }, + { + "key": "e4fbb319-3067-4cb5-8506-813769925d31", + "label": "label-488", + "height": 410, + "background": "yellow" + }, + { + "key": "9158a70d-5171-40fe-a6ac-e8a00f1680d9", + "label": "label-489", + "height": 203, + "background": "blue" + }, + { + "key": "667328dc-c411-450a-948a-1572fbe23209", + "label": "label-490", + "height": 370, + "background": "blue" + }, + { + "key": "70e5d593-05a2-4c17-857e-1b3c67a3064e", + "label": "label-491", + "height": 503, + "background": "red" + }, + { + "key": "cc0f7b93-8c74-4931-b3d6-e21548c89ba6", + "label": "label-492", + "height": 530, + "background": "red" + }, + { + "key": "8a7ad3ee-8058-4e90-97e8-51a43660ff8f", + "label": "label-493", + "height": 40, + "background": "yellow" + }, + { + "key": "774acffc-a30b-4799-aa72-8daaed321518", + "label": "label-494", + "height": 114, + "background": "yellow" + }, + { + "key": "5987364c-b41b-4ca1-a073-5250991170fb", + "label": "label-495", + "height": 171, + "background": "blue" + }, + { + "key": "e8386fff-4202-4256-a1ce-88f0d8a45e2b", + "label": "label-496", + "height": 376, + "background": "yellow" + }, + { + "key": "9e4a4a14-54be-42b7-881a-0ebdc2c5e5e4", + "label": "label-497", + "height": 298, + "background": "red" + }, + { + "key": "409e3045-29d9-479e-a917-0f25cae723ff", + "label": "label-498", + "height": 218, + "background": "yellow" + }, + { + "key": "94b599fa-4858-475d-8506-4dc904244380", + "label": "label-499", + "height": 263, + "background": "green" + }, + { + "key": "6a60f6a7-b551-4a4b-8f2c-75525fba84b7", + "label": "label-500", + "height": 298, + "background": "red" + }, + { + "key": "7198c589-1d36-4595-beb4-ffa325f43dc7", + "label": "label-501", + "height": 472, + "background": "green" + }, + { + "key": "e4990057-8b39-4783-999d-99f0d722b176", + "label": "label-502", + "height": 179, + "background": "blue" + }, + { + "key": "27583f61-a538-4c4d-9496-144bd6f4b4c2", + "label": "label-503", + "height": 211, + "background": "yellow" + }, + { + "key": "323f8b11-f71c-4b77-ab46-60c175fdb0af", + "label": "label-504", + "height": 197, + "background": "blue" + }, + { + "key": "528cd319-86c0-4d41-b330-fa88f9a6133c", + "label": "label-505", + "height": 467, + "background": "red" + }, + { + "key": "1a2215c0-5aa7-42ba-b723-8e0883ea2030", + "label": "label-506", + "height": 430, + "background": "yellow" + }, + { + "key": "63405018-e344-4948-94a8-e9312b5a8d79", + "label": "label-507", + "height": 334, + "background": "yellow" + }, + { + "key": "1db08d67-7ff2-4fb2-a2fa-d7acc6689564", + "label": "label-508", + "height": 33, + "background": "yellow" + }, + { + "key": "43473a06-1160-4526-b2b0-054ccacf1fcb", + "label": "label-509", + "height": 509, + "background": "red" + }, + { + "key": "e2ae58da-5af2-498d-95c2-1c6884fae2bd", + "label": "label-510", + "height": 307, + "background": "green" + }, + { + "key": "373728ce-1831-4077-89df-3008f992787c", + "label": "label-511", + "height": 192, + "background": "red" + }, + { + "key": "8d763d9d-070d-457a-873c-62f1e3d0d4c6", + "label": "label-512", + "height": 103, + "background": "green" + }, + { + "key": "df0b1825-e93a-4a8d-9154-dd372ec7207c", + "label": "label-513", + "height": 445, + "background": "yellow" + }, + { + "key": "ee52b26b-5252-4113-8acd-3bb85247eb40", + "label": "label-514", + "height": 446, + "background": "red" + }, + { + "key": "673530cd-b200-4065-b9be-14bdb09016e7", + "label": "label-515", + "height": 425, + "background": "red" + }, + { + "key": "06d2c6a1-700a-4a62-a9f4-13d3fb63b9be", + "label": "label-516", + "height": 196, + "background": "blue" + }, + { + "key": "167505a3-b396-4fcd-99f6-9c3b589cb8d3", + "label": "label-517", + "height": 143, + "background": "blue" + }, + { + "key": "e8f7f93a-f5ad-454c-af42-7397af471ae5", + "label": "label-518", + "height": 531, + "background": "green" + }, + { + "key": "d9f0bcd5-4491-4f2e-bfce-fe1b176621a2", + "label": "label-519", + "height": 298, + "background": "yellow" + }, + { + "key": "3bf3a05a-4a56-4173-8284-ffaa48c86d16", + "label": "label-520", + "height": 424, + "background": "blue" + }, + { + "key": "ee7e0ce4-eede-4d59-997b-aacfc29c9f39", + "label": "label-521", + "height": 519, + "background": "red" + }, + { + "key": "74252525-4795-4a21-aa74-c3f8be8111be", + "label": "label-522", + "height": 371, + "background": "green" + }, + { + "key": "794b0157-7a4d-4156-98b9-7090af198f56", + "label": "label-523", + "height": 97, + "background": "blue" + }, + { + "key": "de54567b-720e-4adb-9c4f-3c43b03e1081", + "label": "label-524", + "height": 457, + "background": "green" + }, + { + "key": "6ca0bf7f-9de5-43db-9749-c5c666329120", + "label": "label-525", + "height": 229, + "background": "yellow" + }, + { + "key": "0e4fc174-2cb7-48a2-93f9-20740597c1ff", + "label": "label-526", + "height": 290, + "background": "yellow" + }, + { + "key": "5a05c420-feb8-475f-9059-a5ffa3d1bdd5", + "label": "label-527", + "height": 440, + "background": "red" + }, + { + "key": "3ca2a317-787a-4ed0-a2a4-f96430befc0f", + "label": "label-528", + "height": 383, + "background": "red" + }, + { + "key": "4e3afaf1-502d-49f8-b947-21ec83431bd5", + "label": "label-529", + "height": 341, + "background": "yellow" + }, + { + "key": "07acfdba-8278-4557-bc5e-c8acb3fa49c3", + "label": "label-530", + "height": 509, + "background": "green" + }, + { + "key": "db903cba-5116-4c85-9be2-febbc812addd", + "label": "label-531", + "height": 319, + "background": "red" + }, + { + "key": "7b978751-d9f5-4126-a882-c0632dffb899", + "label": "label-532", + "height": 343, + "background": "yellow" + }, + { + "key": "813fe4c9-b068-4877-8323-01a604b82747", + "label": "label-533", + "height": 142, + "background": "red" + }, + { + "key": "0727f7dc-fd86-4693-a471-ef8e4447f2ec", + "label": "label-534", + "height": 497, + "background": "red" + }, + { + "key": "7e3813e7-278e-455c-8133-fc5083c81125", + "label": "label-535", + "height": 154, + "background": "green" + }, + { + "key": "dcf720ba-e656-46c7-a5d1-dc1fbe08f29c", + "label": "label-536", + "height": 400, + "background": "blue" + }, + { + "key": "21b8f26f-63c6-4291-bac9-27beb6625623", + "label": "label-537", + "height": 277, + "background": "red" + }, + { + "key": "d033ad75-2e42-41d7-b446-94441b2a8fb8", + "label": "label-538", + "height": 209, + "background": "yellow" + }, + { + "key": "33169a15-2775-4095-8171-a397df801815", + "label": "label-539", + "height": 38, + "background": "yellow" + }, + { + "key": "20cfc04d-a0c2-49aa-ae16-6f67a8c1ec8f", + "label": "label-540", + "height": 397, + "background": "blue" + }, + { + "key": "5c272d97-4b14-4fd7-93dc-4534671cdd02", + "label": "label-541", + "height": 74, + "background": "yellow" + }, + { + "key": "e2a1d7fb-5f9f-4a08-ab0c-98583fa2344d", + "label": "label-542", + "height": 508, + "background": "blue" + }, + { + "key": "107c8a4f-14c4-4bf7-87ac-c4966a2fd692", + "label": "label-543", + "height": 158, + "background": "red" + }, + { + "key": "362ddf35-f56c-4b8d-a5e9-5573355ebdf0", + "label": "label-544", + "height": 219, + "background": "blue" + }, + { + "key": "e43415ce-2467-4495-937b-96e537ab488d", + "label": "label-545", + "height": 171, + "background": "red" + }, + { + "key": "3481d6fd-465e-429a-86f2-d6e9cae64f56", + "label": "label-546", + "height": 241, + "background": "yellow" + }, + { + "key": "3966bcff-84af-4c0f-bae7-4b855515430b", + "label": "label-547", + "height": 248, + "background": "blue" + }, + { + "key": "31ee613b-7fd1-4242-9596-cbf5cedc9335", + "label": "label-548", + "height": 215, + "background": "green" + }, + { + "key": "ac8fc441-cfc1-4d9f-8208-9211684fa678", + "label": "label-549", + "height": 56, + "background": "green" + }, + { + "key": "00e27bab-22c1-4cb0-b971-c6491cf461f9", + "label": "label-550", + "height": 240, + "background": "yellow" + }, + { + "key": "dbaa42f8-310d-42d3-93ff-617ce7d2d8ce", + "label": "label-551", + "height": 37, + "background": "red" + }, + { + "key": "b7ccb858-806b-4570-bf9b-8f67c8aa9587", + "label": "label-552", + "height": 493, + "background": "green" + }, + { + "key": "325e9f3b-38f9-4675-9bb9-213c2cc679f5", + "label": "label-553", + "height": 113, + "background": "green" + }, + { + "key": "6a510b8c-1477-4e8a-b148-f772a1fc18cd", + "label": "label-554", + "height": 503, + "background": "green" + }, + { + "key": "2a3f8098-56ad-4ea9-a374-6fce77e9f0b7", + "label": "label-555", + "height": 470, + "background": "blue" + }, + { + "key": "bad60d4b-65d0-42dd-a877-b8ddfd86f609", + "label": "label-556", + "height": 32, + "background": "blue" + }, + { + "key": "341d568d-950b-4ada-bee4-93b336e94f63", + "label": "label-557", + "height": 180, + "background": "blue" + }, + { + "key": "f7f757bb-f179-4819-9258-0aa850f1516d", + "label": "label-558", + "height": 35, + "background": "blue" + }, + { + "key": "88029df7-1292-4430-837b-677a7abd7f62", + "label": "label-559", + "height": 334, + "background": "green" + }, + { + "key": "152b98db-b727-4e1f-9314-64f11899e0e1", + "label": "label-560", + "height": 332, + "background": "green" + }, + { + "key": "e23ef014-e022-4f75-981d-6bbb1664a5de", + "label": "label-561", + "height": 395, + "background": "green" + }, + { + "key": "d3f59f5d-9601-48b1-86c6-5a91ed610182", + "label": "label-562", + "height": 503, + "background": "green" + }, + { + "key": "e3354450-b1e9-40c0-b466-fbcc7b79dfdc", + "label": "label-563", + "height": 485, + "background": "blue" + }, + { + "key": "c345293d-0a89-4f57-8351-72a3b22a2317", + "label": "label-564", + "height": 311, + "background": "yellow" + }, + { + "key": "2dcee443-255b-429e-9f9e-993cf58d1b7f", + "label": "label-565", + "height": 441, + "background": "yellow" + }, + { + "key": "567f11ba-82f6-4a44-bc5d-a5e01d9456cf", + "label": "label-566", + "height": 135, + "background": "red" + }, + { + "key": "7f3b4d25-5324-4a15-869d-4267ffef602c", + "label": "label-567", + "height": 259, + "background": "red" + }, + { + "key": "c6fb94dd-3185-42de-973d-bfbb217a7503", + "label": "label-568", + "height": 289, + "background": "blue" + }, + { + "key": "2564c6de-ab88-4797-bc4a-274666336894", + "label": "label-569", + "height": 291, + "background": "red" + }, + { + "key": "5f10e0c1-7484-4274-893d-aba733b62490", + "label": "label-570", + "height": 419, + "background": "blue" + }, + { + "key": "c34be343-06e8-4a7e-b274-fc807898f2b9", + "label": "label-571", + "height": 466, + "background": "yellow" + }, + { + "key": "79eb88c2-d688-4747-a401-b7ccef117189", + "label": "label-572", + "height": 214, + "background": "green" + }, + { + "key": "5674a083-06c6-45db-9b5b-e5e4546acdb9", + "label": "label-573", + "height": 291, + "background": "red" + }, + { + "key": "6bb35440-7968-4488-bd32-ccc64516cee7", + "label": "label-574", + "height": 303, + "background": "blue" + }, + { + "key": "8b5117bb-90f5-4df9-9cea-60689dedf8e4", + "label": "label-575", + "height": 72, + "background": "blue" + }, + { + "key": "a918eaed-3919-49ef-99e0-46d5a1d922d7", + "label": "label-576", + "height": 313, + "background": "green" + }, + { + "key": "5e97ff70-2e0c-4990-bc9d-e0454a86d286", + "label": "label-577", + "height": 59, + "background": "green" + }, + { + "key": "b31e3bbc-aeda-47a5-8474-4a6491728aea", + "label": "label-578", + "height": 335, + "background": "blue" + }, + { + "key": "c66d739a-c223-4f7f-9817-465e693433d9", + "label": "label-579", + "height": 413, + "background": "green" + }, + { + "key": "fb698673-6439-4bdb-b746-656398936b86", + "label": "label-580", + "height": 442, + "background": "blue" + }, + { + "key": "5517586e-9e41-497e-877b-5ad3e28104da", + "label": "label-581", + "height": 182, + "background": "yellow" + }, + { + "key": "e806afb8-6319-430d-a2d7-a0421d23f2c9", + "label": "label-582", + "height": 351, + "background": "yellow" + }, + { + "key": "10ee6786-2be8-47d4-be7e-9bfd43b2f022", + "label": "label-583", + "height": 379, + "background": "green" + }, + { + "key": "70f3d36c-f75e-4ba3-ac34-e4fb1bd06802", + "label": "label-584", + "height": 118, + "background": "yellow" + }, + { + "key": "8b4eff12-21b4-4c29-b260-74f7b4e89574", + "label": "label-585", + "height": 287, + "background": "green" + }, + { + "key": "9cf66907-570e-450d-b8b8-fa9ae329a288", + "label": "label-586", + "height": 486, + "background": "yellow" + }, + { + "key": "2ada09b0-4258-4d6e-a6c3-4461dc276a0b", + "label": "label-587", + "height": 498, + "background": "blue" + }, + { + "key": "253823eb-88d2-437d-9235-3735903bf9c0", + "label": "label-588", + "height": 55, + "background": "yellow" + }, + { + "key": "3d20f5ea-ca84-4ee7-958a-1c65b322aab9", + "label": "label-589", + "height": 134, + "background": "green" + }, + { + "key": "e3a35ece-f010-44b5-8769-f16ac5ca1941", + "label": "label-590", + "height": 91, + "background": "yellow" + }, + { + "key": "3c7b2ebb-c335-48e3-8de2-7bba7f5941e3", + "label": "label-591", + "height": 253, + "background": "green" + }, + { + "key": "b84c516e-0c1f-40a3-b72b-a996d3f816c7", + "label": "label-592", + "height": 393, + "background": "blue" + }, + { + "key": "559d910a-c42b-4ab2-81a0-dfa094de6618", + "label": "label-593", + "height": 512, + "background": "red" + }, + { + "key": "982feceb-ad54-4c7e-ad99-c46d6175c51f", + "label": "label-594", + "height": 264, + "background": "red" + }, + { + "key": "c7733609-29fb-43e1-b4a0-2e7a5091f00a", + "label": "label-595", + "height": 183, + "background": "red" + }, + { + "key": "5f070329-7254-4d76-88be-ba136af8033e", + "label": "label-596", + "height": 183, + "background": "blue" + }, + { + "key": "71dc6e01-6862-486f-8d4c-09d4d1455270", + "label": "label-597", + "height": 217, + "background": "blue" + }, + { + "key": "763645d9-55f6-41fe-b340-33c6f1ef93e7", + "label": "label-598", + "height": 201, + "background": "green" + }, + { + "key": "2c5c1746-495f-4e96-93f1-f90cfb0897da", + "label": "label-599", + "height": 86, + "background": "blue" + }, + { + "key": "56402cf1-f7d2-4f94-875a-5af08d07d9b9", + "label": "label-600", + "height": 201, + "background": "red" + }, + { + "key": "f00fcd2b-9eff-4260-a119-c16ba7dd6817", + "label": "label-601", + "height": 100, + "background": "yellow" + }, + { + "key": "eada47ff-ed2c-491b-9dc7-43214efb364d", + "label": "label-602", + "height": 334, + "background": "green" + }, + { + "key": "724bb221-a14c-4e2e-8833-ca6f976194a2", + "label": "label-603", + "height": 81, + "background": "red" + }, + { + "key": "cfba2554-1ca2-4b90-863e-34c2ced35492", + "label": "label-604", + "height": 93, + "background": "red" + }, + { + "key": "1d098f2b-b28f-4d0a-9503-db81e5817d0e", + "label": "label-605", + "height": 434, + "background": "red" + }, + { + "key": "1758de40-1491-4719-9094-68b53389a36f", + "label": "label-606", + "height": 298, + "background": "green" + }, + { + "key": "51225a4c-30eb-4d78-9233-4f62c45446ac", + "label": "label-607", + "height": 191, + "background": "red" + }, + { + "key": "d63571a6-10f4-49a1-abdc-6aa93ddbd2b9", + "label": "label-608", + "height": 465, + "background": "yellow" + }, + { + "key": "9f4fcdf9-95cc-44ce-92d8-578e644e2e13", + "label": "label-609", + "height": 451, + "background": "red" + }, + { + "key": "b3315ad0-59df-47ee-87a7-08e780edabbe", + "label": "label-610", + "height": 265, + "background": "green" + }, + { + "key": "b96acf95-cc17-4cf6-b7cc-a5636f719e3d", + "label": "label-611", + "height": 294, + "background": "green" + }, + { + "key": "d2516278-c6a1-403c-9a33-db7a2c28a564", + "label": "label-612", + "height": 138, + "background": "red" + }, + { + "key": "be470691-d2d4-4ce5-a07b-338a60b36d42", + "label": "label-613", + "height": 388, + "background": "yellow" + }, + { + "key": "fb45ea6b-9cef-4004-b30a-4cb3101d8f63", + "label": "label-614", + "height": 505, + "background": "yellow" + }, + { + "key": "9da7e492-1d11-4071-bfed-440368cb29c4", + "label": "label-615", + "height": 377, + "background": "blue" + }, + { + "key": "6de15d8a-baaf-4298-a1e5-3cd49a323932", + "label": "label-616", + "height": 307, + "background": "yellow" + }, + { + "key": "a3a00416-0efe-4e34-bea6-e6edc0df6382", + "label": "label-617", + "height": 140, + "background": "red" + }, + { + "key": "119b8e19-cce4-4d23-a1f6-591d68f3bb31", + "label": "label-618", + "height": 474, + "background": "blue" + }, + { + "key": "dcdfbb32-5ae5-421a-a31d-390fc378ce1b", + "label": "label-619", + "height": 111, + "background": "red" + }, + { + "key": "3e712b01-d1ef-44c9-8df2-0c5ec5cd5741", + "label": "label-620", + "height": 360, + "background": "blue" + }, + { + "key": "b26010af-adb1-42f8-8001-9fb8bd7ef82e", + "label": "label-621", + "height": 521, + "background": "yellow" + }, + { + "key": "da799714-cbd1-43f5-bc43-6b15580c48f0", + "label": "label-622", + "height": 366, + "background": "blue" + }, + { + "key": "06385ddf-f23d-4a2c-af68-7bca8b42626e", + "label": "label-623", + "height": 115, + "background": "red" + }, + { + "key": "47df919c-3af4-4f4f-a24e-b0aac8e5a4e4", + "label": "label-624", + "height": 80, + "background": "blue" + }, + { + "key": "4ce6f032-9a0a-4e9d-9c55-9ab07a211ee9", + "label": "label-625", + "height": 367, + "background": "blue" + }, + { + "key": "8896d623-0751-479e-9125-ce0cd2d0b7d6", + "label": "label-626", + "height": 493, + "background": "red" + }, + { + "key": "a7d73cd0-0d09-40b5-af6b-106d4b5fdc1d", + "label": "label-627", + "height": 394, + "background": "green" + }, + { + "key": "622fca31-0a5b-4bb7-87eb-4af63b3c5b6d", + "label": "label-628", + "height": 358, + "background": "red" + }, + { + "key": "6be8a2bd-0362-4f2c-b780-45cf8e158984", + "label": "label-629", + "height": 40, + "background": "green" + }, + { + "key": "a78e87da-b6e5-4b03-92b9-7ab0a109b366", + "label": "label-630", + "height": 467, + "background": "blue" + }, + { + "key": "66fac41d-2f09-470d-b258-4233a8622cd1", + "label": "label-631", + "height": 253, + "background": "yellow" + }, + { + "key": "9213610c-acd3-457a-8045-eea9fb30c7bf", + "label": "label-632", + "height": 63, + "background": "yellow" + }, + { + "key": "514bd517-fa32-4191-a75c-6f7d1c0c7dc2", + "label": "label-633", + "height": 204, + "background": "red" + }, + { + "key": "01ff32fc-b702-4389-b872-f8fae7f8ff65", + "label": "label-634", + "height": 343, + "background": "blue" + }, + { + "key": "cedaeedb-b6a1-46cb-a9a5-6f09619f2912", + "label": "label-635", + "height": 157, + "background": "green" + }, + { + "key": "8b455d09-6ec9-49cc-8f86-c353d1c242da", + "label": "label-636", + "height": 82, + "background": "green" + }, + { + "key": "3ee325c6-3cac-43f4-a368-635d446bc6ef", + "label": "label-637", + "height": 403, + "background": "green" + }, + { + "key": "4c07e3aa-9bc5-4bcb-98ac-af32df8b9dc4", + "label": "label-638", + "height": 204, + "background": "blue" + }, + { + "key": "9f92996c-6d39-41c8-a410-a1ab077bbc44", + "label": "label-639", + "height": 486, + "background": "green" + }, + { + "key": "0e34b2f4-eec3-49f3-99e4-c4982d1df816", + "label": "label-640", + "height": 186, + "background": "green" + }, + { + "key": "88602eb9-081b-4f80-a588-61b17aedead3", + "label": "label-641", + "height": 300, + "background": "blue" + }, + { + "key": "76a81a70-cb4e-43a2-a376-0c5a79d6f701", + "label": "label-642", + "height": 139, + "background": "blue" + }, + { + "key": "a5c50d04-fadf-4b1b-bf8e-d6f60a37c1e5", + "label": "label-643", + "height": 195, + "background": "yellow" + }, + { + "key": "4d010766-ea21-40f1-af8f-6eea6f525c5c", + "label": "label-644", + "height": 397, + "background": "green" + }, + { + "key": "c949023c-fdb9-495a-9a1c-15c4bf6a6549", + "label": "label-645", + "height": 236, + "background": "yellow" + }, + { + "key": "bc503999-799f-4b70-a721-88b141f0b9a6", + "label": "label-646", + "height": 357, + "background": "red" + }, + { + "key": "5bd41d7c-2d99-4691-bec9-eaa72f5f7a3b", + "label": "label-647", + "height": 91, + "background": "red" + }, + { + "key": "d336c776-3507-4482-b1a9-87baa4b8e721", + "label": "label-648", + "height": 288, + "background": "yellow" + }, + { + "key": "85a02aa8-119e-42d3-9bed-afd13e4405a0", + "label": "label-649", + "height": 404, + "background": "yellow" + }, + { + "key": "85921180-7c77-45d8-a41e-6f92e62b45dc", + "label": "label-650", + "height": 478, + "background": "green" + }, + { + "key": "e784ef71-a6e5-4e9c-8eeb-ed2fb77a7125", + "label": "label-651", + "height": 453, + "background": "red" + }, + { + "key": "5b88ddb9-ae3a-467e-ace0-dffbdad22e41", + "label": "label-652", + "height": 424, + "background": "green" + }, + { + "key": "a6b8fee9-017d-456c-abee-487486fe405b", + "label": "label-653", + "height": 460, + "background": "red" + }, + { + "key": "d1bd2451-01b7-4ae2-8b1d-4972c3e9de45", + "label": "label-654", + "height": 37, + "background": "blue" + }, + { + "key": "716aabbf-dbba-404b-a7de-2a6d37ec9493", + "label": "label-655", + "height": 389, + "background": "green" + }, + { + "key": "b82c2734-de04-422c-9101-8eb38b416a2c", + "label": "label-656", + "height": 150, + "background": "green" + }, + { + "key": "a09382e9-3d06-4892-9504-644aab961ce5", + "label": "label-657", + "height": 472, + "background": "yellow" + }, + { + "key": "be20dbd8-7503-47e6-8117-67d172ec7831", + "label": "label-658", + "height": 119, + "background": "blue" + }, + { + "key": "db28c429-decb-4ddd-b2d4-c1d473d89c8f", + "label": "label-659", + "height": 122, + "background": "blue" + }, + { + "key": "68b9ccc4-505d-4891-9796-d5628817d187", + "label": "label-660", + "height": 50, + "background": "yellow" + }, + { + "key": "4884fdf4-1fd1-48d0-92e3-2a23d83086de", + "label": "label-661", + "height": 477, + "background": "blue" + }, + { + "key": "7a70d804-4138-40f0-9aec-3f20b888b3e6", + "label": "label-662", + "height": 332, + "background": "green" + }, + { + "key": "1f74152d-159e-4476-81c3-74e74fe4720e", + "label": "label-663", + "height": 448, + "background": "blue" + }, + { + "key": "d9f1a7d6-3656-484f-b94f-c94c1e51dfb0", + "label": "label-664", + "height": 298, + "background": "yellow" + }, + { + "key": "4a9748bf-e862-4bce-9cd3-1ffc23777d67", + "label": "label-665", + "height": 478, + "background": "yellow" + }, + { + "key": "ff715e40-3f54-452a-a33f-55ab6f37631f", + "label": "label-666", + "height": 390, + "background": "red" + }, + { + "key": "b634cc44-a768-4023-87a5-02320263fa5e", + "label": "label-667", + "height": 273, + "background": "red" + }, + { + "key": "69ad267a-9f45-437c-b803-29b4f6eb4ddd", + "label": "label-668", + "height": 138, + "background": "yellow" + }, + { + "key": "ab4cbcb0-8fec-4909-b5db-fbf4fa73617c", + "label": "label-669", + "height": 431, + "background": "yellow" + }, + { + "key": "04f87441-96ca-4a95-b0d5-dd0d4bf959df", + "label": "label-670", + "height": 51, + "background": "green" + }, + { + "key": "91c2e710-ab24-4fa7-ac7a-57ab02d01314", + "label": "label-671", + "height": 460, + "background": "green" + }, + { + "key": "54ddc0ce-5ee5-4d02-8847-324e9695c771", + "label": "label-672", + "height": 109, + "background": "red" + }, + { + "key": "e0ee5475-5a34-43ff-bde0-6b15b3c99ad3", + "label": "label-673", + "height": 111, + "background": "green" + }, + { + "key": "6868949b-e9ac-4290-b5b1-bd62e3058601", + "label": "label-674", + "height": 152, + "background": "yellow" + }, + { + "key": "2ff6474f-506c-493e-835e-0b317c226788", + "label": "label-675", + "height": 144, + "background": "red" + }, + { + "key": "4ad3492a-0340-420b-852d-7861ed02954d", + "label": "label-676", + "height": 186, + "background": "green" + }, + { + "key": "dcc0c805-22bb-4c52-b758-a2864532efe2", + "label": "label-677", + "height": 209, + "background": "blue" + }, + { + "key": "e340aec6-1b20-4aec-8e58-45165ec8b5ea", + "label": "label-678", + "height": 356, + "background": "red" + }, + { + "key": "f04a28a5-96f8-40fc-a6fe-e319143c55d5", + "label": "label-679", + "height": 136, + "background": "blue" + }, + { + "key": "e7c58bd6-24d3-48ab-a8ee-03003e08e246", + "label": "label-680", + "height": 280, + "background": "red" + }, + { + "key": "5ebf0200-a784-4d31-84dd-06a33fdcbaea", + "label": "label-681", + "height": 532, + "background": "yellow" + }, + { + "key": "e309da75-551d-4080-ad89-dfd0ef9b3b97", + "label": "label-682", + "height": 423, + "background": "yellow" + }, + { + "key": "97d3f7cc-105f-4f13-9ea1-4046af128035", + "label": "label-683", + "height": 247, + "background": "yellow" + }, + { + "key": "c486862c-64b7-4860-a335-027302b5fd4f", + "label": "label-684", + "height": 127, + "background": "red" + }, + { + "key": "fe5ac304-94cc-4bf7-9b06-1c5a968ce347", + "label": "label-685", + "height": 270, + "background": "red" + }, + { + "key": "472cbd76-c3e5-49d4-bf89-e1f8717f9193", + "label": "label-686", + "height": 461, + "background": "yellow" + }, + { + "key": "acd4f1a0-9b87-49ee-95e4-f69931d8bbf3", + "label": "label-687", + "height": 240, + "background": "blue" + }, + { + "key": "3b166a14-5359-4e23-88d3-7f68c604ec81", + "label": "label-688", + "height": 211, + "background": "red" + }, + { + "key": "10467515-fc2a-4daa-8e46-b09114bdec96", + "label": "label-689", + "height": 422, + "background": "green" + }, + { + "key": "1fb6754d-9095-4c36-afb5-5c90eb4476dd", + "label": "label-690", + "height": 298, + "background": "red" + }, + { + "key": "a7885ea2-c299-4f45-bf55-112035fd21aa", + "label": "label-691", + "height": 133, + "background": "green" + }, + { + "key": "d559e21f-5f72-4ed6-928f-7380f7a7db52", + "label": "label-692", + "height": 249, + "background": "red" + }, + { + "key": "3e8fb006-7b78-47cc-af1f-5714c91dbc7d", + "label": "label-693", + "height": 60, + "background": "yellow" + }, + { + "key": "db308583-e08e-4b5c-8847-45098a7d70e9", + "label": "label-694", + "height": 189, + "background": "green" + }, + { + "key": "319aa486-ed6c-4fd8-90e6-e7fc78290569", + "label": "label-695", + "height": 253, + "background": "green" + }, + { + "key": "af236e33-1e91-4c81-9517-ffc396294b3d", + "label": "label-696", + "height": 37, + "background": "red" + }, + { + "key": "c06a6f55-9d90-418f-98ba-3b189405f509", + "label": "label-697", + "height": 225, + "background": "red" + }, + { + "key": "389ad64f-1ab2-436c-8d1a-2a2e590db28f", + "label": "label-698", + "height": 287, + "background": "blue" + }, + { + "key": "457bc882-d52d-4a06-99a0-18ab33b3d49c", + "label": "label-699", + "height": 60, + "background": "blue" + }, + { + "key": "3b548fb7-963e-4611-889c-a6b6035cb8a3", + "label": "label-700", + "height": 152, + "background": "red" + }, + { + "key": "43ee4f58-10df-4f0c-afaa-77a07b6a832f", + "label": "label-701", + "height": 320, + "background": "blue" + }, + { + "key": "df77c898-f161-4ce1-85c5-f9cc9209ee84", + "label": "label-702", + "height": 365, + "background": "green" + }, + { + "key": "3013675b-64cc-4aaf-a8cc-4a411e5d2ee2", + "label": "label-703", + "height": 173, + "background": "red" + }, + { + "key": "d37d6c37-7d46-4aa2-b27b-f075123f01dc", + "label": "label-704", + "height": 69, + "background": "blue" + }, + { + "key": "4b733db1-e058-4572-a6d3-617c33e3828b", + "label": "label-705", + "height": 423, + "background": "yellow" + }, + { + "key": "84cbd464-9e05-4193-a292-891bbea0172a", + "label": "label-706", + "height": 473, + "background": "blue" + }, + { + "key": "22719a23-7ef3-4f78-8d97-d210b9bc7179", + "label": "label-707", + "height": 415, + "background": "blue" + }, + { + "key": "aaf48d1a-bf2f-4f6d-a5c6-96d8b31d2167", + "label": "label-708", + "height": 113, + "background": "blue" + }, + { + "key": "28e3589f-3b45-458a-bcbc-de54115b945f", + "label": "label-709", + "height": 211, + "background": "green" + }, + { + "key": "df1ea2aa-2a2c-49e4-ac9a-c7fa281b8f07", + "label": "label-710", + "height": 288, + "background": "blue" + }, + { + "key": "00af9315-9061-40b2-9171-c3ae6e799872", + "label": "label-711", + "height": 160, + "background": "red" + }, + { + "key": "07cde661-73ba-4c1e-87b0-835d32d0eb97", + "label": "label-712", + "height": 199, + "background": "green" + }, + { + "key": "7c19ba77-dfa0-4484-b83b-a741f6bd40dc", + "label": "label-713", + "height": 69, + "background": "red" + }, + { + "key": "1a6c26bf-ab63-42f6-af4d-9ffa8e929ace", + "label": "label-714", + "height": 126, + "background": "blue" + }, + { + "key": "6d8da07a-58f6-4643-91c6-141d515d8388", + "label": "label-715", + "height": 419, + "background": "blue" + }, + { + "key": "e5b100e5-336d-44a8-a530-6c4688ee3def", + "label": "label-716", + "height": 106, + "background": "blue" + }, + { + "key": "b60db4c0-6ca5-41d0-9c69-bbed19091d0e", + "label": "label-717", + "height": 175, + "background": "green" + }, + { + "key": "b8a0670d-abdd-4b71-b9c5-c9d0ada7db61", + "label": "label-718", + "height": 392, + "background": "yellow" + }, + { + "key": "2b82a233-8a4a-4fa9-b222-c1ec0de17f73", + "label": "label-719", + "height": 87, + "background": "red" + }, + { + "key": "e09271fb-4ee1-47fb-942f-425f9da59c48", + "label": "label-720", + "height": 345, + "background": "green" + }, + { + "key": "bd02b3cc-7c22-43e6-9d1d-4362456d3668", + "label": "label-721", + "height": 381, + "background": "red" + }, + { + "key": "6d9e770f-c513-4cf2-9627-4ed103e1ddc2", + "label": "label-722", + "height": 370, + "background": "green" + }, + { + "key": "b5ddc313-651a-42d0-82f6-379684ecf89f", + "label": "label-723", + "height": 442, + "background": "green" + }, + { + "key": "abfccdd2-c241-4d32-b57c-66a7191d0338", + "label": "label-724", + "height": 301, + "background": "green" + }, + { + "key": "15180438-b2a9-452c-bcc9-2941e4bf4551", + "label": "label-725", + "height": 227, + "background": "blue" + }, + { + "key": "3deeff23-4266-46b0-a205-b25c86abe7f2", + "label": "label-726", + "height": 272, + "background": "red" + }, + { + "key": "7e8f9f3f-b533-4c50-a160-6299f9845ace", + "label": "label-727", + "height": 42, + "background": "red" + }, + { + "key": "44592364-80ca-43ab-b4e3-89263b261df8", + "label": "label-728", + "height": 166, + "background": "yellow" + }, + { + "key": "9a6b5ea9-5d13-468d-907a-a87a56638bc5", + "label": "label-729", + "height": 327, + "background": "blue" + }, + { + "key": "8b3e2b0a-4a6b-4735-ac27-bcc96b65dce9", + "label": "label-730", + "height": 458, + "background": "blue" + }, + { + "key": "41007579-a7df-44c3-b477-7a7d8b6dc935", + "label": "label-731", + "height": 149, + "background": "green" + }, + { + "key": "cb5fe964-c79b-4623-af51-ec3cf3d69085", + "label": "label-732", + "height": 97, + "background": "yellow" + }, + { + "key": "54310c57-8f15-4f29-be4a-727e5cdd9c7b", + "label": "label-733", + "height": 432, + "background": "red" + }, + { + "key": "9eccd681-4bbe-4c96-929f-e0a16831214d", + "label": "label-734", + "height": 277, + "background": "blue" + }, + { + "key": "677302e8-73fc-4189-8d57-42f4ba9bdd06", + "label": "label-735", + "height": 495, + "background": "green" + }, + { + "key": "712e8f8f-b5a4-45ac-863d-3da62fe94e69", + "label": "label-736", + "height": 116, + "background": "blue" + }, + { + "key": "3516d156-ec9f-4ea2-b785-9f023c6842be", + "label": "label-737", + "height": 323, + "background": "red" + }, + { + "key": "cc1de565-b028-4b58-8771-a48c8f2160d4", + "label": "label-738", + "height": 529, + "background": "red" + }, + { + "key": "f58da851-02ff-4f23-8644-c39dce22b6f6", + "label": "label-739", + "height": 135, + "background": "green" + }, + { + "key": "096c154c-790d-4e7e-886b-fbc79fe2af47", + "label": "label-740", + "height": 87, + "background": "green" + }, + { + "key": "60937419-0b94-4efb-96e4-ce013dd96a41", + "label": "label-741", + "height": 485, + "background": "green" + }, + { + "key": "01b20d69-4bf1-4faa-97a5-ae1457968364", + "label": "label-742", + "height": 34, + "background": "green" + }, + { + "key": "69643726-7105-41be-8ea7-5865a327b163", + "label": "label-743", + "height": 176, + "background": "red" + }, + { + "key": "51019609-7b0f-4025-9f47-ca0290bd763a", + "label": "label-744", + "height": 55, + "background": "yellow" + }, + { + "key": "93f99be6-7ca6-4344-82e5-fccfadad9d91", + "label": "label-745", + "height": 336, + "background": "yellow" + }, + { + "key": "ff51efd2-6354-42af-862b-35563d50791b", + "label": "label-746", + "height": 159, + "background": "yellow" + }, + { + "key": "27d7c005-21d3-46d6-ae7d-28753d69ee28", + "label": "label-747", + "height": 80, + "background": "green" + }, + { + "key": "fa97c216-2ba6-490a-893d-436e4a71c3f5", + "label": "label-748", + "height": 399, + "background": "yellow" + }, + { + "key": "c0c3499c-2d1d-4b9e-8d24-a1f4b63dfb1c", + "label": "label-749", + "height": 497, + "background": "green" + }, + { + "key": "453290d5-a73f-48fc-bbe1-3d399ca31856", + "label": "label-750", + "height": 475, + "background": "blue" + }, + { + "key": "c2eac0e2-350b-440a-a038-5a3cb5d1647e", + "label": "label-751", + "height": 116, + "background": "red" + }, + { + "key": "6ff8cf29-3740-4d86-8305-9dfa5d838530", + "label": "label-752", + "height": 216, + "background": "yellow" + }, + { + "key": "0d303143-7103-451a-8ac8-165beee933f3", + "label": "label-753", + "height": 504, + "background": "red" + }, + { + "key": "d395e8d9-de7f-4376-a475-c56e15055712", + "label": "label-754", + "height": 293, + "background": "red" + }, + { + "key": "0b212879-b009-402a-80f0-eddc3a3195d6", + "label": "label-755", + "height": 346, + "background": "green" + }, + { + "key": "66854070-ae3d-4e3e-b737-ae268cc77e81", + "label": "label-756", + "height": 425, + "background": "blue" + }, + { + "key": "3338e6bc-4016-4260-98b7-f79c87a532fd", + "label": "label-757", + "height": 110, + "background": "yellow" + }, + { + "key": "1efca286-7eea-45b3-a154-220602e6f1fc", + "label": "label-758", + "height": 418, + "background": "yellow" + }, + { + "key": "b6e6a126-d9df-40a6-8855-f5fa1e91b500", + "label": "label-759", + "height": 102, + "background": "green" + }, + { + "key": "1ba858c2-a2ec-4b30-a5e1-56f5da24e9d2", + "label": "label-760", + "height": 325, + "background": "red" + }, + { + "key": "d0bb12ab-6b8a-4fd9-8f68-8c6b5e597ebf", + "label": "label-761", + "height": 419, + "background": "green" + }, + { + "key": "c7c3f605-319e-4196-b95b-66771334c18f", + "label": "label-762", + "height": 517, + "background": "blue" + }, + { + "key": "98d7d908-f16c-42e8-a7ea-69b61bea81f7", + "label": "label-763", + "height": 220, + "background": "yellow" + }, + { + "key": "c0e18711-820e-4a59-8194-ae66ddfac57a", + "label": "label-764", + "height": 478, + "background": "green" + }, + { + "key": "a735bb49-692f-4b0e-8828-190baafd5bef", + "label": "label-765", + "height": 412, + "background": "red" + }, + { + "key": "1de2a695-ee38-4348-8596-5feb2d2b5a97", + "label": "label-766", + "height": 482, + "background": "blue" + }, + { + "key": "2ce8b788-6054-4d3f-a1f6-c56e5e3e9b9a", + "label": "label-767", + "height": 207, + "background": "yellow" + }, + { + "key": "bb9727d1-5c02-4540-9ad5-6e3ce393be14", + "label": "label-768", + "height": 124, + "background": "green" + }, + { + "key": "b236ca15-ac04-4d74-ad2c-7acf3934971d", + "label": "label-769", + "height": 214, + "background": "red" + }, + { + "key": "165c4046-43ba-403e-829c-8a6a6afb61f4", + "label": "label-770", + "height": 374, + "background": "red" + }, + { + "key": "a087cd27-84a9-4be9-9679-6974eb2d1142", + "label": "label-771", + "height": 258, + "background": "blue" + }, + { + "key": "96e1738a-6a52-4fb8-bcd7-e9e65e47e55a", + "label": "label-772", + "height": 452, + "background": "yellow" + }, + { + "key": "1eb1ddee-ed00-469c-ac44-8131d204b3e8", + "label": "label-773", + "height": 131, + "background": "yellow" + }, + { + "key": "46be4018-7c43-42b2-a769-a9a3ae6b0208", + "label": "label-774", + "height": 433, + "background": "green" + }, + { + "key": "cd16b8d6-9af0-4afa-b428-ed7c1f2c301b", + "label": "label-775", + "height": 386, + "background": "green" + }, + { + "key": "3a6ced2e-c46a-49e5-a039-7b861ff0fd6f", + "label": "label-776", + "height": 531, + "background": "yellow" + }, + { + "key": "b05ee0f1-2257-4546-8d80-a059d1462edf", + "label": "label-777", + "height": 365, + "background": "red" + }, + { + "key": "34659b18-392a-46c3-ab42-bdde29c59e7d", + "label": "label-778", + "height": 260, + "background": "yellow" + }, + { + "key": "fac2d3bb-0b10-4afb-a681-c5de4d7a34ec", + "label": "label-779", + "height": 240, + "background": "red" + }, + { + "key": "4a25a62d-b0d1-4d98-b84e-82e50ca168ac", + "label": "label-780", + "height": 148, + "background": "red" + }, + { + "key": "87a00f28-cb2b-464e-9912-98a002c2ce00", + "label": "label-781", + "height": 465, + "background": "yellow" + }, + { + "key": "55501ee7-2e84-4bae-afc0-416e7cee65ec", + "label": "label-782", + "height": 195, + "background": "green" + }, + { + "key": "3ff51c82-72ae-4163-9a70-24ddc51c83c3", + "label": "label-783", + "height": 301, + "background": "green" + }, + { + "key": "3b1c3397-1e07-4e83-8528-7ae94c5c7ed4", + "label": "label-784", + "height": 361, + "background": "green" + }, + { + "key": "10589280-6e27-496c-a1bc-43f06423042d", + "label": "label-785", + "height": 294, + "background": "blue" + }, + { + "key": "224f7a9e-736d-4580-84a6-8f904a0897c1", + "label": "label-786", + "height": 199, + "background": "yellow" + }, + { + "key": "80884e2d-840c-470a-8e61-31db4d6eff2b", + "label": "label-787", + "height": 140, + "background": "blue" + }, + { + "key": "7399a22a-9a73-44d1-a7e4-81ba79c3bd6d", + "label": "label-788", + "height": 96, + "background": "red" + }, + { + "key": "d18c2ef1-6f59-411e-b4f5-ff793ec0071b", + "label": "label-789", + "height": 78, + "background": "red" + }, + { + "key": "1bb70a27-aee4-4e5c-937e-7fddaea95ebf", + "label": "label-790", + "height": 33, + "background": "blue" + }, + { + "key": "46568b8a-2e34-46d2-8e21-c8aee629b9ed", + "label": "label-791", + "height": 404, + "background": "red" + }, + { + "key": "69e50f92-371d-43b2-853e-fee354d4b4c6", + "label": "label-792", + "height": 289, + "background": "red" + }, + { + "key": "3bd04f53-7c81-41d2-8ab4-f2b5c3973073", + "label": "label-793", + "height": 509, + "background": "yellow" + }, + { + "key": "6f985d10-1ad2-45d8-8d70-b7d3aa21ff29", + "label": "label-794", + "height": 223, + "background": "red" + }, + { + "key": "2f56eefe-1711-4bed-bf77-a0a916ce3f5c", + "label": "label-795", + "height": 467, + "background": "yellow" + }, + { + "key": "af3bb078-82c1-4219-a062-f96335455e00", + "label": "label-796", + "height": 440, + "background": "blue" + }, + { + "key": "b9474643-14f2-498e-999e-2f390a5d360c", + "label": "label-797", + "height": 211, + "background": "yellow" + }, + { + "key": "abbb0f25-1221-49d7-9574-47518dbf56b7", + "label": "label-798", + "height": 112, + "background": "green" + }, + { + "key": "188eb460-0fa9-4987-a0ab-6374a1a16d9c", + "label": "label-799", + "height": 238, + "background": "red" + }, + { + "key": "6523a9e3-cb1e-4a5a-9d95-819745bed889", + "label": "label-800", + "height": 358, + "background": "blue" + }, + { + "key": "f39b6aed-7236-41f3-9252-04d494ea7f6d", + "label": "label-801", + "height": 243, + "background": "blue" + }, + { + "key": "ca50161c-d492-4347-bc42-d461c8185d34", + "label": "label-802", + "height": 297, + "background": "yellow" + }, + { + "key": "63d36b1e-adf9-437d-97f3-ed154c80d358", + "label": "label-803", + "height": 155, + "background": "red" + }, + { + "key": "9d817ca5-a832-4892-976e-6a2587ea259b", + "label": "label-804", + "height": 407, + "background": "red" + }, + { + "key": "de8027df-a755-44d0-8de0-1442afbd33d3", + "label": "label-805", + "height": 313, + "background": "red" + }, + { + "key": "109dcfa2-0c8d-408a-910e-10742ef1f3c1", + "label": "label-806", + "height": 99, + "background": "yellow" + }, + { + "key": "656376b7-151d-4652-97ca-7b2ea06258e0", + "label": "label-807", + "height": 216, + "background": "blue" + }, + { + "key": "a5b618ae-0313-4b53-9620-69f66acaac3e", + "label": "label-808", + "height": 460, + "background": "blue" + }, + { + "key": "2c1fb2df-97fb-4305-86f3-f2fa6d7c09d5", + "label": "label-809", + "height": 490, + "background": "green" + }, + { + "key": "8973fc4a-2e0e-4a7c-a82c-072f0aba6a41", + "label": "label-810", + "height": 511, + "background": "blue" + }, + { + "key": "b3b5d31f-9eff-41cf-bc9b-4ba54d070f43", + "label": "label-811", + "height": 515, + "background": "blue" + }, + { + "key": "a319b5c7-26c2-42ff-af86-e85233b2025f", + "label": "label-812", + "height": 304, + "background": "red" + }, + { + "key": "14cf9086-1ba1-472b-abc7-d3a294563ab6", + "label": "label-813", + "height": 493, + "background": "red" + }, + { + "key": "22a921c8-7d44-47c9-8edb-eafd31356660", + "label": "label-814", + "height": 337, + "background": "green" + }, + { + "key": "a32cce20-4dbf-4698-aa64-eda4d7b098dd", + "label": "label-815", + "height": 379, + "background": "blue" + }, + { + "key": "6ac6c4a1-1e8f-47fa-a600-2d858d526c5d", + "label": "label-816", + "height": 318, + "background": "yellow" + }, + { + "key": "53cc1b02-ce1e-4642-8261-6307d66bdc4e", + "label": "label-817", + "height": 181, + "background": "red" + }, + { + "key": "60955673-6724-4b95-8f3a-a395a76d285b", + "label": "label-818", + "height": 439, + "background": "blue" + }, + { + "key": "cd33a3b6-6541-42fa-9676-c11fa72c7f1f", + "label": "label-819", + "height": 347, + "background": "green" + }, + { + "key": "2c45a71f-c668-4ccf-8ec8-8a56e738ad4b", + "label": "label-820", + "height": 58, + "background": "blue" + }, + { + "key": "ac12f85c-22f9-44b7-a6ea-67b98f056bd7", + "label": "label-821", + "height": 75, + "background": "blue" + }, + { + "key": "0450ea1f-ee04-40b9-99e0-060b21710f94", + "label": "label-822", + "height": 451, + "background": "green" + }, + { + "key": "2115dcf3-d74b-4eae-9653-ae4725a0c5a6", + "label": "label-823", + "height": 370, + "background": "blue" + }, + { + "key": "29cdd6b0-80a2-446b-9a98-02eea1b2aee5", + "label": "label-824", + "height": 143, + "background": "green" + }, + { + "key": "b9c58bd1-f509-4a05-a76e-068a074e4607", + "label": "label-825", + "height": 104, + "background": "blue" + }, + { + "key": "45e818ac-8331-412b-93bc-9d08ffacc2b7", + "label": "label-826", + "height": 362, + "background": "yellow" + }, + { + "key": "e8fb429e-b0ba-4597-9003-b18d768dbe91", + "label": "label-827", + "height": 173, + "background": "green" + }, + { + "key": "d67247f4-1996-485b-91d5-4b92a20c882d", + "label": "label-828", + "height": 152, + "background": "red" + }, + { + "key": "eb6f82e3-3503-4895-8b88-ccc2d44f7b02", + "label": "label-829", + "height": 183, + "background": "red" + }, + { + "key": "3238d1bd-64a5-4bd1-9bbd-41b19b5387e2", + "label": "label-830", + "height": 111, + "background": "yellow" + }, + { + "key": "1247aeef-90fe-446d-915f-b381a5139b52", + "label": "label-831", + "height": 147, + "background": "green" + }, + { + "key": "1698784e-9086-4865-b7b1-da8fd0201a44", + "label": "label-832", + "height": 265, + "background": "red" + }, + { + "key": "0c207317-2629-41c8-a675-a6f4b4d37463", + "label": "label-833", + "height": 183, + "background": "red" + }, + { + "key": "932d3f9d-4c60-4dc5-b460-5ebc30a6415d", + "label": "label-834", + "height": 148, + "background": "red" + }, + { + "key": "badadd98-6c31-4fcc-a702-aca0a497c90d", + "label": "label-835", + "height": 309, + "background": "yellow" + }, + { + "key": "5e22800d-9e71-4f92-a7f0-22d00724398d", + "label": "label-836", + "height": 520, + "background": "blue" + }, + { + "key": "7fcd9d22-7f39-4bd6-a3a5-66937d2f1d45", + "label": "label-837", + "height": 466, + "background": "green" + }, + { + "key": "32bb1840-fa17-4661-becf-d9e7a014949d", + "label": "label-838", + "height": 351, + "background": "red" + }, + { + "key": "6c217586-0795-43c7-af36-e3ef443d9368", + "label": "label-839", + "height": 104, + "background": "blue" + }, + { + "key": "42e27aa9-e75e-49fb-ad54-36565ed006e6", + "label": "label-840", + "height": 58, + "background": "red" + }, + { + "key": "981b4581-4830-478c-ab8a-5a0fa6277449", + "label": "label-841", + "height": 60, + "background": "yellow" + }, + { + "key": "3feb4833-df1b-46cf-af51-35fb70a83d01", + "label": "label-842", + "height": 66, + "background": "red" + }, + { + "key": "94b5b384-5329-48d6-a0a2-4abf3f7993da", + "label": "label-843", + "height": 469, + "background": "green" + }, + { + "key": "2c375de8-81d3-46a8-bc89-ef491daa601c", + "label": "label-844", + "height": 115, + "background": "yellow" + }, + { + "key": "2bb9e200-4d87-456e-9d14-86340e55eb3c", + "label": "label-845", + "height": 405, + "background": "red" + }, + { + "key": "495b0ffa-bc26-423e-bdd3-70e5832383d7", + "label": "label-846", + "height": 120, + "background": "red" + }, + { + "key": "952aa972-0ccc-42da-86a8-7be171f1dd1d", + "label": "label-847", + "height": 45, + "background": "yellow" + }, + { + "key": "ed11bcb8-cda9-429b-85d0-f7d7be8fd6e5", + "label": "label-848", + "height": 466, + "background": "blue" + }, + { + "key": "92c91a83-acfa-461c-a268-24be84bf62c6", + "label": "label-849", + "height": 372, + "background": "red" + }, + { + "key": "a0233637-ce20-4e40-9068-25b1d42ebb93", + "label": "label-850", + "height": 487, + "background": "green" + }, + { + "key": "355a6fac-90bc-4ada-abd1-d093f92b8e1e", + "label": "label-851", + "height": 176, + "background": "green" + }, + { + "key": "ba8f189e-05ac-4a99-9e2f-1a14715a652b", + "label": "label-852", + "height": 405, + "background": "green" + }, + { + "key": "5adc31d0-932f-4252-8fd0-3323aa8a698f", + "label": "label-853", + "height": 195, + "background": "yellow" + }, + { + "key": "45b094f3-fc5c-4d9a-bb64-3b8974c39e4b", + "label": "label-854", + "height": 209, + "background": "yellow" + }, + { + "key": "83a5f9bd-5088-407a-8964-e058065bf0a9", + "label": "label-855", + "height": 346, + "background": "yellow" + }, + { + "key": "400fbfee-aab6-48a1-88b0-befdfd6d79c4", + "label": "label-856", + "height": 371, + "background": "red" + }, + { + "key": "78358f78-d857-44f4-83d1-016038704a6b", + "label": "label-857", + "height": 176, + "background": "red" + }, + { + "key": "c01c537d-daf0-4cb5-81f9-ce7e4543740c", + "label": "label-858", + "height": 434, + "background": "yellow" + }, + { + "key": "0287a234-ccfd-4ec4-9387-e1fb73c1bcd0", + "label": "label-859", + "height": 139, + "background": "yellow" + }, + { + "key": "c3e01396-fae6-40e3-ba3c-86d99b84ef69", + "label": "label-860", + "height": 518, + "background": "blue" + }, + { + "key": "fdf50e18-a269-49a0-87af-2df513bdee1f", + "label": "label-861", + "height": 437, + "background": "green" + }, + { + "key": "2d623612-0a45-431b-a4ce-752aadcdbc48", + "label": "label-862", + "height": 375, + "background": "blue" + }, + { + "key": "5f8974cd-67cb-4ece-b241-4e943e6bd2b9", + "label": "label-863", + "height": 106, + "background": "blue" + }, + { + "key": "aea74ae1-1ff2-4acc-acac-e6a7eecffc42", + "label": "label-864", + "height": 198, + "background": "blue" + }, + { + "key": "c34f06ff-1daf-4682-983d-9a450aed9548", + "label": "label-865", + "height": 475, + "background": "green" + }, + { + "key": "20a8756c-45dc-440b-abe5-bcb75ce7203d", + "label": "label-866", + "height": 173, + "background": "red" + }, + { + "key": "dc7d1380-e63b-4a91-80f7-bc9f64fb6880", + "label": "label-867", + "height": 333, + "background": "green" + }, + { + "key": "35e5c56f-af1d-4681-944a-b5e592841dd3", + "label": "label-868", + "height": 401, + "background": "red" + }, + { + "key": "afccec53-22ee-41a7-b1f1-a26a44bb86ce", + "label": "label-869", + "height": 343, + "background": "blue" + }, + { + "key": "a39ef7cc-4cc6-4dbc-a2c9-913f0802afaf", + "label": "label-870", + "height": 386, + "background": "green" + }, + { + "key": "57ca78d3-5a9a-4f71-86a2-1560bbb146e0", + "label": "label-871", + "height": 503, + "background": "blue" + }, + { + "key": "d1354701-47e4-49e6-8702-2dd17121d0ea", + "label": "label-872", + "height": 70, + "background": "red" + }, + { + "key": "22f3ae52-d92f-4b4c-b6ee-12852f7cbf47", + "label": "label-873", + "height": 373, + "background": "yellow" + }, + { + "key": "12fbc9b1-9ce8-4a74-9e3c-f3f13684ff66", + "label": "label-874", + "height": 181, + "background": "red" + }, + { + "key": "c83687b9-6134-41ce-a4d1-dbbcad84d7e1", + "label": "label-875", + "height": 138, + "background": "red" + }, + { + "key": "f5127b55-b7e4-4196-9cd1-4b10a4794a3f", + "label": "label-876", + "height": 222, + "background": "yellow" + }, + { + "key": "a44513a9-fbc6-46d0-81f7-31e9cd4caf45", + "label": "label-877", + "height": 382, + "background": "red" + }, + { + "key": "18c7b446-1479-44fb-8940-fc547dbaced0", + "label": "label-878", + "height": 450, + "background": "red" + }, + { + "key": "a4848c4c-b412-47b4-ba48-76217cc5c0a0", + "label": "label-879", + "height": 480, + "background": "blue" + }, + { + "key": "661c9628-97b9-427a-8776-033574a785f3", + "label": "label-880", + "height": 411, + "background": "blue" + }, + { + "key": "05b9989c-54c4-448c-b093-d3e91ff27307", + "label": "label-881", + "height": 202, + "background": "red" + }, + { + "key": "8066d97e-2620-4cd8-a565-a7652b528f45", + "label": "label-882", + "height": 57, + "background": "yellow" + }, + { + "key": "32601966-ee7f-4fb6-a044-0ba3a4e68d9b", + "label": "label-883", + "height": 126, + "background": "green" + }, + { + "key": "14b1241b-7f17-41b6-b6b2-99d46c7fde43", + "label": "label-884", + "height": 344, + "background": "yellow" + }, + { + "key": "d84d6b2c-8c47-49ec-9d01-ccd3147ab6ff", + "label": "label-885", + "height": 298, + "background": "blue" + }, + { + "key": "953e3ef1-dc39-46ed-9573-e031789e7c8f", + "label": "label-886", + "height": 404, + "background": "red" + }, + { + "key": "e258d9e9-eb46-4395-8a47-53dad341c15a", + "label": "label-887", + "height": 107, + "background": "yellow" + }, + { + "key": "fd805b53-ead9-45a0-ad53-ba63a57a2ff6", + "label": "label-888", + "height": 117, + "background": "yellow" + }, + { + "key": "72d00b9b-16f4-4af5-9ed7-a7642aa68502", + "label": "label-889", + "height": 334, + "background": "yellow" + }, + { + "key": "60212bc7-1195-450f-bc92-34e57ee58f13", + "label": "label-890", + "height": 171, + "background": "green" + }, + { + "key": "f1e2bb4a-1663-438a-ae9e-aa7b8d445991", + "label": "label-891", + "height": 363, + "background": "green" + }, + { + "key": "b3384aea-9ff5-4222-8e0f-56fac53ebb49", + "label": "label-892", + "height": 51, + "background": "red" + }, + { + "key": "98ac4a2b-f3dd-47c3-b2ec-4d9181e442bd", + "label": "label-893", + "height": 45, + "background": "red" + }, + { + "key": "c9b3e141-3cf3-442e-a2e1-77abd46bc716", + "label": "label-894", + "height": 286, + "background": "yellow" + }, + { + "key": "ea43efa9-d3b0-4495-b4b5-969d57127deb", + "label": "label-895", + "height": 502, + "background": "blue" + }, + { + "key": "ac04ad5b-6012-4ddb-93d7-7989169a8e74", + "label": "label-896", + "height": 54, + "background": "yellow" + }, + { + "key": "9611eeec-a98c-48f3-bf30-58d06655d853", + "label": "label-897", + "height": 434, + "background": "blue" + }, + { + "key": "4541dc78-5d0a-413c-8cfb-4e6341f6510f", + "label": "label-898", + "height": 182, + "background": "yellow" + }, + { + "key": "503083a0-c57f-4004-8df7-43a4cff4b02c", + "label": "label-899", + "height": 283, + "background": "blue" + }, + { + "key": "d3cae837-d2f6-4e18-a725-d3da53ce01b6", + "label": "label-900", + "height": 256, + "background": "red" + }, + { + "key": "0903e4be-acd1-4b28-b3b7-889d64849bb5", + "label": "label-901", + "height": 70, + "background": "green" + }, + { + "key": "452581e9-fb13-4ebe-91c5-74d17d3cfdfc", + "label": "label-902", + "height": 202, + "background": "red" + }, + { + "key": "90287505-ffdf-4cfc-8eb3-b5e234fb9edb", + "label": "label-903", + "height": 72, + "background": "blue" + }, + { + "key": "16c84e83-0572-49eb-a4f9-1466a198e5c2", + "label": "label-904", + "height": 77, + "background": "blue" + }, + { + "key": "28a0c023-b861-45c2-8696-53b92fbcd682", + "label": "label-905", + "height": 435, + "background": "green" + }, + { + "key": "d06378e6-ccec-4546-baf2-c643c277c757", + "label": "label-906", + "height": 344, + "background": "yellow" + }, + { + "key": "4469a878-c061-441f-9de2-231f32bc6c91", + "label": "label-907", + "height": 175, + "background": "blue" + }, + { + "key": "efedb3a8-0bee-452e-abdc-ea741f2121ad", + "label": "label-908", + "height": 244, + "background": "red" + }, + { + "key": "f395999f-6231-4744-bf1f-230abc2b985a", + "label": "label-909", + "height": 508, + "background": "yellow" + }, + { + "key": "282e39fd-3a30-4bd9-a2f4-4a1fa6ac73df", + "label": "label-910", + "height": 138, + "background": "blue" + }, + { + "key": "b78f4504-babf-4927-8401-71bce8404eeb", + "label": "label-911", + "height": 527, + "background": "blue" + }, + { + "key": "4f17c6ae-c5a0-49b2-841d-efa19ddd775b", + "label": "label-912", + "height": 159, + "background": "blue" + }, + { + "key": "5382289b-efd1-4721-b40d-9d766c8cdb57", + "label": "label-913", + "height": 92, + "background": "yellow" + }, + { + "key": "fe485769-a7ea-435b-a1c8-bade2b462fa7", + "label": "label-914", + "height": 150, + "background": "green" + }, + { + "key": "ed4c944c-a2f9-4115-b46b-a6ba9e4a3eb1", + "label": "label-915", + "height": 424, + "background": "yellow" + }, + { + "key": "ad34ebe9-1733-43bd-adac-56d87bceaf29", + "label": "label-916", + "height": 189, + "background": "red" + }, + { + "key": "84922dd5-60c8-402e-bc28-88f9729cb86e", + "label": "label-917", + "height": 246, + "background": "red" + }, + { + "key": "4d229645-d57b-4aa8-8860-f7594dfac006", + "label": "label-918", + "height": 145, + "background": "blue" + }, + { + "key": "94303684-35a9-4dc7-bc4c-16eba4eae1d8", + "label": "label-919", + "height": 60, + "background": "red" + }, + { + "key": "de847a92-6f0b-4a7f-97d7-5bf2f07fd324", + "label": "label-920", + "height": 171, + "background": "yellow" + }, + { + "key": "b1e3a90b-fe0a-4dae-a7b0-347706058814", + "label": "label-921", + "height": 515, + "background": "red" + }, + { + "key": "863b4be7-2b11-4d51-a3a6-88ea0b2f1891", + "label": "label-922", + "height": 89, + "background": "blue" + }, + { + "key": "68adc516-c94b-4538-a24c-b54e23e3549a", + "label": "label-923", + "height": 52, + "background": "green" + }, + { + "key": "4eb5e1b3-cd7f-4a5e-b651-500562acf43e", + "label": "label-924", + "height": 38, + "background": "yellow" + }, + { + "key": "c4840065-94b4-4a55-b1e0-ca951d0706da", + "label": "label-925", + "height": 95, + "background": "yellow" + }, + { + "key": "f721074e-4f1d-40fa-8db8-37025489ba8d", + "label": "label-926", + "height": 454, + "background": "blue" + }, + { + "key": "2aed5c77-4174-4bbb-bd27-0351c071cea7", + "label": "label-927", + "height": 464, + "background": "yellow" + }, + { + "key": "9dd09c9e-30de-44df-885d-f2ecc625ffdd", + "label": "label-928", + "height": 451, + "background": "yellow" + }, + { + "key": "149a8dfd-e2cf-4776-958a-fee87f2a2070", + "label": "label-929", + "height": 525, + "background": "blue" + }, + { + "key": "b6a37303-f58a-41d9-b9b9-04b6b9ff2c46", + "label": "label-930", + "height": 192, + "background": "yellow" + }, + { + "key": "4b2d8d57-f78a-4594-9eba-3b182d60a9e8", + "label": "label-931", + "height": 384, + "background": "green" + }, + { + "key": "5d1908f4-80df-4035-b3ab-4cce8ce937bd", + "label": "label-932", + "height": 467, + "background": "green" + }, + { + "key": "c0534e37-7534-4347-a1dd-b90dd320b54f", + "label": "label-933", + "height": 199, + "background": "yellow" + }, + { + "key": "a8d11de2-20cc-40b2-b49c-ad91305119a5", + "label": "label-934", + "height": 312, + "background": "green" + }, + { + "key": "4c776760-6ae8-4857-b27c-7cc48d0471c6", + "label": "label-935", + "height": 152, + "background": "yellow" + }, + { + "key": "ab933151-8e35-4af8-a967-ce139f8d4c7e", + "label": "label-936", + "height": 401, + "background": "red" + }, + { + "key": "0cbb9f99-734a-4fed-9ed0-c7b19eccc4d8", + "label": "label-937", + "height": 301, + "background": "green" + }, + { + "key": "f424acb5-1a56-47af-8d03-008e77993f21", + "label": "label-938", + "height": 500, + "background": "red" + }, + { + "key": "2a2a098e-7de9-4cca-8413-e0fb8506cba6", + "label": "label-939", + "height": 443, + "background": "blue" + }, + { + "key": "a49073be-f209-409a-ae9d-eeb7c65df342", + "label": "label-940", + "height": 79, + "background": "blue" + }, + { + "key": "7a970635-c0c8-4e39-9701-0a4ce92b1d6d", + "label": "label-941", + "height": 197, + "background": "blue" + }, + { + "key": "1d914401-6c2d-4417-a0c0-72d35f2ca10b", + "label": "label-942", + "height": 328, + "background": "red" + }, + { + "key": "38f271b0-4c28-469a-8653-892223e3020e", + "label": "label-943", + "height": 399, + "background": "red" + }, + { + "key": "8e76f9e1-d4cc-4446-9c42-f41b0dcb1293", + "label": "label-944", + "height": 141, + "background": "red" + }, + { + "key": "499bdf21-0fc7-4c10-a095-47646a5c7e1d", + "label": "label-945", + "height": 479, + "background": "blue" + }, + { + "key": "d85788b9-b011-430d-82de-d6654067fc54", + "label": "label-946", + "height": 39, + "background": "green" + }, + { + "key": "5cdc329f-da73-456f-b886-42900b317122", + "label": "label-947", + "height": 413, + "background": "red" + }, + { + "key": "b3327fe4-a1b7-4a2a-91e4-abc384d37a02", + "label": "label-948", + "height": 41, + "background": "blue" + }, + { + "key": "46416e52-ede1-439d-8e4e-cfeeaa73ea9d", + "label": "label-949", + "height": 115, + "background": "yellow" + }, + { + "key": "4f334304-4367-4d00-91c3-3955d5eb9e67", + "label": "label-950", + "height": 119, + "background": "red" + }, + { + "key": "6008edb4-3407-4e26-87e7-7a9322e805cd", + "label": "label-951", + "height": 60, + "background": "red" + }, + { + "key": "63065460-2cfc-401f-be2f-675c25ce0bd5", + "label": "label-952", + "height": 276, + "background": "blue" + }, + { + "key": "622ba732-ce53-4610-aeac-df2bb4430a0e", + "label": "label-953", + "height": 330, + "background": "green" + }, + { + "key": "650c3a75-7a4a-4cc7-90a8-e43601167ddf", + "label": "label-954", + "height": 493, + "background": "yellow" + }, + { + "key": "3663b490-c876-49dd-9d23-7906e1d36f6c", + "label": "label-955", + "height": 277, + "background": "green" + }, + { + "key": "5d6e1dca-3c3f-4552-9670-560c70a227f3", + "label": "label-956", + "height": 471, + "background": "red" + }, + { + "key": "88d00d23-87a0-4f37-933a-425a8c554935", + "label": "label-957", + "height": 410, + "background": "green" + }, + { + "key": "e021cdfd-0ebf-41bd-a514-93faa5e236d8", + "label": "label-958", + "height": 301, + "background": "yellow" + }, + { + "key": "10746bbd-a29f-4bc4-abcf-656472d904ce", + "label": "label-959", + "height": 129, + "background": "yellow" + }, + { + "key": "cc2337ac-6f72-4436-9509-c4582c725519", + "label": "label-960", + "height": 315, + "background": "yellow" + }, + { + "key": "8eff0d25-cd8a-4706-8b10-dda93c670d06", + "label": "label-961", + "height": 260, + "background": "yellow" + }, + { + "key": "ad50ef28-48ac-4ada-9679-f3047565e092", + "label": "label-962", + "height": 385, + "background": "yellow" + }, + { + "key": "0067ce8b-1bcb-4c27-bb80-2ba7bb943fb2", + "label": "label-963", + "height": 373, + "background": "green" + }, + { + "key": "acbf5dda-b4f1-4b7e-8fde-018b2eac86b1", + "label": "label-964", + "height": 300, + "background": "yellow" + }, + { + "key": "c6bdca43-b868-41e8-b595-025200335df2", + "label": "label-965", + "height": 313, + "background": "blue" + }, + { + "key": "985311eb-f914-4f85-b4c1-baf3454acfd6", + "label": "label-966", + "height": 256, + "background": "blue" + }, + { + "key": "46073f87-3be6-4d4c-8aa0-f99fd29f1515", + "label": "label-967", + "height": 302, + "background": "blue" + }, + { + "key": "90a89bf5-4cdf-4cad-8c5a-918593791400", + "label": "label-968", + "height": 398, + "background": "green" + }, + { + "key": "8e873848-b7ac-4e70-8a89-f922215a7b82", + "label": "label-969", + "height": 448, + "background": "yellow" + }, + { + "key": "e1a65545-098b-4d11-9301-71ef8108a7b4", + "label": "label-970", + "height": 184, + "background": "red" + }, + { + "key": "fbe3a27f-94f9-48fc-a97f-2a9d03f27ec9", + "label": "label-971", + "height": 439, + "background": "blue" + }, + { + "key": "7151f12c-d0d1-4fd2-9181-a1a55a7af933", + "label": "label-972", + "height": 170, + "background": "red" + }, + { + "key": "67502a52-377f-4742-967a-cf32cd7bfd33", + "label": "label-973", + "height": 272, + "background": "green" + }, + { + "key": "9beea111-b684-4082-bce9-4e6d4c2c3c4c", + "label": "label-974", + "height": 97, + "background": "yellow" + }, + { + "key": "af8b0af9-30fc-485b-a27e-b0c91c7cf7c8", + "label": "label-975", + "height": 362, + "background": "red" + }, + { + "key": "5a2be2b6-594b-413b-b126-5c1fecf098ee", + "label": "label-976", + "height": 169, + "background": "blue" + }, + { + "key": "3058470d-fbc8-4b7e-a31a-81c653dd43f4", + "label": "label-977", + "height": 361, + "background": "green" + }, + { + "key": "f8714106-fb58-41a8-96a0-c9837a4ff6a8", + "label": "label-978", + "height": 316, + "background": "green" + }, + { + "key": "2d881528-de1e-4158-bd46-17500e155073", + "label": "label-979", + "height": 306, + "background": "green" + }, + { + "key": "b6522ef1-2b51-4c06-a3bc-088b3042b813", + "label": "label-980", + "height": 221, + "background": "red" + }, + { + "key": "c9fa6218-303b-4330-aa36-8f801cdbc9b4", + "label": "label-981", + "height": 120, + "background": "blue" + }, + { + "key": "f22fd51a-4e62-4f49-b322-fb4e402d637c", + "label": "label-982", + "height": 496, + "background": "blue" + }, + { + "key": "a7bc453c-d130-49a2-92d9-6132334d5c05", + "label": "label-983", + "height": 318, + "background": "blue" + }, + { + "key": "231b456c-167b-41db-a2a2-d630bcf5fe46", + "label": "label-984", + "height": 122, + "background": "yellow" + }, + { + "key": "d6eea3bd-fa4e-4f41-b143-415afe380cfc", + "label": "label-985", + "height": 338, + "background": "blue" + }, + { + "key": "11f0d378-5871-4d8d-9585-9be8e04ab98b", + "label": "label-986", + "height": 358, + "background": "green" + }, + { + "key": "2f8535bb-2031-45d6-b48d-edadad09e76f", + "label": "label-987", + "height": 313, + "background": "green" + }, + { + "key": "4ec1d70b-9e9d-438a-812a-ee8e650662c2", + "label": "label-988", + "height": 145, + "background": "blue" + }, + { + "key": "a4c851cf-695b-483d-9e19-99b123e02b7a", + "label": "label-989", + "height": 300, + "background": "yellow" + }, + { + "key": "37a6f8fe-12d4-4d36-8647-42800239d16b", + "label": "label-990", + "height": 415, + "background": "red" + }, + { + "key": "b7ac03a9-8895-48ed-99f1-9126ef96274e", + "label": "label-991", + "height": 137, + "background": "yellow" + }, + { + "key": "f6c954cc-eb35-494a-b611-8142e3f09a32", + "label": "label-992", + "height": 354, + "background": "blue" + }, + { + "key": "e2ea82ac-e76f-4f33-b557-188045f9b136", + "label": "label-993", + "height": 302, + "background": "red" + }, + { + "key": "a6fb7537-7ab2-4729-9535-7f2259f1b8ee", + "label": "label-994", + "height": 256, + "background": "red" + }, + { + "key": "108e62bc-4415-4d7e-bbd9-6a7c0ab26fed", + "label": "label-995", + "height": 515, + "background": "blue" + }, + { + "key": "c23e42f7-5701-44d3-a0e3-f8277acb5b97", + "label": "label-996", + "height": 214, + "background": "red" + }, + { + "key": "29e72c7b-5966-4af4-b01d-c6ca7477d923", + "label": "label-997", + "height": 403, + "background": "blue" + }, + { + "key": "6b4cf1fd-61ee-4e92-9813-81d6b7e6a699", + "label": "label-998", + "height": 407, + "background": "red" + }, + { + "key": "43d351d8-2231-4632-b84c-6338794fe2d5", + "label": "label-999", + "height": 521, + "background": "blue" + }, + { + "key": "6a04e73d-4429-43c2-8c63-a51bfced6502", + "label": "label-1000", + "height": 278, + "background": "green" + }, + { + "key": "3738e478-5321-4e66-ad3a-eed9a9ad3d3d", + "label": "label-1001", + "height": 133, + "background": "yellow" + }, + { + "key": "f11ad021-6d7b-478b-b06e-1f95ab1af33b", + "label": "label-1002", + "height": 448, + "background": "yellow" + }, + { + "key": "0830c021-dfb0-452a-b54c-7405ff75f2c6", + "label": "label-1003", + "height": 34, + "background": "yellow" + }, + { + "key": "74fe77f1-d565-4e4f-8573-0e738d85cf63", + "label": "label-1004", + "height": 111, + "background": "red" + }, + { + "key": "621bf4dc-7be9-4be0-8f07-8dd405f90175", + "label": "label-1005", + "height": 41, + "background": "green" + }, + { + "key": "43d5a408-a73f-416e-826b-b7fb86236ecb", + "label": "label-1006", + "height": 362, + "background": "green" + }, + { + "key": "89596576-962d-4247-8d5b-955828e775cf", + "label": "label-1007", + "height": 180, + "background": "green" + }, + { + "key": "4aa69ad1-3bbf-4b39-9e64-66e3a86c52a2", + "label": "label-1008", + "height": 151, + "background": "green" + }, + { + "key": "d0073c77-f36c-40bf-9557-56226c418b7b", + "label": "label-1009", + "height": 276, + "background": "red" + }, + { + "key": "f9636599-196c-4c19-9c86-e3a6c3c87ac6", + "label": "label-1010", + "height": 191, + "background": "green" + }, + { + "key": "0c8a380d-4f43-41e0-bd98-8a6bec69cc2f", + "label": "label-1011", + "height": 253, + "background": "yellow" + }, + { + "key": "2d26a50a-c170-42ee-a22c-9af6e96dfada", + "label": "label-1012", + "height": 53, + "background": "red" + }, + { + "key": "1229c1c3-48ce-4933-876e-56c6e1cbf2ea", + "label": "label-1013", + "height": 128, + "background": "yellow" + }, + { + "key": "a6d65976-fee9-46a0-8f3a-d6ca7891cae9", + "label": "label-1014", + "height": 451, + "background": "yellow" + }, + { + "key": "ceb39138-76b3-4b5e-9af7-7f4a4194e8e1", + "label": "label-1015", + "height": 381, + "background": "red" + }, + { + "key": "9bf4b0ce-c4e9-41eb-8579-433924be10bd", + "label": "label-1016", + "height": 477, + "background": "green" + }, + { + "key": "37ef2cf0-5a2e-4b8f-9a82-962e2cea7eda", + "label": "label-1017", + "height": 149, + "background": "green" + }, + { + "key": "9f55b7bb-5bfd-4881-9a6c-020e2b77af69", + "label": "label-1018", + "height": 247, + "background": "red" + }, + { + "key": "886fe658-8752-4595-a2aa-c487aa7bc6d3", + "label": "label-1019", + "height": 473, + "background": "blue" + }, + { + "key": "4b62724c-dd38-419f-b8d5-d6935ba3eb0c", + "label": "label-1020", + "height": 204, + "background": "red" + }, + { + "key": "466496f0-74fc-45a6-9935-3b85ae2c9a7c", + "label": "label-1021", + "height": 459, + "background": "green" + }, + { + "key": "82ea5ea6-969c-445e-b28c-a12881846f34", + "label": "label-1022", + "height": 417, + "background": "blue" + }, + { + "key": "5d7aa0f1-6d0b-483f-b0fa-2b11e3c0022c", + "label": "label-1023", + "height": 154, + "background": "red" + }, + { + "key": "67971a28-d774-42fc-9966-2ecefcf519bc", + "label": "label-1024", + "height": 324, + "background": "green" + }, + { + "key": "ef1f8a5f-fe92-4b3a-a835-5bde3fed7306", + "label": "label-1025", + "height": 350, + "background": "blue" + }, + { + "key": "7355d7a0-ac9d-49da-837d-411182fec6f5", + "label": "label-1026", + "height": 507, + "background": "blue" + }, + { + "key": "1f98057c-b25c-4c55-95f1-4e9bade0fd06", + "label": "label-1027", + "height": 205, + "background": "green" + }, + { + "key": "793390f5-854a-487d-8bfc-9e5b8c2149b3", + "label": "label-1028", + "height": 489, + "background": "green" + }, + { + "key": "c47ef93c-e7e9-41ac-bfd0-6cca9d859750", + "label": "label-1029", + "height": 280, + "background": "blue" + }, + { + "key": "b3220a06-ff52-4b21-b922-66138f4e1560", + "label": "label-1030", + "height": 440, + "background": "green" + }, + { + "key": "d29c16f9-79d1-458a-b1c9-ccfb0d40e39a", + "label": "label-1031", + "height": 35, + "background": "red" + }, + { + "key": "3e4b0466-f6d1-4a5f-968a-6c9488552078", + "label": "label-1032", + "height": 454, + "background": "blue" + }, + { + "key": "4ae87d73-d264-4f26-9444-1cab2b671e61", + "label": "label-1033", + "height": 97, + "background": "green" + }, + { + "key": "a337c943-a641-4904-9c97-7173ab0e7ded", + "label": "label-1034", + "height": 232, + "background": "blue" + }, + { + "key": "c14ababb-6b69-493a-81a9-14e01cf11afe", + "label": "label-1035", + "height": 55, + "background": "blue" + }, + { + "key": "70f34352-ce8f-4278-9d40-cb025da212bc", + "label": "label-1036", + "height": 426, + "background": "yellow" + }, + { + "key": "5ead310b-8d69-47c1-a7d0-bc2865bf8b7e", + "label": "label-1037", + "height": 525, + "background": "green" + }, + { + "key": "e4e6e1d6-dc92-4fe7-a4c1-8371e1d88021", + "label": "label-1038", + "height": 164, + "background": "blue" + }, + { + "key": "75750d16-1f2b-4405-abf0-8e579833190b", + "label": "label-1039", + "height": 456, + "background": "blue" + }, + { + "key": "1a4f6f9f-3d53-4ef2-8b7c-8ded8818bb46", + "label": "label-1040", + "height": 393, + "background": "green" + }, + { + "key": "555f894d-e641-41a2-b765-bd8dc67ebd29", + "label": "label-1041", + "height": 38, + "background": "yellow" + }, + { + "key": "e9aba871-3593-4be9-aaf5-e28a081678f2", + "label": "label-1042", + "height": 352, + "background": "yellow" + }, + { + "key": "39c17a7b-5e93-4b87-854a-266b3a5553d3", + "label": "label-1043", + "height": 461, + "background": "green" + }, + { + "key": "631dfd12-8d0e-4013-8f69-faf9051fac09", + "label": "label-1044", + "height": 342, + "background": "yellow" + }, + { + "key": "51196c10-ee19-4776-b59c-2c8b381d71f8", + "label": "label-1045", + "height": 171, + "background": "green" + }, + { + "key": "84aa3757-1c45-4865-8ad0-1436a7372d91", + "label": "label-1046", + "height": 237, + "background": "blue" + }, + { + "key": "1b5d718d-7834-42fd-b54c-a159e5d7006a", + "label": "label-1047", + "height": 185, + "background": "red" + }, + { + "key": "8643c0e3-572b-4235-98d1-5ef4da0d373a", + "label": "label-1048", + "height": 368, + "background": "blue" + }, + { + "key": "c381e6af-5fa4-45fb-a341-22db00badc4f", + "label": "label-1049", + "height": 176, + "background": "yellow" + }, + { + "key": "c64f2d4d-4021-4c49-b7f9-115c98ba7f98", + "label": "label-1050", + "height": 461, + "background": "yellow" + }, + { + "key": "b5d3877c-711c-4642-ac80-cd37154a61a3", + "label": "label-1051", + "height": 476, + "background": "blue" + }, + { + "key": "b59be954-8ba8-4cf0-bea3-1f4a59b1bd20", + "label": "label-1052", + "height": 201, + "background": "blue" + }, + { + "key": "0b7b4971-526a-4013-936f-3cf0e5a09203", + "label": "label-1053", + "height": 366, + "background": "yellow" + }, + { + "key": "5a3c6ca5-5fc9-4c05-a2f2-3e3f338913c6", + "label": "label-1054", + "height": 142, + "background": "yellow" + }, + { + "key": "68f45db5-1abc-44db-b79d-c3e0661cb105", + "label": "label-1055", + "height": 60, + "background": "green" + }, + { + "key": "77e30b8e-6a10-49ef-9516-be1279c1a8ae", + "label": "label-1056", + "height": 92, + "background": "green" + }, + { + "key": "1e8e90c9-9ec2-40de-ba7b-099063caf7cf", + "label": "label-1057", + "height": 517, + "background": "blue" + }, + { + "key": "5d09a142-a0bc-400f-879d-24fd06cb668c", + "label": "label-1058", + "height": 267, + "background": "yellow" + }, + { + "key": "996c244a-8bf5-4216-a5a9-b1b5bea4ec5f", + "label": "label-1059", + "height": 282, + "background": "green" + }, + { + "key": "ebe931ea-08d6-4347-b90d-e0c00c229f00", + "label": "label-1060", + "height": 287, + "background": "red" + }, + { + "key": "4303641a-a48a-4df7-9aa6-2ad9df5e387d", + "label": "label-1061", + "height": 131, + "background": "blue" + }, + { + "key": "36f4cf66-89b2-4c41-ab5d-a2553d323dd7", + "label": "label-1062", + "height": 372, + "background": "blue" + }, + { + "key": "5efc7404-a1ac-4edd-a976-fc130f79ec61", + "label": "label-1063", + "height": 184, + "background": "yellow" + }, + { + "key": "cdec96e8-386b-483a-87de-9d554bb0df8f", + "label": "label-1064", + "height": 259, + "background": "blue" + }, + { + "key": "3b54b431-34b9-4c8a-9ad6-8b34f898a40a", + "label": "label-1065", + "height": 339, + "background": "green" + }, + { + "key": "c3902685-1d0a-4e4a-9ff4-a04d08c2b0bb", + "label": "label-1066", + "height": 414, + "background": "yellow" + }, + { + "key": "65405444-31c2-4ec3-8f98-991de87089b7", + "label": "label-1067", + "height": 118, + "background": "yellow" + }, + { + "key": "b6197780-8947-4b4b-afdd-833c5538efc3", + "label": "label-1068", + "height": 132, + "background": "red" + }, + { + "key": "c3c2c3b7-beee-4fc0-8b8f-70888fe6cce5", + "label": "label-1069", + "height": 395, + "background": "red" + }, + { + "key": "9a68abc1-01b1-4c72-ad2c-23ec9edd30c0", + "label": "label-1070", + "height": 317, + "background": "yellow" + }, + { + "key": "5f9372eb-7670-4fe4-babb-dc6489e15b3a", + "label": "label-1071", + "height": 473, + "background": "red" + }, + { + "key": "45959664-e163-4d6f-8b8e-cab1da070a21", + "label": "label-1072", + "height": 104, + "background": "yellow" + }, + { + "key": "321b6c96-7168-4a25-8a3d-c6c74728ee51", + "label": "label-1073", + "height": 91, + "background": "red" + }, + { + "key": "2d72fffb-c3d1-4af9-92c1-30b1994cdcbf", + "label": "label-1074", + "height": 462, + "background": "red" + }, + { + "key": "8e1e1541-75b6-4512-b1bd-5741b9aed540", + "label": "label-1075", + "height": 201, + "background": "green" + }, + { + "key": "59a93588-1348-4f95-98f4-ef037288677b", + "label": "label-1076", + "height": 282, + "background": "blue" + }, + { + "key": "da461cd4-0c85-40a5-a4c1-23d80e32840b", + "label": "label-1077", + "height": 118, + "background": "red" + }, + { + "key": "0f71bec1-fa1f-4f9a-b095-0f5d74605d93", + "label": "label-1078", + "height": 345, + "background": "green" + }, + { + "key": "07679638-076e-4540-bc14-f03cc6f18cb9", + "label": "label-1079", + "height": 237, + "background": "blue" + }, + { + "key": "07f5644f-4cf0-477e-8c39-b87459a16690", + "label": "label-1080", + "height": 128, + "background": "red" + }, + { + "key": "a5ef7845-2446-4c0f-b884-2811c7723c4d", + "label": "label-1081", + "height": 147, + "background": "green" + }, + { + "key": "430ed410-8ccf-4de3-a864-578a32a57e12", + "label": "label-1082", + "height": 499, + "background": "red" + }, + { + "key": "6b2e3d6b-4523-454b-94a3-b1fa613aded6", + "label": "label-1083", + "height": 97, + "background": "green" + }, + { + "key": "c2447ccd-d3cd-43d4-a2cb-961771646b43", + "label": "label-1084", + "height": 419, + "background": "green" + }, + { + "key": "f372e5e4-edec-4446-9378-57216e4e1d99", + "label": "label-1085", + "height": 82, + "background": "green" + }, + { + "key": "d2fa9897-36cb-4449-8291-461d23a337d3", + "label": "label-1086", + "height": 397, + "background": "green" + }, + { + "key": "b4a2d3fb-242e-4e4a-bf6b-f21e949106ec", + "label": "label-1087", + "height": 213, + "background": "yellow" + }, + { + "key": "7e503e53-a001-4e32-9dae-900d7ffb4622", + "label": "label-1088", + "height": 386, + "background": "red" + }, + { + "key": "75d42545-82fb-4950-b150-6340682c49d3", + "label": "label-1089", + "height": 295, + "background": "blue" + }, + { + "key": "3ff1716e-8986-4a6f-92e1-a96e5a90a089", + "label": "label-1090", + "height": 216, + "background": "red" + }, + { + "key": "792b93a2-f3c6-489b-9378-d6173472d45f", + "label": "label-1091", + "height": 189, + "background": "yellow" + }, + { + "key": "48491af2-1999-4bf9-8283-e1d5f52f3c74", + "label": "label-1092", + "height": 296, + "background": "blue" + }, + { + "key": "154cdd2d-6bdb-4fad-8820-d129bc748c4a", + "label": "label-1093", + "height": 509, + "background": "blue" + }, + { + "key": "99890611-11b4-4093-ab08-994530d6a0b0", + "label": "label-1094", + "height": 142, + "background": "blue" + }, + { + "key": "d045af49-7271-497c-8761-82f436e8d3b3", + "label": "label-1095", + "height": 382, + "background": "red" + }, + { + "key": "5efe9556-92d0-4df7-8eb0-3a0a37759038", + "label": "label-1096", + "height": 180, + "background": "red" + }, + { + "key": "0edf94fa-cd5f-41cc-a176-8650c8f06718", + "label": "label-1097", + "height": 53, + "background": "green" + }, + { + "key": "8b454954-6172-494b-98f9-c742ef608da3", + "label": "label-1098", + "height": 261, + "background": "yellow" + }, + { + "key": "658a891b-bc64-43cf-b7c5-832b796be545", + "label": "label-1099", + "height": 113, + "background": "yellow" + }, + { + "key": "974fe3b5-6eaf-406a-8b10-4b388b18f581", + "label": "label-1100", + "height": 79, + "background": "red" + }, + { + "key": "8f466149-46f9-436e-b966-f0c97660f5ea", + "label": "label-1101", + "height": 399, + "background": "blue" + }, + { + "key": "8b40566b-d9c4-4332-a690-13cedc749cf2", + "label": "label-1102", + "height": 229, + "background": "red" + }, + { + "key": "dfbb3814-4db8-4771-bb85-d037c33dd2a9", + "label": "label-1103", + "height": 430, + "background": "green" + }, + { + "key": "e347f5b7-e0ae-4c55-bcf5-4f38991d6316", + "label": "label-1104", + "height": 405, + "background": "yellow" + }, + { + "key": "7550defe-54b5-4318-907d-5925c4adabb7", + "label": "label-1105", + "height": 101, + "background": "yellow" + }, + { + "key": "5fc5d6ba-9607-44ae-9472-986ef98f3e50", + "label": "label-1106", + "height": 311, + "background": "red" + }, + { + "key": "828b3984-6639-452d-9a20-8cc91572c171", + "label": "label-1107", + "height": 278, + "background": "blue" + }, + { + "key": "14ff1824-de4d-4cac-828e-7d443f2c93ca", + "label": "label-1108", + "height": 104, + "background": "blue" + }, + { + "key": "f95204ce-eb1a-4d26-8256-c19f6967465a", + "label": "label-1109", + "height": 530, + "background": "yellow" + }, + { + "key": "ec2bb135-db62-4ed4-8cb3-2e264ef210e8", + "label": "label-1110", + "height": 526, + "background": "green" + }, + { + "key": "56fa6034-f6de-4ca2-be91-73686029f350", + "label": "label-1111", + "height": 470, + "background": "green" + }, + { + "key": "a3dd08a4-983d-4ecc-a9d7-8f4b156d6579", + "label": "label-1112", + "height": 253, + "background": "red" + }, + { + "key": "4583619a-bd35-483d-b5a9-943bcc3ef670", + "label": "label-1113", + "height": 212, + "background": "green" + }, + { + "key": "50b89e39-92fe-448f-83f5-3726aaea8f7e", + "label": "label-1114", + "height": 371, + "background": "green" + }, + { + "key": "2fd3a9c0-03be-4f36-886f-0c1deb03b140", + "label": "label-1115", + "height": 43, + "background": "yellow" + }, + { + "key": "a2223e39-ccd2-4a9e-bc45-23d7c33870f8", + "label": "label-1116", + "height": 49, + "background": "red" + }, + { + "key": "ea54c936-8c72-49e4-a14b-7ad96970d639", + "label": "label-1117", + "height": 375, + "background": "red" + }, + { + "key": "90d3d5b3-1e59-46cc-a0ee-e19c442dc833", + "label": "label-1118", + "height": 509, + "background": "blue" + }, + { + "key": "271ec5a8-78bf-48bd-90d0-775416194a83", + "label": "label-1119", + "height": 368, + "background": "yellow" + }, + { + "key": "0e92a0ff-045b-4809-a6fb-ac9be8d60306", + "label": "label-1120", + "height": 360, + "background": "red" + }, + { + "key": "c23e21a2-68a9-424e-8dd7-1fd032e62f59", + "label": "label-1121", + "height": 486, + "background": "blue" + }, + { + "key": "339dc28e-f3e6-4068-a3e2-bc1a04596cf9", + "label": "label-1122", + "height": 454, + "background": "blue" + }, + { + "key": "da3f8256-3154-4ac4-85d6-36a46c4ab108", + "label": "label-1123", + "height": 128, + "background": "blue" + }, + { + "key": "c7cab839-bfbf-4eee-9432-aa36f3e5f546", + "label": "label-1124", + "height": 263, + "background": "green" + }, + { + "key": "1ad5d500-02fa-4f01-b667-2860cdf7672c", + "label": "label-1125", + "height": 495, + "background": "red" + }, + { + "key": "fc559bc9-b7f7-4735-a4e5-3d5b1da52186", + "label": "label-1126", + "height": 344, + "background": "yellow" + }, + { + "key": "ad14d18f-85a3-4dcc-bab5-e8640678876b", + "label": "label-1127", + "height": 212, + "background": "blue" + }, + { + "key": "980fff58-7470-4911-b732-b4ae3feabd28", + "label": "label-1128", + "height": 121, + "background": "yellow" + }, + { + "key": "e5981f58-213b-4a7d-9f18-9ea30ded8d67", + "label": "label-1129", + "height": 185, + "background": "green" + }, + { + "key": "9470436e-4939-4181-a035-2d748ca1f117", + "label": "label-1130", + "height": 390, + "background": "blue" + }, + { + "key": "c4fc893c-9364-4004-8a98-06705ea784d2", + "label": "label-1131", + "height": 42, + "background": "green" + }, + { + "key": "c23f67f3-0dfd-479c-bc04-d63ae9898026", + "label": "label-1132", + "height": 119, + "background": "yellow" + }, + { + "key": "3bd1b79a-bbb8-4218-bc98-691588b88a00", + "label": "label-1133", + "height": 348, + "background": "blue" + }, + { + "key": "959e7e97-0c84-45e2-8b2d-957239c8f21f", + "label": "label-1134", + "height": 351, + "background": "green" + }, + { + "key": "08ceac70-f3e4-44a8-a6c1-a67f39fbbe9b", + "label": "label-1135", + "height": 206, + "background": "green" + }, + { + "key": "7c4d53f6-e81d-4fd7-8db3-60428f400f45", + "label": "label-1136", + "height": 225, + "background": "green" + }, + { + "key": "9caa2e11-d9e6-4cd0-91c6-62af59244469", + "label": "label-1137", + "height": 299, + "background": "blue" + }, + { + "key": "bbaa04b0-e93f-407a-8b2c-b5bfd592d0b3", + "label": "label-1138", + "height": 336, + "background": "yellow" + }, + { + "key": "2a2fbb02-20df-4f34-a77b-59c5407121b1", + "label": "label-1139", + "height": 506, + "background": "green" + }, + { + "key": "d62319b4-672f-44fa-98e0-f4804af735d1", + "label": "label-1140", + "height": 317, + "background": "red" + }, + { + "key": "9ee0683b-5564-490d-89ed-c5dbcc8ac371", + "label": "label-1141", + "height": 445, + "background": "blue" + }, + { + "key": "9846aad8-804b-4f35-bb8a-84eb61ac4097", + "label": "label-1142", + "height": 126, + "background": "green" + }, + { + "key": "54285790-5f06-4d77-869d-7f588ccd0e9b", + "label": "label-1143", + "height": 447, + "background": "green" + }, + { + "key": "6f40f032-b76a-457b-8cd1-b9cda33dd53c", + "label": "label-1144", + "height": 410, + "background": "green" + }, + { + "key": "e40d25c9-0284-4195-bac4-ebaef6c762d6", + "label": "label-1145", + "height": 178, + "background": "red" + }, + { + "key": "648f828d-d355-4e73-8e0f-9c665e791604", + "label": "label-1146", + "height": 175, + "background": "yellow" + }, + { + "key": "af8b45c0-ddbc-4f15-8193-144738c51a2d", + "label": "label-1147", + "height": 283, + "background": "yellow" + }, + { + "key": "556684f0-d36f-4408-bb27-b7678e48ad65", + "label": "label-1148", + "height": 481, + "background": "blue" + }, + { + "key": "307273c2-4eed-45c8-92f6-1f5e0aa6fdec", + "label": "label-1149", + "height": 122, + "background": "blue" + }, + { + "key": "bf66a218-ef32-4d8a-9ed1-29b0977325c9", + "label": "label-1150", + "height": 218, + "background": "blue" + }, + { + "key": "40c42cc2-b923-433b-93c6-496911b84a97", + "label": "label-1151", + "height": 176, + "background": "red" + }, + { + "key": "86b3889b-4cb4-41a9-830b-e99825c919eb", + "label": "label-1152", + "height": 324, + "background": "green" + }, + { + "key": "ff9c33e6-8f1d-4c50-8001-d1a3ebae2201", + "label": "label-1153", + "height": 379, + "background": "blue" + }, + { + "key": "89506baf-a7c6-4db2-9845-5fe2ace8dca4", + "label": "label-1154", + "height": 342, + "background": "blue" + }, + { + "key": "648f47ae-ff8f-47f8-8d67-e74881bb6625", + "label": "label-1155", + "height": 80, + "background": "blue" + }, + { + "key": "3ddae6fa-62a7-4a0f-9264-e64a87c80a9f", + "label": "label-1156", + "height": 482, + "background": "blue" + }, + { + "key": "96be4c0a-cd54-40f7-ab85-0977253ac211", + "label": "label-1157", + "height": 240, + "background": "green" + }, + { + "key": "44fd8966-3751-4d18-9c4c-42952d1dca80", + "label": "label-1158", + "height": 420, + "background": "yellow" + }, + { + "key": "e82f8837-cd68-4502-8850-21a52de55d5a", + "label": "label-1159", + "height": 243, + "background": "yellow" + }, + { + "key": "0c2198dc-14fb-4cc3-a67e-610995e56f03", + "label": "label-1160", + "height": 505, + "background": "blue" + }, + { + "key": "249b97ef-494b-45bf-86d7-084a57f52c78", + "label": "label-1161", + "height": 203, + "background": "red" + }, + { + "key": "0fb69485-d974-4bdf-8dbe-7bc66dad9639", + "label": "label-1162", + "height": 265, + "background": "red" + }, + { + "key": "8aa7131d-efd5-407b-bf5f-729adbc5a4b6", + "label": "label-1163", + "height": 444, + "background": "yellow" + }, + { + "key": "ff5d9fd4-e8e3-4afa-8468-2fd355e41f47", + "label": "label-1164", + "height": 142, + "background": "yellow" + }, + { + "key": "31d09256-869a-4a0e-a8f9-e6ad981e252c", + "label": "label-1165", + "height": 387, + "background": "yellow" + }, + { + "key": "3180f5ec-971b-4b70-8937-c8a671b1c1c6", + "label": "label-1166", + "height": 530, + "background": "yellow" + }, + { + "key": "3977d176-1add-47f8-b40c-7fa99bd458b4", + "label": "label-1167", + "height": 76, + "background": "yellow" + }, + { + "key": "052c9ec8-e1c1-43c9-a1c7-3465b97e159d", + "label": "label-1168", + "height": 427, + "background": "green" + }, + { + "key": "373e9f24-5260-40ce-a4a9-197bb6d29f74", + "label": "label-1169", + "height": 164, + "background": "red" + }, + { + "key": "1f7a0de8-12dc-4e23-8f83-74e340a0e9af", + "label": "label-1170", + "height": 143, + "background": "blue" + }, + { + "key": "5792c97b-21ee-44d5-9518-2c5057332ee4", + "label": "label-1171", + "height": 192, + "background": "blue" + }, + { + "key": "2d5869c1-3685-489b-bb33-16c809bed68c", + "label": "label-1172", + "height": 84, + "background": "blue" + }, + { + "key": "6d809fa4-e6de-45c4-831e-292c47b967e1", + "label": "label-1173", + "height": 424, + "background": "yellow" + }, + { + "key": "05f19f21-0feb-41b9-a14c-adf00b2099ea", + "label": "label-1174", + "height": 37, + "background": "blue" + }, + { + "key": "5a34692e-2af0-4413-a8ff-82a7749be0c4", + "label": "label-1175", + "height": 127, + "background": "red" + }, + { + "key": "b5f2a2a7-42aa-4775-a7cd-c9a9ac458b11", + "label": "label-1176", + "height": 429, + "background": "blue" + }, + { + "key": "d5755324-d42f-432b-bbf7-d0b8de25f029", + "label": "label-1177", + "height": 284, + "background": "yellow" + }, + { + "key": "b08c330a-398b-4d16-b3b7-75bf924d8bed", + "label": "label-1178", + "height": 280, + "background": "yellow" + }, + { + "key": "77692bde-bc33-4e00-aee1-5c0881d4630a", + "label": "label-1179", + "height": 138, + "background": "yellow" + }, + { + "key": "dcce6ed8-4cd8-46c6-aabf-f0c75c5c84ff", + "label": "label-1180", + "height": 342, + "background": "blue" + }, + { + "key": "f6d346df-2159-4f1a-a7a8-9a029c477e3c", + "label": "label-1181", + "height": 101, + "background": "blue" + }, + { + "key": "0e772b53-a1c3-4a3b-a5d5-9669b379b655", + "label": "label-1182", + "height": 350, + "background": "green" + }, + { + "key": "e5d09e37-6b05-496b-8329-dffa9acf2ce3", + "label": "label-1183", + "height": 245, + "background": "green" + }, + { + "key": "14903c86-313f-4d24-8f63-c4fbaff5c477", + "label": "label-1184", + "height": 454, + "background": "yellow" + }, + { + "key": "79fe0b2d-f3f0-40b5-b87d-629091349f3c", + "label": "label-1185", + "height": 200, + "background": "yellow" + }, + { + "key": "8d31938f-7be9-407f-bd13-e0786fd32d76", + "label": "label-1186", + "height": 242, + "background": "blue" + }, + { + "key": "a039977f-454a-4898-b84a-199948f4638e", + "label": "label-1187", + "height": 199, + "background": "red" + }, + { + "key": "ab8017d6-1447-4623-b01d-0186445638c1", + "label": "label-1188", + "height": 45, + "background": "yellow" + }, + { + "key": "0b304ef5-cf5f-4f9f-8a3e-0fe2489124d1", + "label": "label-1189", + "height": 71, + "background": "red" + }, + { + "key": "aabd75e1-b2f4-413a-8da4-461f3a275852", + "label": "label-1190", + "height": 505, + "background": "blue" + }, + { + "key": "e7eceec5-fcba-46e5-9b94-561d974b356d", + "label": "label-1191", + "height": 173, + "background": "blue" + }, + { + "key": "2c08d211-f0e8-435d-a8dd-92543fff29c1", + "label": "label-1192", + "height": 46, + "background": "green" + }, + { + "key": "e6cc0ec7-ec23-46fb-aa65-ab4bdde03a4a", + "label": "label-1193", + "height": 198, + "background": "blue" + }, + { + "key": "90713d1f-3024-407c-b515-83276bae575d", + "label": "label-1194", + "height": 305, + "background": "green" + }, + { + "key": "06032364-28d7-4761-8d92-79d498d9356a", + "label": "label-1195", + "height": 408, + "background": "green" + }, + { + "key": "7957307f-d98b-46fd-b06d-cbed80d69e54", + "label": "label-1196", + "height": 100, + "background": "green" + }, + { + "key": "c5256dd5-56b8-4fa0-931d-6dbaf37e26c4", + "label": "label-1197", + "height": 392, + "background": "red" + }, + { + "key": "c34e6ac8-20ce-41fb-9f91-9e8f5fc9e07a", + "label": "label-1198", + "height": 117, + "background": "green" + }, + { + "key": "376dbe37-6784-403d-9a43-e3c050264ecc", + "label": "label-1199", + "height": 369, + "background": "blue" + }, + { + "key": "06a4083a-39b8-432f-b668-7f5932c81281", + "label": "label-1200", + "height": 222, + "background": "blue" + }, + { + "key": "7b910892-077b-4540-bfc4-3478991c2899", + "label": "label-1201", + "height": 188, + "background": "green" + }, + { + "key": "bd48cb6e-18df-4da2-ae4e-31ede5774251", + "label": "label-1202", + "height": 88, + "background": "yellow" + }, + { + "key": "55557128-e8ab-452c-a3f6-80edbb8b4767", + "label": "label-1203", + "height": 232, + "background": "red" + }, + { + "key": "8bf8c8a4-1dcb-47e9-b249-30e0250c0161", + "label": "label-1204", + "height": 141, + "background": "green" + }, + { + "key": "49d9cb99-adfa-40c9-b678-6acc6f982c26", + "label": "label-1205", + "height": 491, + "background": "green" + }, + { + "key": "6ba4dd3a-4bd3-4890-bf67-3efe51605faf", + "label": "label-1206", + "height": 531, + "background": "green" + }, + { + "key": "ad11613c-c2a4-480a-94a2-51b6e928b5b6", + "label": "label-1207", + "height": 486, + "background": "blue" + }, + { + "key": "8ff43ccd-a4d8-48ec-b301-a17184c25ce4", + "label": "label-1208", + "height": 320, + "background": "blue" + }, + { + "key": "20cc2a03-c71c-4f16-b6f4-6a3fc327dc0e", + "label": "label-1209", + "height": 34, + "background": "red" + }, + { + "key": "3a7f0d43-cbf8-4fb3-80a2-aac3abd676b8", + "label": "label-1210", + "height": 111, + "background": "green" + }, + { + "key": "84ee5c27-25e0-4206-a55c-31e70aa8b92d", + "label": "label-1211", + "height": 363, + "background": "red" + }, + { + "key": "a0157cb1-832f-4513-8178-dac4747b834a", + "label": "label-1212", + "height": 181, + "background": "green" + }, + { + "key": "c9505cef-f9c9-41db-9785-cbcb9fc886e8", + "label": "label-1213", + "height": 305, + "background": "green" + }, + { + "key": "74650e55-5f14-4b18-84e3-94f91eb09434", + "label": "label-1214", + "height": 299, + "background": "green" + }, + { + "key": "0d1fff34-2e64-43d2-bc0d-fc69a53a86b5", + "label": "label-1215", + "height": 461, + "background": "blue" + }, + { + "key": "30903609-23ce-4527-8f90-8f3fc8d51eb0", + "label": "label-1216", + "height": 294, + "background": "yellow" + }, + { + "key": "5a8c1b36-dd5f-403a-a050-b9482304b613", + "label": "label-1217", + "height": 175, + "background": "yellow" + }, + { + "key": "ecfedb15-913c-494d-a134-387c9fe72c3f", + "label": "label-1218", + "height": 369, + "background": "red" + }, + { + "key": "7fcffa44-b547-4015-b0de-ff878b7a75b2", + "label": "label-1219", + "height": 438, + "background": "blue" + }, + { + "key": "ec08b7e1-1187-4c2a-8a43-c229865f7bb2", + "label": "label-1220", + "height": 292, + "background": "blue" + }, + { + "key": "0ac9539a-2631-4240-9ca1-cdc6b4b59fb9", + "label": "label-1221", + "height": 501, + "background": "red" + }, + { + "key": "916f22ca-a5e0-4876-845d-9895f03ef308", + "label": "label-1222", + "height": 122, + "background": "green" + }, + { + "key": "ec299984-2550-4e64-a104-86c95edce719", + "label": "label-1223", + "height": 142, + "background": "red" + }, + { + "key": "fd0d434a-144c-4a7e-8413-d22538873516", + "label": "label-1224", + "height": 132, + "background": "blue" + }, + { + "key": "c93ab7ef-fde0-4c5d-9a6e-dfb9c9539e9b", + "label": "label-1225", + "height": 113, + "background": "blue" + }, + { + "key": "9cfdb58e-9470-4f69-b55d-e850d84a3120", + "label": "label-1226", + "height": 151, + "background": "blue" + }, + { + "key": "42184bd1-52f2-407d-af2f-5c49bb63c582", + "label": "label-1227", + "height": 176, + "background": "blue" + }, + { + "key": "f8b075f1-dd3e-49f1-9334-ba5fd4e5b975", + "label": "label-1228", + "height": 95, + "background": "blue" + }, + { + "key": "b83d2e8b-a085-4e40-9d5c-44b6c9bb5e91", + "label": "label-1229", + "height": 178, + "background": "blue" + }, + { + "key": "3b804e52-e33a-4095-8d82-53ab6a71d2f9", + "label": "label-1230", + "height": 289, + "background": "red" + }, + { + "key": "f8f74bca-8c2b-4dba-a4ba-014f4ac4a985", + "label": "label-1231", + "height": 105, + "background": "blue" + }, + { + "key": "f3795297-a805-4a1e-a04c-a006722648c4", + "label": "label-1232", + "height": 150, + "background": "green" + }, + { + "key": "feaabc7f-1246-4a28-bc77-f3987c265bb4", + "label": "label-1233", + "height": 111, + "background": "yellow" + }, + { + "key": "af669a0d-0810-4e7a-83d6-ea3d0868ba47", + "label": "label-1234", + "height": 139, + "background": "green" + }, + { + "key": "74bccb5d-0cc5-4c80-bed1-2593af3a2cd3", + "label": "label-1235", + "height": 323, + "background": "blue" + }, + { + "key": "a66980cf-3f19-445b-a173-a58bced4c577", + "label": "label-1236", + "height": 447, + "background": "red" + }, + { + "key": "28006c09-b259-487a-af26-8764505fd4c9", + "label": "label-1237", + "height": 251, + "background": "red" + }, + { + "key": "7412f4de-6016-482d-b8bb-b615f5e10582", + "label": "label-1238", + "height": 412, + "background": "blue" + }, + { + "key": "6c6e5eb1-80d1-41bc-b862-fb72af95fa13", + "label": "label-1239", + "height": 393, + "background": "red" + }, + { + "key": "af35d3ea-ffe8-4989-b00d-aa3b17eaaf01", + "label": "label-1240", + "height": 375, + "background": "red" + }, + { + "key": "57640a38-72ef-4174-83f8-881bad98953b", + "label": "label-1241", + "height": 97, + "background": "yellow" + }, + { + "key": "31f75e4f-e39f-41ce-a722-2b68e1b0fd75", + "label": "label-1242", + "height": 451, + "background": "yellow" + }, + { + "key": "ce81c26b-9ca6-4540-83e4-965ac0daf16e", + "label": "label-1243", + "height": 259, + "background": "blue" + }, + { + "key": "864ee497-11ff-4531-9875-a5c105ccccc8", + "label": "label-1244", + "height": 67, + "background": "red" + }, + { + "key": "e423482a-1996-44cf-9f11-104f0dc70df3", + "label": "label-1245", + "height": 421, + "background": "blue" + }, + { + "key": "6a36afd7-456c-4fae-8160-b8fafbe17bb5", + "label": "label-1246", + "height": 418, + "background": "green" + }, + { + "key": "b917ff8f-dbd1-4601-bb98-eb0183af5e77", + "label": "label-1247", + "height": 171, + "background": "green" + }, + { + "key": "fd37db05-31c2-4e20-b1df-ae69e9c5a7ec", + "label": "label-1248", + "height": 296, + "background": "red" + }, + { + "key": "2197d87a-7266-4777-abe9-39631471f4fc", + "label": "label-1249", + "height": 79, + "background": "green" + }, + { + "key": "49a91e34-4763-4576-a939-3ff85a78aaf3", + "label": "label-1250", + "height": 117, + "background": "red" + }, + { + "key": "6a25ef2b-d90f-4a4b-bedc-e636390a1a5f", + "label": "label-1251", + "height": 123, + "background": "yellow" + }, + { + "key": "bfcd1ef8-063f-461b-9dd1-aa9a4d48f4c4", + "label": "label-1252", + "height": 281, + "background": "yellow" + }, + { + "key": "831753e3-c63b-46a7-ac9e-7c88951f50b5", + "label": "label-1253", + "height": 318, + "background": "green" + }, + { + "key": "08c6c5a7-38f5-448c-8292-61ecb727c2f2", + "label": "label-1254", + "height": 461, + "background": "green" + }, + { + "key": "e29919e5-0fba-460b-b13b-3d0f9362459f", + "label": "label-1255", + "height": 189, + "background": "yellow" + }, + { + "key": "3144120a-e746-4f75-90f2-0d248783563e", + "label": "label-1256", + "height": 204, + "background": "red" + }, + { + "key": "b96cc47e-8ec7-4664-8cef-2f07bbacf7ef", + "label": "label-1257", + "height": 475, + "background": "yellow" + }, + { + "key": "779e903d-2b5e-4489-bb90-5b9456bda4fc", + "label": "label-1258", + "height": 39, + "background": "red" + }, + { + "key": "515c6fb4-de1a-47f2-bbbb-adc91ff92c9e", + "label": "label-1259", + "height": 337, + "background": "green" + }, + { + "key": "086b475b-35c2-4303-802d-259151acdcb6", + "label": "label-1260", + "height": 236, + "background": "blue" + }, + { + "key": "5353307c-543c-49f0-b397-a8818529c65c", + "label": "label-1261", + "height": 424, + "background": "green" + }, + { + "key": "38aec70d-1c8a-4329-a315-96409542eb4e", + "label": "label-1262", + "height": 378, + "background": "blue" + }, + { + "key": "218f80a5-6a36-45ab-9fe3-59968ef002be", + "label": "label-1263", + "height": 62, + "background": "yellow" + }, + { + "key": "d3205a2f-776b-4623-8747-3b0f506f437e", + "label": "label-1264", + "height": 325, + "background": "yellow" + }, + { + "key": "a87a93a2-e2c5-47f6-ba7a-f829bdf5e3b1", + "label": "label-1265", + "height": 342, + "background": "green" + }, + { + "key": "831ec7d3-1c9d-435b-913e-51e3b7e84470", + "label": "label-1266", + "height": 300, + "background": "green" + }, + { + "key": "301feb5e-292b-49e4-8f7c-a2f4b0fad5b1", + "label": "label-1267", + "height": 374, + "background": "red" + }, + { + "key": "74f9eaca-9877-4d7a-9fcb-656e1121b757", + "label": "label-1268", + "height": 525, + "background": "red" + }, + { + "key": "2b4e054b-00a8-4caa-823e-08228905ff8e", + "label": "label-1269", + "height": 303, + "background": "yellow" + }, + { + "key": "6241806e-09ae-4f84-9509-daf147732416", + "label": "label-1270", + "height": 252, + "background": "yellow" + }, + { + "key": "83deb24e-df0a-42c0-becb-91980c39cda0", + "label": "label-1271", + "height": 249, + "background": "blue" + }, + { + "key": "345492cb-3d38-4e96-b3e9-475a5facaf4c", + "label": "label-1272", + "height": 230, + "background": "green" + }, + { + "key": "4fad8fda-b6f3-4ca7-a33d-cbc30a3f27b0", + "label": "label-1273", + "height": 383, + "background": "blue" + }, + { + "key": "72760412-0426-4fce-a8ce-69cac364411d", + "label": "label-1274", + "height": 287, + "background": "red" + }, + { + "key": "15b724d9-32d1-4026-a02f-d7818f4a0fd3", + "label": "label-1275", + "height": 55, + "background": "yellow" + }, + { + "key": "76bd178c-d9a0-43d7-9046-abdf28b78020", + "label": "label-1276", + "height": 334, + "background": "red" + }, + { + "key": "c27fee5f-40e6-43b0-ad99-ce0e848b3122", + "label": "label-1277", + "height": 415, + "background": "blue" + }, + { + "key": "710895b1-0932-42c2-a5f0-90542f658ff5", + "label": "label-1278", + "height": 36, + "background": "yellow" + }, + { + "key": "c982e4d4-d9cd-4375-95ad-5580f5c93eb2", + "label": "label-1279", + "height": 73, + "background": "yellow" + }, + { + "key": "485c7ce5-3e77-4635-a858-1dc1b3104f84", + "label": "label-1280", + "height": 489, + "background": "red" + }, + { + "key": "5e298f02-0f79-4074-92d6-f46310ac7824", + "label": "label-1281", + "height": 169, + "background": "green" + }, + { + "key": "9d4281c2-815d-41ac-a44e-4477339e9e83", + "label": "label-1282", + "height": 311, + "background": "blue" + }, + { + "key": "1502920b-0576-44de-8f70-02019d61f96b", + "label": "label-1283", + "height": 393, + "background": "blue" + }, + { + "key": "3e34fa64-b695-497b-98cd-ccedc4bbd0e2", + "label": "label-1284", + "height": 493, + "background": "blue" + }, + { + "key": "6e9bc959-6d46-4c8d-a733-fc7157931921", + "label": "label-1285", + "height": 180, + "background": "green" + }, + { + "key": "bce5e735-1d45-4b9f-a2e8-a3279268fd4b", + "label": "label-1286", + "height": 71, + "background": "yellow" + }, + { + "key": "ac8eda99-f7ab-4362-ab08-84501a25a06d", + "label": "label-1287", + "height": 240, + "background": "red" + }, + { + "key": "ca90e0d3-6e82-4a7f-9d12-4f1282546454", + "label": "label-1288", + "height": 309, + "background": "blue" + }, + { + "key": "5267d086-8300-49d1-99e9-52d25b2b73a2", + "label": "label-1289", + "height": 305, + "background": "blue" + }, + { + "key": "abd1c319-f38f-468c-8830-e7fc197c4048", + "label": "label-1290", + "height": 458, + "background": "yellow" + }, + { + "key": "2e2351b8-da89-461d-a707-b383e93d2d88", + "label": "label-1291", + "height": 32, + "background": "red" + }, + { + "key": "ecaf2617-243a-4645-a022-683b678e6d66", + "label": "label-1292", + "height": 203, + "background": "red" + }, + { + "key": "9d066819-7135-468d-8c69-495425c77d75", + "label": "label-1293", + "height": 135, + "background": "green" + }, + { + "key": "615fbb53-88dc-4bd5-a873-59f12daac271", + "label": "label-1294", + "height": 313, + "background": "green" + }, + { + "key": "742033a0-c6e0-4abb-9a81-60c21b9b5fb1", + "label": "label-1295", + "height": 384, + "background": "blue" + }, + { + "key": "0161aa5c-f0e3-49b2-aec7-29bff74a1eb5", + "label": "label-1296", + "height": 523, + "background": "red" + }, + { + "key": "0ecaa35e-4a18-46cf-8f41-4537007d7622", + "label": "label-1297", + "height": 206, + "background": "red" + }, + { + "key": "baa9277f-4004-437e-a493-b2f24063a637", + "label": "label-1298", + "height": 149, + "background": "green" + }, + { + "key": "cfdc3d40-e850-4759-ba6f-255e6c7b1614", + "label": "label-1299", + "height": 499, + "background": "red" + }, + { + "key": "be391beb-2af7-4d30-8579-933c704062c9", + "label": "label-1300", + "height": 304, + "background": "green" + }, + { + "key": "bf13fa07-0f30-42b0-b1bc-a14b9fb1469b", + "label": "label-1301", + "height": 132, + "background": "green" + }, + { + "key": "22bdd6ab-043a-40f2-b1d4-78a2c126ff01", + "label": "label-1302", + "height": 105, + "background": "green" + }, + { + "key": "5fad4d16-7dd7-40d0-a12e-0400c68cfd97", + "label": "label-1303", + "height": 186, + "background": "green" + }, + { + "key": "9536a454-746f-4745-838c-0c2af1f687e2", + "label": "label-1304", + "height": 56, + "background": "red" + }, + { + "key": "03f4d48e-f345-4238-a625-c5f62f7ebb9b", + "label": "label-1305", + "height": 376, + "background": "blue" + }, + { + "key": "a4dce576-dae8-4176-acdd-625024025847", + "label": "label-1306", + "height": 89, + "background": "yellow" + }, + { + "key": "433eac95-77c2-471b-9eb9-129dfdd30fbf", + "label": "label-1307", + "height": 328, + "background": "green" + }, + { + "key": "7461f3c2-b5fd-4f39-8989-6ed77da2121b", + "label": "label-1308", + "height": 347, + "background": "blue" + }, + { + "key": "a6085064-4ab9-42da-a96c-e0be917f62b0", + "label": "label-1309", + "height": 437, + "background": "red" + }, + { + "key": "eade6f52-885a-451f-87dd-9de33b959349", + "label": "label-1310", + "height": 177, + "background": "red" + }, + { + "key": "403bef5b-2db9-4ad9-91b3-474ca3eb0231", + "label": "label-1311", + "height": 326, + "background": "blue" + }, + { + "key": "a7ca4e1f-360b-4186-9ed1-f1feaa4223ad", + "label": "label-1312", + "height": 91, + "background": "yellow" + }, + { + "key": "964a32cb-5c03-4d32-8638-ef044af5d353", + "label": "label-1313", + "height": 331, + "background": "red" + }, + { + "key": "fed83c64-3490-4740-a03b-f4524b160c8b", + "label": "label-1314", + "height": 404, + "background": "blue" + }, + { + "key": "6685b3ab-cb42-4cf2-b83c-4e9b7f77f000", + "label": "label-1315", + "height": 123, + "background": "blue" + }, + { + "key": "b1d79d43-fc58-4287-b674-55db690b825b", + "label": "label-1316", + "height": 285, + "background": "red" + }, + { + "key": "254b6e53-fdfd-483a-a61e-5777cc1e6a62", + "label": "label-1317", + "height": 470, + "background": "red" + }, + { + "key": "59245dd7-2867-4aba-9178-0b0e80c16917", + "label": "label-1318", + "height": 359, + "background": "green" + }, + { + "key": "75ae4108-2b0a-43e2-b03c-0ee8ed6c20d0", + "label": "label-1319", + "height": 518, + "background": "red" + }, + { + "key": "f3b5e9e5-330d-44cc-bba9-ce0d0787c56d", + "label": "label-1320", + "height": 389, + "background": "yellow" + }, + { + "key": "b7a787d3-340f-4040-b388-ca938b0f7a45", + "label": "label-1321", + "height": 376, + "background": "yellow" + }, + { + "key": "d1c03d5f-af87-418f-aa53-17ea70fecc19", + "label": "label-1322", + "height": 226, + "background": "red" + }, + { + "key": "8310291c-5c19-4c0f-9e3f-09f95a2b2b2e", + "label": "label-1323", + "height": 391, + "background": "green" + }, + { + "key": "b52cf4e1-1605-4b81-9823-94391dbe5e1a", + "label": "label-1324", + "height": 119, + "background": "yellow" + }, + { + "key": "eb123e70-13b5-439a-8144-67997f8a5480", + "label": "label-1325", + "height": 182, + "background": "blue" + }, + { + "key": "3937dfaf-70c7-477e-b9c5-37055af674ea", + "label": "label-1326", + "height": 91, + "background": "yellow" + }, + { + "key": "33349ff6-3859-4cf0-b934-ca710cce210a", + "label": "label-1327", + "height": 338, + "background": "green" + }, + { + "key": "fa1e4707-98ef-473f-adcd-ba2a1dad9dcf", + "label": "label-1328", + "height": 259, + "background": "yellow" + }, + { + "key": "a3c5a8ae-5080-4a78-ab52-189889c94329", + "label": "label-1329", + "height": 48, + "background": "yellow" + }, + { + "key": "888ac959-e29f-424b-b3ed-e37145d1b9d8", + "label": "label-1330", + "height": 179, + "background": "yellow" + }, + { + "key": "ee20eaad-7f39-4a17-aa99-504dd436e7ec", + "label": "label-1331", + "height": 160, + "background": "blue" + }, + { + "key": "cf12bfc2-9b4e-444a-82d4-74b2f218779d", + "label": "label-1332", + "height": 490, + "background": "yellow" + }, + { + "key": "8270c353-8311-403f-8abc-c14f86e1625f", + "label": "label-1333", + "height": 341, + "background": "green" + }, + { + "key": "12b92f5e-2e81-45a4-bb32-d4f3568de2f2", + "label": "label-1334", + "height": 59, + "background": "yellow" + }, + { + "key": "575be54d-7daf-4a60-abb4-5dbbf49f9cea", + "label": "label-1335", + "height": 373, + "background": "blue" + }, + { + "key": "6c069683-95b3-4141-8540-18ed279b9d10", + "label": "label-1336", + "height": 69, + "background": "blue" + }, + { + "key": "c0fae55c-0c3e-49b3-8187-e7aad13a310c", + "label": "label-1337", + "height": 526, + "background": "yellow" + }, + { + "key": "187ab9ab-6e67-4951-86d6-82308e576cd0", + "label": "label-1338", + "height": 96, + "background": "yellow" + }, + { + "key": "3a0e99e9-9875-4429-aaa9-e392aa181109", + "label": "label-1339", + "height": 50, + "background": "yellow" + }, + { + "key": "cc374f16-e603-4d34-984e-7921ed9e5679", + "label": "label-1340", + "height": 156, + "background": "blue" + }, + { + "key": "bc691d1b-bd2d-483b-ac18-32ef709aca14", + "label": "label-1341", + "height": 53, + "background": "yellow" + }, + { + "key": "806fa459-9a80-43dc-8d54-3439ad5131f6", + "label": "label-1342", + "height": 56, + "background": "red" + }, + { + "key": "ac421ac2-7c4b-4c5c-995c-10a6614aed88", + "label": "label-1343", + "height": 150, + "background": "green" + }, + { + "key": "0eb72bb4-faa2-45be-aa72-f7a1c29608d3", + "label": "label-1344", + "height": 529, + "background": "green" + }, + { + "key": "417b8780-60a5-4d4c-8efe-863ce57de81d", + "label": "label-1345", + "height": 199, + "background": "yellow" + }, + { + "key": "c10d1fb9-1fc5-46b0-957e-c9397cc250cb", + "label": "label-1346", + "height": 83, + "background": "green" + }, + { + "key": "3950b0f9-e2c6-45e3-a93e-bff93b80d9a9", + "label": "label-1347", + "height": 306, + "background": "red" + }, + { + "key": "4580e085-6b34-42b3-853c-a294d6ca8ec6", + "label": "label-1348", + "height": 159, + "background": "yellow" + }, + { + "key": "f9a4908f-de9a-4785-b239-bbadabe6e3e6", + "label": "label-1349", + "height": 289, + "background": "green" + }, + { + "key": "309635f6-1e41-4b9e-a2fb-1447e7b11b63", + "label": "label-1350", + "height": 49, + "background": "green" + }, + { + "key": "bd3f8d1d-648d-491d-8960-0e8e6edd5640", + "label": "label-1351", + "height": 303, + "background": "red" + }, + { + "key": "87bdaefb-8846-474a-a689-c6df0172364a", + "label": "label-1352", + "height": 299, + "background": "green" + }, + { + "key": "0879f628-66ca-429d-9ec4-897e4e40addd", + "label": "label-1353", + "height": 85, + "background": "blue" + }, + { + "key": "8e39db64-72f6-45d2-b4c0-95adf4dec5f8", + "label": "label-1354", + "height": 200, + "background": "yellow" + }, + { + "key": "e1aa1c72-dc2b-420b-97a3-199e92074454", + "label": "label-1355", + "height": 307, + "background": "blue" + }, + { + "key": "507fb939-2e1a-4aa3-a4a6-c04b29020452", + "label": "label-1356", + "height": 375, + "background": "blue" + }, + { + "key": "3726c679-a3e3-4eaa-b289-473f4a90a2ee", + "label": "label-1357", + "height": 196, + "background": "green" + }, + { + "key": "f382b8a7-2cec-43db-b5bd-e432a1a58555", + "label": "label-1358", + "height": 292, + "background": "yellow" + }, + { + "key": "dce76472-a183-4866-8309-3e2db195c4ac", + "label": "label-1359", + "height": 327, + "background": "blue" + }, + { + "key": "e77ffc9c-5df4-4232-9ecf-c1d8833e5eec", + "label": "label-1360", + "height": 279, + "background": "yellow" + }, + { + "key": "dccda8b7-f7ee-41d6-a9d4-781b9f3e5149", + "label": "label-1361", + "height": 531, + "background": "blue" + }, + { + "key": "879c440a-d544-4fde-8da5-83b74b2bdc19", + "label": "label-1362", + "height": 494, + "background": "yellow" + }, + { + "key": "f9b26718-2159-4eaa-a999-db64bebdffd4", + "label": "label-1363", + "height": 121, + "background": "blue" + }, + { + "key": "301d9236-5836-4aa0-9fe5-461ae26f4045", + "label": "label-1364", + "height": 381, + "background": "green" + }, + { + "key": "d4974550-94a4-4dfd-a245-14a1027201f4", + "label": "label-1365", + "height": 487, + "background": "blue" + }, + { + "key": "001b9b08-b834-4ed0-b877-aef7202fc686", + "label": "label-1366", + "height": 294, + "background": "red" + }, + { + "key": "fdf6ad9f-0bad-4971-b201-ac826eb3d1fa", + "label": "label-1367", + "height": 333, + "background": "green" + }, + { + "key": "b34d80bb-1289-4ead-baa0-570870a378a2", + "label": "label-1368", + "height": 310, + "background": "green" + }, + { + "key": "69eb1f27-174b-494c-8b08-afd22d9998d1", + "label": "label-1369", + "height": 288, + "background": "green" + }, + { + "key": "fc70183c-6533-4073-8ba2-844f8e6b2ae7", + "label": "label-1370", + "height": 496, + "background": "yellow" + }, + { + "key": "c5bf588a-6054-4914-ad96-f6025a12d6a6", + "label": "label-1371", + "height": 320, + "background": "blue" + }, + { + "key": "cbf68d1c-69f3-44dd-9f25-3b3a36b3d648", + "label": "label-1372", + "height": 324, + "background": "yellow" + }, + { + "key": "f1c31660-e3db-466f-b97c-024efd8651ce", + "label": "label-1373", + "height": 361, + "background": "yellow" + }, + { + "key": "ba7fd845-7e0d-4c8e-98da-f3efe5c11473", + "label": "label-1374", + "height": 228, + "background": "blue" + }, + { + "key": "45ce724d-71b1-4875-b7f4-a3770c42338d", + "label": "label-1375", + "height": 521, + "background": "red" + }, + { + "key": "f17ba6e5-4c85-4a95-a45d-306eb1bf4054", + "label": "label-1376", + "height": 425, + "background": "yellow" + }, + { + "key": "ed1719c4-7ba2-4748-a2c5-1f42f5fb3584", + "label": "label-1377", + "height": 139, + "background": "red" + }, + { + "key": "438c93f6-9c63-4a16-bf0b-5399c765cd66", + "label": "label-1378", + "height": 115, + "background": "red" + }, + { + "key": "7428e839-ec8a-4e99-8bf1-47a2516af9ce", + "label": "label-1379", + "height": 128, + "background": "blue" + }, + { + "key": "590400a0-2617-45e4-b704-e6e769b15357", + "label": "label-1380", + "height": 283, + "background": "blue" + }, + { + "key": "6615d7e1-e2fd-475f-a59e-47e829787cf0", + "label": "label-1381", + "height": 255, + "background": "red" + }, + { + "key": "b1dd7e24-d0cd-45ec-bf4d-4817ab29591b", + "label": "label-1382", + "height": 178, + "background": "red" + }, + { + "key": "f75fb477-6933-4950-a849-b3460311c720", + "label": "label-1383", + "height": 282, + "background": "yellow" + }, + { + "key": "301fc32f-a613-4156-949d-930c3928d03c", + "label": "label-1384", + "height": 113, + "background": "red" + }, + { + "key": "b70a382b-e5c4-447e-8355-7d6fdf2ddc77", + "label": "label-1385", + "height": 355, + "background": "blue" + }, + { + "key": "59d4797d-cf7b-452e-b437-784d3b5b5497", + "label": "label-1386", + "height": 456, + "background": "blue" + }, + { + "key": "93792c67-3b61-4a7f-b5b1-aae0936f16b6", + "label": "label-1387", + "height": 514, + "background": "yellow" + }, + { + "key": "7e5beb26-9870-4d9f-88da-cb98f3184f0a", + "label": "label-1388", + "height": 155, + "background": "red" + }, + { + "key": "f470880b-f824-43a9-9c07-ff2f4aa33bf3", + "label": "label-1389", + "height": 470, + "background": "yellow" + }, + { + "key": "ae219118-2801-4033-9ac4-06915e388106", + "label": "label-1390", + "height": 422, + "background": "red" + }, + { + "key": "fc8ff09b-d795-407d-91ae-566c7ada1214", + "label": "label-1391", + "height": 484, + "background": "red" + }, + { + "key": "08e158c0-8990-4e2a-9575-e1293f8c97a9", + "label": "label-1392", + "height": 182, + "background": "blue" + }, + { + "key": "b5097ffb-e722-4a52-85b9-d15e35749f3e", + "label": "label-1393", + "height": 254, + "background": "red" + }, + { + "key": "03cb9e40-5eb3-40bb-b6d4-49699526a3e4", + "label": "label-1394", + "height": 34, + "background": "blue" + }, + { + "key": "ee806662-ee60-4f6e-8923-5dd72e445590", + "label": "label-1395", + "height": 381, + "background": "red" + }, + { + "key": "0df1d6d4-dcd1-4598-87f3-dd80a9c7c5ad", + "label": "label-1396", + "height": 130, + "background": "blue" + }, + { + "key": "f8eb720e-694a-405a-9cca-6fd64aa608bf", + "label": "label-1397", + "height": 228, + "background": "yellow" + }, + { + "key": "abf5e206-ae44-4dbf-abf5-ec7e5ee85f6b", + "label": "label-1398", + "height": 283, + "background": "red" + }, + { + "key": "4b58a67b-6aeb-4579-ba66-cef7a0e175fe", + "label": "label-1399", + "height": 413, + "background": "blue" + }, + { + "key": "eaf0bcdb-8312-4d08-8682-d41e75f674fa", + "label": "label-1400", + "height": 345, + "background": "red" + }, + { + "key": "47ceea48-d714-4b85-958f-6e8eb1a879a8", + "label": "label-1401", + "height": 481, + "background": "blue" + }, + { + "key": "9c38db73-2746-410b-9135-7a089450a79b", + "label": "label-1402", + "height": 434, + "background": "red" + }, + { + "key": "f8325616-c301-454f-b9d0-aa5b76e095f1", + "label": "label-1403", + "height": 323, + "background": "red" + }, + { + "key": "763232aa-bb1c-4f44-867f-b1665b34a3e4", + "label": "label-1404", + "height": 466, + "background": "yellow" + }, + { + "key": "71548d4e-0b86-415b-9187-8dc6d5d45811", + "label": "label-1405", + "height": 411, + "background": "green" + }, + { + "key": "291addb2-e5b8-4cb2-90ce-0dd27ab07da5", + "label": "label-1406", + "height": 515, + "background": "yellow" + }, + { + "key": "a98e1c99-039e-4769-9050-03461ffbee73", + "label": "label-1407", + "height": 258, + "background": "blue" + }, + { + "key": "9cca20b9-e934-4e79-b596-7004bdd5c547", + "label": "label-1408", + "height": 231, + "background": "yellow" + }, + { + "key": "b928c17e-1ca5-4155-b325-c59297dd0b5a", + "label": "label-1409", + "height": 255, + "background": "red" + }, + { + "key": "335b936c-8d89-417a-9fe2-1055c177a6b6", + "label": "label-1410", + "height": 167, + "background": "blue" + }, + { + "key": "0eb3d9a0-e225-474b-95a7-10c470004386", + "label": "label-1411", + "height": 52, + "background": "yellow" + }, + { + "key": "234f96ef-bb75-4914-b547-7ff18b89f8ce", + "label": "label-1412", + "height": 211, + "background": "red" + }, + { + "key": "2aff842a-6db2-4b79-8fbf-b0fd955fe431", + "label": "label-1413", + "height": 381, + "background": "green" + }, + { + "key": "4ebbf349-715f-4e4b-9161-fa02d51cb383", + "label": "label-1414", + "height": 295, + "background": "green" + }, + { + "key": "d7e90364-04b4-4998-ad44-12072984ffe9", + "label": "label-1415", + "height": 112, + "background": "yellow" + }, + { + "key": "0b61a3af-8f54-4dd2-a757-9e2d1cd5210d", + "label": "label-1416", + "height": 223, + "background": "blue" + }, + { + "key": "7e6bad73-6eb8-4331-ac8b-faf77e8e911b", + "label": "label-1417", + "height": 216, + "background": "green" + }, + { + "key": "604b40ad-086e-4d85-be83-4adbf011a477", + "label": "label-1418", + "height": 523, + "background": "red" + }, + { + "key": "55c874f4-764c-47e3-8a78-2d444fc022d5", + "label": "label-1419", + "height": 469, + "background": "red" + }, + { + "key": "e5c780d5-5205-40b1-a735-ce187b4cc6ff", + "label": "label-1420", + "height": 425, + "background": "blue" + }, + { + "key": "bfe85417-8f0e-4770-a80f-9b06a37eb5b3", + "label": "label-1421", + "height": 396, + "background": "red" + }, + { + "key": "6c956727-c9c9-4073-8cfa-12e3021d4213", + "label": "label-1422", + "height": 258, + "background": "red" + }, + { + "key": "01414db3-7866-448f-824b-f89cb11cf455", + "label": "label-1423", + "height": 469, + "background": "green" + }, + { + "key": "eeb5ad1b-0cdf-4d94-97ec-e0cb4a5cd82c", + "label": "label-1424", + "height": 272, + "background": "blue" + }, + { + "key": "3336d633-5f61-4868-8ef1-deb389e63b68", + "label": "label-1425", + "height": 150, + "background": "blue" + }, + { + "key": "044ef4f4-fd46-4ae0-b03d-2a3a87c7f242", + "label": "label-1426", + "height": 66, + "background": "red" + }, + { + "key": "c78f5106-5deb-426f-9732-8c962d3283cc", + "label": "label-1427", + "height": 405, + "background": "green" + }, + { + "key": "15f10554-9b1a-4b88-85b6-55220010c8b3", + "label": "label-1428", + "height": 173, + "background": "yellow" + }, + { + "key": "440e8a60-24aa-47c0-93f6-e009e5cbb2d0", + "label": "label-1429", + "height": 382, + "background": "green" + }, + { + "key": "22519fa8-f752-40b3-b362-9a58a8b34a36", + "label": "label-1430", + "height": 428, + "background": "green" + }, + { + "key": "b1131263-67e3-43da-9017-e94475290945", + "label": "label-1431", + "height": 128, + "background": "red" + }, + { + "key": "4224c545-72a0-48de-be01-47cb69807721", + "label": "label-1432", + "height": 227, + "background": "yellow" + }, + { + "key": "32154b21-dfd2-44d0-9396-06872a788c01", + "label": "label-1433", + "height": 515, + "background": "red" + }, + { + "key": "624fcba6-ecac-477f-8566-99a4fd5bdf74", + "label": "label-1434", + "height": 184, + "background": "blue" + }, + { + "key": "1d2a166e-7d22-477d-a495-a11572afe1d2", + "label": "label-1435", + "height": 316, + "background": "green" + }, + { + "key": "60c69a88-5c2b-45cc-990d-800349f7f988", + "label": "label-1436", + "height": 481, + "background": "red" + }, + { + "key": "d4d56a9c-58f8-4735-b4b7-7712cee787eb", + "label": "label-1437", + "height": 260, + "background": "red" + }, + { + "key": "f6bed01b-202c-4ab8-8f7f-ca7771191f61", + "label": "label-1438", + "height": 39, + "background": "green" + }, + { + "key": "5ab2f5ff-72d5-44d2-afec-abf1d16b09ec", + "label": "label-1439", + "height": 381, + "background": "blue" + }, + { + "key": "a6ffa12c-61aa-4cd5-a48d-c87d5aa352e8", + "label": "label-1440", + "height": 316, + "background": "green" + }, + { + "key": "44e89245-a8fc-43d5-bd06-ae6c31d1f669", + "label": "label-1441", + "height": 322, + "background": "red" + }, + { + "key": "c88acada-80c4-492c-b3fb-2727bc292d09", + "label": "label-1442", + "height": 392, + "background": "yellow" + }, + { + "key": "bc4870f6-6c07-4f06-9d50-e20eff21b8a1", + "label": "label-1443", + "height": 281, + "background": "yellow" + }, + { + "key": "d1e469e7-8a67-4ff5-bebe-eb002fcff8a5", + "label": "label-1444", + "height": 474, + "background": "green" + }, + { + "key": "8d326db9-6a9e-482f-a26e-84cba6e5db7b", + "label": "label-1445", + "height": 362, + "background": "yellow" + }, + { + "key": "42d1281f-36f7-4657-9e38-a9b091bede84", + "label": "label-1446", + "height": 468, + "background": "yellow" + }, + { + "key": "b7e391f1-90dc-44f5-87a5-8156556b6046", + "label": "label-1447", + "height": 59, + "background": "blue" + }, + { + "key": "2d533cef-d207-4547-ac88-93e9023913b4", + "label": "label-1448", + "height": 494, + "background": "yellow" + }, + { + "key": "b21392a3-6165-4525-80f1-d46cb8102463", + "label": "label-1449", + "height": 467, + "background": "yellow" + }, + { + "key": "fabde165-8aab-4cd5-96d7-95f74d8675ec", + "label": "label-1450", + "height": 83, + "background": "green" + }, + { + "key": "bb1ae71f-cef4-410b-a4b1-d272f3d1ca63", + "label": "label-1451", + "height": 373, + "background": "red" + }, + { + "key": "afed425b-03f6-4a6b-aa4b-5cbb585805db", + "label": "label-1452", + "height": 422, + "background": "red" + }, + { + "key": "3f1d16b6-2426-4c96-a04a-6b1bded05285", + "label": "label-1453", + "height": 511, + "background": "yellow" + }, + { + "key": "6f597bbc-58e2-40f8-92e7-186269090d75", + "label": "label-1454", + "height": 339, + "background": "red" + }, + { + "key": "9bafc2d2-8817-4c33-821d-1d31ad5a9c11", + "label": "label-1455", + "height": 156, + "background": "red" + }, + { + "key": "4d2783ec-094e-49cd-beaf-85b50019bfa5", + "label": "label-1456", + "height": 334, + "background": "green" + }, + { + "key": "da5cdc48-c5d2-4c3d-af95-00e8e78408dd", + "label": "label-1457", + "height": 70, + "background": "yellow" + }, + { + "key": "d5fcd0e3-e466-4626-baad-ad337eda8f19", + "label": "label-1458", + "height": 147, + "background": "yellow" + }, + { + "key": "96f230c4-67f5-4d86-949a-98917bd17743", + "label": "label-1459", + "height": 56, + "background": "red" + }, + { + "key": "f8247d98-01e3-42ae-bbaf-cd6f62290df4", + "label": "label-1460", + "height": 39, + "background": "green" + }, + { + "key": "f4e961c6-b72f-4a2b-98d6-39358791c672", + "label": "label-1461", + "height": 452, + "background": "green" + }, + { + "key": "16101302-0c3b-4d17-9ef7-cedf90c2f032", + "label": "label-1462", + "height": 162, + "background": "yellow" + }, + { + "key": "d6b09720-220e-49a0-a5e8-65df994d9568", + "label": "label-1463", + "height": 261, + "background": "blue" + }, + { + "key": "bfff0e34-8f2c-4a5f-9f56-afe2fc12df5f", + "label": "label-1464", + "height": 300, + "background": "red" + }, + { + "key": "3280c2c4-46ec-4550-b76c-61cc656efbd1", + "label": "label-1465", + "height": 192, + "background": "yellow" + }, + { + "key": "4566b445-5298-4d24-bd32-82269a6582a9", + "label": "label-1466", + "height": 281, + "background": "green" + }, + { + "key": "8177cf46-eb4d-44cf-8ebd-1f40279d7c4e", + "label": "label-1467", + "height": 335, + "background": "yellow" + }, + { + "key": "e14d3f96-9be4-4e9f-9339-bea5653ec73f", + "label": "label-1468", + "height": 209, + "background": "green" + }, + { + "key": "59014533-55e8-45bf-a145-2cde0b74d8c6", + "label": "label-1469", + "height": 411, + "background": "red" + }, + { + "key": "86e13796-ce97-446d-a1b1-b240259e0a64", + "label": "label-1470", + "height": 35, + "background": "yellow" + }, + { + "key": "4836acb3-88bb-4fb9-9c7b-a2ab2840c79a", + "label": "label-1471", + "height": 177, + "background": "green" + }, + { + "key": "2d74adfd-5e05-4474-a9f0-528f92b8e55a", + "label": "label-1472", + "height": 520, + "background": "green" + }, + { + "key": "48e12ae1-f2e4-47d3-9cf8-83ce66b9fe47", + "label": "label-1473", + "height": 42, + "background": "red" + }, + { + "key": "3ef7fd37-7018-471c-9f51-124f557f3f45", + "label": "label-1474", + "height": 161, + "background": "green" + }, + { + "key": "224ca4b5-fa20-44fb-acdd-6064bd8c7424", + "label": "label-1475", + "height": 477, + "background": "green" + }, + { + "key": "0d7dec01-0ec0-443a-b257-141930498f0e", + "label": "label-1476", + "height": 151, + "background": "green" + }, + { + "key": "eee675ed-d766-4c41-9f8f-5b7c9fff6646", + "label": "label-1477", + "height": 477, + "background": "green" + }, + { + "key": "6933e350-21b2-4b91-92e8-297ae6645d6e", + "label": "label-1478", + "height": 328, + "background": "red" + }, + { + "key": "1c364d0b-a076-46d0-a5e9-ecd13eb91cb7", + "label": "label-1479", + "height": 361, + "background": "blue" + }, + { + "key": "16380166-e490-4c72-9dc9-7f47d6fa053f", + "label": "label-1480", + "height": 85, + "background": "blue" + }, + { + "key": "d1a1c500-227b-4e14-9562-921a7916a6b3", + "label": "label-1481", + "height": 325, + "background": "yellow" + }, + { + "key": "b6040fb3-3382-4cfb-806f-c258a581a642", + "label": "label-1482", + "height": 400, + "background": "red" + }, + { + "key": "03634450-6b9c-4946-b4d9-dabb2877698f", + "label": "label-1483", + "height": 128, + "background": "green" + }, + { + "key": "ff90abad-ba8a-4669-9df2-f0df6c812cd6", + "label": "label-1484", + "height": 211, + "background": "blue" + }, + { + "key": "bec743ab-a32d-474b-9752-1598c608156b", + "label": "label-1485", + "height": 308, + "background": "blue" + }, + { + "key": "6edb4708-cfa0-4f6d-9e9a-cb8478da91f7", + "label": "label-1486", + "height": 505, + "background": "blue" + }, + { + "key": "b6aa7309-70f5-4023-86c2-ed310495e2c1", + "label": "label-1487", + "height": 324, + "background": "green" + }, + { + "key": "f37b5b98-a22d-47be-a2c0-5b6cd3b4e1a5", + "label": "label-1488", + "height": 61, + "background": "blue" + }, + { + "key": "5f373388-3cea-4278-a67a-dcbac88a2788", + "label": "label-1489", + "height": 371, + "background": "red" + }, + { + "key": "aab09181-ff68-468c-a07a-321b1f2af558", + "label": "label-1490", + "height": 457, + "background": "red" + }, + { + "key": "8297e381-cd27-4730-899b-b10727f072f6", + "label": "label-1491", + "height": 74, + "background": "green" + }, + { + "key": "c56137bc-d899-4f7a-a1a6-4a0c26f9d98f", + "label": "label-1492", + "height": 354, + "background": "blue" + }, + { + "key": "c836c2f1-9400-4935-8450-32079d6c7bc4", + "label": "label-1493", + "height": 508, + "background": "green" + }, + { + "key": "a232f720-0230-4690-9e8d-5536ebd5dc98", + "label": "label-1494", + "height": 168, + "background": "green" + }, + { + "key": "ccc28ffe-f136-46f6-b86d-3281e16c8747", + "label": "label-1495", + "height": 216, + "background": "red" + }, + { + "key": "d966e4bd-fe05-4446-89d0-903fc82bed73", + "label": "label-1496", + "height": 90, + "background": "red" + }, + { + "key": "fcf1381c-4153-4b8b-aeb2-8f3f6ebc4131", + "label": "label-1497", + "height": 283, + "background": "green" + }, + { + "key": "8549186f-5384-45a7-9098-9ab118e0c898", + "label": "label-1498", + "height": 296, + "background": "green" + }, + { + "key": "be39c38d-e4ab-4108-8811-0531d1ee2020", + "label": "label-1499", + "height": 305, + "background": "green" + }, + { + "key": "1e414c9b-dc43-469b-95c4-78797296613c", + "label": "label-1500", + "height": 469, + "background": "green" + }, + { + "key": "fba9ad5b-357c-4c65-9c8f-1efe5722d845", + "label": "label-1501", + "height": 327, + "background": "green" + }, + { + "key": "c3c6c373-7a78-4d50-8a44-69678c5d85d9", + "label": "label-1502", + "height": 269, + "background": "green" + }, + { + "key": "27f97f7f-889a-46f3-8e4c-e849e674642e", + "label": "label-1503", + "height": 174, + "background": "blue" + }, + { + "key": "0d5ccc35-2d70-4c4e-ac29-2bce45f9aaec", + "label": "label-1504", + "height": 228, + "background": "blue" + }, + { + "key": "6c9dcf0e-c6ee-427b-8c78-b4241b558201", + "label": "label-1505", + "height": 502, + "background": "yellow" + }, + { + "key": "7759ef8f-d24b-4a68-b708-6278f54e0549", + "label": "label-1506", + "height": 205, + "background": "green" + }, + { + "key": "1e263542-f801-414e-91a6-995e01a51d79", + "label": "label-1507", + "height": 425, + "background": "yellow" + }, + { + "key": "2d418493-810a-4e65-a3df-d9e8cc4d142b", + "label": "label-1508", + "height": 125, + "background": "red" + }, + { + "key": "adf0c65e-08b6-485b-807a-f00746a50d8a", + "label": "label-1509", + "height": 191, + "background": "blue" + }, + { + "key": "80e022e5-f1c2-4b18-a837-478c0dc1b97f", + "label": "label-1510", + "height": 271, + "background": "blue" + }, + { + "key": "d68fc17d-f9f2-4264-961d-600a69629786", + "label": "label-1511", + "height": 519, + "background": "red" + }, + { + "key": "00489bfe-3ce1-40a6-9670-0a2564f28236", + "label": "label-1512", + "height": 229, + "background": "yellow" + }, + { + "key": "19784cf9-90ad-4c37-833a-21c4821dfe28", + "label": "label-1513", + "height": 463, + "background": "blue" + }, + { + "key": "686bc254-6fc7-4f57-9a19-87b168e110d8", + "label": "label-1514", + "height": 205, + "background": "green" + }, + { + "key": "4236ce82-5411-4870-8ac4-751cff2c8b9b", + "label": "label-1515", + "height": 325, + "background": "red" + }, + { + "key": "533f8a06-7195-4898-a688-7d9fe255db01", + "label": "label-1516", + "height": 289, + "background": "blue" + }, + { + "key": "35980d58-8e78-4096-bcdb-83186cfa0aa6", + "label": "label-1517", + "height": 179, + "background": "yellow" + }, + { + "key": "0169b2a2-bacd-403d-b201-10ed46803957", + "label": "label-1518", + "height": 483, + "background": "red" + }, + { + "key": "a4835347-9b84-4ebf-b9b5-727b22be2e58", + "label": "label-1519", + "height": 385, + "background": "blue" + }, + { + "key": "eb722a5b-74a4-418b-9a8d-dfcddcbbd014", + "label": "label-1520", + "height": 273, + "background": "yellow" + }, + { + "key": "7fdae1d9-1211-4349-9e46-13a59285e019", + "label": "label-1521", + "height": 486, + "background": "green" + }, + { + "key": "a0a6c1d8-ce62-41c7-843e-9742ae1adb04", + "label": "label-1522", + "height": 140, + "background": "yellow" + }, + { + "key": "b17a8df4-e855-4e9e-87af-78c3ad993373", + "label": "label-1523", + "height": 57, + "background": "blue" + }, + { + "key": "6e4bbc35-61fb-4800-b0b2-c4b1abd3b884", + "label": "label-1524", + "height": 37, + "background": "yellow" + }, + { + "key": "265eacb7-ea36-4098-8d77-553cfb2c31ef", + "label": "label-1525", + "height": 211, + "background": "yellow" + }, + { + "key": "8c372e5d-4e88-4646-83f1-d61faf959ada", + "label": "label-1526", + "height": 311, + "background": "green" + }, + { + "key": "a66723c1-554b-4b53-9638-44c47fccb439", + "label": "label-1527", + "height": 441, + "background": "red" + }, + { + "key": "e8efc5dd-fdfe-4c94-8ec8-f264b5290940", + "label": "label-1528", + "height": 347, + "background": "yellow" + }, + { + "key": "62ddc5b4-0b00-4bdc-9582-89173bd9dd42", + "label": "label-1529", + "height": 213, + "background": "green" + }, + { + "key": "f2e31388-ceb8-4b37-b662-cba51d7ea115", + "label": "label-1530", + "height": 70, + "background": "red" + }, + { + "key": "8ca7f604-cef2-4a27-bcf0-0a831fe805eb", + "label": "label-1531", + "height": 486, + "background": "green" + }, + { + "key": "39c86087-12ed-4d43-8598-967adf3f97d7", + "label": "label-1532", + "height": 389, + "background": "yellow" + }, + { + "key": "f28e822f-db97-4bf9-86c5-e7de97af6ec8", + "label": "label-1533", + "height": 296, + "background": "red" + }, + { + "key": "0ec72c7d-b2e9-40c3-988a-4c7ef06bf314", + "label": "label-1534", + "height": 365, + "background": "red" + }, + { + "key": "cd1340cb-67e2-48f4-9370-752da1589b51", + "label": "label-1535", + "height": 377, + "background": "blue" + }, + { + "key": "c820b89e-3434-4ceb-a721-10344329049b", + "label": "label-1536", + "height": 359, + "background": "blue" + }, + { + "key": "fd2ad273-96be-4129-9ff6-b17404ad5b71", + "label": "label-1537", + "height": 392, + "background": "green" + }, + { + "key": "77f82e9a-bfa3-4d9b-a7cb-78bcb1a24401", + "label": "label-1538", + "height": 504, + "background": "red" + }, + { + "key": "d0ce3944-bca0-4818-b6c2-6197e8e0b471", + "label": "label-1539", + "height": 273, + "background": "red" + }, + { + "key": "0fa248d1-aa1a-4462-8fe6-20acfc6ce679", + "label": "label-1540", + "height": 100, + "background": "blue" + }, + { + "key": "225b0568-25f1-4cf3-a2a7-bff3dd814f5a", + "label": "label-1541", + "height": 273, + "background": "green" + }, + { + "key": "8ee4f11d-ea1b-4169-8601-546b7273644e", + "label": "label-1542", + "height": 355, + "background": "green" + }, + { + "key": "54ee54d8-6861-4efb-bdb4-e6462ca20c29", + "label": "label-1543", + "height": 70, + "background": "green" + }, + { + "key": "b070dbc9-6795-4cb3-9562-e2ec88db3dd8", + "label": "label-1544", + "height": 514, + "background": "green" + }, + { + "key": "ef4bbfe0-aecd-4626-95a7-643e8b6a7f1a", + "label": "label-1545", + "height": 418, + "background": "yellow" + }, + { + "key": "c1522249-8e10-4ce6-b5bb-31f079a3edc9", + "label": "label-1546", + "height": 34, + "background": "blue" + }, + { + "key": "da018d8b-3a60-48e1-b2d3-eb54a2f561fd", + "label": "label-1547", + "height": 177, + "background": "green" + }, + { + "key": "5d90ec33-6f9f-40ad-88e7-86248126e92d", + "label": "label-1548", + "height": 208, + "background": "blue" + }, + { + "key": "3cf87ec5-af09-4bc5-9e38-db8b6cc1f89a", + "label": "label-1549", + "height": 346, + "background": "blue" + }, + { + "key": "747e337d-4c7c-48aa-8389-90e87f527e55", + "label": "label-1550", + "height": 411, + "background": "red" + }, + { + "key": "635216b7-6ed5-4e87-aed0-4936aee6dc27", + "label": "label-1551", + "height": 198, + "background": "green" + }, + { + "key": "55964cd4-1998-48da-862f-d1497b5ac835", + "label": "label-1552", + "height": 500, + "background": "red" + }, + { + "key": "020684a9-4a35-42e3-960f-8eb76f9e7163", + "label": "label-1553", + "height": 374, + "background": "yellow" + }, + { + "key": "56476195-53a9-4935-a46e-2d1b2b2d749f", + "label": "label-1554", + "height": 521, + "background": "red" + }, + { + "key": "9e4834df-b32c-47a9-98d5-2b6b66a61e21", + "label": "label-1555", + "height": 400, + "background": "green" + }, + { + "key": "37ad6092-40f7-4310-b94c-46b4e6188321", + "label": "label-1556", + "height": 211, + "background": "blue" + }, + { + "key": "d2191aca-35da-435a-b029-4ba29d25e930", + "label": "label-1557", + "height": 101, + "background": "green" + }, + { + "key": "fc2129ef-3768-4025-bbe0-9c082d89ac60", + "label": "label-1558", + "height": 168, + "background": "blue" + }, + { + "key": "76cea0c6-343a-43c3-a1a5-1e2177b26337", + "label": "label-1559", + "height": 105, + "background": "blue" + }, + { + "key": "af2cb0e2-db89-4faf-97f4-795c7775ae03", + "label": "label-1560", + "height": 108, + "background": "yellow" + }, + { + "key": "a6b60624-f91d-40f0-8d5d-a586709aadcd", + "label": "label-1561", + "height": 191, + "background": "green" + }, + { + "key": "1051ea6f-ab79-45f4-aa7e-1bf362bd8e78", + "label": "label-1562", + "height": 323, + "background": "blue" + }, + { + "key": "f0118fe3-c76e-4518-abb6-6bd499e65e11", + "label": "label-1563", + "height": 143, + "background": "blue" + }, + { + "key": "045eb6ce-eb0e-41a0-a6f6-9256e84ae0b8", + "label": "label-1564", + "height": 254, + "background": "blue" + }, + { + "key": "b5b5efc4-8832-4e57-a27f-9383516e2a05", + "label": "label-1565", + "height": 411, + "background": "blue" + }, + { + "key": "302b2701-2ec7-45b4-97e5-bd7aac13c112", + "label": "label-1566", + "height": 317, + "background": "yellow" + }, + { + "key": "ad0b5ed9-a210-4c0e-9f49-1e7a57098759", + "label": "label-1567", + "height": 268, + "background": "red" + }, + { + "key": "b45b83a3-7dd8-4e4b-b875-7404d5f5f62c", + "label": "label-1568", + "height": 402, + "background": "blue" + }, + { + "key": "f1023673-5d69-4102-8807-47f329432703", + "label": "label-1569", + "height": 284, + "background": "red" + }, + { + "key": "f81fa199-3dbc-4021-ad80-0e1b834dc8af", + "label": "label-1570", + "height": 226, + "background": "green" + }, + { + "key": "b523e3bc-d367-49d7-8973-5646786b46e9", + "label": "label-1571", + "height": 211, + "background": "red" + }, + { + "key": "38cf958f-7be4-4568-9e0e-d9bbb08f0f15", + "label": "label-1572", + "height": 378, + "background": "blue" + }, + { + "key": "84b2866e-96aa-4945-ba15-821830b6e5c3", + "label": "label-1573", + "height": 132, + "background": "blue" + }, + { + "key": "25e00965-bd48-461d-9b2a-6139c2315bf1", + "label": "label-1574", + "height": 94, + "background": "red" + }, + { + "key": "23fc759b-2ad3-4e31-97dd-86abc7054949", + "label": "label-1575", + "height": 484, + "background": "red" + }, + { + "key": "760a4ab0-314a-4909-8402-afbd8463da5d", + "label": "label-1576", + "height": 239, + "background": "yellow" + }, + { + "key": "7d10b6cb-0868-4a13-a99b-b71a0fd8efa2", + "label": "label-1577", + "height": 218, + "background": "blue" + }, + { + "key": "f4fa66a0-f36e-47b4-a47e-dd1a84f24821", + "label": "label-1578", + "height": 67, + "background": "green" + }, + { + "key": "a28f748b-21ab-428b-8c38-ea28e88c2ad5", + "label": "label-1579", + "height": 436, + "background": "red" + }, + { + "key": "8a7e44b0-07ba-425d-b8a4-f16d7758bbba", + "label": "label-1580", + "height": 397, + "background": "yellow" + }, + { + "key": "af036eb6-e958-4cfe-8a18-9ff712cdfcb9", + "label": "label-1581", + "height": 329, + "background": "yellow" + }, + { + "key": "942ee447-16d9-4440-8505-84b0d51e96bf", + "label": "label-1582", + "height": 165, + "background": "red" + }, + { + "key": "68f68938-ee96-452c-857d-87da1f154bec", + "label": "label-1583", + "height": 504, + "background": "red" + }, + { + "key": "db8ad4a4-84b7-4cc1-9d96-d4e1c453591d", + "label": "label-1584", + "height": 416, + "background": "blue" + }, + { + "key": "643985ac-57f3-49b7-ac8c-d2277c5437f8", + "label": "label-1585", + "height": 182, + "background": "red" + }, + { + "key": "afc764fd-a500-4fc4-9455-60362e448613", + "label": "label-1586", + "height": 390, + "background": "blue" + }, + { + "key": "b271c62d-c6cf-43f9-84bf-2ad80431a93b", + "label": "label-1587", + "height": 123, + "background": "green" + }, + { + "key": "e2b17167-7bdc-4b48-886f-bf0dba9b7dfc", + "label": "label-1588", + "height": 483, + "background": "red" + }, + { + "key": "810716aa-8778-4216-9ef1-6066c7b33e22", + "label": "label-1589", + "height": 226, + "background": "red" + }, + { + "key": "b20acd7c-1764-422f-a0fe-506e8621c867", + "label": "label-1590", + "height": 202, + "background": "yellow" + }, + { + "key": "7613fa0a-83ec-46b7-a726-5d061056c16b", + "label": "label-1591", + "height": 120, + "background": "green" + }, + { + "key": "017c31ee-848e-4888-9efa-b72a98464112", + "label": "label-1592", + "height": 90, + "background": "green" + }, + { + "key": "f37d75aa-dd46-4774-87d5-d3ff7dcf6060", + "label": "label-1593", + "height": 460, + "background": "yellow" + }, + { + "key": "99778ce3-679f-435b-ba4b-b55cf130e97c", + "label": "label-1594", + "height": 320, + "background": "red" + }, + { + "key": "a6bec095-e146-4332-bf45-8a971727307d", + "label": "label-1595", + "height": 74, + "background": "red" + }, + { + "key": "6fe0c599-b04c-403f-95d6-1fa95dd7daee", + "label": "label-1596", + "height": 76, + "background": "green" + }, + { + "key": "149d3a03-13eb-419e-9ceb-0fdbc3503d4e", + "label": "label-1597", + "height": 472, + "background": "yellow" + }, + { + "key": "ed15b8f4-2fe9-4e4f-b17f-d4bda80b9b37", + "label": "label-1598", + "height": 316, + "background": "green" + }, + { + "key": "27d42253-b8cf-4cb0-8e95-14853d6d4ed3", + "label": "label-1599", + "height": 340, + "background": "green" + }, + { + "key": "ed22628e-2086-486e-8590-b33ab177acb7", + "label": "label-1600", + "height": 104, + "background": "green" + }, + { + "key": "21fc1524-fd2c-4129-b967-9b9af7473cb5", + "label": "label-1601", + "height": 498, + "background": "green" + }, + { + "key": "35955f35-a2e7-482f-96ac-940d72ef01b1", + "label": "label-1602", + "height": 453, + "background": "green" + }, + { + "key": "0f983e8f-0771-40e4-b437-f07f86fd2b67", + "label": "label-1603", + "height": 514, + "background": "red" + }, + { + "key": "36d5768b-85b7-4146-8b84-202aea43ac05", + "label": "label-1604", + "height": 278, + "background": "green" + }, + { + "key": "b4d111d1-0c70-4555-bd4b-7d5eca57184a", + "label": "label-1605", + "height": 220, + "background": "yellow" + }, + { + "key": "8995448e-6487-4580-b651-8ea08c2f80ad", + "label": "label-1606", + "height": 391, + "background": "blue" + }, + { + "key": "0af07ac1-7882-4a3c-a13e-588d31ca7ee2", + "label": "label-1607", + "height": 158, + "background": "yellow" + }, + { + "key": "a247d2e6-acaa-449f-a37e-987f7d0ff6ae", + "label": "label-1608", + "height": 383, + "background": "yellow" + }, + { + "key": "b5b57e4a-f524-4fba-bd9b-471818c5a3c4", + "label": "label-1609", + "height": 65, + "background": "red" + }, + { + "key": "3e6b162f-fa98-43c3-a1dd-326afbb8ddad", + "label": "label-1610", + "height": 248, + "background": "yellow" + }, + { + "key": "c3829d16-038f-4595-afdc-6d3d53be82e1", + "label": "label-1611", + "height": 174, + "background": "yellow" + }, + { + "key": "0be52188-5529-4898-91db-6c13a8d3a267", + "label": "label-1612", + "height": 371, + "background": "red" + }, + { + "key": "8504e48d-6f74-4a49-ad6a-3c4cd6f3cf3b", + "label": "label-1613", + "height": 33, + "background": "green" + }, + { + "key": "dba64f12-8e4d-42bd-b8d5-9101701549e5", + "label": "label-1614", + "height": 289, + "background": "red" + }, + { + "key": "d60c7117-a0dd-4b09-b7d7-22890c6fe429", + "label": "label-1615", + "height": 334, + "background": "yellow" + }, + { + "key": "17293529-d4b8-47cc-b0b8-151a85ccccbe", + "label": "label-1616", + "height": 117, + "background": "yellow" + }, + { + "key": "e1735721-bd65-4be2-89e0-2d9e8b9aaafb", + "label": "label-1617", + "height": 230, + "background": "yellow" + }, + { + "key": "b7684e28-8048-42d0-835f-c7974ecf7069", + "label": "label-1618", + "height": 91, + "background": "green" + }, + { + "key": "30453666-c9e1-4ca2-afe3-e17afde63b6f", + "label": "label-1619", + "height": 502, + "background": "blue" + }, + { + "key": "a4335a06-1051-41ff-a74b-f7cac299e900", + "label": "label-1620", + "height": 478, + "background": "green" + }, + { + "key": "7aaba727-0683-4cf1-9b6f-80c52144c9dd", + "label": "label-1621", + "height": 403, + "background": "green" + }, + { + "key": "e788e43b-2cf6-4cb7-8a50-5a5d3d251ba5", + "label": "label-1622", + "height": 453, + "background": "red" + }, + { + "key": "49e7e23d-bb88-4e2b-9fe2-163dfcd49af8", + "label": "label-1623", + "height": 255, + "background": "green" + }, + { + "key": "90a5db4f-6f5f-4511-922b-a4cf6da75b37", + "label": "label-1624", + "height": 313, + "background": "blue" + }, + { + "key": "de29b9b2-a172-4731-ac13-d92d6003f485", + "label": "label-1625", + "height": 61, + "background": "red" + }, + { + "key": "d631e415-2bff-44b9-8a44-664cb46c44da", + "label": "label-1626", + "height": 440, + "background": "red" + }, + { + "key": "6e620ced-1c82-4c57-af87-e3a210ceaf81", + "label": "label-1627", + "height": 155, + "background": "blue" + }, + { + "key": "631d2402-961a-4a2e-8a09-45e2c2785c1d", + "label": "label-1628", + "height": 276, + "background": "blue" + }, + { + "key": "fef545f5-114e-46bc-8793-9d0804c1777b", + "label": "label-1629", + "height": 305, + "background": "green" + }, + { + "key": "ea877326-3ef7-4d3e-aa49-c5bca65728af", + "label": "label-1630", + "height": 508, + "background": "blue" + }, + { + "key": "9bb27604-5e09-4124-8e87-d1147343a972", + "label": "label-1631", + "height": 181, + "background": "green" + }, + { + "key": "821e3dce-9cf0-4cd0-be7e-ea7908887611", + "label": "label-1632", + "height": 425, + "background": "green" + }, + { + "key": "7e6e42c8-1151-4737-aca6-39eb3d483e64", + "label": "label-1633", + "height": 372, + "background": "yellow" + }, + { + "key": "5511e6a5-d145-47d9-ae9f-b5e23027ad77", + "label": "label-1634", + "height": 470, + "background": "blue" + }, + { + "key": "98e89449-9ff4-48cc-a024-ef36c05a22b4", + "label": "label-1635", + "height": 55, + "background": "green" + }, + { + "key": "741c134a-27fb-416d-8ecc-3d408b61afbd", + "label": "label-1636", + "height": 403, + "background": "green" + }, + { + "key": "6847f1e0-b47a-4e50-82ae-2ca64b8f82c9", + "label": "label-1637", + "height": 420, + "background": "red" + }, + { + "key": "15d7744d-d49b-44a5-bb2f-67d9e0a0d04d", + "label": "label-1638", + "height": 402, + "background": "blue" + }, + { + "key": "40db44f3-024f-4dda-8fa2-ac79b4fa2118", + "label": "label-1639", + "height": 298, + "background": "yellow" + }, + { + "key": "9f2421de-a2bf-4721-a1c6-1a6270a7e404", + "label": "label-1640", + "height": 494, + "background": "yellow" + }, + { + "key": "65342cd3-8f6a-4b4a-8817-d644786187d8", + "label": "label-1641", + "height": 500, + "background": "red" + }, + { + "key": "bc17ac4d-ce5e-4f96-bcf8-c6e6d33f8dda", + "label": "label-1642", + "height": 452, + "background": "red" + }, + { + "key": "902f3b3d-01dc-41e4-a3a4-f1ec65cd239d", + "label": "label-1643", + "height": 290, + "background": "blue" + }, + { + "key": "d6044b09-1758-4c3a-bf0d-0716611865a1", + "label": "label-1644", + "height": 135, + "background": "red" + }, + { + "key": "c782651f-6e2b-4c14-bac1-ca3b3415624b", + "label": "label-1645", + "height": 146, + "background": "yellow" + }, + { + "key": "3d889f55-60a7-4118-8f73-f473235ce4f7", + "label": "label-1646", + "height": 51, + "background": "yellow" + }, + { + "key": "d29c17cc-6139-48c5-870d-68285b48f883", + "label": "label-1647", + "height": 382, + "background": "red" + }, + { + "key": "9e688e5e-12f7-4252-b2da-206f25a60039", + "label": "label-1648", + "height": 467, + "background": "blue" + }, + { + "key": "ed3e23b7-187d-4878-b717-25c9ab28816e", + "label": "label-1649", + "height": 296, + "background": "blue" + }, + { + "key": "9ec48281-faf6-45a0-b735-1d03c75ada6d", + "label": "label-1650", + "height": 506, + "background": "yellow" + }, + { + "key": "7644a52f-a143-4a96-9665-05b8be556170", + "label": "label-1651", + "height": 265, + "background": "blue" + }, + { + "key": "cceba9f7-9207-4c77-8a66-22e0523d285e", + "label": "label-1652", + "height": 256, + "background": "yellow" + }, + { + "key": "0185d6f9-1c81-48d0-a320-a6c632ae2c2d", + "label": "label-1653", + "height": 287, + "background": "yellow" + }, + { + "key": "a2cd84c2-5ee0-4e50-9b4c-2f27ae0cc958", + "label": "label-1654", + "height": 261, + "background": "green" + }, + { + "key": "b2809e0f-4d7f-4810-96da-c1dc280bb5c3", + "label": "label-1655", + "height": 89, + "background": "blue" + }, + { + "key": "5567f347-df4a-4587-865e-be091b43714a", + "label": "label-1656", + "height": 480, + "background": "green" + }, + { + "key": "03f3e4b3-54fa-4eee-9786-a8f7cdf1c623", + "label": "label-1657", + "height": 142, + "background": "blue" + }, + { + "key": "a02c3a61-b32d-4a0e-81d9-0eb25a5ddc84", + "label": "label-1658", + "height": 252, + "background": "yellow" + }, + { + "key": "223b873d-c274-472a-a856-b6fa313e25aa", + "label": "label-1659", + "height": 204, + "background": "green" + }, + { + "key": "01454c7c-2b48-4cde-b6f8-0743f1803fe4", + "label": "label-1660", + "height": 249, + "background": "green" + }, + { + "key": "f39b5527-6fcb-4dd9-bc1b-52edaea27a9b", + "label": "label-1661", + "height": 422, + "background": "red" + }, + { + "key": "ae5e3a1c-fd8b-4943-889f-3cff9ff7a566", + "label": "label-1662", + "height": 129, + "background": "yellow" + }, + { + "key": "293cb5b3-8286-4648-9460-b71f2d3bb9ef", + "label": "label-1663", + "height": 213, + "background": "blue" + }, + { + "key": "43bd8839-b3b7-493f-b2bd-4b47b03605f6", + "label": "label-1664", + "height": 133, + "background": "red" + }, + { + "key": "4fcedb82-bbec-489f-b037-39932745f784", + "label": "label-1665", + "height": 413, + "background": "blue" + }, + { + "key": "bd00501f-baae-49f5-9f20-0959f954395b", + "label": "label-1666", + "height": 89, + "background": "green" + }, + { + "key": "e585f744-a558-4660-b638-d1f13d63e6b8", + "label": "label-1667", + "height": 496, + "background": "yellow" + }, + { + "key": "2c3e90a0-2c48-4dd1-8ea1-a3111df407dc", + "label": "label-1668", + "height": 116, + "background": "red" + }, + { + "key": "3d736952-6379-413f-9f77-3a74d1935125", + "label": "label-1669", + "height": 393, + "background": "blue" + }, + { + "key": "6ffe8063-d332-499b-be9e-8783f4c5dbd4", + "label": "label-1670", + "height": 367, + "background": "red" + }, + { + "key": "563a7b1d-b28d-40da-82b9-f8f14767a06c", + "label": "label-1671", + "height": 57, + "background": "red" + }, + { + "key": "e4fd41bf-edfc-4c4f-ab0f-39181ba12dc2", + "label": "label-1672", + "height": 448, + "background": "yellow" + }, + { + "key": "36ff530a-2cdb-4800-86cf-2090b27ca2b9", + "label": "label-1673", + "height": 295, + "background": "blue" + }, + { + "key": "1e7f8bca-2219-4df4-ae79-dcc04bbd61c9", + "label": "label-1674", + "height": 481, + "background": "green" + }, + { + "key": "1197a405-0f3d-4412-aa2d-080a469d5ca3", + "label": "label-1675", + "height": 349, + "background": "blue" + }, + { + "key": "ec5c459d-aa19-4fe4-a0d1-194663163878", + "label": "label-1676", + "height": 408, + "background": "blue" + }, + { + "key": "312e8ecf-9086-45c9-bc10-ef7113c0cbce", + "label": "label-1677", + "height": 484, + "background": "blue" + }, + { + "key": "1e0f6bb6-0401-4d51-a7fd-d84e2da0ae39", + "label": "label-1678", + "height": 135, + "background": "yellow" + }, + { + "key": "3f2f8c1d-da0c-4b04-b840-4b68146ddc41", + "label": "label-1679", + "height": 423, + "background": "yellow" + }, + { + "key": "0b1dfb5d-7f0a-4151-a02c-087fac695b76", + "label": "label-1680", + "height": 340, + "background": "blue" + }, + { + "key": "cea5b1b8-1027-47f3-acaa-f18f0a8a9dd8", + "label": "label-1681", + "height": 159, + "background": "blue" + }, + { + "key": "2011e410-bb51-4428-bc93-808cfcb8d561", + "label": "label-1682", + "height": 457, + "background": "yellow" + }, + { + "key": "0268177d-0a28-44b5-8356-d6614e126a73", + "label": "label-1683", + "height": 492, + "background": "red" + }, + { + "key": "b3515abb-3a6d-4860-b4c3-adbea8ed1a9f", + "label": "label-1684", + "height": 312, + "background": "green" + }, + { + "key": "eda92571-ef5d-4197-af4b-a4cda3fcf750", + "label": "label-1685", + "height": 90, + "background": "red" + }, + { + "key": "459ce54c-a388-4777-89a1-7e6e4174966b", + "label": "label-1686", + "height": 521, + "background": "red" + }, + { + "key": "6c9289d1-1f27-4283-814e-4471e6300ff1", + "label": "label-1687", + "height": 439, + "background": "blue" + }, + { + "key": "2a159cf7-bcd3-4a78-83d4-6c88de2c6bf3", + "label": "label-1688", + "height": 227, + "background": "green" + }, + { + "key": "05788e8f-b94b-42bb-b3f8-4684b6cf4ac7", + "label": "label-1689", + "height": 300, + "background": "red" + }, + { + "key": "714b6704-f715-4b5a-ab5e-40a5dda4faa7", + "label": "label-1690", + "height": 109, + "background": "yellow" + }, + { + "key": "bae539fc-adb4-4446-9fdb-6c08cc56ac59", + "label": "label-1691", + "height": 327, + "background": "green" + }, + { + "key": "3ec28c75-de17-40f2-a6e9-942186cdd2a3", + "label": "label-1692", + "height": 459, + "background": "yellow" + }, + { + "key": "36bc5ded-4623-4b09-9276-2939c047fddf", + "label": "label-1693", + "height": 218, + "background": "green" + }, + { + "key": "2bc6e7d0-cd1b-48bc-bdf5-73fbee070278", + "label": "label-1694", + "height": 475, + "background": "yellow" + }, + { + "key": "460911c6-e4f9-4397-b1ef-154288290a45", + "label": "label-1695", + "height": 500, + "background": "red" + }, + { + "key": "97ad74bf-44d0-4aaa-9d0a-883a17d72b1a", + "label": "label-1696", + "height": 277, + "background": "red" + }, + { + "key": "f75d646d-4ca4-479e-87c6-8e7c8ad6fcc6", + "label": "label-1697", + "height": 312, + "background": "blue" + }, + { + "key": "830b8e72-b579-4146-a0df-29a76f6eb9ba", + "label": "label-1698", + "height": 181, + "background": "yellow" + }, + { + "key": "444f1a04-f45a-480a-bc03-b69ad1e0ef53", + "label": "label-1699", + "height": 475, + "background": "red" + }, + { + "key": "00d411c1-6669-42b2-929b-38dd390da51f", + "label": "label-1700", + "height": 277, + "background": "yellow" + }, + { + "key": "6d69f525-21bf-48eb-a2ce-27958932ae7e", + "label": "label-1701", + "height": 330, + "background": "red" + }, + { + "key": "68c71c53-69b0-4a28-a963-1a84f607b61b", + "label": "label-1702", + "height": 486, + "background": "green" + }, + { + "key": "bb807ce1-bbe7-452f-a22b-7e82e65d26d0", + "label": "label-1703", + "height": 427, + "background": "yellow" + }, + { + "key": "a4a131e4-aeef-46f8-bf80-91b7088bbacf", + "label": "label-1704", + "height": 194, + "background": "green" + }, + { + "key": "76394e9f-3b06-4604-9f66-deea37388916", + "label": "label-1705", + "height": 167, + "background": "green" + }, + { + "key": "27d74260-1bd0-4522-8f32-ebdc78f1b271", + "label": "label-1706", + "height": 261, + "background": "green" + }, + { + "key": "6c52ce56-28fe-4830-bcbb-9ae50d8a3e93", + "label": "label-1707", + "height": 213, + "background": "green" + }, + { + "key": "44ab088d-11cd-4b62-b310-cb2f0a24224f", + "label": "label-1708", + "height": 382, + "background": "yellow" + }, + { + "key": "3e9cbbf9-2855-4579-a6c4-7a7814135c02", + "label": "label-1709", + "height": 445, + "background": "red" + }, + { + "key": "70fbc909-261b-4ad2-9c4f-ef842e5926fc", + "label": "label-1710", + "height": 290, + "background": "yellow" + }, + { + "key": "7ad1d8c3-f5a7-42a2-8c07-cfb9a08095bf", + "label": "label-1711", + "height": 403, + "background": "blue" + }, + { + "key": "c84131ee-ac38-4f49-ae70-1a636bedf8a2", + "label": "label-1712", + "height": 77, + "background": "green" + }, + { + "key": "abaa8104-e9ff-4b4c-9873-71dce97e7556", + "label": "label-1713", + "height": 83, + "background": "green" + }, + { + "key": "10f8916a-3d74-4915-9c8e-056b097352f5", + "label": "label-1714", + "height": 386, + "background": "yellow" + }, + { + "key": "44695e10-ed03-4933-b5b8-8712105ffcb8", + "label": "label-1715", + "height": 245, + "background": "yellow" + }, + { + "key": "1d0da4d7-66b3-480b-8057-9ca052df8513", + "label": "label-1716", + "height": 272, + "background": "red" + }, + { + "key": "63d7ff75-e8b4-459d-be1d-aa7080611d2e", + "label": "label-1717", + "height": 245, + "background": "green" + }, + { + "key": "c15efe65-8a51-4f54-bdc0-863218007e91", + "label": "label-1718", + "height": 249, + "background": "red" + }, + { + "key": "cc0966e9-5cad-4558-beb8-b25f8a6239a7", + "label": "label-1719", + "height": 122, + "background": "red" + }, + { + "key": "ae2a8d71-7740-4ab9-8ff9-dd8aa15273ff", + "label": "label-1720", + "height": 83, + "background": "blue" + }, + { + "key": "384e33b3-1461-41db-bcba-66945cdf3cc6", + "label": "label-1721", + "height": 495, + "background": "blue" + }, + { + "key": "f7e1f286-331f-485b-bfeb-9a7faf5ddba7", + "label": "label-1722", + "height": 308, + "background": "red" + }, + { + "key": "1edfe291-9c4d-435f-b09f-0bf8d5b7d81b", + "label": "label-1723", + "height": 460, + "background": "blue" + }, + { + "key": "21c76689-3108-4dfd-a98b-a9e6161d58a8", + "label": "label-1724", + "height": 72, + "background": "green" + }, + { + "key": "a922bbcb-d454-4a84-809a-d2fb97a7c22c", + "label": "label-1725", + "height": 367, + "background": "yellow" + }, + { + "key": "1a62b8e3-9b93-4e07-8f73-5d8e7b1377d3", + "label": "label-1726", + "height": 257, + "background": "blue" + }, + { + "key": "e903b5c1-59e1-447f-bbd0-fbed55706c7f", + "label": "label-1727", + "height": 210, + "background": "red" + }, + { + "key": "62674ff9-aefb-43ff-a3a2-82f347ac2a87", + "label": "label-1728", + "height": 115, + "background": "yellow" + }, + { + "key": "906ac135-3b1b-4cd8-8ecc-89cad776bb13", + "label": "label-1729", + "height": 382, + "background": "red" + }, + { + "key": "4e9b88ea-cf4b-4e45-ab0f-7e8c1c16492e", + "label": "label-1730", + "height": 330, + "background": "yellow" + }, + { + "key": "cf25ba00-0348-44f2-a4d5-f4ae3c80c6ea", + "label": "label-1731", + "height": 43, + "background": "blue" + }, + { + "key": "f2d0ac5c-a637-4125-9b54-a1a7bdb5da9f", + "label": "label-1732", + "height": 36, + "background": "red" + }, + { + "key": "174ea637-05d3-477b-8657-b2d6e523035a", + "label": "label-1733", + "height": 364, + "background": "yellow" + }, + { + "key": "c6791140-5036-414b-8aa5-8006c1156a48", + "label": "label-1734", + "height": 385, + "background": "green" + }, + { + "key": "97072fbd-9954-409b-ad7e-9e79c2a529c0", + "label": "label-1735", + "height": 234, + "background": "red" + }, + { + "key": "3a305ae2-becb-4000-85a6-12abbb921ffe", + "label": "label-1736", + "height": 272, + "background": "blue" + }, + { + "key": "7bc1da50-ab1c-409f-84a4-cfd98b9c24b0", + "label": "label-1737", + "height": 437, + "background": "blue" + }, + { + "key": "f7c2a8d2-8a4b-4ee5-8414-1eb891f902de", + "label": "label-1738", + "height": 242, + "background": "red" + }, + { + "key": "750fd7a8-483b-408d-9b8a-2bc7b64b8868", + "label": "label-1739", + "height": 519, + "background": "yellow" + }, + { + "key": "3926be2f-062f-4f07-bce1-3ceb5149572b", + "label": "label-1740", + "height": 36, + "background": "blue" + }, + { + "key": "fea784c7-ceea-4d47-88b9-67a1152fa3a1", + "label": "label-1741", + "height": 342, + "background": "blue" + }, + { + "key": "21a835a4-a236-4aeb-a1e0-48cf5b8145c9", + "label": "label-1742", + "height": 325, + "background": "blue" + }, + { + "key": "ca8fd8ce-91f6-481a-947f-98c48ddb07a4", + "label": "label-1743", + "height": 260, + "background": "green" + }, + { + "key": "ef292625-278f-40c4-a64f-ed857091f896", + "label": "label-1744", + "height": 289, + "background": "red" + }, + { + "key": "986cc63d-232e-413d-b57f-ae770d689008", + "label": "label-1745", + "height": 252, + "background": "green" + }, + { + "key": "b26ebb5e-aa45-4838-aa61-b009bd5f3711", + "label": "label-1746", + "height": 244, + "background": "green" + }, + { + "key": "30512b8a-70e0-4d88-b182-6b2445646d4a", + "label": "label-1747", + "height": 254, + "background": "red" + }, + { + "key": "c23be47f-a9d1-4c28-94d6-251b7590f024", + "label": "label-1748", + "height": 488, + "background": "green" + }, + { + "key": "74aea707-5605-472e-a20c-c745970ef08e", + "label": "label-1749", + "height": 318, + "background": "blue" + }, + { + "key": "ab6cf351-3ad6-4f47-ac11-906b80f054a7", + "label": "label-1750", + "height": 474, + "background": "yellow" + }, + { + "key": "58f911a6-a6ad-4fc6-a962-1795a4a86524", + "label": "label-1751", + "height": 290, + "background": "blue" + }, + { + "key": "e4dc23cd-e772-4074-9964-efefe27f5c99", + "label": "label-1752", + "height": 51, + "background": "red" + }, + { + "key": "f60578d4-fda8-4de2-a40b-598bfd287455", + "label": "label-1753", + "height": 313, + "background": "green" + }, + { + "key": "4209e53a-4a48-4bc1-8cf6-9919039d7717", + "label": "label-1754", + "height": 91, + "background": "green" + }, + { + "key": "65ff3a69-f425-4317-a7c5-3aa27ccc891f", + "label": "label-1755", + "height": 38, + "background": "red" + }, + { + "key": "94faf344-0c40-4f0b-86ca-bc92dce9fce4", + "label": "label-1756", + "height": 254, + "background": "red" + }, + { + "key": "ae7581f0-f5dc-4525-b60c-590e2fd86161", + "label": "label-1757", + "height": 176, + "background": "red" + }, + { + "key": "192a6171-b128-491d-9be3-33032e8b61b9", + "label": "label-1758", + "height": 456, + "background": "yellow" + }, + { + "key": "547eee98-d426-48f2-ac18-3870d95c8c44", + "label": "label-1759", + "height": 85, + "background": "blue" + }, + { + "key": "d0300edf-0a03-410f-b4ad-2abdce7b3398", + "label": "label-1760", + "height": 173, + "background": "yellow" + }, + { + "key": "48dcfc00-00d4-4a20-a574-056d824c5f08", + "label": "label-1761", + "height": 482, + "background": "red" + }, + { + "key": "e07ab364-7209-458d-9978-94d42f046df8", + "label": "label-1762", + "height": 345, + "background": "green" + }, + { + "key": "f7870332-0e93-49aa-ad0a-ee1f49858ea9", + "label": "label-1763", + "height": 419, + "background": "green" + }, + { + "key": "a4b2d0e4-de2f-4b8c-ba22-6c8c8d2bce98", + "label": "label-1764", + "height": 252, + "background": "red" + }, + { + "key": "b9d37a57-4446-40de-81e5-39a4e39c2537", + "label": "label-1765", + "height": 35, + "background": "yellow" + }, + { + "key": "e8a0349e-a6de-4cda-9adc-1f01ee93dff8", + "label": "label-1766", + "height": 415, + "background": "green" + }, + { + "key": "3b219e18-a084-496c-9d30-2d4ccdda2f14", + "label": "label-1767", + "height": 470, + "background": "yellow" + }, + { + "key": "614047d2-4a77-48f0-8a9b-e7899ab46c45", + "label": "label-1768", + "height": 528, + "background": "blue" + }, + { + "key": "fef994f5-d576-4148-ac6e-b4771aa0d2b8", + "label": "label-1769", + "height": 235, + "background": "green" + }, + { + "key": "73c20c8a-91fd-46ed-a6e5-4363b775eb47", + "label": "label-1770", + "height": 408, + "background": "yellow" + }, + { + "key": "634adfb8-6a0a-4073-aed0-548e43e15d89", + "label": "label-1771", + "height": 342, + "background": "green" + }, + { + "key": "409668ce-5e28-4012-ae40-876ec19bc249", + "label": "label-1772", + "height": 216, + "background": "blue" + }, + { + "key": "d0ec73cc-424e-4fce-8395-761c08781167", + "label": "label-1773", + "height": 275, + "background": "red" + }, + { + "key": "4a144c1c-e92f-486c-bc39-1f957eaab34f", + "label": "label-1774", + "height": 213, + "background": "red" + }, + { + "key": "83abdd27-b995-4e03-8a16-53282f7c163b", + "label": "label-1775", + "height": 147, + "background": "blue" + }, + { + "key": "5e89755f-1402-4eda-b0a8-d129c5c51109", + "label": "label-1776", + "height": 462, + "background": "yellow" + }, + { + "key": "8ac23020-6038-4941-a1c5-c99ba89df1ae", + "label": "label-1777", + "height": 520, + "background": "red" + }, + { + "key": "07842f9a-2767-4ea3-8487-52584df7cb7d", + "label": "label-1778", + "height": 136, + "background": "yellow" + }, + { + "key": "373d3f76-7944-4cc3-bcc6-4c62d49fe6ea", + "label": "label-1779", + "height": 524, + "background": "green" + }, + { + "key": "b47791ce-37f6-48fd-8fd9-283a6ae77439", + "label": "label-1780", + "height": 65, + "background": "yellow" + }, + { + "key": "5ac9dfb7-bab2-449c-befc-af847404f45d", + "label": "label-1781", + "height": 346, + "background": "green" + }, + { + "key": "24292dbe-d6ad-49ec-a1b5-578ab611ea02", + "label": "label-1782", + "height": 254, + "background": "red" + }, + { + "key": "468d5253-2600-460e-a4a4-ec5fb869be6d", + "label": "label-1783", + "height": 284, + "background": "red" + }, + { + "key": "34f912bd-b263-4937-9b09-1a8a0a2970b3", + "label": "label-1784", + "height": 71, + "background": "green" + }, + { + "key": "6ead48c2-8f2c-4a62-8462-d6711d052dcb", + "label": "label-1785", + "height": 216, + "background": "blue" + }, + { + "key": "b1a808de-b11f-49ef-8d04-1aec0928f586", + "label": "label-1786", + "height": 219, + "background": "green" + }, + { + "key": "5f15b466-d079-45e6-9107-83c93b546d86", + "label": "label-1787", + "height": 172, + "background": "green" + }, + { + "key": "bc112d10-a18c-4f99-a26a-7918f919f398", + "label": "label-1788", + "height": 304, + "background": "yellow" + }, + { + "key": "7bbac5a8-747d-44d8-ad59-0bd4f5e41d2f", + "label": "label-1789", + "height": 526, + "background": "red" + }, + { + "key": "5dea81c3-f1d6-4bab-982a-17ef96cf5e21", + "label": "label-1790", + "height": 94, + "background": "blue" + }, + { + "key": "6dd656e0-2414-4505-b276-127e6f2084d9", + "label": "label-1791", + "height": 235, + "background": "green" + }, + { + "key": "636e9205-f416-405e-b127-d3268879ce99", + "label": "label-1792", + "height": 282, + "background": "green" + }, + { + "key": "656505fd-ea7a-4662-b93b-83c613908279", + "label": "label-1793", + "height": 330, + "background": "yellow" + }, + { + "key": "50e937de-dfd7-4dbb-9e98-5f0eda6ebc64", + "label": "label-1794", + "height": 69, + "background": "blue" + }, + { + "key": "5b7be0af-54ac-4f35-aa5d-89d4ae8b9439", + "label": "label-1795", + "height": 475, + "background": "yellow" + }, + { + "key": "3d15cffc-4b9c-4ca0-a2b4-fa149e7f0956", + "label": "label-1796", + "height": 46, + "background": "red" + }, + { + "key": "af610419-d235-4ff3-b030-ecffe3173581", + "label": "label-1797", + "height": 177, + "background": "blue" + }, + { + "key": "d7b43fbc-1093-425a-bc35-258f9a253664", + "label": "label-1798", + "height": 185, + "background": "green" + }, + { + "key": "3465608d-f078-47f8-824a-fd2c7c45f3aa", + "label": "label-1799", + "height": 407, + "background": "blue" + }, + { + "key": "041ea083-9dee-4008-95e4-ea96c59eec1f", + "label": "label-1800", + "height": 373, + "background": "green" + }, + { + "key": "8d6bf15d-d2de-4ed3-a890-c3c50e9a8016", + "label": "label-1801", + "height": 42, + "background": "blue" + }, + { + "key": "31bc03a0-fe3c-470a-8625-704d1c164e62", + "label": "label-1802", + "height": 480, + "background": "blue" + }, + { + "key": "3741d81c-6d6a-4f9b-89ba-80e8184cd9c9", + "label": "label-1803", + "height": 87, + "background": "green" + }, + { + "key": "b2e27cbf-6667-4d08-bbec-eae65540f0e0", + "label": "label-1804", + "height": 207, + "background": "red" + }, + { + "key": "fbe9df02-d4b1-4586-85b5-8d1b52c0c722", + "label": "label-1805", + "height": 293, + "background": "blue" + }, + { + "key": "9e8775f5-fd0a-4c29-a8c5-01bbe296faa2", + "label": "label-1806", + "height": 296, + "background": "yellow" + }, + { + "key": "49e90c98-0372-4067-8c46-97950848a167", + "label": "label-1807", + "height": 456, + "background": "red" + }, + { + "key": "5c7d68b7-71b7-4274-9485-203628cc6346", + "label": "label-1808", + "height": 235, + "background": "blue" + }, + { + "key": "4bb1d4a1-5b06-4985-9028-276edd06aa96", + "label": "label-1809", + "height": 335, + "background": "yellow" + }, + { + "key": "786a0b11-3883-4c05-8192-22e9a36b6046", + "label": "label-1810", + "height": 486, + "background": "red" + }, + { + "key": "31bf1a10-169a-4a5d-be23-a1cbfae14600", + "label": "label-1811", + "height": 148, + "background": "green" + }, + { + "key": "998b43d6-e8b0-4fef-ba8c-f3379a4e8729", + "label": "label-1812", + "height": 371, + "background": "green" + }, + { + "key": "9bb82f91-0522-41ed-b443-f86c3183570a", + "label": "label-1813", + "height": 430, + "background": "green" + }, + { + "key": "e445e122-d7d1-464e-a5a7-79044bc39fe7", + "label": "label-1814", + "height": 456, + "background": "yellow" + }, + { + "key": "826dfc7b-ba0f-4682-b560-7c39f07635e7", + "label": "label-1815", + "height": 374, + "background": "yellow" + }, + { + "key": "92d9eb83-50f4-4d30-8c41-484935e78692", + "label": "label-1816", + "height": 336, + "background": "yellow" + }, + { + "key": "d46c2ba7-b433-4b02-8cbb-c602b09c2923", + "label": "label-1817", + "height": 65, + "background": "yellow" + }, + { + "key": "269309de-b684-470c-859c-f481a7270553", + "label": "label-1818", + "height": 175, + "background": "yellow" + }, + { + "key": "6c148b14-14ce-4f1b-bfef-765d0aeeca38", + "label": "label-1819", + "height": 275, + "background": "blue" + }, + { + "key": "d9ae987b-34a6-437a-8085-7d751764bead", + "label": "label-1820", + "height": 530, + "background": "yellow" + }, + { + "key": "7d3ddaa2-175c-4a02-b4de-dcf9fe74014e", + "label": "label-1821", + "height": 301, + "background": "yellow" + }, + { + "key": "078a865e-2d7f-4ee9-a911-fee8c4567c65", + "label": "label-1822", + "height": 113, + "background": "yellow" + }, + { + "key": "46e1c4b3-220f-45b9-8296-fedcee5b6fdf", + "label": "label-1823", + "height": 263, + "background": "yellow" + }, + { + "key": "8ee326f1-010c-49fc-be2d-bc998242a598", + "label": "label-1824", + "height": 332, + "background": "green" + }, + { + "key": "30c946ad-34b4-41aa-9f5b-b3fc56043a9f", + "label": "label-1825", + "height": 391, + "background": "blue" + }, + { + "key": "8b8e3aa0-10cd-4946-b70d-d42a256291cb", + "label": "label-1826", + "height": 340, + "background": "green" + }, + { + "key": "5b3c8c1e-a5c2-4325-a5c7-ac1916cfbd27", + "label": "label-1827", + "height": 214, + "background": "red" + }, + { + "key": "8c2a517d-6a37-430f-b8ea-627341369f80", + "label": "label-1828", + "height": 422, + "background": "green" + }, + { + "key": "2f018c36-01f9-45a9-ab10-1caea3897156", + "label": "label-1829", + "height": 373, + "background": "green" + }, + { + "key": "35b7cf98-cf77-4fb8-b7ba-e1fde98e3e66", + "label": "label-1830", + "height": 128, + "background": "red" + }, + { + "key": "473171d7-a23a-44d1-9cfe-bf4cc72c74ed", + "label": "label-1831", + "height": 420, + "background": "green" + }, + { + "key": "d44f8d23-188d-47ff-8b30-662d03b667b0", + "label": "label-1832", + "height": 102, + "background": "red" + }, + { + "key": "ab6363b3-dd8f-4160-80cf-2e825c8fdf29", + "label": "label-1833", + "height": 265, + "background": "yellow" + }, + { + "key": "5cf5ba9c-3d45-4913-a5a8-ac03c1920ae2", + "label": "label-1834", + "height": 119, + "background": "green" + }, + { + "key": "92d8f8b1-ae1d-486b-84d2-85381d638cc3", + "label": "label-1835", + "height": 304, + "background": "blue" + }, + { + "key": "78acb198-89d4-4e77-996b-a75e92262e8b", + "label": "label-1836", + "height": 358, + "background": "yellow" + }, + { + "key": "6b476919-24fe-4424-a6a0-c03d7b78f335", + "label": "label-1837", + "height": 188, + "background": "red" + }, + { + "key": "b9dfca75-f7e0-4622-8efe-7b85fe2463f4", + "label": "label-1838", + "height": 166, + "background": "red" + }, + { + "key": "26109a78-06f2-443e-8feb-804b584d6fcf", + "label": "label-1839", + "height": 465, + "background": "green" + }, + { + "key": "6ce23ad3-d419-4707-a8da-adc28ff65f67", + "label": "label-1840", + "height": 406, + "background": "blue" + }, + { + "key": "303291ee-9049-4b5d-b4f3-de73073675b6", + "label": "label-1841", + "height": 265, + "background": "green" + }, + { + "key": "f7138142-9820-4230-927b-9ec00b0d7071", + "label": "label-1842", + "height": 361, + "background": "blue" + }, + { + "key": "a93eb370-dcab-4fe6-8599-315566a19acd", + "label": "label-1843", + "height": 394, + "background": "green" + }, + { + "key": "ba11dbf0-19c5-48e4-afae-7809532be8a4", + "label": "label-1844", + "height": 211, + "background": "blue" + }, + { + "key": "5b4c3bf3-0f9c-40e4-bc69-0c54b2fd6d4a", + "label": "label-1845", + "height": 92, + "background": "blue" + }, + { + "key": "bf7595b0-1fdb-4e24-b0bf-925ea649f22e", + "label": "label-1846", + "height": 254, + "background": "red" + }, + { + "key": "d5a0879d-0f2c-4294-abbb-8ef92e32376d", + "label": "label-1847", + "height": 329, + "background": "red" + }, + { + "key": "752d90c5-e2ac-4b32-8c09-2ffb3f67c03d", + "label": "label-1848", + "height": 380, + "background": "blue" + }, + { + "key": "00d1c06c-0aef-47ca-ad52-e61b1e31400d", + "label": "label-1849", + "height": 444, + "background": "red" + }, + { + "key": "7f0061e3-ab15-4b35-9193-d3cee33ff3f4", + "label": "label-1850", + "height": 442, + "background": "blue" + }, + { + "key": "11d890c2-3b73-4b7f-a6f0-3242fa87559e", + "label": "label-1851", + "height": 508, + "background": "green" + }, + { + "key": "3b26c568-3b80-411d-8776-16ca80f173b6", + "label": "label-1852", + "height": 164, + "background": "yellow" + }, + { + "key": "026bacba-1e2d-426a-a218-5f5c39c8ed76", + "label": "label-1853", + "height": 401, + "background": "red" + }, + { + "key": "3ab117ff-b97e-499a-ae72-2e978c00706b", + "label": "label-1854", + "height": 116, + "background": "red" + }, + { + "key": "f1334fd5-6f34-4c1d-9824-767e41eee14a", + "label": "label-1855", + "height": 392, + "background": "yellow" + }, + { + "key": "97a54684-7d02-4682-b0f0-b9da8347d00d", + "label": "label-1856", + "height": 60, + "background": "blue" + }, + { + "key": "d48de7e3-0208-441d-8160-66ac8f98efe8", + "label": "label-1857", + "height": 287, + "background": "green" + }, + { + "key": "3e101860-71e6-4a4d-8073-d307ce457ff2", + "label": "label-1858", + "height": 137, + "background": "blue" + }, + { + "key": "e81e7bf8-0970-426a-a7c0-e356c8e0d3d8", + "label": "label-1859", + "height": 481, + "background": "red" + }, + { + "key": "0fc56590-24f4-4ea4-8c0d-ba787b91c4e6", + "label": "label-1860", + "height": 127, + "background": "blue" + }, + { + "key": "79ca3415-b58e-4d01-af25-51b000544713", + "label": "label-1861", + "height": 501, + "background": "green" + }, + { + "key": "d3e9143b-a8d0-4c94-aff4-fd6ec81a3036", + "label": "label-1862", + "height": 90, + "background": "red" + }, + { + "key": "5e66fe80-ac58-453a-875c-f9ba0de1e29b", + "label": "label-1863", + "height": 188, + "background": "green" + }, + { + "key": "a584def6-6ca2-4f49-b0fe-f22a40354ab3", + "label": "label-1864", + "height": 230, + "background": "green" + }, + { + "key": "ef5b5b12-61ae-4c66-981f-4d17aee187a7", + "label": "label-1865", + "height": 197, + "background": "yellow" + }, + { + "key": "5b68363b-1348-4912-a72b-960878484bf1", + "label": "label-1866", + "height": 326, + "background": "yellow" + }, + { + "key": "087751e3-0035-40a3-9827-96bdc891f9fc", + "label": "label-1867", + "height": 524, + "background": "blue" + }, + { + "key": "3c2b40cd-3934-4dd0-90df-b8c273fbf4da", + "label": "label-1868", + "height": 455, + "background": "yellow" + }, + { + "key": "19deb931-0dad-4a51-a75d-e4f80a01f9d9", + "label": "label-1869", + "height": 488, + "background": "green" + }, + { + "key": "3bab22ec-fa24-4a9b-8425-fe2da13e11d4", + "label": "label-1870", + "height": 503, + "background": "green" + }, + { + "key": "4b6fe79f-8a75-4d54-8bff-750c2ac88fb6", + "label": "label-1871", + "height": 79, + "background": "yellow" + }, + { + "key": "95bc171b-b91c-4213-9f12-7abc8b8776cb", + "label": "label-1872", + "height": 67, + "background": "yellow" + }, + { + "key": "3f99d109-0aa8-4d4d-8e96-0d5cd0109a07", + "label": "label-1873", + "height": 214, + "background": "red" + }, + { + "key": "f9df4536-fd97-4f4d-85ca-0b49d554bf75", + "label": "label-1874", + "height": 368, + "background": "yellow" + }, + { + "key": "0c687d1e-5bc3-4b32-a38a-674e0c028050", + "label": "label-1875", + "height": 41, + "background": "green" + }, + { + "key": "49ee8ae5-1595-4aae-9b6a-99b3773d61b0", + "label": "label-1876", + "height": 181, + "background": "blue" + }, + { + "key": "b71bef98-0525-4ad8-bb72-a47b65348709", + "label": "label-1877", + "height": 297, + "background": "red" + }, + { + "key": "5ed4d0e9-3266-4081-9833-fc34795b8d9e", + "label": "label-1878", + "height": 372, + "background": "yellow" + }, + { + "key": "df09b95f-c50b-41ed-86bd-4988c623d085", + "label": "label-1879", + "height": 192, + "background": "green" + }, + { + "key": "6e4fd8e2-84b9-472a-80c4-8c5caa2cd319", + "label": "label-1880", + "height": 42, + "background": "yellow" + }, + { + "key": "f62ee370-297b-4879-a713-3e99f7e00694", + "label": "label-1881", + "height": 142, + "background": "red" + }, + { + "key": "e319420d-6568-4c1c-9dcb-9a9569594343", + "label": "label-1882", + "height": 393, + "background": "yellow" + }, + { + "key": "98f4c819-9025-4641-b140-f094e2206554", + "label": "label-1883", + "height": 373, + "background": "red" + }, + { + "key": "f1477edf-6a37-47ee-a272-26f666b84ac2", + "label": "label-1884", + "height": 347, + "background": "blue" + }, + { + "key": "9407bb05-2803-4f9d-987e-3c9ad5740731", + "label": "label-1885", + "height": 147, + "background": "yellow" + }, + { + "key": "da118a41-6da2-43f9-8f69-1f1a51c566f8", + "label": "label-1886", + "height": 127, + "background": "yellow" + }, + { + "key": "0c724a44-2d9e-40e6-b374-d04476ec6f81", + "label": "label-1887", + "height": 283, + "background": "red" + }, + { + "key": "58d26f1c-e63f-439b-b2da-4ef58100e588", + "label": "label-1888", + "height": 514, + "background": "green" + }, + { + "key": "25350525-de53-40ef-b523-a667bdad7383", + "label": "label-1889", + "height": 461, + "background": "blue" + }, + { + "key": "f10df613-d762-4b13-8221-2d71ce0b7d7c", + "label": "label-1890", + "height": 142, + "background": "green" + }, + { + "key": "95afba39-c8bd-40d3-9ee6-a1eb13ae367d", + "label": "label-1891", + "height": 101, + "background": "yellow" + }, + { + "key": "87417a5c-4439-40fe-a19e-3d7926e31724", + "label": "label-1892", + "height": 41, + "background": "red" + }, + { + "key": "a09779fb-5184-444c-9194-4dca1af82a07", + "label": "label-1893", + "height": 217, + "background": "blue" + }, + { + "key": "6ea7cab8-95df-443b-a3ad-941d9e49b108", + "label": "label-1894", + "height": 207, + "background": "yellow" + }, + { + "key": "b9d2d76e-66f0-4ce0-ad50-939b597a9452", + "label": "label-1895", + "height": 102, + "background": "blue" + }, + { + "key": "c7b4618f-cc1a-47be-aae3-9b628f6e758a", + "label": "label-1896", + "height": 60, + "background": "blue" + }, + { + "key": "2ad9bf76-57ab-4202-a116-d9cd86b3ff80", + "label": "label-1897", + "height": 456, + "background": "yellow" + }, + { + "key": "4a2d14d5-8dbb-4f8a-b79c-6261d1495b80", + "label": "label-1898", + "height": 487, + "background": "blue" + }, + { + "key": "9f78b120-4d5a-4e17-a741-2f9dc14ab9e3", + "label": "label-1899", + "height": 357, + "background": "red" + }, + { + "key": "ae75e01e-a70c-496b-a7b4-2d4fd447b6d8", + "label": "label-1900", + "height": 334, + "background": "green" + }, + { + "key": "0a67c049-53d6-4bc5-9c5f-ba0767c86a31", + "label": "label-1901", + "height": 520, + "background": "yellow" + }, + { + "key": "0cef204a-93e2-4a93-a5c5-8da839ab53cb", + "label": "label-1902", + "height": 233, + "background": "yellow" + }, + { + "key": "8b8b8668-b110-4208-9d89-cd5a91a81bf0", + "label": "label-1903", + "height": 260, + "background": "green" + }, + { + "key": "252dab3a-5dcc-47b8-97da-85fccd4019b4", + "label": "label-1904", + "height": 154, + "background": "blue" + }, + { + "key": "5a2d8b1d-2940-4539-af3f-9caab5cbfaed", + "label": "label-1905", + "height": 367, + "background": "green" + }, + { + "key": "1206dff3-a94e-4d09-b24a-7bd007ba7b24", + "label": "label-1906", + "height": 465, + "background": "blue" + }, + { + "key": "71f741bb-cde6-4c6d-b137-da2b04d95387", + "label": "label-1907", + "height": 216, + "background": "blue" + }, + { + "key": "cdedcca3-0fbe-4e95-bb89-53a5dea564df", + "label": "label-1908", + "height": 139, + "background": "red" + }, + { + "key": "49bac804-6c48-43de-9a5d-e909bddbbf9b", + "label": "label-1909", + "height": 310, + "background": "yellow" + }, + { + "key": "d22a0431-ddea-431b-bab0-3b408e0608ac", + "label": "label-1910", + "height": 197, + "background": "yellow" + }, + { + "key": "4a303b5c-f37b-4a82-8267-e2d2cf30bd0f", + "label": "label-1911", + "height": 318, + "background": "red" + }, + { + "key": "b2dd66a5-d07c-42b2-a4a2-b092de63c4e8", + "label": "label-1912", + "height": 365, + "background": "red" + }, + { + "key": "17afa5a1-dc86-4e06-b93b-22899279b14d", + "label": "label-1913", + "height": 102, + "background": "green" + }, + { + "key": "6f66744e-52cf-491c-a75c-a70319d8392e", + "label": "label-1914", + "height": 181, + "background": "yellow" + }, + { + "key": "cc2b67e3-1f76-4f12-8971-728135bfef53", + "label": "label-1915", + "height": 292, + "background": "red" + }, + { + "key": "61412a18-8105-4e6f-83f4-18a61139a824", + "label": "label-1916", + "height": 506, + "background": "yellow" + }, + { + "key": "a4d10b02-faa2-4567-ad5e-3b79cd69f951", + "label": "label-1917", + "height": 178, + "background": "green" + }, + { + "key": "5564b142-35e0-4549-83c0-c991d3e6d4ee", + "label": "label-1918", + "height": 210, + "background": "green" + }, + { + "key": "5e9e3d98-a3ca-4c7c-87ed-834f6c7bbb97", + "label": "label-1919", + "height": 224, + "background": "green" + }, + { + "key": "fb213f37-2ae0-4ddf-a7b4-6bb3a997a8c3", + "label": "label-1920", + "height": 127, + "background": "yellow" + }, + { + "key": "fd91c1ee-14e0-4b51-a981-f01f42785da7", + "label": "label-1921", + "height": 132, + "background": "red" + }, + { + "key": "77f71b74-bb30-4399-96a4-b08455a613e1", + "label": "label-1922", + "height": 509, + "background": "yellow" + }, + { + "key": "b956fdd5-cb1d-4ae5-bf31-ee504f11f288", + "label": "label-1923", + "height": 415, + "background": "green" + }, + { + "key": "69c33971-8fe4-489c-93a6-080c930bbded", + "label": "label-1924", + "height": 348, + "background": "green" + }, + { + "key": "be153df7-742c-4261-b0a6-8daedc62991b", + "label": "label-1925", + "height": 425, + "background": "blue" + }, + { + "key": "56756bd3-1733-47f8-bb4e-2b76b78ab36c", + "label": "label-1926", + "height": 36, + "background": "red" + }, + { + "key": "c14fb23d-6cf7-475a-8ec6-9533569c3e1d", + "label": "label-1927", + "height": 331, + "background": "blue" + }, + { + "key": "7a00dea8-33ea-45e6-9987-ac0d5c2aae1a", + "label": "label-1928", + "height": 365, + "background": "green" + }, + { + "key": "6a997666-e8aa-4a76-84f2-2195d66f135e", + "label": "label-1929", + "height": 484, + "background": "green" + }, + { + "key": "4d55d2db-5720-4cd8-9e67-9b0b739b9920", + "label": "label-1930", + "height": 398, + "background": "yellow" + }, + { + "key": "947e53d7-db47-4a85-9f13-ca9c304b0393", + "label": "label-1931", + "height": 474, + "background": "yellow" + }, + { + "key": "3723b669-434b-4d20-99c8-e84b77af3324", + "label": "label-1932", + "height": 220, + "background": "yellow" + }, + { + "key": "04e0bfb5-7f27-4dbc-93e2-61e8157a81eb", + "label": "label-1933", + "height": 397, + "background": "red" + }, + { + "key": "85c1726b-9d25-4807-ba92-85ce1444826e", + "label": "label-1934", + "height": 175, + "background": "yellow" + }, + { + "key": "16f63d0a-187d-45c2-82f4-daa88a2c2798", + "label": "label-1935", + "height": 192, + "background": "yellow" + }, + { + "key": "e7243200-6454-4ef2-9bf4-7862cb0cd48e", + "label": "label-1936", + "height": 33, + "background": "yellow" + }, + { + "key": "bca2533a-adcc-43bf-abba-436e8a60d5fc", + "label": "label-1937", + "height": 430, + "background": "yellow" + }, + { + "key": "2906f1f3-5bf0-486f-8222-0735fa7bfff8", + "label": "label-1938", + "height": 73, + "background": "red" + }, + { + "key": "3a48c7ff-c7ab-4430-a784-e7ecfc1bf76d", + "label": "label-1939", + "height": 478, + "background": "red" + }, + { + "key": "f74b14c4-b901-42f1-85c0-7a3f4c53f966", + "label": "label-1940", + "height": 196, + "background": "yellow" + }, + { + "key": "53d31015-2adc-4ab5-a368-bf838aadafe4", + "label": "label-1941", + "height": 337, + "background": "red" + }, + { + "key": "c9e08142-b1ae-4d0f-ac68-6b3c7781a86a", + "label": "label-1942", + "height": 296, + "background": "yellow" + }, + { + "key": "07f7d850-fe79-4901-ac57-19811b6ebcaa", + "label": "label-1943", + "height": 408, + "background": "red" + }, + { + "key": "7379f747-a6e1-4ddb-9cb3-85e6c813bbfe", + "label": "label-1944", + "height": 354, + "background": "green" + }, + { + "key": "f7d03c8c-6a18-454b-a30f-3439ab4d0cd2", + "label": "label-1945", + "height": 321, + "background": "green" + }, + { + "key": "94a72d9e-ecc0-47e4-a484-1917a57df205", + "label": "label-1946", + "height": 144, + "background": "red" + }, + { + "key": "01653f9d-f239-406e-b1c8-798f3b5ffd14", + "label": "label-1947", + "height": 405, + "background": "yellow" + }, + { + "key": "30739a48-8892-446c-a654-b2c5e3211088", + "label": "label-1948", + "height": 290, + "background": "red" + }, + { + "key": "97a311a8-3778-4f92-980b-77df4215b81d", + "label": "label-1949", + "height": 42, + "background": "green" + }, + { + "key": "87fa4c43-323c-4ab4-ad9a-29796aa44a25", + "label": "label-1950", + "height": 508, + "background": "green" + }, + { + "key": "5005fd13-5d9f-4920-a3eb-c96843a8028e", + "label": "label-1951", + "height": 333, + "background": "green" + }, + { + "key": "9c176b7f-8592-4995-b655-bc0f5b40892c", + "label": "label-1952", + "height": 321, + "background": "blue" + }, + { + "key": "83f44e3b-7047-4827-a038-97defff0877d", + "label": "label-1953", + "height": 82, + "background": "green" + }, + { + "key": "706e318c-88de-451f-a1c7-09adc64ca883", + "label": "label-1954", + "height": 432, + "background": "blue" + }, + { + "key": "3ed591a3-e03d-48c9-9842-fddfd5ec73af", + "label": "label-1955", + "height": 139, + "background": "blue" + }, + { + "key": "b5b774ab-294e-4ad6-9f39-4ebdcdcd63ea", + "label": "label-1956", + "height": 36, + "background": "green" + }, + { + "key": "1d16f94d-2783-4264-82ff-62900a80f3e6", + "label": "label-1957", + "height": 377, + "background": "green" + }, + { + "key": "c09d27fc-abe1-4dc2-93d7-00dcf08c4b7c", + "label": "label-1958", + "height": 280, + "background": "red" + }, + { + "key": "d30e28f9-c29c-4edb-b826-672230e3c78e", + "label": "label-1959", + "height": 298, + "background": "blue" + }, + { + "key": "972f15bf-61b8-4344-a782-c845e82a3b58", + "label": "label-1960", + "height": 460, + "background": "green" + }, + { + "key": "7b7846cb-ff10-49b1-8eae-34db45dcfae1", + "label": "label-1961", + "height": 437, + "background": "red" + }, + { + "key": "3a0d257e-32ec-430d-9df9-9c3e01fe8bc2", + "label": "label-1962", + "height": 235, + "background": "green" + }, + { + "key": "e8b7d2c4-0dd6-4fba-b50a-c7569609e0ca", + "label": "label-1963", + "height": 138, + "background": "yellow" + }, + { + "key": "f6eba590-085c-4ee9-9e99-1660698ac682", + "label": "label-1964", + "height": 133, + "background": "yellow" + }, + { + "key": "0033fc3b-b226-49a7-98eb-bc088e85d0d5", + "label": "label-1965", + "height": 383, + "background": "yellow" + }, + { + "key": "02175b39-afe5-47a3-bf68-30a822996539", + "label": "label-1966", + "height": 148, + "background": "green" + }, + { + "key": "c6ab97da-5cde-4722-bb6c-a2c38afd304e", + "label": "label-1967", + "height": 134, + "background": "green" + }, + { + "key": "a6a1915b-5e7f-440b-83f0-b52051141333", + "label": "label-1968", + "height": 476, + "background": "yellow" + }, + { + "key": "9bf5d4d1-15bf-48be-a61b-5ae5341b4356", + "label": "label-1969", + "height": 470, + "background": "green" + }, + { + "key": "baea5221-4364-4cd1-9131-8c432634b2de", + "label": "label-1970", + "height": 438, + "background": "yellow" + }, + { + "key": "00466530-868e-4ac9-8857-3692f3c87ac2", + "label": "label-1971", + "height": 499, + "background": "red" + }, + { + "key": "ada4d4a7-3680-433d-aa10-f13f767619bf", + "label": "label-1972", + "height": 189, + "background": "red" + }, + { + "key": "399718c2-4900-4557-afe4-fe74b6ce6776", + "label": "label-1973", + "height": 46, + "background": "blue" + }, + { + "key": "1cc65c2d-4a9e-4d9c-9e6e-5bec4aaf51be", + "label": "label-1974", + "height": 367, + "background": "yellow" + }, + { + "key": "b62dc317-060f-42d4-841d-e658e680d4bf", + "label": "label-1975", + "height": 281, + "background": "red" + }, + { + "key": "2e0912cf-f873-42f6-a5c7-a993ebdbbde4", + "label": "label-1976", + "height": 304, + "background": "yellow" + }, + { + "key": "98a5ca02-cde7-4716-b876-7e0121cd0f77", + "label": "label-1977", + "height": 467, + "background": "yellow" + }, + { + "key": "4a0b6ac2-2322-470e-babe-4611f26e1774", + "label": "label-1978", + "height": 147, + "background": "blue" + }, + { + "key": "6cfd14a7-a821-4ac7-8b56-e6110b22401f", + "label": "label-1979", + "height": 377, + "background": "red" + }, + { + "key": "2f41f2c9-a9db-4475-8806-d3d0df85ee2a", + "label": "label-1980", + "height": 290, + "background": "yellow" + }, + { + "key": "b2d953ad-67a6-485c-bd9a-a0785f440eaa", + "label": "label-1981", + "height": 202, + "background": "red" + }, + { + "key": "a41e0d77-5fe6-4151-bbae-a38a1e8719d7", + "label": "label-1982", + "height": 79, + "background": "yellow" + }, + { + "key": "acda3b68-bccf-4b5c-872f-39d4a0d88ff6", + "label": "label-1983", + "height": 139, + "background": "red" + }, + { + "key": "0299fc09-cc3f-4883-832d-820394060fe0", + "label": "label-1984", + "height": 178, + "background": "yellow" + }, + { + "key": "5fc0c1a7-7386-4839-a05d-0f5cf3567750", + "label": "label-1985", + "height": 502, + "background": "green" + }, + { + "key": "10cb5fba-084e-40fa-a3ef-38db6ec4888c", + "label": "label-1986", + "height": 234, + "background": "red" + }, + { + "key": "33a67f4c-c53e-4305-8ada-c80a83c093d2", + "label": "label-1987", + "height": 482, + "background": "green" + }, + { + "key": "96e53bda-ba22-4d40-8cc4-5991e9ba9643", + "label": "label-1988", + "height": 149, + "background": "green" + }, + { + "key": "aa31fcb1-16d4-4846-8fc1-2ec5c921ffbf", + "label": "label-1989", + "height": 222, + "background": "blue" + }, + { + "key": "e9f43342-ff84-48bc-a41f-6252a7cb9afa", + "label": "label-1990", + "height": 505, + "background": "green" + }, + { + "key": "494150f6-3f62-4b16-a195-cac9cb73f095", + "label": "label-1991", + "height": 150, + "background": "yellow" + }, + { + "key": "72f93542-1281-463c-9c38-028c88372142", + "label": "label-1992", + "height": 117, + "background": "green" + }, + { + "key": "4e486075-92b2-479f-b239-4d16c0c4aa9d", + "label": "label-1993", + "height": 236, + "background": "yellow" + }, + { + "key": "228daab5-fa2d-4bcd-b285-15e926157b7c", + "label": "label-1994", + "height": 519, + "background": "yellow" + }, + { + "key": "46663a1e-0fe9-428f-a2be-26ade29d0391", + "label": "label-1995", + "height": 246, + "background": "green" + }, + { + "key": "4f8e75c6-c99c-4e15-a72a-c514a6d52292", + "label": "label-1996", + "height": 295, + "background": "yellow" + }, + { + "key": "d21aba00-c7a7-4a3c-8bb4-97de1105003b", + "label": "label-1997", + "height": 493, + "background": "green" + }, + { + "key": "4706cb81-c010-4f6d-8d47-b234bfc30aaa", + "label": "label-1998", + "height": 78, + "background": "green" + }, + { + "key": "d30314c2-4540-4f6c-b5eb-1ed9ab75fa8f", + "label": "label-1999", + "height": 64, + "background": "blue" + }, + { + "key": "e4eabddc-1c76-44c5-ad87-bfb4347b0ece", + "label": "label-2000", + "height": 297, + "background": "green" + }, + { + "key": "6be4bb41-b63f-46d9-819c-9b27130417a0", + "label": "label-2001", + "height": 80, + "background": "yellow" + }, + { + "key": "41fc7c18-807b-4234-ab0e-2f9c082e4f16", + "label": "label-2002", + "height": 101, + "background": "blue" + }, + { + "key": "0f75b0af-d1c9-4c30-bbd8-5b06c87cd0bd", + "label": "label-2003", + "height": 286, + "background": "yellow" + }, + { + "key": "b5b3b96c-4017-4c4e-8cbd-47470afa546d", + "label": "label-2004", + "height": 265, + "background": "yellow" + }, + { + "key": "6c6d93af-ec37-417e-9738-01885f22d7fa", + "label": "label-2005", + "height": 406, + "background": "green" + }, + { + "key": "47fb746a-899f-4788-98c2-1534266cc98f", + "label": "label-2006", + "height": 342, + "background": "red" + }, + { + "key": "6c2805c5-70e1-4a34-acbd-44f86baf4090", + "label": "label-2007", + "height": 517, + "background": "blue" + }, + { + "key": "a435faa0-7d3d-4b6f-9675-0ae2df10acfa", + "label": "label-2008", + "height": 210, + "background": "blue" + }, + { + "key": "14f27f97-dfbd-469b-9ba3-06e959430daf", + "label": "label-2009", + "height": 71, + "background": "blue" + }, + { + "key": "2f5fcacf-6b72-4f31-9a0f-a707435e9aab", + "label": "label-2010", + "height": 107, + "background": "red" + }, + { + "key": "cabdf393-3d8d-4a0c-985c-a46acc175d18", + "label": "label-2011", + "height": 328, + "background": "red" + }, + { + "key": "469983a5-b5c0-431a-b68e-a3f38060fc7d", + "label": "label-2012", + "height": 447, + "background": "green" + }, + { + "key": "7b98c019-2667-4ef6-a862-235bd4ed7089", + "label": "label-2013", + "height": 532, + "background": "red" + }, + { + "key": "f14417c3-32d3-4af6-830e-b0eed4386d3f", + "label": "label-2014", + "height": 447, + "background": "blue" + }, + { + "key": "3758c440-a8c6-4d1f-a694-5cbd0278826f", + "label": "label-2015", + "height": 396, + "background": "green" + }, + { + "key": "a00d4b8c-ffd8-4849-8327-8134aff11f6d", + "label": "label-2016", + "height": 257, + "background": "yellow" + }, + { + "key": "f9dd7020-0029-4110-a68a-a4bd0bae719d", + "label": "label-2017", + "height": 135, + "background": "red" + }, + { + "key": "327796f1-bc69-4b22-8c1c-43cae9cf42a6", + "label": "label-2018", + "height": 125, + "background": "red" + }, + { + "key": "a342d8fc-e380-4ba5-b5e6-c7dcd844f1db", + "label": "label-2019", + "height": 56, + "background": "green" + }, + { + "key": "95d99a2c-bac4-4224-93c8-67fad1a90574", + "label": "label-2020", + "height": 370, + "background": "red" + }, + { + "key": "d64d9cab-494d-4b6f-89ee-c3f2f96ba423", + "label": "label-2021", + "height": 322, + "background": "blue" + }, + { + "key": "993c55e1-a0ac-4026-b1ca-fe4846a26816", + "label": "label-2022", + "height": 374, + "background": "yellow" + }, + { + "key": "8f4961c8-47c9-444e-a03a-f9e4a81f02fc", + "label": "label-2023", + "height": 211, + "background": "blue" + }, + { + "key": "36bd903f-8e28-4539-b378-3c1280cbdeb2", + "label": "label-2024", + "height": 446, + "background": "blue" + }, + { + "key": "b43f31b0-c4ee-4d17-a521-ee2120e99c14", + "label": "label-2025", + "height": 495, + "background": "blue" + }, + { + "key": "480ce06c-1cb3-4696-8dd3-6a79b4220076", + "label": "label-2026", + "height": 185, + "background": "green" + }, + { + "key": "961d8ebb-1afb-48e1-9a59-810fed084371", + "label": "label-2027", + "height": 40, + "background": "green" + }, + { + "key": "69e4e0c9-6ebd-47b3-b4b9-e180e9338df4", + "label": "label-2028", + "height": 144, + "background": "red" + }, + { + "key": "5700cac3-f7fb-45d5-872b-0caf68359fcf", + "label": "label-2029", + "height": 497, + "background": "green" + }, + { + "key": "3d492fdf-457a-4f86-959d-ba2b6b034641", + "label": "label-2030", + "height": 177, + "background": "yellow" + }, + { + "key": "1ce828c6-8cdd-4637-a0c9-44f4e2bd6f58", + "label": "label-2031", + "height": 498, + "background": "green" + }, + { + "key": "1fbf54e4-943d-41ff-b5bd-c61b749b063c", + "label": "label-2032", + "height": 128, + "background": "blue" + }, + { + "key": "4c951448-2fed-426a-a930-39644cb3b1dc", + "label": "label-2033", + "height": 324, + "background": "yellow" + }, + { + "key": "f29280a7-f094-4622-8f0c-6002e8c15c7c", + "label": "label-2034", + "height": 187, + "background": "yellow" + }, + { + "key": "ffb42958-8756-472c-b580-be91200fc3a7", + "label": "label-2035", + "height": 471, + "background": "green" + }, + { + "key": "a0f9d648-36d6-40ab-9f8b-1a9b1a6bcda7", + "label": "label-2036", + "height": 51, + "background": "yellow" + }, + { + "key": "79e52468-622d-4fbc-9b7e-6abb995a4d07", + "label": "label-2037", + "height": 103, + "background": "yellow" + }, + { + "key": "4a86b68a-f27a-4559-b732-1671c4e9f3cb", + "label": "label-2038", + "height": 238, + "background": "green" + }, + { + "key": "16a5617f-3ec7-46fd-85b7-9c6f98a06f0d", + "label": "label-2039", + "height": 144, + "background": "yellow" + }, + { + "key": "6291bc33-e7a1-4820-9f03-a95189f31245", + "label": "label-2040", + "height": 244, + "background": "blue" + }, + { + "key": "b8a194fb-cd85-4ec5-889d-f9b3f578a4e4", + "label": "label-2041", + "height": 261, + "background": "yellow" + }, + { + "key": "4aec9ac8-3270-4f6a-933c-80c8b2e0f23d", + "label": "label-2042", + "height": 68, + "background": "yellow" + }, + { + "key": "9e9d6349-4bc4-44b5-8f80-dbb8af93f0c9", + "label": "label-2043", + "height": 158, + "background": "yellow" + }, + { + "key": "e2d9ce6b-67c1-435d-b1a3-08ec6a19ebd9", + "label": "label-2044", + "height": 259, + "background": "green" + }, + { + "key": "418891b2-40a9-4621-be90-5927155d9127", + "label": "label-2045", + "height": 521, + "background": "yellow" + }, + { + "key": "b0273e1d-f727-498b-8995-4234644d893a", + "label": "label-2046", + "height": 209, + "background": "blue" + }, + { + "key": "c4910c0d-ec8a-4056-aa59-ddcf1dc0a240", + "label": "label-2047", + "height": 180, + "background": "blue" + }, + { + "key": "3df19bfa-5973-4bb0-9564-7ba956e901cd", + "label": "label-2048", + "height": 316, + "background": "red" + }, + { + "key": "89948986-f489-4e79-a7f4-8c6e42e0a4a3", + "label": "label-2049", + "height": 495, + "background": "red" + }, + { + "key": "b81069a8-6d17-4d5d-85ec-c2d91f8b26eb", + "label": "label-2050", + "height": 235, + "background": "blue" + }, + { + "key": "cea8ea7c-0d18-4355-96e9-ad2f04d1ad20", + "label": "label-2051", + "height": 507, + "background": "blue" + }, + { + "key": "aaaeebe5-b96d-4b26-9962-02b9be89ef7e", + "label": "label-2052", + "height": 424, + "background": "blue" + }, + { + "key": "fbe6dfa9-4a90-44ce-b1ed-110dfc9b7a6a", + "label": "label-2053", + "height": 414, + "background": "green" + }, + { + "key": "645ed98f-670c-4019-9c1c-f619fb3ae8dd", + "label": "label-2054", + "height": 509, + "background": "red" + }, + { + "key": "4c22407f-5c0d-43a1-91a3-99eca8e6423e", + "label": "label-2055", + "height": 175, + "background": "yellow" + }, + { + "key": "dfe3509e-bf5a-4c14-a6a0-c72608133522", + "label": "label-2056", + "height": 91, + "background": "blue" + }, + { + "key": "9eddf900-512e-4404-b39d-8d00a801b809", + "label": "label-2057", + "height": 116, + "background": "blue" + }, + { + "key": "4a5c512b-afa1-4eaf-bc68-f75bc5e5e134", + "label": "label-2058", + "height": 179, + "background": "blue" + }, + { + "key": "76893c9c-3636-4e78-ba86-71cf2d75c320", + "label": "label-2059", + "height": 381, + "background": "green" + }, + { + "key": "0ae0dd59-e40e-4fa4-8989-8fa571719000", + "label": "label-2060", + "height": 271, + "background": "green" + }, + { + "key": "d8b2f36f-5cb6-4b0f-b713-296c6673559b", + "label": "label-2061", + "height": 378, + "background": "red" + }, + { + "key": "338eb0a3-3253-45b6-88cf-33c2b4370115", + "label": "label-2062", + "height": 472, + "background": "green" + }, + { + "key": "f3dc048a-22a4-4f76-b38d-9640028d1aab", + "label": "label-2063", + "height": 66, + "background": "blue" + }, + { + "key": "51141203-eed8-4db5-a6c0-33efa7eaec6c", + "label": "label-2064", + "height": 296, + "background": "red" + }, + { + "key": "0839a46c-1c7e-44c3-b6d5-8b65a642c819", + "label": "label-2065", + "height": 311, + "background": "blue" + }, + { + "key": "6cc6dd25-6d91-48f5-8d9a-3da32ef078e1", + "label": "label-2066", + "height": 437, + "background": "yellow" + }, + { + "key": "2d0196f9-042a-4947-a9de-d84f04d79eed", + "label": "label-2067", + "height": 296, + "background": "green" + }, + { + "key": "afd54371-fffa-4f77-a612-215a8485fea0", + "label": "label-2068", + "height": 400, + "background": "blue" + }, + { + "key": "ccee6225-7707-490d-ab3c-7bff156a20df", + "label": "label-2069", + "height": 215, + "background": "red" + }, + { + "key": "6bd81c12-771d-47e3-958f-d16e0d102736", + "label": "label-2070", + "height": 66, + "background": "yellow" + }, + { + "key": "78096dc4-0c5e-44dd-b50f-67b3040c35ce", + "label": "label-2071", + "height": 180, + "background": "blue" + }, + { + "key": "b727a2f5-1c15-47e9-9733-7bc66cb2edfc", + "label": "label-2072", + "height": 287, + "background": "red" + }, + { + "key": "27d72394-7bdb-428e-a4e0-5182c33d711c", + "label": "label-2073", + "height": 110, + "background": "yellow" + }, + { + "key": "5f1bae87-f755-4eb1-a827-1c986246a9ce", + "label": "label-2074", + "height": 125, + "background": "blue" + }, + { + "key": "4e2b9632-771e-43c3-aa47-2b85e04b548e", + "label": "label-2075", + "height": 281, + "background": "blue" + }, + { + "key": "f972585b-a0b9-4d24-90cb-8f8cc3a4c395", + "label": "label-2076", + "height": 437, + "background": "red" + }, + { + "key": "34d6d3d7-2001-4e22-ac7c-65b5fec02cfb", + "label": "label-2077", + "height": 200, + "background": "blue" + }, + { + "key": "877e79a4-d623-4ded-97b2-52c6715e1068", + "label": "label-2078", + "height": 263, + "background": "red" + }, + { + "key": "115ed4bd-4735-47e8-be05-37e223fcf05b", + "label": "label-2079", + "height": 57, + "background": "yellow" + }, + { + "key": "c67fe6c6-0fb3-4bc8-8444-c16fb3d051fd", + "label": "label-2080", + "height": 501, + "background": "green" + }, + { + "key": "6b5f5156-cf33-4030-9fd8-336b4cddb554", + "label": "label-2081", + "height": 285, + "background": "blue" + }, + { + "key": "09d94b91-29a1-4d9b-ae89-87e477e6521b", + "label": "label-2082", + "height": 387, + "background": "blue" + }, + { + "key": "9f055f3e-7c06-4dd0-b01a-3a79a71a6633", + "label": "label-2083", + "height": 283, + "background": "green" + }, + { + "key": "01b0f3d0-f9aa-4ce4-8b71-d5ae34089692", + "label": "label-2084", + "height": 346, + "background": "red" + }, + { + "key": "8d9c3446-a09f-4bf1-9610-f85745923d03", + "label": "label-2085", + "height": 332, + "background": "green" + }, + { + "key": "618bab1a-c67c-4210-b11a-d93a9e8be7b3", + "label": "label-2086", + "height": 356, + "background": "green" + }, + { + "key": "9d9d26dc-1910-45d3-82d1-3828bc3891a0", + "label": "label-2087", + "height": 528, + "background": "blue" + }, + { + "key": "fb33c71e-f862-4b58-8201-7b305cada260", + "label": "label-2088", + "height": 130, + "background": "green" + }, + { + "key": "9307e924-5485-464e-ad99-57c38500fa40", + "label": "label-2089", + "height": 260, + "background": "blue" + }, + { + "key": "5619ef22-3215-44d6-9452-a74b9789a3f7", + "label": "label-2090", + "height": 62, + "background": "yellow" + }, + { + "key": "595f4e96-7ce5-4e35-b96b-05708a6621b5", + "label": "label-2091", + "height": 69, + "background": "blue" + }, + { + "key": "db159a7a-0a3b-4d09-9be0-3368c6749ae1", + "label": "label-2092", + "height": 448, + "background": "red" + }, + { + "key": "72f8f979-14df-47a5-94eb-2b8f7f2e4f6c", + "label": "label-2093", + "height": 91, + "background": "blue" + }, + { + "key": "236aef9a-4b84-4a4a-84c3-57f109a33d3f", + "label": "label-2094", + "height": 35, + "background": "yellow" + }, + { + "key": "00bac130-3d38-4623-b615-047759814293", + "label": "label-2095", + "height": 104, + "background": "blue" + }, + { + "key": "5bb2868e-410d-4dd0-add5-4f1c4fecc310", + "label": "label-2096", + "height": 196, + "background": "yellow" + }, + { + "key": "243bbb3e-8be5-4529-a882-0530d59a653b", + "label": "label-2097", + "height": 301, + "background": "green" + }, + { + "key": "4afdd700-e55f-4fdc-a6de-75cd27abd05c", + "label": "label-2098", + "height": 341, + "background": "blue" + }, + { + "key": "ef19be22-08a0-4352-9dc0-10fd4b7946e3", + "label": "label-2099", + "height": 105, + "background": "yellow" + }, + { + "key": "ed263fac-f28e-44d4-b337-82092ae287bb", + "label": "label-2100", + "height": 456, + "background": "red" + }, + { + "key": "e195b943-a86f-4e43-acde-95c2b3f326be", + "label": "label-2101", + "height": 33, + "background": "yellow" + }, + { + "key": "a4aef808-4ae5-40e8-ba9c-dbcf94720f3d", + "label": "label-2102", + "height": 223, + "background": "green" + }, + { + "key": "2c7e4ed9-0d93-41d0-b9f0-0f528353ee5e", + "label": "label-2103", + "height": 186, + "background": "yellow" + }, + { + "key": "8ccae972-c31a-41e4-93f2-296a10e8603c", + "label": "label-2104", + "height": 361, + "background": "red" + }, + { + "key": "af75c0ec-3c55-464e-9c5e-ea79c03e54e2", + "label": "label-2105", + "height": 398, + "background": "yellow" + }, + { + "key": "7efddf76-a377-4b50-aa7f-619b670f9dbc", + "label": "label-2106", + "height": 252, + "background": "red" + }, + { + "key": "c94939af-cf92-4e30-a6a8-aa62e6159fda", + "label": "label-2107", + "height": 214, + "background": "green" + }, + { + "key": "364f206d-78db-4109-b2f6-e7917d03e4f5", + "label": "label-2108", + "height": 398, + "background": "blue" + }, + { + "key": "c325bb9d-ded8-40fc-9430-faeb57797569", + "label": "label-2109", + "height": 347, + "background": "green" + }, + { + "key": "2c48e5f1-89f6-400d-8f07-6b16ab3fc59a", + "label": "label-2110", + "height": 38, + "background": "yellow" + }, + { + "key": "d1b67bc8-439f-47a3-b760-dc206264abc3", + "label": "label-2111", + "height": 486, + "background": "blue" + }, + { + "key": "f259ed45-8f84-44ce-bc3e-9b527fd91e83", + "label": "label-2112", + "height": 82, + "background": "green" + }, + { + "key": "56d51d60-68ea-4e32-aa04-d3b312a010d1", + "label": "label-2113", + "height": 35, + "background": "yellow" + }, + { + "key": "f419137e-994b-4b68-b657-53c7ef26801f", + "label": "label-2114", + "height": 196, + "background": "blue" + }, + { + "key": "e87298ac-797c-46a6-bc82-883f1d488429", + "label": "label-2115", + "height": 265, + "background": "green" + }, + { + "key": "43fa044b-997b-44f3-a430-2800118d22ca", + "label": "label-2116", + "height": 231, + "background": "yellow" + }, + { + "key": "8bf4f0a9-c248-4b03-a11f-0160faf3bf14", + "label": "label-2117", + "height": 56, + "background": "blue" + }, + { + "key": "6e0c9902-b704-471e-931c-dbcea5ea49e9", + "label": "label-2118", + "height": 220, + "background": "red" + }, + { + "key": "8cbce23c-c2a5-4426-b332-f6ff96746d0d", + "label": "label-2119", + "height": 494, + "background": "red" + }, + { + "key": "cd9bf946-d0f2-4f56-8893-7e2cf148c036", + "label": "label-2120", + "height": 388, + "background": "blue" + }, + { + "key": "0d7414fe-f138-46b3-a1dd-0e2fc0b207e6", + "label": "label-2121", + "height": 138, + "background": "yellow" + }, + { + "key": "bbd8f946-6a0f-4315-9d8b-d38198d52860", + "label": "label-2122", + "height": 211, + "background": "red" + }, + { + "key": "6fbfb16f-7d8c-484c-9e1d-cfae5761b174", + "label": "label-2123", + "height": 391, + "background": "green" + }, + { + "key": "9412639d-46b8-41bb-a95c-f3f06851b7e7", + "label": "label-2124", + "height": 146, + "background": "red" + }, + { + "key": "4ceb7e70-d708-497c-8b4a-a6c932da2073", + "label": "label-2125", + "height": 392, + "background": "blue" + }, + { + "key": "4cd43edc-8733-490b-a113-df7470c2f2ce", + "label": "label-2126", + "height": 280, + "background": "green" + }, + { + "key": "7067dffa-6b83-47e8-a365-72a07f107ac8", + "label": "label-2127", + "height": 96, + "background": "red" + }, + { + "key": "b74bf16c-4b83-497d-bc12-30e0c2d2a865", + "label": "label-2128", + "height": 426, + "background": "green" + }, + { + "key": "076d4adc-7fb0-4b3f-95dd-3e4d30d8db47", + "label": "label-2129", + "height": 225, + "background": "yellow" + }, + { + "key": "daf270de-75d8-49e0-9f4f-5a265a9e6d43", + "label": "label-2130", + "height": 162, + "background": "green" + }, + { + "key": "3878b1ab-b06f-4aa6-ac9d-ad52ac1548d1", + "label": "label-2131", + "height": 309, + "background": "red" + }, + { + "key": "69a181ff-7239-4d9e-af98-ec4e72fcd7f9", + "label": "label-2132", + "height": 241, + "background": "red" + }, + { + "key": "d6f41063-d81d-4736-8045-fc023ae03c1e", + "label": "label-2133", + "height": 148, + "background": "blue" + }, + { + "key": "18871f56-8312-446c-9510-09518548b201", + "label": "label-2134", + "height": 456, + "background": "green" + }, + { + "key": "7f2ea8ef-c8b0-4c48-8f5c-8815d8e1be91", + "label": "label-2135", + "height": 438, + "background": "red" + }, + { + "key": "3983a87f-3dcf-44ac-a697-c8dfb1f40964", + "label": "label-2136", + "height": 477, + "background": "green" + }, + { + "key": "8739d39f-5e5b-4dfb-982b-2b24433163a8", + "label": "label-2137", + "height": 418, + "background": "red" + }, + { + "key": "369ae2dd-e1c9-4a04-ac6c-0ee5a112d754", + "label": "label-2138", + "height": 149, + "background": "green" + }, + { + "key": "bf2b599c-4e23-4c9a-a95e-7f64fd33248e", + "label": "label-2139", + "height": 447, + "background": "blue" + }, + { + "key": "0f26422d-a9df-4ff1-872e-2260e428ce6f", + "label": "label-2140", + "height": 77, + "background": "green" + }, + { + "key": "418ac87f-91b9-4f9c-89dc-facf4453d357", + "label": "label-2141", + "height": 124, + "background": "blue" + }, + { + "key": "f860f846-2724-413f-83e3-8b5c6bad1a54", + "label": "label-2142", + "height": 317, + "background": "yellow" + }, + { + "key": "e5160beb-e151-48df-a12c-843437266237", + "label": "label-2143", + "height": 227, + "background": "yellow" + }, + { + "key": "82e9a7eb-59d3-445b-8057-594aefbf8282", + "label": "label-2144", + "height": 93, + "background": "red" + }, + { + "key": "91f56deb-52c2-43b0-81f7-b2893952bb68", + "label": "label-2145", + "height": 180, + "background": "blue" + }, + { + "key": "a36b4c96-950d-4740-bbff-a179a2d875e5", + "label": "label-2146", + "height": 91, + "background": "blue" + }, + { + "key": "4d0bbc1e-a7a3-45d4-addb-4c2358fab87f", + "label": "label-2147", + "height": 156, + "background": "yellow" + }, + { + "key": "b11ff2cb-7bc2-4b18-a693-01a250f304d8", + "label": "label-2148", + "height": 39, + "background": "blue" + }, + { + "key": "38b2eff5-e7c6-4afc-b440-6c63c55a8ae4", + "label": "label-2149", + "height": 78, + "background": "blue" + }, + { + "key": "cca90423-4773-4992-a1fb-cfc83c665258", + "label": "label-2150", + "height": 287, + "background": "blue" + }, + { + "key": "114459e3-1f89-45a7-a196-6fd2eed60705", + "label": "label-2151", + "height": 525, + "background": "green" + }, + { + "key": "511c50a2-3888-4264-8597-ae169c90b92c", + "label": "label-2152", + "height": 443, + "background": "yellow" + }, + { + "key": "de658b2b-2d16-45f4-b783-01fd1088d748", + "label": "label-2153", + "height": 337, + "background": "green" + }, + { + "key": "b876c8a1-d048-4334-b824-33bf04f3514d", + "label": "label-2154", + "height": 531, + "background": "red" + }, + { + "key": "485e89fe-0e00-4018-9445-8584a0e9eed4", + "label": "label-2155", + "height": 72, + "background": "yellow" + }, + { + "key": "99a43fd6-e2da-4a60-9337-36cbe8f244ad", + "label": "label-2156", + "height": 121, + "background": "yellow" + }, + { + "key": "f9b1ff56-dc28-408d-ad4a-a0b61565c666", + "label": "label-2157", + "height": 455, + "background": "red" + }, + { + "key": "26541308-d91e-475c-86c6-884186b42ca2", + "label": "label-2158", + "height": 461, + "background": "blue" + }, + { + "key": "2c556044-0f56-4737-9635-521cc5043b40", + "label": "label-2159", + "height": 437, + "background": "blue" + }, + { + "key": "1cdc7c63-97f8-4a81-9879-26f6e007056f", + "label": "label-2160", + "height": 517, + "background": "red" + }, + { + "key": "249c51d6-c666-4af2-8435-88fdd437f2f2", + "label": "label-2161", + "height": 133, + "background": "green" + }, + { + "key": "0073934c-f705-4c35-b550-b0d338549ba6", + "label": "label-2162", + "height": 332, + "background": "green" + }, + { + "key": "025353cd-0fb2-4bdd-9298-bf03ddb07949", + "label": "label-2163", + "height": 96, + "background": "yellow" + }, + { + "key": "e8c570b1-d349-4696-a45f-2c8eb693d78a", + "label": "label-2164", + "height": 454, + "background": "blue" + }, + { + "key": "0beda377-e612-4e90-81bb-ddd69d310cc6", + "label": "label-2165", + "height": 445, + "background": "yellow" + }, + { + "key": "9de298d2-6066-4e4f-b664-972dc9efe0c1", + "label": "label-2166", + "height": 316, + "background": "blue" + }, + { + "key": "d873c71c-38ee-41bb-9f65-b10d6f24529a", + "label": "label-2167", + "height": 251, + "background": "yellow" + }, + { + "key": "f5ac6e30-7e3e-4f3d-9d6a-391461fb0a34", + "label": "label-2168", + "height": 299, + "background": "green" + }, + { + "key": "7699a606-a2c5-4b1f-b16b-56fcda576601", + "label": "label-2169", + "height": 365, + "background": "yellow" + }, + { + "key": "a0b40428-e46b-447e-87ff-be6aa509d4de", + "label": "label-2170", + "height": 93, + "background": "red" + }, + { + "key": "e9cb440f-540f-4429-bf62-bce7cdab836c", + "label": "label-2171", + "height": 33, + "background": "yellow" + }, + { + "key": "7dbf8eb0-2523-4d09-9f79-fe8e5ccf690b", + "label": "label-2172", + "height": 364, + "background": "red" + }, + { + "key": "e79e2d6a-a2a4-4ac0-adc1-b4b1dcdaf222", + "label": "label-2173", + "height": 270, + "background": "blue" + }, + { + "key": "f69c2f37-07bd-4b01-9c0e-c0f438d65374", + "label": "label-2174", + "height": 187, + "background": "yellow" + }, + { + "key": "81c8b3da-32c9-4ab6-b566-f4253b213491", + "label": "label-2175", + "height": 119, + "background": "green" + }, + { + "key": "21558e35-ea2d-45e4-b39d-59b10150fd1e", + "label": "label-2176", + "height": 233, + "background": "red" + }, + { + "key": "846d80d7-e61e-4030-b421-32188350af76", + "label": "label-2177", + "height": 447, + "background": "yellow" + }, + { + "key": "95317f61-7eef-4ed4-9fc8-35144d82dade", + "label": "label-2178", + "height": 491, + "background": "blue" + }, + { + "key": "78fe78a9-cc00-43f4-872f-a3a50b49224b", + "label": "label-2179", + "height": 465, + "background": "yellow" + }, + { + "key": "4f1d5d4e-9839-47ad-9350-9dad6a3ace77", + "label": "label-2180", + "height": 473, + "background": "red" + }, + { + "key": "39cad921-6dd2-4070-952e-e8aeb274b5e1", + "label": "label-2181", + "height": 390, + "background": "green" + }, + { + "key": "cad0769c-0f05-43cb-a3a2-eb2b2029409b", + "label": "label-2182", + "height": 416, + "background": "blue" + }, + { + "key": "29f8da28-cb02-4358-8b6f-4170da717152", + "label": "label-2183", + "height": 350, + "background": "yellow" + }, + { + "key": "8c56f98b-74c0-4cbc-932c-e02b49266bf5", + "label": "label-2184", + "height": 435, + "background": "blue" + }, + { + "key": "1d89ee88-05e5-46e3-85f2-050e9a8603a6", + "label": "label-2185", + "height": 156, + "background": "green" + }, + { + "key": "ceb1113f-edeb-4b64-95e5-efc9fb3416a2", + "label": "label-2186", + "height": 417, + "background": "green" + }, + { + "key": "13445124-1e8f-4c49-87ea-5f336c02388e", + "label": "label-2187", + "height": 332, + "background": "red" + }, + { + "key": "a6e7bb9b-cd33-46f3-ad02-c658e1821b75", + "label": "label-2188", + "height": 144, + "background": "red" + }, + { + "key": "4964ef89-fcb5-43ea-a439-af48a6272fe0", + "label": "label-2189", + "height": 145, + "background": "yellow" + }, + { + "key": "6309476b-e610-4803-9274-8fe81ef96747", + "label": "label-2190", + "height": 395, + "background": "blue" + }, + { + "key": "d70fc04c-a681-4f28-b644-5bb9e3257fd7", + "label": "label-2191", + "height": 210, + "background": "red" + }, + { + "key": "2ec752cb-62df-4793-ad6a-5740c0d31912", + "label": "label-2192", + "height": 232, + "background": "green" + }, + { + "key": "5ee27d08-31dd-44d4-8568-6796b0bb621a", + "label": "label-2193", + "height": 102, + "background": "red" + }, + { + "key": "4b702b72-8d6e-4cc4-b827-9c2f1d29eaa7", + "label": "label-2194", + "height": 211, + "background": "blue" + }, + { + "key": "c1c009bb-9dbe-4a62-9476-e4f37224772e", + "label": "label-2195", + "height": 280, + "background": "blue" + }, + { + "key": "2254374d-5993-4585-b058-748451753b27", + "label": "label-2196", + "height": 261, + "background": "blue" + }, + { + "key": "239028fa-a7b9-4b10-9bed-1dbc7ba79931", + "label": "label-2197", + "height": 121, + "background": "blue" + }, + { + "key": "dfa1016b-b106-411a-867b-b2f8188dca92", + "label": "label-2198", + "height": 270, + "background": "red" + }, + { + "key": "2bc25548-fdb8-4790-a096-9784784a899f", + "label": "label-2199", + "height": 531, + "background": "blue" + }, + { + "key": "719fe3af-1bdc-467f-a2fc-ef1374c847a9", + "label": "label-2200", + "height": 530, + "background": "blue" + }, + { + "key": "f6c5d67e-5ff1-4100-a740-9df1454f7f30", + "label": "label-2201", + "height": 520, + "background": "yellow" + }, + { + "key": "1a926011-c962-4083-ae5c-49cd39a7bbc9", + "label": "label-2202", + "height": 292, + "background": "yellow" + }, + { + "key": "5ae8ef57-83b4-40c9-802c-d6921aeb256c", + "label": "label-2203", + "height": 68, + "background": "blue" + }, + { + "key": "725ee1f3-63ad-4c86-b644-c5dcf137c385", + "label": "label-2204", + "height": 463, + "background": "blue" + }, + { + "key": "e05ca9fa-fb18-4385-826c-e53120af3722", + "label": "label-2205", + "height": 131, + "background": "yellow" + }, + { + "key": "3aa1988a-aecf-4b0f-90c2-f1a930cc10d7", + "label": "label-2206", + "height": 337, + "background": "yellow" + }, + { + "key": "2a446f3c-3d14-4718-866a-a42959cee001", + "label": "label-2207", + "height": 37, + "background": "yellow" + }, + { + "key": "348d3306-9d09-4c14-95fd-e3fb63033138", + "label": "label-2208", + "height": 73, + "background": "red" + }, + { + "key": "533abfee-b11d-4333-9abc-ec44b93742b0", + "label": "label-2209", + "height": 479, + "background": "red" + }, + { + "key": "591608c9-89d9-4137-bb84-de047a3f51ea", + "label": "label-2210", + "height": 365, + "background": "red" + }, + { + "key": "f8109267-131f-4584-9122-257f81157c23", + "label": "label-2211", + "height": 296, + "background": "yellow" + }, + { + "key": "e389d75e-597a-4418-916c-4d8e621ae9cc", + "label": "label-2212", + "height": 268, + "background": "blue" + }, + { + "key": "41227a0c-5dd5-4ba7-bc5a-5af9a75bf7ef", + "label": "label-2213", + "height": 458, + "background": "green" + }, + { + "key": "6eecd3a4-0484-4e55-b9fc-388135a6cfb6", + "label": "label-2214", + "height": 347, + "background": "yellow" + }, + { + "key": "0c17fe5e-c773-4e7c-9229-2b085ba7c0af", + "label": "label-2215", + "height": 155, + "background": "green" + }, + { + "key": "d23020ac-45ce-4a7f-83c5-328d4234dc0a", + "label": "label-2216", + "height": 414, + "background": "blue" + }, + { + "key": "a3663170-9e43-43e9-8de3-23d2369ddb46", + "label": "label-2217", + "height": 365, + "background": "yellow" + }, + { + "key": "c8edba0d-718d-43fc-9358-32e1334be54d", + "label": "label-2218", + "height": 265, + "background": "yellow" + }, + { + "key": "8c09060b-1763-4a8f-b5bc-0c97799a24ba", + "label": "label-2219", + "height": 90, + "background": "green" + }, + { + "key": "9c7e6a3b-6c3e-4988-8f67-0ea9af7da8f8", + "label": "label-2220", + "height": 93, + "background": "yellow" + }, + { + "key": "d84c8bb4-4eeb-4d17-9151-9e58f53850f2", + "label": "label-2221", + "height": 402, + "background": "yellow" + }, + { + "key": "8b494074-7e02-4f61-82ea-a673748c63b6", + "label": "label-2222", + "height": 365, + "background": "yellow" + }, + { + "key": "cf1eeb97-87d6-42ad-a84b-a9dc6070224d", + "label": "label-2223", + "height": 195, + "background": "green" + }, + { + "key": "ab2df971-08ae-46f1-a4e4-e53265cba71d", + "label": "label-2224", + "height": 119, + "background": "blue" + }, + { + "key": "6af96775-2aac-45e9-8e74-95dea87e2dab", + "label": "label-2225", + "height": 209, + "background": "red" + }, + { + "key": "6b2fd5f8-33f8-4c2e-ad20-4f405a321223", + "label": "label-2226", + "height": 352, + "background": "yellow" + }, + { + "key": "3cca2092-aa09-4158-99dc-1d3c3f88fe7a", + "label": "label-2227", + "height": 442, + "background": "yellow" + }, + { + "key": "5cc56672-f1e7-4a79-ab71-1ed068e1fc75", + "label": "label-2228", + "height": 343, + "background": "yellow" + }, + { + "key": "daff29c8-93bc-4728-bf19-d51e89961871", + "label": "label-2229", + "height": 496, + "background": "yellow" + }, + { + "key": "20ba88e8-984f-420a-8779-bfd62ae4cd2d", + "label": "label-2230", + "height": 468, + "background": "red" + }, + { + "key": "f03408fe-9d4f-434a-b2f2-651f256bf9ab", + "label": "label-2231", + "height": 481, + "background": "blue" + }, + { + "key": "e590eea7-649e-4d7d-8a8f-ad37cd5145cc", + "label": "label-2232", + "height": 53, + "background": "yellow" + }, + { + "key": "8500fa33-154f-47c7-8129-4677e7688150", + "label": "label-2233", + "height": 189, + "background": "blue" + }, + { + "key": "cf4422cb-eac9-48d9-9fc4-5ebed1d4a5fc", + "label": "label-2234", + "height": 380, + "background": "blue" + }, + { + "key": "25577d90-4c27-43c9-b40a-736c0286bcf9", + "label": "label-2235", + "height": 177, + "background": "blue" + }, + { + "key": "6b27c43a-f24b-4c79-bb4f-d96c81844eaa", + "label": "label-2236", + "height": 446, + "background": "yellow" + }, + { + "key": "f4837bb7-cd1d-467c-90e4-89f7721d0d79", + "label": "label-2237", + "height": 269, + "background": "green" + }, + { + "key": "8cfb77f2-3226-4606-9ba8-1321a5bde831", + "label": "label-2238", + "height": 314, + "background": "blue" + }, + { + "key": "6804c350-275e-43c8-8777-9ac197266873", + "label": "label-2239", + "height": 310, + "background": "blue" + }, + { + "key": "a7c4c57f-bac9-4323-8524-34194aa036ed", + "label": "label-2240", + "height": 431, + "background": "blue" + }, + { + "key": "af6f9b66-069d-4631-a8e1-62d9f084cc8d", + "label": "label-2241", + "height": 395, + "background": "green" + }, + { + "key": "aa57f703-65b5-4bea-9151-e3b7be7b9310", + "label": "label-2242", + "height": 160, + "background": "yellow" + }, + { + "key": "cd05faa1-31b5-4147-afb3-318e97ae0cd3", + "label": "label-2243", + "height": 465, + "background": "green" + }, + { + "key": "1fb6f626-89a6-46da-9344-a09e9ee33dab", + "label": "label-2244", + "height": 455, + "background": "green" + }, + { + "key": "6c59433c-6d50-4b57-b1d6-0c3aa31c93b0", + "label": "label-2245", + "height": 314, + "background": "green" + }, + { + "key": "0b977dd1-a03a-4171-b028-af65fa8c5f9b", + "label": "label-2246", + "height": 261, + "background": "red" + }, + { + "key": "704a4c62-e4c2-4c87-80cd-b536f480e5ae", + "label": "label-2247", + "height": 74, + "background": "yellow" + }, + { + "key": "ce5c464b-4110-46c2-89ae-d1c8f4fb724b", + "label": "label-2248", + "height": 114, + "background": "green" + }, + { + "key": "e72ad0c5-cf99-4345-94af-fa18a2ec74e9", + "label": "label-2249", + "height": 522, + "background": "green" + }, + { + "key": "a96ecb27-55b5-4c05-ad92-38aa80b3bc28", + "label": "label-2250", + "height": 127, + "background": "blue" + }, + { + "key": "21f7f4a8-cd69-4fba-b144-67642eca6369", + "label": "label-2251", + "height": 307, + "background": "yellow" + }, + { + "key": "5b28bfd3-9035-4734-80ed-877891f0799e", + "label": "label-2252", + "height": 476, + "background": "yellow" + }, + { + "key": "9d7099df-41ed-45b3-b065-462301d6f839", + "label": "label-2253", + "height": 59, + "background": "green" + }, + { + "key": "edbb1343-3392-419f-b5c6-2afba6f904e4", + "label": "label-2254", + "height": 363, + "background": "yellow" + }, + { + "key": "18bdc874-c4b8-4a6c-bbe7-82823f971e41", + "label": "label-2255", + "height": 423, + "background": "green" + }, + { + "key": "9b004eed-1223-4986-bbbf-68297d50cdea", + "label": "label-2256", + "height": 63, + "background": "green" + }, + { + "key": "2339c197-ccce-43cf-bc23-cff05e1f0446", + "label": "label-2257", + "height": 58, + "background": "blue" + }, + { + "key": "cc95feef-af95-470d-b68f-1993768d2d79", + "label": "label-2258", + "height": 484, + "background": "yellow" + }, + { + "key": "24b08197-5185-4491-85b2-1e1eda2e5149", + "label": "label-2259", + "height": 479, + "background": "red" + }, + { + "key": "19222e2c-8073-4941-a8ba-3fbfdd2885ea", + "label": "label-2260", + "height": 336, + "background": "green" + }, + { + "key": "50dd85c0-fa06-42e4-9a26-9dde7c16f655", + "label": "label-2261", + "height": 464, + "background": "blue" + }, + { + "key": "c4c273b8-e38e-421c-aa42-2510536c35d9", + "label": "label-2262", + "height": 485, + "background": "blue" + }, + { + "key": "58a8b4fa-f3f8-4396-bfac-1e033719ff4e", + "label": "label-2263", + "height": 106, + "background": "blue" + }, + { + "key": "2481ff40-967f-458a-acd3-a6022f98a0ed", + "label": "label-2264", + "height": 236, + "background": "red" + }, + { + "key": "2a9d7a1d-9c13-428b-a8da-3e1659c6788e", + "label": "label-2265", + "height": 118, + "background": "blue" + }, + { + "key": "afc352f4-45bc-4567-bad6-f123814748c6", + "label": "label-2266", + "height": 266, + "background": "red" + }, + { + "key": "483b036f-e784-40d4-903d-86bd7fe727ab", + "label": "label-2267", + "height": 96, + "background": "blue" + }, + { + "key": "420e7eca-37e1-4550-b0ad-74492695ce30", + "label": "label-2268", + "height": 234, + "background": "green" + }, + { + "key": "06a0fcc9-8a9c-422e-93df-745688081eb6", + "label": "label-2269", + "height": 338, + "background": "yellow" + }, + { + "key": "75e9d386-7b25-4191-a9fb-c0eb5453fdf7", + "label": "label-2270", + "height": 83, + "background": "red" + }, + { + "key": "80768364-4817-4a61-b1fd-07d406fe462d", + "label": "label-2271", + "height": 317, + "background": "red" + }, + { + "key": "342e79da-dd7d-453d-8c0e-b2febc24bea2", + "label": "label-2272", + "height": 354, + "background": "green" + }, + { + "key": "49ebeabf-ee63-4086-a607-25d3655334b5", + "label": "label-2273", + "height": 508, + "background": "red" + }, + { + "key": "555b2b67-4cf0-4709-96f2-a85b24536fbd", + "label": "label-2274", + "height": 213, + "background": "blue" + }, + { + "key": "b5483948-1142-4ea2-8419-b7c96e98835d", + "label": "label-2275", + "height": 379, + "background": "blue" + }, + { + "key": "41e83017-df1b-4269-96bc-1a01044dfed6", + "label": "label-2276", + "height": 88, + "background": "blue" + }, + { + "key": "d93d1cac-75ed-4557-b260-8a6d5eb2f2ff", + "label": "label-2277", + "height": 155, + "background": "green" + }, + { + "key": "9a2ff739-06d9-4ba9-a369-c71e0046992a", + "label": "label-2278", + "height": 50, + "background": "green" + }, + { + "key": "cc9edb5b-9a95-401d-ad93-fca5a339481c", + "label": "label-2279", + "height": 425, + "background": "yellow" + }, + { + "key": "a1d4e80c-da48-47e4-85b6-d2d7ba083b08", + "label": "label-2280", + "height": 150, + "background": "blue" + }, + { + "key": "fc858631-e540-46d5-8d56-ce7a1776a119", + "label": "label-2281", + "height": 257, + "background": "red" + }, + { + "key": "97ae19a3-439f-4fb8-a415-137dafffdde4", + "label": "label-2282", + "height": 82, + "background": "red" + }, + { + "key": "57eae3d6-29d6-49e0-86ae-1414ef6fcbca", + "label": "label-2283", + "height": 295, + "background": "blue" + }, + { + "key": "b8426add-84db-4b86-b02b-33085d2b7c80", + "label": "label-2284", + "height": 459, + "background": "green" + }, + { + "key": "8406f423-091c-4837-94eb-198a58d67eec", + "label": "label-2285", + "height": 123, + "background": "red" + }, + { + "key": "b024cbd6-4c8f-41b2-b931-47641f564f36", + "label": "label-2286", + "height": 498, + "background": "red" + }, + { + "key": "76ea081e-5f55-4a80-9d2e-f8ae6dcea3cd", + "label": "label-2287", + "height": 307, + "background": "yellow" + }, + { + "key": "efad0a83-0e68-4e99-8963-f836cf90fb83", + "label": "label-2288", + "height": 241, + "background": "yellow" + }, + { + "key": "7456f0aa-bd86-4ff0-b797-685de9c42051", + "label": "label-2289", + "height": 87, + "background": "green" + }, + { + "key": "96f10813-0704-4486-a675-90f09a9ed670", + "label": "label-2290", + "height": 347, + "background": "red" + }, + { + "key": "ed98b690-1717-4043-bec2-25ecaef08760", + "label": "label-2291", + "height": 419, + "background": "red" + }, + { + "key": "5d0b34b4-26dc-4dd8-baee-30fbd6d3a66b", + "label": "label-2292", + "height": 86, + "background": "blue" + }, + { + "key": "e613dbc5-aa53-4f19-8aa9-178376bf5ec6", + "label": "label-2293", + "height": 309, + "background": "blue" + }, + { + "key": "f343f6ab-9eb9-4024-98c1-a6f9f6d500ff", + "label": "label-2294", + "height": 111, + "background": "yellow" + }, + { + "key": "47b0b647-34ed-4f14-b306-0bfe1f7d46e2", + "label": "label-2295", + "height": 447, + "background": "blue" + }, + { + "key": "2c2d80e6-64f8-41a9-9f51-8adbb9d46ead", + "label": "label-2296", + "height": 531, + "background": "blue" + }, + { + "key": "a60818f6-266c-49fd-a8f9-15b64283f90b", + "label": "label-2297", + "height": 457, + "background": "red" + }, + { + "key": "5386c765-8330-47ab-b31f-037eee0ecbd2", + "label": "label-2298", + "height": 192, + "background": "green" + }, + { + "key": "6ba1707b-2f9d-429a-9ca3-29b1d75a9c7d", + "label": "label-2299", + "height": 191, + "background": "blue" + }, + { + "key": "56e89e3a-1823-4fd1-830e-6ada71b85802", + "label": "label-2300", + "height": 205, + "background": "blue" + }, + { + "key": "67c21d69-f38d-4f09-9eba-20bc8470ca9e", + "label": "label-2301", + "height": 158, + "background": "yellow" + }, + { + "key": "7100db4f-4b03-4519-a77c-113f78aeda4b", + "label": "label-2302", + "height": 491, + "background": "blue" + }, + { + "key": "b4f75d55-3c80-4e8c-9214-b9bfeaf98c3b", + "label": "label-2303", + "height": 335, + "background": "red" + }, + { + "key": "1fae7d14-b625-4bdb-8d3c-99c9e15e5fc8", + "label": "label-2304", + "height": 438, + "background": "green" + }, + { + "key": "6a3b309e-778c-4037-a91e-d747eb9d3d64", + "label": "label-2305", + "height": 115, + "background": "blue" + }, + { + "key": "2abd8151-da22-409e-b3a7-237e285d9533", + "label": "label-2306", + "height": 508, + "background": "blue" + }, + { + "key": "5e462d31-e0b0-4e46-9cfd-816ce915d10e", + "label": "label-2307", + "height": 413, + "background": "blue" + }, + { + "key": "ada80472-ed87-40df-b875-573bfb9e44fa", + "label": "label-2308", + "height": 462, + "background": "red" + }, + { + "key": "2ec3cfac-6753-4c4f-a64c-04b691f9e693", + "label": "label-2309", + "height": 413, + "background": "blue" + }, + { + "key": "340783b4-5f1a-42ee-82b4-01f7823f514d", + "label": "label-2310", + "height": 281, + "background": "yellow" + }, + { + "key": "2fecd78f-0df3-4054-80d9-27f52336a390", + "label": "label-2311", + "height": 223, + "background": "green" + }, + { + "key": "fcb312e9-73f3-4746-a4bd-01cdf665fa3b", + "label": "label-2312", + "height": 205, + "background": "yellow" + }, + { + "key": "c022d1bb-0dc6-4d25-a1ba-afe3fd3b1c3b", + "label": "label-2313", + "height": 179, + "background": "yellow" + }, + { + "key": "b9aef2a9-b19b-448c-867c-e49966db4f8c", + "label": "label-2314", + "height": 257, + "background": "yellow" + }, + { + "key": "b995cf84-4d52-4ec3-b8d3-fb80cba170a8", + "label": "label-2315", + "height": 157, + "background": "red" + }, + { + "key": "d570468b-e130-4f95-a5c3-63799df7697b", + "label": "label-2316", + "height": 529, + "background": "red" + }, + { + "key": "201edc34-c468-473b-9cee-a29f01dab6b6", + "label": "label-2317", + "height": 201, + "background": "blue" + }, + { + "key": "697c8ffb-b866-4902-a113-c5a1afd00619", + "label": "label-2318", + "height": 195, + "background": "red" + }, + { + "key": "453f7de0-5253-43dc-9485-9e55fae2f084", + "label": "label-2319", + "height": 516, + "background": "green" + }, + { + "key": "b4d0c48f-5fae-44ad-a8a6-aa15f3188705", + "label": "label-2320", + "height": 314, + "background": "green" + }, + { + "key": "17459651-bfca-41b2-bd60-c4be43d503e9", + "label": "label-2321", + "height": 493, + "background": "yellow" + }, + { + "key": "4c2494f3-19f4-4529-a1ec-a9e5f05b69ff", + "label": "label-2322", + "height": 269, + "background": "green" + }, + { + "key": "fa979ab6-2d60-4a0e-bc75-e64bab340c88", + "label": "label-2323", + "height": 58, + "background": "green" + }, + { + "key": "a851cdb7-446f-4c0f-b04d-80b7bc90201b", + "label": "label-2324", + "height": 515, + "background": "red" + }, + { + "key": "c3033b5b-4952-437f-8ccf-ffa4a4818551", + "label": "label-2325", + "height": 132, + "background": "green" + }, + { + "key": "46afc9a7-811d-4201-b1e1-afb965825c40", + "label": "label-2326", + "height": 205, + "background": "red" + }, + { + "key": "8cd793bf-e0d3-46b8-876a-64a538dae918", + "label": "label-2327", + "height": 106, + "background": "yellow" + }, + { + "key": "5c1158bd-8330-464a-b5ac-c738ab5d651c", + "label": "label-2328", + "height": 152, + "background": "blue" + }, + { + "key": "05e921bb-5ef6-4543-a52a-cf2cbc8ee6b5", + "label": "label-2329", + "height": 43, + "background": "red" + }, + { + "key": "804b15a5-a162-4771-be1a-615a676339ab", + "label": "label-2330", + "height": 329, + "background": "red" + }, + { + "key": "ccc9e00b-235c-4b02-bf21-fe994d19adbf", + "label": "label-2331", + "height": 375, + "background": "blue" + }, + { + "key": "60e32e6b-39fd-4599-8413-58f30f170337", + "label": "label-2332", + "height": 470, + "background": "yellow" + }, + { + "key": "1b11b6f9-992e-4a6d-ab21-f39b9135b2c2", + "label": "label-2333", + "height": 200, + "background": "yellow" + }, + { + "key": "f9e7d59c-4d11-4b60-bc9b-e4fe67091272", + "label": "label-2334", + "height": 426, + "background": "red" + }, + { + "key": "c050bcea-2ffe-40cb-bca2-80a8c79504c9", + "label": "label-2335", + "height": 414, + "background": "green" + }, + { + "key": "35206122-c5bd-4c90-b459-c945e4966f8b", + "label": "label-2336", + "height": 228, + "background": "red" + }, + { + "key": "66f69135-4153-4edc-8649-f21b6aab1b8b", + "label": "label-2337", + "height": 357, + "background": "green" + }, + { + "key": "4e6eaccf-1c47-4b02-abb5-b252b4807547", + "label": "label-2338", + "height": 494, + "background": "red" + }, + { + "key": "d6447e24-1350-4aac-bcb0-cd412c04e846", + "label": "label-2339", + "height": 376, + "background": "yellow" + }, + { + "key": "6448393f-8e0d-4844-8206-9d1577343533", + "label": "label-2340", + "height": 156, + "background": "yellow" + }, + { + "key": "fced8719-b258-4623-8bf4-99279a3ab2c6", + "label": "label-2341", + "height": 507, + "background": "yellow" + }, + { + "key": "ef456d43-398d-42f9-8319-09bd9cc85b28", + "label": "label-2342", + "height": 246, + "background": "red" + }, + { + "key": "48fb7f64-af88-4666-b3d1-890fdda601b6", + "label": "label-2343", + "height": 232, + "background": "yellow" + }, + { + "key": "d53992b8-7b5f-40cd-bb15-4ffb9f2f50a3", + "label": "label-2344", + "height": 388, + "background": "red" + }, + { + "key": "e32352b2-166c-4a5b-92da-6454beabab47", + "label": "label-2345", + "height": 408, + "background": "yellow" + }, + { + "key": "6a2e1ddd-a683-485d-b6ff-1a82b3b63bcc", + "label": "label-2346", + "height": 275, + "background": "yellow" + }, + { + "key": "fb29c3e1-4778-4ae0-b771-e2b6b51469d2", + "label": "label-2347", + "height": 202, + "background": "yellow" + }, + { + "key": "cd090b19-c307-401c-bef3-0bbeb5cbd6b9", + "label": "label-2348", + "height": 51, + "background": "red" + }, + { + "key": "8a4bc62d-dcde-48fe-b71b-75ea2b31820d", + "label": "label-2349", + "height": 346, + "background": "green" + }, + { + "key": "b3d7792e-80f0-4fe1-b35a-ea6a360f706b", + "label": "label-2350", + "height": 367, + "background": "red" + }, + { + "key": "ef04fe7a-aaf7-4e16-b126-ed4120b8a60f", + "label": "label-2351", + "height": 460, + "background": "yellow" + }, + { + "key": "5d8f90bb-d6cc-4c21-9410-e17181e2d03c", + "label": "label-2352", + "height": 236, + "background": "yellow" + }, + { + "key": "74d6956f-f720-4232-9683-bdbac80d072f", + "label": "label-2353", + "height": 99, + "background": "yellow" + }, + { + "key": "1b407b06-e416-4065-83a1-3de45b6b273d", + "label": "label-2354", + "height": 98, + "background": "yellow" + }, + { + "key": "0b100867-cfbc-440f-b1d7-a9f5a825bdf4", + "label": "label-2355", + "height": 467, + "background": "blue" + }, + { + "key": "d8b984ef-ba5a-4681-b881-e2af8b53e1ec", + "label": "label-2356", + "height": 359, + "background": "yellow" + }, + { + "key": "8e9ec9fb-c7bb-4fbd-8fd7-d9e756e8d78b", + "label": "label-2357", + "height": 451, + "background": "yellow" + }, + { + "key": "8b98dc55-d941-40df-b806-14f93143be05", + "label": "label-2358", + "height": 35, + "background": "red" + }, + { + "key": "597015a1-e72e-46f9-af3a-91ecbb8682bc", + "label": "label-2359", + "height": 485, + "background": "green" + }, + { + "key": "19fd0732-9595-45cc-aa9c-afacd81a549c", + "label": "label-2360", + "height": 484, + "background": "green" + }, + { + "key": "4c5cd1f9-94de-4e56-b427-71fc50f81d62", + "label": "label-2361", + "height": 330, + "background": "yellow" + }, + { + "key": "e32ea11e-e7bf-45ca-a71b-94dbf09dd619", + "label": "label-2362", + "height": 308, + "background": "green" + }, + { + "key": "d43b2531-dc1c-4db6-a7e4-80a9d8fb473a", + "label": "label-2363", + "height": 343, + "background": "yellow" + }, + { + "key": "853063fc-9b81-4a93-ae75-a879fc38d2c8", + "label": "label-2364", + "height": 116, + "background": "blue" + }, + { + "key": "12a7a8ad-41c1-48f6-b4db-f811f8b74f04", + "label": "label-2365", + "height": 357, + "background": "yellow" + }, + { + "key": "cd5a82ae-35b6-460b-8aba-e11e8a362f89", + "label": "label-2366", + "height": 411, + "background": "yellow" + }, + { + "key": "76b0986f-ca02-4753-8b06-3d724b3f9518", + "label": "label-2367", + "height": 382, + "background": "yellow" + }, + { + "key": "c1146a66-a261-4771-bb3c-ccdc63911ee0", + "label": "label-2368", + "height": 269, + "background": "green" + }, + { + "key": "4b7343b0-d24d-4d32-90d7-514b68a2e16c", + "label": "label-2369", + "height": 277, + "background": "blue" + }, + { + "key": "adf035fc-c3fa-4931-80da-13c430b74bc8", + "label": "label-2370", + "height": 474, + "background": "green" + }, + { + "key": "087c3a23-829f-4b3d-bfd2-f96947d9ffd1", + "label": "label-2371", + "height": 234, + "background": "red" + }, + { + "key": "72585719-bd65-4c94-a96e-e3101f2cac1f", + "label": "label-2372", + "height": 296, + "background": "green" + }, + { + "key": "a98eeae2-38f4-4d11-861a-cc3d5c0f1b27", + "label": "label-2373", + "height": 468, + "background": "blue" + }, + { + "key": "28ff88ca-b1b9-427f-8d6e-27bc554c4ed3", + "label": "label-2374", + "height": 471, + "background": "red" + }, + { + "key": "846e5f90-f672-4edd-8e87-3e70350a4fef", + "label": "label-2375", + "height": 218, + "background": "green" + }, + { + "key": "2af7ad04-4b59-4a5c-b352-c1597377fc80", + "label": "label-2376", + "height": 303, + "background": "red" + }, + { + "key": "9bbeee40-4a81-4760-b3e5-2e7e3b0ef66f", + "label": "label-2377", + "height": 127, + "background": "blue" + }, + { + "key": "83f1bbcb-d611-44f1-bedb-568b25a1c99e", + "label": "label-2378", + "height": 292, + "background": "green" + }, + { + "key": "97cbf373-fa83-4191-be51-e143f535ee86", + "label": "label-2379", + "height": 250, + "background": "red" + }, + { + "key": "e847b60a-9556-4866-ad64-c7fd3e95aa86", + "label": "label-2380", + "height": 113, + "background": "blue" + }, + { + "key": "c0cdca4a-4b6a-4059-9b33-e724c2a9ca63", + "label": "label-2381", + "height": 252, + "background": "yellow" + }, + { + "key": "da623a01-e224-4554-aa8d-1acf47647b54", + "label": "label-2382", + "height": 94, + "background": "green" + }, + { + "key": "57fe0263-d6aa-401c-8bbf-91a44d83e6de", + "label": "label-2383", + "height": 120, + "background": "yellow" + }, + { + "key": "43c4c42c-ef8f-4d8e-9133-ed68652946fd", + "label": "label-2384", + "height": 61, + "background": "green" + }, + { + "key": "e54251ba-e302-4f04-8e8c-1537c815f853", + "label": "label-2385", + "height": 149, + "background": "red" + }, + { + "key": "4be4192f-d51a-47b4-9b2d-5d07e4663a81", + "label": "label-2386", + "height": 322, + "background": "red" + }, + { + "key": "e6e92a66-0d78-48c4-85c6-59ab70ca03a3", + "label": "label-2387", + "height": 443, + "background": "yellow" + }, + { + "key": "22e56539-8b26-43d1-8726-604f20746338", + "label": "label-2388", + "height": 210, + "background": "yellow" + }, + { + "key": "cfd66bba-6429-474c-a3b3-a0b98dfc57c0", + "label": "label-2389", + "height": 56, + "background": "green" + }, + { + "key": "1fbd354d-2232-4e77-ab0a-866e0e05744b", + "label": "label-2390", + "height": 320, + "background": "green" + }, + { + "key": "99b9caaf-6d23-4204-83dc-6a109db768f2", + "label": "label-2391", + "height": 265, + "background": "blue" + }, + { + "key": "53a8a217-991a-48a4-97b5-8dfb8cd32168", + "label": "label-2392", + "height": 179, + "background": "blue" + }, + { + "key": "337ccb86-a152-44a0-b8a5-af19c031b8b0", + "label": "label-2393", + "height": 56, + "background": "blue" + }, + { + "key": "7ede314d-84e2-4ffe-98f0-fb9140a63d73", + "label": "label-2394", + "height": 213, + "background": "yellow" + }, + { + "key": "9d1eda73-5a54-4915-a304-ee12c06709b4", + "label": "label-2395", + "height": 185, + "background": "yellow" + }, + { + "key": "66dc844b-b865-48f3-8e16-dfec491fa92b", + "label": "label-2396", + "height": 293, + "background": "yellow" + }, + { + "key": "acd1b816-ba4c-43e7-a430-9d671dc73547", + "label": "label-2397", + "height": 343, + "background": "blue" + }, + { + "key": "87ad8b76-5eb4-48cd-8ba5-7524ec49f4f6", + "label": "label-2398", + "height": 194, + "background": "red" + }, + { + "key": "8d505aa1-15b5-4af8-8054-94e370ef3eee", + "label": "label-2399", + "height": 449, + "background": "red" + }, + { + "key": "335ee125-6ea2-47dc-b326-11394f29d434", + "label": "label-2400", + "height": 95, + "background": "yellow" + }, + { + "key": "88cab80c-9fc5-4059-b82a-f574c1b8d83d", + "label": "label-2401", + "height": 307, + "background": "green" + }, + { + "key": "6fb1a1eb-1b79-4246-a0f3-209d3c95857e", + "label": "label-2402", + "height": 349, + "background": "blue" + }, + { + "key": "fe188a52-2f8a-430a-a623-a93480d0e682", + "label": "label-2403", + "height": 198, + "background": "yellow" + }, + { + "key": "bba8f2b5-a835-44fb-9655-0dce00305eb4", + "label": "label-2404", + "height": 274, + "background": "green" + }, + { + "key": "09313e38-22a9-4d3d-8e74-beb1666ae980", + "label": "label-2405", + "height": 422, + "background": "blue" + }, + { + "key": "7b60013b-89da-47a4-ab82-3bcfc36f57ec", + "label": "label-2406", + "height": 398, + "background": "blue" + }, + { + "key": "31e6a9bb-5c38-4164-a423-bfbcfba69d70", + "label": "label-2407", + "height": 418, + "background": "red" + }, + { + "key": "0d71c193-ce29-4c58-a478-14c7b3f0e047", + "label": "label-2408", + "height": 119, + "background": "green" + }, + { + "key": "c250f8f3-0565-4b35-8fcb-07a971d164da", + "label": "label-2409", + "height": 403, + "background": "green" + }, + { + "key": "fd21965b-da0d-4320-8eb8-9c562e14b4e3", + "label": "label-2410", + "height": 417, + "background": "red" + }, + { + "key": "34498461-3ffd-44e0-a173-ee39ab69336f", + "label": "label-2411", + "height": 497, + "background": "blue" + }, + { + "key": "25305144-3e98-4ef0-b805-8abd43c0b28a", + "label": "label-2412", + "height": 353, + "background": "blue" + }, + { + "key": "0e50071c-d593-48cc-b68c-2b33176f1f92", + "label": "label-2413", + "height": 377, + "background": "green" + }, + { + "key": "20870729-79c6-4d31-830d-81fc6a5ed9b0", + "label": "label-2414", + "height": 70, + "background": "yellow" + }, + { + "key": "6d822d1b-20f9-4032-ad5e-bc93208c5597", + "label": "label-2415", + "height": 198, + "background": "yellow" + }, + { + "key": "db516616-4f2d-41fb-80b8-f6ab62fc6e03", + "label": "label-2416", + "height": 300, + "background": "blue" + }, + { + "key": "624fc51d-0a9e-450e-a801-d084851fe238", + "label": "label-2417", + "height": 191, + "background": "red" + }, + { + "key": "2247088a-9c44-44e6-9340-0236f95895c0", + "label": "label-2418", + "height": 491, + "background": "blue" + }, + { + "key": "27fa196d-6548-48eb-8291-f6f8fde2382a", + "label": "label-2419", + "height": 356, + "background": "red" + }, + { + "key": "3cb3c2a7-ceb5-4bd3-b794-1101e1ca7985", + "label": "label-2420", + "height": 510, + "background": "red" + }, + { + "key": "764528be-e9b8-467a-ba4a-f90041cd0d44", + "label": "label-2421", + "height": 256, + "background": "blue" + }, + { + "key": "5c6f6112-5dff-44eb-be31-44d98609b1a5", + "label": "label-2422", + "height": 311, + "background": "blue" + }, + { + "key": "c8fcf025-8f45-489a-a37e-ec93401d7dc7", + "label": "label-2423", + "height": 98, + "background": "green" + }, + { + "key": "1073f9da-d3c6-430c-9ab7-eb0558d5075d", + "label": "label-2424", + "height": 73, + "background": "red" + }, + { + "key": "21ac6891-6d24-422d-a864-175cf2b7a29c", + "label": "label-2425", + "height": 498, + "background": "yellow" + }, + { + "key": "0e966e61-d720-47f1-af67-6693488c55dd", + "label": "label-2426", + "height": 410, + "background": "blue" + }, + { + "key": "4e8f15f6-2358-4d3a-a3eb-fe68489e56db", + "label": "label-2427", + "height": 104, + "background": "blue" + }, + { + "key": "1aec5acd-6176-4260-ae2b-351173e85598", + "label": "label-2428", + "height": 295, + "background": "blue" + }, + { + "key": "be4f9be5-d542-4630-b594-e8403911fa6f", + "label": "label-2429", + "height": 313, + "background": "blue" + }, + { + "key": "4a3c0118-3457-4196-bc2d-8a0131efcc98", + "label": "label-2430", + "height": 528, + "background": "green" + }, + { + "key": "c4eaf6cb-1695-4c2f-b968-80fc60cca9eb", + "label": "label-2431", + "height": 396, + "background": "red" + }, + { + "key": "1c0c7323-5ac6-4e09-ba44-517a38703b9b", + "label": "label-2432", + "height": 90, + "background": "blue" + }, + { + "key": "60e137f1-756a-4503-b5ee-42c3f122cecf", + "label": "label-2433", + "height": 452, + "background": "yellow" + }, + { + "key": "961a46f8-1ac4-4b47-a922-5061e10a3e49", + "label": "label-2434", + "height": 201, + "background": "blue" + }, + { + "key": "418c8324-928c-4264-af07-d363c2572016", + "label": "label-2435", + "height": 177, + "background": "yellow" + }, + { + "key": "456c7a05-ba83-4707-9ff6-7e55cc36c04e", + "label": "label-2436", + "height": 37, + "background": "green" + }, + { + "key": "86649383-f06a-4b40-9770-7d620be6bf3f", + "label": "label-2437", + "height": 180, + "background": "blue" + }, + { + "key": "51758e1e-e5bc-4fda-9792-05bb4859a96f", + "label": "label-2438", + "height": 513, + "background": "red" + }, + { + "key": "1f74047d-5c3e-4588-b3ec-4ef200876ee0", + "label": "label-2439", + "height": 323, + "background": "red" + }, + { + "key": "d21524c4-b60b-4b23-b8f9-28d4fb7deb0b", + "label": "label-2440", + "height": 254, + "background": "blue" + }, + { + "key": "1e671535-db0a-41b2-994c-bfad1662b3dd", + "label": "label-2441", + "height": 144, + "background": "yellow" + }, + { + "key": "db88d0b7-c3c8-433b-9594-1c817916c032", + "label": "label-2442", + "height": 130, + "background": "blue" + }, + { + "key": "da351f15-4c0b-4bf3-a897-93d9721263bb", + "label": "label-2443", + "height": 212, + "background": "green" + }, + { + "key": "6532f14e-70d0-4ee3-bdc5-e9faf9146474", + "label": "label-2444", + "height": 518, + "background": "red" + }, + { + "key": "ad727a65-df2e-4e86-b67f-290d1ca80c60", + "label": "label-2445", + "height": 223, + "background": "green" + }, + { + "key": "fcb16321-93dd-4ae7-bea0-1caaa8e646be", + "label": "label-2446", + "height": 247, + "background": "yellow" + }, + { + "key": "ae449b2b-e61e-4806-ba21-23e9810fc44c", + "label": "label-2447", + "height": 178, + "background": "blue" + }, + { + "key": "e4326a83-5d29-4441-a239-8724f02cb4e4", + "label": "label-2448", + "height": 512, + "background": "blue" + }, + { + "key": "d5da2f4f-8933-4dbd-b622-67c18f344345", + "label": "label-2449", + "height": 426, + "background": "green" + }, + { + "key": "626ee4b7-d4f8-4dc9-a847-8327d8f0544c", + "label": "label-2450", + "height": 279, + "background": "yellow" + }, + { + "key": "cb8327d3-2415-4f3f-aac2-815638667e09", + "label": "label-2451", + "height": 275, + "background": "blue" + }, + { + "key": "bb460fb4-14e2-4618-afb2-13f27fbbdd70", + "label": "label-2452", + "height": 395, + "background": "blue" + }, + { + "key": "83bc088a-0523-4b8b-a1e5-5b4e01c49b6a", + "label": "label-2453", + "height": 311, + "background": "red" + }, + { + "key": "4a2d6d45-6150-4d8c-8b35-ece4b60d20e4", + "label": "label-2454", + "height": 160, + "background": "blue" + }, + { + "key": "ae62f45e-abba-44df-a19c-3b8264abde9c", + "label": "label-2455", + "height": 366, + "background": "green" + }, + { + "key": "9256d669-c23e-4dc5-bae9-b58dc2ead085", + "label": "label-2456", + "height": 484, + "background": "yellow" + }, + { + "key": "5314c1d5-ed71-40d6-a5e0-e5ab0b94504d", + "label": "label-2457", + "height": 287, + "background": "blue" + }, + { + "key": "25a39bd7-3535-48bc-8dda-fedd9719136b", + "label": "label-2458", + "height": 141, + "background": "red" + }, + { + "key": "3a3688a7-2c4e-4b6a-9275-ac18218f7bea", + "label": "label-2459", + "height": 394, + "background": "green" + }, + { + "key": "bff65506-6f4f-4a24-b04a-e41a1e667bb9", + "label": "label-2460", + "height": 54, + "background": "red" + }, + { + "key": "bd991534-eb48-4800-8aa0-f058b2ec9b44", + "label": "label-2461", + "height": 384, + "background": "blue" + }, + { + "key": "722a4f5e-1b05-4e16-be0f-7029808d0bac", + "label": "label-2462", + "height": 208, + "background": "green" + }, + { + "key": "5acd45be-d4a3-4d01-9087-fd01a3cca772", + "label": "label-2463", + "height": 416, + "background": "red" + }, + { + "key": "d030ab89-9ea5-4ee9-be8d-c6487238bbcb", + "label": "label-2464", + "height": 113, + "background": "red" + }, + { + "key": "fdcbf041-fef1-4b0b-8483-0e5e8b76f625", + "label": "label-2465", + "height": 325, + "background": "green" + }, + { + "key": "4b8f3323-37cc-4006-8577-eecc88445a51", + "label": "label-2466", + "height": 143, + "background": "red" + }, + { + "key": "b3115865-0478-4f10-938f-e22196b2fe51", + "label": "label-2467", + "height": 239, + "background": "yellow" + }, + { + "key": "12f54559-d427-4ea5-b4f6-b2019e8e6950", + "label": "label-2468", + "height": 116, + "background": "green" + }, + { + "key": "0d5191af-b55f-4182-a60d-76b94efe2313", + "label": "label-2469", + "height": 314, + "background": "yellow" + }, + { + "key": "ede70126-5d95-4397-8355-3f1e8219ddc9", + "label": "label-2470", + "height": 395, + "background": "green" + }, + { + "key": "123df80e-80bb-4dbc-872e-753fdb700286", + "label": "label-2471", + "height": 285, + "background": "red" + }, + { + "key": "d21f0f78-f268-43d9-af90-617fe85dae6d", + "label": "label-2472", + "height": 112, + "background": "yellow" + }, + { + "key": "f4179c17-1f5b-4892-9804-8384fb85b11c", + "label": "label-2473", + "height": 350, + "background": "yellow" + }, + { + "key": "b59f0f07-cdc7-4452-8596-218411c4ebf6", + "label": "label-2474", + "height": 75, + "background": "green" + }, + { + "key": "d321d70d-3301-46fc-a479-0ddfd25cc224", + "label": "label-2475", + "height": 153, + "background": "red" + }, + { + "key": "8e5768ec-f806-46a8-a1c1-0ed4028838e6", + "label": "label-2476", + "height": 439, + "background": "blue" + }, + { + "key": "0fc65d2c-12e9-412a-b865-caf05f6f2f59", + "label": "label-2477", + "height": 525, + "background": "yellow" + }, + { + "key": "7f642767-e897-42c1-a549-b0797a7f9fe9", + "label": "label-2478", + "height": 387, + "background": "yellow" + }, + { + "key": "33cb4a05-e7bf-475e-84f7-bad261c2a2d9", + "label": "label-2479", + "height": 525, + "background": "yellow" + }, + { + "key": "ff22c16f-213f-4ecc-a606-56e66d620136", + "label": "label-2480", + "height": 201, + "background": "red" + }, + { + "key": "64c4e711-2ca1-4f61-ac0f-db352ca8db8d", + "label": "label-2481", + "height": 418, + "background": "yellow" + }, + { + "key": "89ebff19-2f18-45f6-ba8d-5e858b9ebff9", + "label": "label-2482", + "height": 425, + "background": "red" + }, + { + "key": "23121e75-1973-4f92-a47c-800b66acc3d5", + "label": "label-2483", + "height": 309, + "background": "red" + }, + { + "key": "331bc89c-c772-45b6-abda-3d97731c23de", + "label": "label-2484", + "height": 382, + "background": "yellow" + }, + { + "key": "9273f6e7-c1ef-4a45-9f2b-47417c8af69a", + "label": "label-2485", + "height": 356, + "background": "red" + }, + { + "key": "5d7043d7-6757-427a-880f-e0573daf0de0", + "label": "label-2486", + "height": 406, + "background": "red" + }, + { + "key": "4d0ea922-3ff2-48a8-a23a-f6eed5cede15", + "label": "label-2487", + "height": 164, + "background": "blue" + }, + { + "key": "f9d9cecb-783c-44fc-9835-84d3a8bba600", + "label": "label-2488", + "height": 474, + "background": "blue" + }, + { + "key": "312a9940-d9da-4998-b44d-6dacf1aac5d8", + "label": "label-2489", + "height": 357, + "background": "yellow" + }, + { + "key": "bf2f05a3-bb48-4874-b75f-fb8abefbcd99", + "label": "label-2490", + "height": 42, + "background": "red" + }, + { + "key": "318d00f9-24d8-4aea-9297-9a2c8cab84a1", + "label": "label-2491", + "height": 268, + "background": "red" + }, + { + "key": "da99e81e-a55a-4032-91ed-fe7fadf4c074", + "label": "label-2492", + "height": 504, + "background": "red" + }, + { + "key": "36400072-8f7a-4bc9-aa12-0897eb274c11", + "label": "label-2493", + "height": 180, + "background": "yellow" + }, + { + "key": "cdc408a6-7699-4ab3-b969-93ab619b3261", + "label": "label-2494", + "height": 332, + "background": "green" + }, + { + "key": "6b0cc93d-eaef-499f-b999-cece382c0942", + "label": "label-2495", + "height": 224, + "background": "blue" + }, + { + "key": "543d6436-500e-4308-ac60-86a2ea8e58c8", + "label": "label-2496", + "height": 346, + "background": "blue" + }, + { + "key": "a9bc6c4d-f33b-4d0d-b5b0-0fe058438b97", + "label": "label-2497", + "height": 324, + "background": "blue" + }, + { + "key": "eb113c5b-50a5-4c64-9729-ca62f925a467", + "label": "label-2498", + "height": 77, + "background": "yellow" + }, + { + "key": "2ea9ea9d-9dc4-45a8-91fb-9c7e978007d9", + "label": "label-2499", + "height": 428, + "background": "red" + }, + { + "key": "70428ddf-a537-4279-af07-f2458e40ad7d", + "label": "label-2500", + "height": 353, + "background": "green" + }, + { + "key": "563a9042-3384-49d9-8dd6-fec06163dfb7", + "label": "label-2501", + "height": 61, + "background": "red" + }, + { + "key": "96b513ed-d67e-4b3d-a331-63e7fb21de35", + "label": "label-2502", + "height": 492, + "background": "green" + }, + { + "key": "3da908ab-5804-445d-98b8-c8bfe8d7fdcc", + "label": "label-2503", + "height": 242, + "background": "red" + }, + { + "key": "fc1c17f0-1690-43df-88a5-e57018ae0f9e", + "label": "label-2504", + "height": 344, + "background": "red" + }, + { + "key": "39149bc4-2bbd-461e-bd9d-b230801e3a3d", + "label": "label-2505", + "height": 221, + "background": "blue" + }, + { + "key": "dbcb6dfa-f1f2-4bd1-a9d4-4acf94695b43", + "label": "label-2506", + "height": 524, + "background": "yellow" + }, + { + "key": "7d89e8ef-9a7c-455a-aee2-b55b6396de9d", + "label": "label-2507", + "height": 175, + "background": "yellow" + }, + { + "key": "0ee73aa8-52d0-425c-a80e-7314cd5fe789", + "label": "label-2508", + "height": 493, + "background": "green" + }, + { + "key": "eb1ef166-a634-42d9-ad05-e81f12fdd810", + "label": "label-2509", + "height": 182, + "background": "red" + }, + { + "key": "741837ce-3324-44b6-ba7f-cd3defcbf4ca", + "label": "label-2510", + "height": 43, + "background": "blue" + }, + { + "key": "7859482a-f3f1-46ab-8068-40f2963e9dc2", + "label": "label-2511", + "height": 106, + "background": "red" + }, + { + "key": "81ecb7e8-f41d-4696-a61d-6a9123ff7d03", + "label": "label-2512", + "height": 95, + "background": "green" + }, + { + "key": "8d43855a-6ce5-4a8c-b0a7-cf2f99f9e325", + "label": "label-2513", + "height": 47, + "background": "red" + }, + { + "key": "3cf70975-411c-4338-8f5a-b02888ac3490", + "label": "label-2514", + "height": 398, + "background": "red" + }, + { + "key": "cdc786df-24c3-405a-91db-44f4fe01006e", + "label": "label-2515", + "height": 343, + "background": "yellow" + }, + { + "key": "8ed4dffd-2ab7-4653-8b70-4a75fa745aa2", + "label": "label-2516", + "height": 361, + "background": "green" + }, + { + "key": "26e120e6-8df2-4eac-8334-21e01b57c3c9", + "label": "label-2517", + "height": 220, + "background": "red" + }, + { + "key": "311939f4-c61a-4848-b6cb-fe0ef1a39f14", + "label": "label-2518", + "height": 205, + "background": "green" + }, + { + "key": "1bab33ff-a94c-4a67-b8d0-e76c3eb27a96", + "label": "label-2519", + "height": 480, + "background": "red" + }, + { + "key": "297f9515-4771-4bb4-a184-0bff6b46a3e6", + "label": "label-2520", + "height": 39, + "background": "blue" + }, + { + "key": "3e84f246-4643-4277-9554-15c58ec9c6a9", + "label": "label-2521", + "height": 94, + "background": "blue" + }, + { + "key": "71e06fea-c532-4daa-8b7e-2d80f5d9009b", + "label": "label-2522", + "height": 60, + "background": "blue" + }, + { + "key": "6f95f158-a2fd-4429-8bac-5cabd11ed065", + "label": "label-2523", + "height": 523, + "background": "red" + }, + { + "key": "6e88e9fa-0cfa-4bfa-a21c-b71581a70c1b", + "label": "label-2524", + "height": 55, + "background": "red" + }, + { + "key": "7262e535-0d0a-4821-b694-2041279e4094", + "label": "label-2525", + "height": 235, + "background": "red" + }, + { + "key": "9b4f5521-5809-45f5-b870-858ee8373141", + "label": "label-2526", + "height": 377, + "background": "red" + }, + { + "key": "66862f68-0df0-47e0-9889-a4f1ac22c414", + "label": "label-2527", + "height": 165, + "background": "yellow" + }, + { + "key": "d1b13666-2041-4ba6-b514-45f11bd4a120", + "label": "label-2528", + "height": 129, + "background": "yellow" + }, + { + "key": "f0905be0-16b2-4030-bfba-dace2e874483", + "label": "label-2529", + "height": 378, + "background": "green" + }, + { + "key": "33269695-f0e5-4046-94e4-a0e4853c3ec4", + "label": "label-2530", + "height": 506, + "background": "green" + }, + { + "key": "54a3071d-a229-4343-9d0b-476c1cad5ffc", + "label": "label-2531", + "height": 355, + "background": "blue" + }, + { + "key": "6679bdcd-5f58-4852-a58f-5a423cb5f16f", + "label": "label-2532", + "height": 181, + "background": "green" + }, + { + "key": "9e2cc31b-e24d-43b2-ab9e-328583d0e7a6", + "label": "label-2533", + "height": 194, + "background": "yellow" + }, + { + "key": "5b456233-7f39-48d4-b162-752eb59010b7", + "label": "label-2534", + "height": 264, + "background": "blue" + }, + { + "key": "44577f84-0986-4cfc-8223-b6cc4a509432", + "label": "label-2535", + "height": 367, + "background": "green" + }, + { + "key": "8a5c8ed7-d35b-42ba-8dae-280af8131a5d", + "label": "label-2536", + "height": 111, + "background": "red" + }, + { + "key": "e2718e25-014e-4b29-a861-d182b6123cd1", + "label": "label-2537", + "height": 356, + "background": "green" + }, + { + "key": "e0113b12-3973-4c26-bcc1-bdb8f76317fb", + "label": "label-2538", + "height": 186, + "background": "blue" + }, + { + "key": "c3c7aa1d-924b-42c4-b57c-6604dc515811", + "label": "label-2539", + "height": 84, + "background": "green" + }, + { + "key": "7c6b56ad-ade4-4b1e-8d9b-3f33753010fd", + "label": "label-2540", + "height": 438, + "background": "blue" + }, + { + "key": "2473a464-fd38-4786-96b9-a1b9441fa648", + "label": "label-2541", + "height": 465, + "background": "red" + }, + { + "key": "a0ca5e15-6456-4227-932f-8499991ff089", + "label": "label-2542", + "height": 78, + "background": "green" + }, + { + "key": "9cd3965f-1ce6-4aff-b16c-0bd0b6cc4b54", + "label": "label-2543", + "height": 259, + "background": "green" + }, + { + "key": "5c5a38bc-bcd3-43d3-8258-ebb81946210e", + "label": "label-2544", + "height": 495, + "background": "green" + }, + { + "key": "003575fc-4c5e-4533-bdf2-b7a7ed41e3ac", + "label": "label-2545", + "height": 110, + "background": "green" + }, + { + "key": "542510bd-72cf-4bb9-ab77-ca3a5cf74666", + "label": "label-2546", + "height": 493, + "background": "green" + }, + { + "key": "3b6f7c8e-da1e-40d3-b7a4-3a6584a68ca7", + "label": "label-2547", + "height": 478, + "background": "yellow" + }, + { + "key": "ee52ec87-5ec6-4dc4-ab28-ad77b0a5d635", + "label": "label-2548", + "height": 176, + "background": "green" + }, + { + "key": "fcc96da1-2d87-4c79-bd53-f12e4b9e280c", + "label": "label-2549", + "height": 342, + "background": "red" + }, + { + "key": "7c0efc23-8211-40f8-9a0c-60efd6c42430", + "label": "label-2550", + "height": 488, + "background": "yellow" + }, + { + "key": "7d237702-1589-4320-8f70-81d35e2b379d", + "label": "label-2551", + "height": 168, + "background": "red" + }, + { + "key": "9035578d-8611-4467-9252-7f47be3cb2ea", + "label": "label-2552", + "height": 130, + "background": "green" + }, + { + "key": "56c637e7-957d-4af0-857d-461fd536ee04", + "label": "label-2553", + "height": 171, + "background": "red" + }, + { + "key": "86e0014c-0e86-4fe5-81a5-9e7436c98c6b", + "label": "label-2554", + "height": 212, + "background": "blue" + }, + { + "key": "36cb2ca9-da05-4c53-ae56-153899e1cf9e", + "label": "label-2555", + "height": 314, + "background": "yellow" + }, + { + "key": "aff2a5cd-bb92-4bdf-84e7-6dfcecd81864", + "label": "label-2556", + "height": 141, + "background": "red" + }, + { + "key": "03eb42c7-a885-4288-b0b6-4674919eceb8", + "label": "label-2557", + "height": 106, + "background": "blue" + }, + { + "key": "51fd1471-9f6b-4de6-99d9-d37868ef670d", + "label": "label-2558", + "height": 257, + "background": "blue" + }, + { + "key": "b3de1659-b412-4142-9460-045810c1cdd5", + "label": "label-2559", + "height": 525, + "background": "blue" + }, + { + "key": "9bee329d-4888-4b5e-b5b4-a13f45be507e", + "label": "label-2560", + "height": 47, + "background": "blue" + }, + { + "key": "b91a943d-362b-4c4e-8328-7bff056cac2a", + "label": "label-2561", + "height": 419, + "background": "red" + }, + { + "key": "6750a641-4f07-490f-ba7f-ab80ccfef602", + "label": "label-2562", + "height": 416, + "background": "blue" + }, + { + "key": "27ac0aad-0659-42ec-ae08-012103c50294", + "label": "label-2563", + "height": 131, + "background": "yellow" + }, + { + "key": "0d0f2e83-d617-46df-b06d-f884e2689860", + "label": "label-2564", + "height": 200, + "background": "green" + }, + { + "key": "9986418d-accd-47ab-906a-5af540e25fe8", + "label": "label-2565", + "height": 285, + "background": "blue" + }, + { + "key": "98f91a6b-a2dd-446d-b7e1-b99f37599de3", + "label": "label-2566", + "height": 166, + "background": "yellow" + }, + { + "key": "30c87bbf-ae70-4529-9986-0240ebce309a", + "label": "label-2567", + "height": 510, + "background": "blue" + }, + { + "key": "ce9ecf19-0352-4715-9fca-7996f8860964", + "label": "label-2568", + "height": 486, + "background": "red" + }, + { + "key": "76529931-d5ca-405c-8558-042515a90537", + "label": "label-2569", + "height": 65, + "background": "blue" + }, + { + "key": "a745df5d-7db4-4610-a264-cd092ac5bfe5", + "label": "label-2570", + "height": 72, + "background": "yellow" + }, + { + "key": "6d7ef03e-07cb-4c05-b596-b62fe13566ef", + "label": "label-2571", + "height": 208, + "background": "blue" + }, + { + "key": "01ecd226-c4fd-42cf-9fc0-1ad89cd22eea", + "label": "label-2572", + "height": 494, + "background": "blue" + }, + { + "key": "828ddc4a-5489-4d58-9380-662ce9fddf16", + "label": "label-2573", + "height": 200, + "background": "green" + }, + { + "key": "611c3220-f0e0-4261-a524-fc9df3712a76", + "label": "label-2574", + "height": 456, + "background": "green" + }, + { + "key": "5aef0ac3-d853-4b47-ae01-4bf14477e2f4", + "label": "label-2575", + "height": 378, + "background": "red" + }, + { + "key": "fa7c916c-40bf-4ac6-b60f-ae1000b50553", + "label": "label-2576", + "height": 123, + "background": "yellow" + }, + { + "key": "f22e483d-8cbf-41a4-acfa-6d0b5f2c0fc7", + "label": "label-2577", + "height": 439, + "background": "green" + }, + { + "key": "f0561c2e-8748-4175-a215-b387dd3f2d59", + "label": "label-2578", + "height": 521, + "background": "green" + }, + { + "key": "db3b6906-a8de-4598-bab9-76de9229ee11", + "label": "label-2579", + "height": 454, + "background": "blue" + }, + { + "key": "8755a092-accc-4da7-82dc-d8ca3e90e1bd", + "label": "label-2580", + "height": 463, + "background": "yellow" + }, + { + "key": "8df0d83a-07c3-4c0e-89eb-1656c0018c8e", + "label": "label-2581", + "height": 71, + "background": "blue" + }, + { + "key": "ae3c7a10-fd8b-4cdd-bd8b-5189359db1d8", + "label": "label-2582", + "height": 483, + "background": "red" + }, + { + "key": "368d531d-9bb9-4c7b-ac59-8dfbb3311a50", + "label": "label-2583", + "height": 41, + "background": "green" + }, + { + "key": "c27ba395-fc3b-41f8-b9cd-86fe681b9d91", + "label": "label-2584", + "height": 349, + "background": "green" + }, + { + "key": "a0cfa0f5-cc5c-4122-b58b-fde1220e1517", + "label": "label-2585", + "height": 471, + "background": "yellow" + }, + { + "key": "3933e959-0ca1-43e6-8e79-af39a855d993", + "label": "label-2586", + "height": 228, + "background": "blue" + }, + { + "key": "dcf6239b-a73c-494f-a9d5-2042f516739f", + "label": "label-2587", + "height": 144, + "background": "yellow" + }, + { + "key": "604a6bf8-66f2-4892-ab0d-8ec57622221d", + "label": "label-2588", + "height": 36, + "background": "blue" + }, + { + "key": "2c1c56ef-f676-4a03-8803-f6e80c2de6b5", + "label": "label-2589", + "height": 158, + "background": "red" + }, + { + "key": "52982928-6d5b-464c-a434-aa0c2a947cb3", + "label": "label-2590", + "height": 196, + "background": "green" + }, + { + "key": "043ab67a-56a1-4466-91b4-2b44eb503d69", + "label": "label-2591", + "height": 122, + "background": "blue" + }, + { + "key": "abc8afe4-541e-4163-95c4-39055d399f5e", + "label": "label-2592", + "height": 520, + "background": "blue" + }, + { + "key": "910621da-e2ad-4b64-95ea-ea415c334e07", + "label": "label-2593", + "height": 452, + "background": "red" + }, + { + "key": "1cc58c89-abbd-4fa9-bc70-211efae9aa59", + "label": "label-2594", + "height": 355, + "background": "red" + }, + { + "key": "6f0332b3-fc6c-4143-a4b3-323c51477e90", + "label": "label-2595", + "height": 427, + "background": "red" + }, + { + "key": "4f6f5b77-2d37-4eae-b6cf-b48dab8f7849", + "label": "label-2596", + "height": 278, + "background": "yellow" + }, + { + "key": "065b3810-a933-42de-a960-6b45ef6bbb29", + "label": "label-2597", + "height": 480, + "background": "blue" + }, + { + "key": "6d6addc8-afdd-46b0-97ad-283a9509d325", + "label": "label-2598", + "height": 126, + "background": "green" + }, + { + "key": "804faf71-c60b-4000-a416-409e9429b06d", + "label": "label-2599", + "height": 514, + "background": "green" + }, + { + "key": "9c0f4a24-343a-47c6-8e72-0903573dd153", + "label": "label-2600", + "height": 115, + "background": "red" + }, + { + "key": "a529b945-e8b8-4951-913e-b466af06d538", + "label": "label-2601", + "height": 414, + "background": "blue" + }, + { + "key": "b471ef68-cc8f-4dc9-8761-de7d30a31cb1", + "label": "label-2602", + "height": 109, + "background": "blue" + }, + { + "key": "b5ff144b-e463-4323-9ba7-1d21bce775f3", + "label": "label-2603", + "height": 338, + "background": "yellow" + }, + { + "key": "e5c5c068-c41f-4f0a-b257-7dce5e2c1a66", + "label": "label-2604", + "height": 69, + "background": "yellow" + }, + { + "key": "78ea7685-d579-4ced-b141-dcbb3fc657a5", + "label": "label-2605", + "height": 445, + "background": "red" + }, + { + "key": "21315294-0547-41f2-91d6-6dbcc69123eb", + "label": "label-2606", + "height": 214, + "background": "red" + }, + { + "key": "3a1ab794-eda2-47a4-bd8a-158e70a946d9", + "label": "label-2607", + "height": 373, + "background": "green" + }, + { + "key": "381e0792-13f0-4c75-b239-492c5953fefd", + "label": "label-2608", + "height": 145, + "background": "red" + }, + { + "key": "00bc2822-8035-46dd-83e2-535ad132fb86", + "label": "label-2609", + "height": 483, + "background": "blue" + }, + { + "key": "ca7f956e-b8c4-45db-9cfb-2870f32030a5", + "label": "label-2610", + "height": 45, + "background": "red" + }, + { + "key": "dbb74d0a-a83b-4bd6-b33e-d7a5567c5ef0", + "label": "label-2611", + "height": 513, + "background": "yellow" + }, + { + "key": "566ffe1b-2095-41f2-b53e-e5d349d3820c", + "label": "label-2612", + "height": 153, + "background": "blue" + }, + { + "key": "c0fc3748-74ca-4822-a7e1-f355aabaa543", + "label": "label-2613", + "height": 365, + "background": "yellow" + }, + { + "key": "5f7da5d6-b6a8-4bd0-9c7d-ed222155ea56", + "label": "label-2614", + "height": 167, + "background": "green" + }, + { + "key": "def07f06-164c-4adf-8ce5-2948c0eb396e", + "label": "label-2615", + "height": 306, + "background": "red" + }, + { + "key": "b31a0eff-ac9c-4eb0-b787-9fad84f249df", + "label": "label-2616", + "height": 481, + "background": "red" + }, + { + "key": "962cf6cc-a854-4bc6-a97d-59091b9c8406", + "label": "label-2617", + "height": 148, + "background": "blue" + }, + { + "key": "24f6e45f-be5e-4f48-8221-345693d35286", + "label": "label-2618", + "height": 528, + "background": "red" + }, + { + "key": "17523c07-3dfd-4649-a10d-4f05b8ab7be9", + "label": "label-2619", + "height": 84, + "background": "yellow" + }, + { + "key": "9ee13bef-a67c-4bcb-8fe2-ec06c51ff5b3", + "label": "label-2620", + "height": 103, + "background": "yellow" + }, + { + "key": "f9bcee77-448d-426c-9e4c-3a293d92aad3", + "label": "label-2621", + "height": 185, + "background": "blue" + }, + { + "key": "e883945e-b3e3-411d-9ce3-12fa87f0897c", + "label": "label-2622", + "height": 223, + "background": "red" + }, + { + "key": "7d2f6a48-0c56-4f75-91d0-460c49f74798", + "label": "label-2623", + "height": 358, + "background": "green" + }, + { + "key": "3cb72b2c-6445-48cd-b4cb-17dd9d06f4d7", + "label": "label-2624", + "height": 400, + "background": "yellow" + }, + { + "key": "cdfe3aa9-1030-49f0-8261-fa2ea3b3184a", + "label": "label-2625", + "height": 374, + "background": "yellow" + }, + { + "key": "77311c88-cd19-4371-9ce5-4b73a2cc39e4", + "label": "label-2626", + "height": 264, + "background": "yellow" + }, + { + "key": "39582eea-60d2-427d-b4fb-210c911f3b81", + "label": "label-2627", + "height": 183, + "background": "yellow" + }, + { + "key": "ecf10733-06c6-4ace-9833-0036b4be991d", + "label": "label-2628", + "height": 483, + "background": "blue" + }, + { + "key": "84b390d3-8c23-4497-b218-5f9daf563c67", + "label": "label-2629", + "height": 225, + "background": "red" + }, + { + "key": "7c84b857-ae7d-4f61-ab10-1f1e51bb1b9f", + "label": "label-2630", + "height": 118, + "background": "yellow" + }, + { + "key": "746d40ca-ad57-465e-8c88-9f18dc70ad41", + "label": "label-2631", + "height": 457, + "background": "green" + }, + { + "key": "c747e1dc-6d2d-4df6-be5d-7d23a9b10a4f", + "label": "label-2632", + "height": 54, + "background": "blue" + }, + { + "key": "020134f8-c152-455a-a769-b74d62f9fc0a", + "label": "label-2633", + "height": 73, + "background": "blue" + }, + { + "key": "7df54651-b736-4a67-b3b5-a26afdf538d8", + "label": "label-2634", + "height": 35, + "background": "blue" + }, + { + "key": "1ecbf3a4-15e6-4b6f-91c3-1e81e34a34c0", + "label": "label-2635", + "height": 109, + "background": "red" + }, + { + "key": "7bd60629-1dfd-4eac-bb62-84a99dbbb01b", + "label": "label-2636", + "height": 360, + "background": "yellow" + }, + { + "key": "d9ededb6-9286-4f45-9a89-d2a32d4a713e", + "label": "label-2637", + "height": 123, + "background": "green" + }, + { + "key": "795f27f8-9566-4b4d-b7ab-02bfd539e0bf", + "label": "label-2638", + "height": 275, + "background": "blue" + }, + { + "key": "288c02d3-666d-4fcc-a29c-ee06a913666b", + "label": "label-2639", + "height": 215, + "background": "red" + }, + { + "key": "9a513b68-8e1a-4859-8719-8c3505d92424", + "label": "label-2640", + "height": 194, + "background": "blue" + }, + { + "key": "dc137391-760a-4c3a-a9ea-22f3962a6e95", + "label": "label-2641", + "height": 168, + "background": "green" + }, + { + "key": "9aeb7625-7b12-422d-91a1-eb048b6c7fa6", + "label": "label-2642", + "height": 305, + "background": "blue" + }, + { + "key": "a21312b2-34b5-4ce6-b749-222b96d64de0", + "label": "label-2643", + "height": 267, + "background": "yellow" + }, + { + "key": "bbcab03f-8de2-4ba0-94e1-b30ce0121666", + "label": "label-2644", + "height": 171, + "background": "red" + }, + { + "key": "1b4c7ddc-a260-4682-b65b-859c1235f5f2", + "label": "label-2645", + "height": 90, + "background": "yellow" + }, + { + "key": "b7e3deaa-88d0-4e60-ab38-c34690b12f85", + "label": "label-2646", + "height": 321, + "background": "red" + }, + { + "key": "31a25f98-f76a-495a-a811-05ec1ea0ba8b", + "label": "label-2647", + "height": 77, + "background": "green" + }, + { + "key": "a243fb38-45c5-404e-9eed-2111f8187e3f", + "label": "label-2648", + "height": 237, + "background": "yellow" + }, + { + "key": "45378a49-482e-4514-a1fa-5ed833d43190", + "label": "label-2649", + "height": 239, + "background": "green" + }, + { + "key": "c833ea70-8936-49b3-8e27-3a7facc754e2", + "label": "label-2650", + "height": 62, + "background": "red" + }, + { + "key": "c91e642a-208a-433a-980e-296901248a47", + "label": "label-2651", + "height": 523, + "background": "blue" + }, + { + "key": "2692a97c-8860-435c-ba1a-d02015b5dc2c", + "label": "label-2652", + "height": 527, + "background": "red" + }, + { + "key": "f9943460-c939-4e99-8541-d5ed14714795", + "label": "label-2653", + "height": 63, + "background": "yellow" + }, + { + "key": "f52b0f5a-098e-48ec-958b-75b8e8a3775e", + "label": "label-2654", + "height": 334, + "background": "yellow" + }, + { + "key": "236cbe50-8cd3-4196-8aa2-4c6f4b0582ad", + "label": "label-2655", + "height": 378, + "background": "red" + }, + { + "key": "d183f9cb-e355-49c7-af40-9ffc5671fd0c", + "label": "label-2656", + "height": 309, + "background": "green" + }, + { + "key": "c8bd165f-f694-48de-b0de-16b389c8ac5f", + "label": "label-2657", + "height": 210, + "background": "red" + }, + { + "key": "8a0da852-297c-4c77-a992-40baa5d9c1ef", + "label": "label-2658", + "height": 328, + "background": "red" + }, + { + "key": "f48b3b8e-879b-4a09-8555-1cd4d5e73885", + "label": "label-2659", + "height": 291, + "background": "green" + }, + { + "key": "a6a6430e-b74a-45cb-968e-b729d9b9f1dc", + "label": "label-2660", + "height": 49, + "background": "blue" + }, + { + "key": "bc370b74-2cbb-4469-bd18-1233cf2e8511", + "label": "label-2661", + "height": 462, + "background": "green" + }, + { + "key": "aa0065d2-4e9c-4a16-be58-6ed6b4f3e239", + "label": "label-2662", + "height": 298, + "background": "red" + }, + { + "key": "adb1d654-6068-4b30-81fc-cba7fa4a6122", + "label": "label-2663", + "height": 147, + "background": "blue" + }, + { + "key": "49f5d60a-f5eb-4993-a138-fa08002302ec", + "label": "label-2664", + "height": 277, + "background": "red" + }, + { + "key": "d495cb1d-994a-4dd6-a7d2-15fa2485f260", + "label": "label-2665", + "height": 315, + "background": "green" + }, + { + "key": "d8fdac84-424a-4001-8225-50e6d13fc05d", + "label": "label-2666", + "height": 174, + "background": "green" + }, + { + "key": "d9f2bbe7-47f3-441a-84e9-42b62239803c", + "label": "label-2667", + "height": 301, + "background": "red" + }, + { + "key": "ffb2e593-a210-4035-be90-89cb715f6de9", + "label": "label-2668", + "height": 447, + "background": "yellow" + }, + { + "key": "aba738da-1907-49f7-b5a3-1e2b44682f06", + "label": "label-2669", + "height": 390, + "background": "yellow" + }, + { + "key": "a8732124-7e47-48d3-a128-cd83e857a6a3", + "label": "label-2670", + "height": 422, + "background": "red" + }, + { + "key": "b3097de2-083d-4370-8ee7-870c73845dc0", + "label": "label-2671", + "height": 468, + "background": "green" + }, + { + "key": "c649b1f2-2fd3-430c-a19c-96e8b804ec02", + "label": "label-2672", + "height": 284, + "background": "blue" + }, + { + "key": "006cdf96-b473-4ee4-8cc2-26428756e3ba", + "label": "label-2673", + "height": 352, + "background": "green" + }, + { + "key": "56481c53-e612-41d4-b47c-fa8cc60aee36", + "label": "label-2674", + "height": 100, + "background": "blue" + }, + { + "key": "700c4fba-f8d4-43e0-8fc6-25dca091f626", + "label": "label-2675", + "height": 53, + "background": "blue" + }, + { + "key": "34653996-61d7-4931-b941-d4f8f14e01d7", + "label": "label-2676", + "height": 187, + "background": "green" + }, + { + "key": "052d1871-79ea-4b0e-8e7f-6757573c5599", + "label": "label-2677", + "height": 211, + "background": "blue" + }, + { + "key": "0cd4ebd9-d6db-4762-8bd1-367a6663d18c", + "label": "label-2678", + "height": 520, + "background": "red" + }, + { + "key": "f2f9098d-6865-4bbe-8567-0c7efd490c53", + "label": "label-2679", + "height": 405, + "background": "green" + }, + { + "key": "34be5ae2-d3fb-4826-9e2b-a3ac2494b4e4", + "label": "label-2680", + "height": 101, + "background": "blue" + }, + { + "key": "400f28b9-6bfa-4d84-b881-ed067e3c3514", + "label": "label-2681", + "height": 162, + "background": "red" + }, + { + "key": "1fe1de98-e655-40e7-91b0-9a273086902e", + "label": "label-2682", + "height": 432, + "background": "yellow" + }, + { + "key": "c5960994-c4d4-4411-b2e2-4cb72796af92", + "label": "label-2683", + "height": 99, + "background": "blue" + }, + { + "key": "d74e3bdd-ba12-40d5-adcb-577284c03e53", + "label": "label-2684", + "height": 427, + "background": "yellow" + }, + { + "key": "3a0c6d1e-f309-40a1-bd1b-3e5f5d63cf6a", + "label": "label-2685", + "height": 523, + "background": "red" + }, + { + "key": "2279e41d-b008-42e0-b73f-673d1624171f", + "label": "label-2686", + "height": 64, + "background": "yellow" + }, + { + "key": "3874857d-427e-404a-85ee-5c8991b6ff16", + "label": "label-2687", + "height": 431, + "background": "red" + }, + { + "key": "5c0587d1-7f81-428a-bb91-5399e6adfe1d", + "label": "label-2688", + "height": 231, + "background": "green" + }, + { + "key": "aafa770c-edb5-42e9-84d1-c8e7180597aa", + "label": "label-2689", + "height": 240, + "background": "blue" + }, + { + "key": "2e3591fd-2a64-475d-a651-1a2682a6328b", + "label": "label-2690", + "height": 96, + "background": "yellow" + }, + { + "key": "dd23de99-2db0-4b14-bc00-965f7e17e385", + "label": "label-2691", + "height": 427, + "background": "green" + }, + { + "key": "21049471-4d06-46da-a454-e3ac5c5b0b7f", + "label": "label-2692", + "height": 78, + "background": "green" + }, + { + "key": "a5933ac4-7be5-468a-bcc6-a56791b5d455", + "label": "label-2693", + "height": 277, + "background": "blue" + }, + { + "key": "9a439550-0d7e-4c6c-a13e-6014eb9fad3d", + "label": "label-2694", + "height": 263, + "background": "red" + }, + { + "key": "9a123959-179a-4305-ae21-7b54703b975a", + "label": "label-2695", + "height": 490, + "background": "green" + }, + { + "key": "78724427-1125-4ad9-956a-25d295be20a6", + "label": "label-2696", + "height": 419, + "background": "red" + }, + { + "key": "a8f50372-3af9-40ba-a26f-47680f1cdb42", + "label": "label-2697", + "height": 116, + "background": "blue" + }, + { + "key": "c65ba05e-6b54-49ed-b0ec-39cb99ec0832", + "label": "label-2698", + "height": 347, + "background": "red" + }, + { + "key": "170985c0-c9b5-4b07-a860-1a140eabfe2c", + "label": "label-2699", + "height": 183, + "background": "blue" + }, + { + "key": "a7202e3b-94c2-4cba-b40d-79e86d3158ef", + "label": "label-2700", + "height": 339, + "background": "red" + }, + { + "key": "18680127-2e61-4468-8405-70d72f881df2", + "label": "label-2701", + "height": 128, + "background": "blue" + }, + { + "key": "f5c8222e-9137-4369-b471-3d40e61822ba", + "label": "label-2702", + "height": 496, + "background": "yellow" + }, + { + "key": "a073eda7-d65c-4174-9e9a-28d559c7a666", + "label": "label-2703", + "height": 217, + "background": "red" + }, + { + "key": "ba9b6536-4f98-40ab-bfd5-24d333863421", + "label": "label-2704", + "height": 179, + "background": "yellow" + }, + { + "key": "fe01bf2c-eb68-4fb8-9cb6-d250b62f66e7", + "label": "label-2705", + "height": 140, + "background": "blue" + }, + { + "key": "1f54bc37-50ec-4f73-89a8-4011244f7ffa", + "label": "label-2706", + "height": 404, + "background": "blue" + }, + { + "key": "fcddbec3-aa2e-47eb-bf34-c8dc19ae09a3", + "label": "label-2707", + "height": 520, + "background": "red" + }, + { + "key": "080cd120-7ec7-4d14-a47f-fc92141276ea", + "label": "label-2708", + "height": 165, + "background": "green" + }, + { + "key": "73ae3c30-9aba-4fae-b1ea-11b76de1572a", + "label": "label-2709", + "height": 380, + "background": "green" + }, + { + "key": "e123ecd7-0e34-4b83-b648-da1882780f30", + "label": "label-2710", + "height": 465, + "background": "blue" + }, + { + "key": "9a642247-839e-4eb0-b928-1f852c008f10", + "label": "label-2711", + "height": 146, + "background": "red" + }, + { + "key": "e576c88f-2be9-4552-8203-a0b24e153679", + "label": "label-2712", + "height": 295, + "background": "red" + }, + { + "key": "3893bc73-c255-41ae-9f3b-acffa23e6fe2", + "label": "label-2713", + "height": 484, + "background": "green" + }, + { + "key": "ddd6c9c3-7ac7-412e-95a8-0f7917f81d76", + "label": "label-2714", + "height": 35, + "background": "green" + }, + { + "key": "22559d25-807c-49ea-8ba1-0f2f3dc6a1a8", + "label": "label-2715", + "height": 481, + "background": "yellow" + }, + { + "key": "8a827ab8-d62a-4d95-ba2d-f5bd235110af", + "label": "label-2716", + "height": 299, + "background": "yellow" + }, + { + "key": "6f4e6e8b-07f3-47ea-baf5-e3857aaeb4ed", + "label": "label-2717", + "height": 212, + "background": "blue" + }, + { + "key": "8053fac2-e8e5-43ea-b6d7-dc8902a5c338", + "label": "label-2718", + "height": 268, + "background": "red" + }, + { + "key": "1b4447aa-a3e4-444f-8690-f0339237f4c7", + "label": "label-2719", + "height": 105, + "background": "blue" + }, + { + "key": "f0b47b96-47dd-43d3-b2d8-51fc0ab5c74b", + "label": "label-2720", + "height": 124, + "background": "blue" + }, + { + "key": "faffb58f-d814-4f6f-b880-fd98c92b7af7", + "label": "label-2721", + "height": 48, + "background": "blue" + }, + { + "key": "6994e6a0-e7e5-432f-b4f4-b46422661b16", + "label": "label-2722", + "height": 241, + "background": "blue" + }, + { + "key": "3207203c-a938-4289-beab-00c91c785b87", + "label": "label-2723", + "height": 529, + "background": "green" + }, + { + "key": "97ee43fc-7eae-4617-8143-a94d33fa144f", + "label": "label-2724", + "height": 462, + "background": "blue" + }, + { + "key": "0c5352ff-3666-442c-8fc0-495c3b5be898", + "label": "label-2725", + "height": 61, + "background": "red" + }, + { + "key": "4952ba1b-4a3c-4af7-8602-6301c9233aaf", + "label": "label-2726", + "height": 203, + "background": "green" + }, + { + "key": "c33cf04a-d87d-4a05-9ac0-c61914501b80", + "label": "label-2727", + "height": 76, + "background": "yellow" + }, + { + "key": "f21494fc-cff6-437c-b4bf-3a620c10dece", + "label": "label-2728", + "height": 82, + "background": "blue" + }, + { + "key": "76d519b6-5ecc-4144-8c7a-b2cbcb83dbaf", + "label": "label-2729", + "height": 342, + "background": "yellow" + }, + { + "key": "dc16f067-a51b-49aa-bf0f-5c5caafee8a8", + "label": "label-2730", + "height": 45, + "background": "yellow" + }, + { + "key": "bf5e6b22-cf4c-4451-8c71-dcfc8c08fe10", + "label": "label-2731", + "height": 503, + "background": "blue" + }, + { + "key": "4dcdd336-868a-4908-959d-ccaa7f83eb2a", + "label": "label-2732", + "height": 380, + "background": "yellow" + }, + { + "key": "a971dae1-993f-40f5-92ae-96d4df687ecc", + "label": "label-2733", + "height": 437, + "background": "blue" + }, + { + "key": "dc5af4fd-59c7-4bcf-b750-0fa30dad89d3", + "label": "label-2734", + "height": 67, + "background": "blue" + }, + { + "key": "74eec4fa-6e8a-4530-aebb-b1c55f005337", + "label": "label-2735", + "height": 432, + "background": "red" + }, + { + "key": "be5d1747-3dd4-469a-af30-8ed4a615ec3e", + "label": "label-2736", + "height": 338, + "background": "red" + }, + { + "key": "f2543705-0cb5-41b3-a789-9583e845f0cd", + "label": "label-2737", + "height": 249, + "background": "green" + }, + { + "key": "622e940e-e9df-4957-962c-8016b7865e3d", + "label": "label-2738", + "height": 221, + "background": "blue" + }, + { + "key": "500c1afa-739a-4c42-a28d-18c392e794c2", + "label": "label-2739", + "height": 469, + "background": "green" + }, + { + "key": "67cb3a2d-8339-4704-9d37-257d209c64e8", + "label": "label-2740", + "height": 196, + "background": "yellow" + }, + { + "key": "cba6f27e-2f60-4593-9093-4b1ef5649bef", + "label": "label-2741", + "height": 313, + "background": "yellow" + }, + { + "key": "6bde286a-7c0f-4edc-8613-d57081247438", + "label": "label-2742", + "height": 139, + "background": "yellow" + }, + { + "key": "49da3e41-88a5-4729-9d4d-17191c0f03a0", + "label": "label-2743", + "height": 312, + "background": "green" + }, + { + "key": "542c235f-ab66-4737-95c4-142907e6c376", + "label": "label-2744", + "height": 180, + "background": "yellow" + }, + { + "key": "61229f8d-783a-4b7c-bd60-a6478305716f", + "label": "label-2745", + "height": 114, + "background": "blue" + }, + { + "key": "38b62ed3-6f14-4b51-8d40-fb5bd1b71ca7", + "label": "label-2746", + "height": 90, + "background": "blue" + }, + { + "key": "71421a23-82fc-4235-aea2-41e09442b4db", + "label": "label-2747", + "height": 373, + "background": "blue" + }, + { + "key": "72c30bb2-d024-4f2b-b852-b6c0645ea7d3", + "label": "label-2748", + "height": 418, + "background": "green" + }, + { + "key": "7f7c8860-2832-4324-a3af-7924c95bdc28", + "label": "label-2749", + "height": 475, + "background": "blue" + }, + { + "key": "b43b32a2-0c4e-4eed-b971-e98e4ad2625c", + "label": "label-2750", + "height": 396, + "background": "green" + }, + { + "key": "1359eea5-762f-4cf3-b38f-6c10d6962996", + "label": "label-2751", + "height": 202, + "background": "red" + }, + { + "key": "5e986d20-aee4-40e0-9910-943db258d79b", + "label": "label-2752", + "height": 470, + "background": "blue" + }, + { + "key": "60285c02-7060-4756-b6d1-3068f29e9c50", + "label": "label-2753", + "height": 508, + "background": "red" + }, + { + "key": "116c1adc-5fb9-4951-a2b8-28abe0cbc703", + "label": "label-2754", + "height": 386, + "background": "blue" + }, + { + "key": "062adf7d-4bb5-4bb5-9458-967bfe8fb5f9", + "label": "label-2755", + "height": 512, + "background": "blue" + }, + { + "key": "b6bcd97a-ba73-4ff2-8dc6-e04d954a7985", + "label": "label-2756", + "height": 428, + "background": "blue" + }, + { + "key": "145f4a21-6946-4140-9308-b9b5caf9d1c7", + "label": "label-2757", + "height": 46, + "background": "green" + }, + { + "key": "e7659478-7492-42b2-a949-97cf26032c46", + "label": "label-2758", + "height": 375, + "background": "red" + }, + { + "key": "fe0196c0-92a8-42d2-a963-3e7abb29b35c", + "label": "label-2759", + "height": 178, + "background": "yellow" + }, + { + "key": "307fd28d-21c7-4848-9791-ed9971fc0731", + "label": "label-2760", + "height": 278, + "background": "green" + }, + { + "key": "87f00ca1-e2c5-4c4f-859b-be18079c41d5", + "label": "label-2761", + "height": 270, + "background": "red" + }, + { + "key": "acb8c2ca-d3b3-49d4-93a9-f54dcd7e03f5", + "label": "label-2762", + "height": 496, + "background": "blue" + }, + { + "key": "3fd0717d-5e01-41e6-9f03-06f79e81b91d", + "label": "label-2763", + "height": 256, + "background": "yellow" + }, + { + "key": "47a9175c-f3df-46c4-b469-b3fc805182fe", + "label": "label-2764", + "height": 105, + "background": "red" + }, + { + "key": "c05129e6-cd55-4e95-bef9-e1ef4b625945", + "label": "label-2765", + "height": 362, + "background": "blue" + }, + { + "key": "97f2a385-ecac-40eb-94f6-4c5a044828c4", + "label": "label-2766", + "height": 51, + "background": "green" + }, + { + "key": "80667d87-c67f-49a7-b193-89d883fd9735", + "label": "label-2767", + "height": 128, + "background": "blue" + }, + { + "key": "ffa46aef-cb5a-4ffd-8cc1-9b97123c598f", + "label": "label-2768", + "height": 334, + "background": "red" + }, + { + "key": "7af3363d-2001-46b4-a74e-e3690ac94474", + "label": "label-2769", + "height": 369, + "background": "yellow" + }, + { + "key": "880c121c-9ca1-4e37-b3c5-f879c8bd2b84", + "label": "label-2770", + "height": 328, + "background": "green" + }, + { + "key": "119e258e-6990-465f-ae4d-2399dd4b99dd", + "label": "label-2771", + "height": 447, + "background": "blue" + }, + { + "key": "59eca751-1f82-42f8-b476-34c62c9520c2", + "label": "label-2772", + "height": 333, + "background": "yellow" + }, + { + "key": "cf0c6c73-e060-4c13-ad8c-ba7ab0ec8c9a", + "label": "label-2773", + "height": 215, + "background": "green" + }, + { + "key": "893976b1-34a1-4143-9cb8-2aaa804112a4", + "label": "label-2774", + "height": 216, + "background": "blue" + }, + { + "key": "7f3d26b4-9838-4fb5-9241-b81fefb864b3", + "label": "label-2775", + "height": 205, + "background": "green" + }, + { + "key": "4a941719-03f6-4b75-9383-1b2c5681830c", + "label": "label-2776", + "height": 191, + "background": "yellow" + }, + { + "key": "ad14b62e-488f-4db5-83c2-a38e8304e78f", + "label": "label-2777", + "height": 273, + "background": "blue" + }, + { + "key": "822472cf-baa2-46de-b2dc-c93364c9bd40", + "label": "label-2778", + "height": 117, + "background": "blue" + }, + { + "key": "ec56a78f-6e2f-4721-9220-436e2145a3bc", + "label": "label-2779", + "height": 94, + "background": "yellow" + }, + { + "key": "5edf3ec3-bf71-4571-b948-71536c5c6520", + "label": "label-2780", + "height": 409, + "background": "green" + }, + { + "key": "4eb84f2e-12f6-49a7-8e0a-41a6377210cd", + "label": "label-2781", + "height": 525, + "background": "red" + }, + { + "key": "8a06c274-01ae-4623-b7b0-2a2361614c43", + "label": "label-2782", + "height": 189, + "background": "red" + }, + { + "key": "9f374c40-3a4a-45f4-ac1f-a11475f23479", + "label": "label-2783", + "height": 142, + "background": "yellow" + }, + { + "key": "27e79d18-b316-45bb-9f44-a3e9a5fc10ba", + "label": "label-2784", + "height": 154, + "background": "green" + }, + { + "key": "8ff14c43-37f4-4c39-8f15-74cb974f75d1", + "label": "label-2785", + "height": 442, + "background": "blue" + }, + { + "key": "15643c12-ac65-4eca-b6cb-442d3b98b488", + "label": "label-2786", + "height": 166, + "background": "yellow" + }, + { + "key": "f122e703-2349-424f-aa1e-ea5858904422", + "label": "label-2787", + "height": 84, + "background": "green" + }, + { + "key": "fae1ada2-d9d6-4864-821e-ae9597378159", + "label": "label-2788", + "height": 368, + "background": "red" + }, + { + "key": "63cb629f-14ff-4682-813b-d272d213950c", + "label": "label-2789", + "height": 197, + "background": "yellow" + }, + { + "key": "c7654e05-e8f1-40d8-8081-82c75482c881", + "label": "label-2790", + "height": 270, + "background": "green" + }, + { + "key": "7e06cb56-2ddf-46b3-a989-e36eff02f3eb", + "label": "label-2791", + "height": 165, + "background": "yellow" + }, + { + "key": "c7ccf194-0bc2-48ac-973c-b1acfd63e3b6", + "label": "label-2792", + "height": 167, + "background": "blue" + }, + { + "key": "04d95955-9662-4693-af38-bc7490230af7", + "label": "label-2793", + "height": 323, + "background": "blue" + }, + { + "key": "351e8043-a31b-478d-adb0-fa2a4b0aa9b7", + "label": "label-2794", + "height": 174, + "background": "blue" + }, + { + "key": "0e100120-be6b-438f-b22e-d451bbba4817", + "label": "label-2795", + "height": 454, + "background": "yellow" + }, + { + "key": "87b3d793-0bcb-41f0-a2ed-8cd06aef5e75", + "label": "label-2796", + "height": 421, + "background": "green" + }, + { + "key": "dc4b3aba-3a29-4e62-85c6-efa9c1e18161", + "label": "label-2797", + "height": 61, + "background": "red" + }, + { + "key": "7e04c456-2d9e-4d67-9829-31dfc19276c2", + "label": "label-2798", + "height": 281, + "background": "yellow" + }, + { + "key": "ea1045a7-cce4-4155-92b1-1b7373549ee9", + "label": "label-2799", + "height": 169, + "background": "yellow" + }, + { + "key": "680a7064-0585-4a4a-b190-8bfdc427c9b1", + "label": "label-2800", + "height": 197, + "background": "green" + }, + { + "key": "f141e998-0fe3-47be-9220-0c71c3509a29", + "label": "label-2801", + "height": 509, + "background": "yellow" + }, + { + "key": "ba1949d0-7cf4-4df3-9065-0fe9e189e525", + "label": "label-2802", + "height": 413, + "background": "green" + }, + { + "key": "94b9fda7-92c3-4455-9a80-126c770f0ffa", + "label": "label-2803", + "height": 179, + "background": "green" + }, + { + "key": "148ccb09-55bc-47a9-9e8b-cb998912558a", + "label": "label-2804", + "height": 386, + "background": "blue" + }, + { + "key": "700b49f2-e0b4-43f4-9e6e-ee088a43f6bd", + "label": "label-2805", + "height": 419, + "background": "blue" + }, + { + "key": "250052ef-b2e8-43a7-be65-86e61cdd485f", + "label": "label-2806", + "height": 394, + "background": "red" + }, + { + "key": "a0075c2e-b26c-4562-97ba-caf80ecca84c", + "label": "label-2807", + "height": 293, + "background": "green" + }, + { + "key": "470397d7-3830-44a4-8a0c-c31db5f60560", + "label": "label-2808", + "height": 401, + "background": "yellow" + }, + { + "key": "7f39b9c7-2f9c-4d8d-9272-2da50e225aec", + "label": "label-2809", + "height": 500, + "background": "yellow" + }, + { + "key": "b6d2864c-684f-4cef-ab3d-141296e29979", + "label": "label-2810", + "height": 266, + "background": "blue" + }, + { + "key": "bbffd96b-6226-4ae3-ad02-75d97d23e6ee", + "label": "label-2811", + "height": 247, + "background": "green" + }, + { + "key": "22744bb2-8c44-418c-adeb-60a2088e187d", + "label": "label-2812", + "height": 135, + "background": "green" + }, + { + "key": "c80b2a82-6453-402c-8abb-5d9c93dd5eb3", + "label": "label-2813", + "height": 267, + "background": "red" + }, + { + "key": "a444b4b6-9724-4bf9-871a-b2bd58722b94", + "label": "label-2814", + "height": 524, + "background": "red" + }, + { + "key": "b9c76dd3-a67c-420a-87fa-6741b80926cc", + "label": "label-2815", + "height": 469, + "background": "blue" + }, + { + "key": "b9fa04d0-8442-467a-ba3b-1d4ddd69229f", + "label": "label-2816", + "height": 383, + "background": "red" + }, + { + "key": "b0715984-1350-48b7-b6e4-3b9a9af22466", + "label": "label-2817", + "height": 322, + "background": "green" + }, + { + "key": "f1240a88-6422-4246-b362-e3efe8511e73", + "label": "label-2818", + "height": 244, + "background": "green" + }, + { + "key": "b0f43d72-0847-47aa-a2ad-9af94996bac9", + "label": "label-2819", + "height": 84, + "background": "yellow" + }, + { + "key": "06aed08c-0514-4eca-bb5a-709a18ddaa9b", + "label": "label-2820", + "height": 349, + "background": "green" + }, + { + "key": "59cc5f90-159a-40ac-868b-73c8e0e1048a", + "label": "label-2821", + "height": 290, + "background": "yellow" + }, + { + "key": "1e7f633e-8555-4e6f-9986-fa7c1ba2e448", + "label": "label-2822", + "height": 229, + "background": "green" + }, + { + "key": "a08ec056-6d4c-4d8a-8016-f41c22773f1c", + "label": "label-2823", + "height": 195, + "background": "green" + }, + { + "key": "cdc08e18-408e-48f8-96c2-2b82e38ab52b", + "label": "label-2824", + "height": 488, + "background": "yellow" + }, + { + "key": "0ef026a0-e76d-4cf6-89e5-85054b2e2ad4", + "label": "label-2825", + "height": 182, + "background": "blue" + }, + { + "key": "7e982f22-1cd7-47e0-88e9-c2f131a2933b", + "label": "label-2826", + "height": 388, + "background": "yellow" + }, + { + "key": "1b59c55f-0982-4858-9c36-14c7f60033cf", + "label": "label-2827", + "height": 106, + "background": "yellow" + }, + { + "key": "2861ea04-64e1-4bdf-bd2b-8e5c1516a634", + "label": "label-2828", + "height": 279, + "background": "green" + }, + { + "key": "63fde62d-a86f-4ed4-8b53-97481bca2594", + "label": "label-2829", + "height": 50, + "background": "red" + }, + { + "key": "c192338b-58b3-4028-97bc-8e72afc49dcf", + "label": "label-2830", + "height": 294, + "background": "blue" + }, + { + "key": "79af6aff-1f0e-49e6-90b2-dbd322b8593c", + "label": "label-2831", + "height": 91, + "background": "green" + }, + { + "key": "5688608f-1a25-434a-bdfb-214c9b6c5d3d", + "label": "label-2832", + "height": 437, + "background": "blue" + }, + { + "key": "38fd5970-7f1f-43ea-8ce2-37bb24397bee", + "label": "label-2833", + "height": 313, + "background": "yellow" + }, + { + "key": "58e38fc0-b9ba-48ea-9f47-377801ef6656", + "label": "label-2834", + "height": 452, + "background": "green" + }, + { + "key": "60e59a9a-a7f7-4bd6-a1c7-1d1e85670b68", + "label": "label-2835", + "height": 429, + "background": "blue" + }, + { + "key": "a63f3835-be8c-4c7d-b941-85de8b6d1f3c", + "label": "label-2836", + "height": 119, + "background": "blue" + }, + { + "key": "040d0e49-1d47-4904-906f-0d921326b591", + "label": "label-2837", + "height": 414, + "background": "red" + }, + { + "key": "390ad74f-f826-4ff0-8cb4-8aa15acaa856", + "label": "label-2838", + "height": 171, + "background": "red" + }, + { + "key": "90b653b6-92ed-472b-9d87-c0ba03a14918", + "label": "label-2839", + "height": 284, + "background": "red" + }, + { + "key": "db9d3230-faa2-4951-a6f9-db162c485acc", + "label": "label-2840", + "height": 502, + "background": "red" + }, + { + "key": "b251be7f-fd35-43c9-81b1-89bbb3f5214a", + "label": "label-2841", + "height": 62, + "background": "green" + }, + { + "key": "3be297d2-9284-4a5d-af3f-3141ae665a14", + "label": "label-2842", + "height": 166, + "background": "yellow" + }, + { + "key": "9e8343ba-944a-4eda-912e-7bbd4d770c99", + "label": "label-2843", + "height": 515, + "background": "red" + }, + { + "key": "6da5acc7-56c6-4aca-a238-6358fb3b28b7", + "label": "label-2844", + "height": 266, + "background": "red" + }, + { + "key": "b77ccb01-c255-45d0-8348-60ddfba783e9", + "label": "label-2845", + "height": 432, + "background": "green" + }, + { + "key": "3fa7e2d9-d4c7-4338-aaec-b6dc16431570", + "label": "label-2846", + "height": 419, + "background": "blue" + }, + { + "key": "c8564058-786d-4e03-896e-84ef09a48f86", + "label": "label-2847", + "height": 406, + "background": "blue" + }, + { + "key": "a6b06a09-a6e9-477f-83c5-23f359a991dd", + "label": "label-2848", + "height": 123, + "background": "green" + }, + { + "key": "6cc94c33-7619-409b-8f31-464c6d3642b2", + "label": "label-2849", + "height": 391, + "background": "red" + }, + { + "key": "3436f168-0205-4193-9256-ab156b4b4a5e", + "label": "label-2850", + "height": 259, + "background": "red" + }, + { + "key": "0ba2cd75-f501-416d-b3ef-2d5282765b3e", + "label": "label-2851", + "height": 451, + "background": "green" + }, + { + "key": "1f17b10d-15ed-4a2b-b2d0-3d0a2a8565ca", + "label": "label-2852", + "height": 297, + "background": "blue" + }, + { + "key": "ee687289-27ef-4b14-8e30-521ce7b7defc", + "label": "label-2853", + "height": 433, + "background": "yellow" + }, + { + "key": "acbb5b4c-0650-497e-9b3f-bb201c4fc5d5", + "label": "label-2854", + "height": 345, + "background": "green" + }, + { + "key": "142e9d4d-bed0-44e1-923e-aca31e693753", + "label": "label-2855", + "height": 129, + "background": "green" + }, + { + "key": "3b890e04-01c7-4523-9045-47c31fee4fbf", + "label": "label-2856", + "height": 220, + "background": "red" + }, + { + "key": "20955d0e-b577-4a43-ad5f-ac154a8af5df", + "label": "label-2857", + "height": 448, + "background": "yellow" + }, + { + "key": "dd660ac1-1a23-4fc6-a568-5d8cdd9df390", + "label": "label-2858", + "height": 476, + "background": "red" + }, + { + "key": "b8b147a6-a611-4f7c-a16c-793bbdabbc90", + "label": "label-2859", + "height": 410, + "background": "green" + }, + { + "key": "bc7e6898-2a31-4a4d-bb72-20c42032bb70", + "label": "label-2860", + "height": 509, + "background": "red" + }, + { + "key": "3218fc19-39c2-49ca-a368-3e5531b9f9b1", + "label": "label-2861", + "height": 358, + "background": "green" + }, + { + "key": "3e8740e9-1fe0-42f2-bb9c-df9b0aae1e10", + "label": "label-2862", + "height": 159, + "background": "green" + }, + { + "key": "e3686b9c-158f-4bfe-ae12-10ddb30d977c", + "label": "label-2863", + "height": 419, + "background": "red" + }, + { + "key": "6ecce991-13d4-43ef-bfbe-7ae41593f63b", + "label": "label-2864", + "height": 227, + "background": "yellow" + }, + { + "key": "6aabf451-2f56-4c64-be8c-ac4d51d17378", + "label": "label-2865", + "height": 284, + "background": "green" + }, + { + "key": "db9ca00d-e219-4a19-a114-494b23e45220", + "label": "label-2866", + "height": 497, + "background": "red" + }, + { + "key": "39dcca35-54a6-4158-aac8-954c1b63c985", + "label": "label-2867", + "height": 503, + "background": "yellow" + }, + { + "key": "e84a58e7-e82a-404c-8a5a-5506b02bbf5a", + "label": "label-2868", + "height": 238, + "background": "green" + }, + { + "key": "23540f15-a488-4519-a6be-a56a5cea323c", + "label": "label-2869", + "height": 401, + "background": "red" + }, + { + "key": "c72f4c32-2b83-4fa2-abd3-7043ba2476e7", + "label": "label-2870", + "height": 123, + "background": "blue" + }, + { + "key": "69815267-8095-4d3d-97c1-55af7fe42f25", + "label": "label-2871", + "height": 357, + "background": "blue" + }, + { + "key": "19dc0708-cdfa-4b0c-a0f5-09df94919398", + "label": "label-2872", + "height": 90, + "background": "red" + }, + { + "key": "14bebe1f-cef8-497a-8591-c2ecadd8d3d9", + "label": "label-2873", + "height": 296, + "background": "green" + }, + { + "key": "325370ad-6099-46d6-b7bf-c7af420956b3", + "label": "label-2874", + "height": 74, + "background": "red" + }, + { + "key": "301ed917-582c-4684-8dd1-0cc86aeb2565", + "label": "label-2875", + "height": 439, + "background": "green" + }, + { + "key": "254de0dd-db2d-4302-b3bb-3ac472fca796", + "label": "label-2876", + "height": 233, + "background": "yellow" + }, + { + "key": "2fc55088-a42b-44f8-82d4-90124f3a0c7b", + "label": "label-2877", + "height": 325, + "background": "yellow" + }, + { + "key": "65e44ff1-a373-4bb5-92fe-0f3c450b1709", + "label": "label-2878", + "height": 91, + "background": "blue" + }, + { + "key": "2e7f6297-f7ef-4fe0-a568-b62b6c23b373", + "label": "label-2879", + "height": 131, + "background": "yellow" + }, + { + "key": "123d954d-491f-4529-a009-f6954f0102e9", + "label": "label-2880", + "height": 319, + "background": "red" + }, + { + "key": "03388e86-3722-4589-9950-d1756865cbb2", + "label": "label-2881", + "height": 170, + "background": "green" + }, + { + "key": "51975bce-41e9-4e17-9886-0974baa6b49d", + "label": "label-2882", + "height": 193, + "background": "green" + }, + { + "key": "4af60822-fa88-4960-92bb-66d501bc518a", + "label": "label-2883", + "height": 385, + "background": "yellow" + }, + { + "key": "04699510-772f-4c3a-98ad-2671822fb844", + "label": "label-2884", + "height": 217, + "background": "yellow" + }, + { + "key": "0d1163ff-8eae-47a3-9b3d-85d7f3936878", + "label": "label-2885", + "height": 448, + "background": "blue" + }, + { + "key": "19279ea9-8ae7-466e-964d-75d20677c1a6", + "label": "label-2886", + "height": 139, + "background": "green" + }, + { + "key": "c01f35a7-fc02-42fb-8f9a-90888703c17f", + "label": "label-2887", + "height": 399, + "background": "blue" + }, + { + "key": "eda223c2-8154-4ca3-929e-ed0e44f02458", + "label": "label-2888", + "height": 493, + "background": "blue" + }, + { + "key": "36428d09-d01e-468e-9d2e-37c41e6aed8b", + "label": "label-2889", + "height": 118, + "background": "blue" + }, + { + "key": "42784959-2c66-45ea-89ab-7be3b9ceec61", + "label": "label-2890", + "height": 185, + "background": "green" + }, + { + "key": "78870600-d64a-4337-8ca9-ee73cf0f3ba0", + "label": "label-2891", + "height": 426, + "background": "blue" + }, + { + "key": "d616b3dd-50cf-4e4a-b3a2-4c37d4af02b3", + "label": "label-2892", + "height": 80, + "background": "green" + }, + { + "key": "b6e1f8bc-dc0b-49aa-bcc8-d84fcdad173a", + "label": "label-2893", + "height": 453, + "background": "green" + }, + { + "key": "72f9cc5f-c8ab-4d16-9568-40d4d0ead4d6", + "label": "label-2894", + "height": 287, + "background": "green" + }, + { + "key": "3bed67e4-479d-437b-9f70-52179addc841", + "label": "label-2895", + "height": 67, + "background": "yellow" + }, + { + "key": "5904c776-940c-4736-9602-4c49c2ada3e8", + "label": "label-2896", + "height": 297, + "background": "green" + }, + { + "key": "bc2903b1-005a-4ff4-883e-52f92c84edfd", + "label": "label-2897", + "height": 415, + "background": "green" + }, + { + "key": "aee28166-5b25-4606-a0b4-daef5c507bcf", + "label": "label-2898", + "height": 88, + "background": "yellow" + }, + { + "key": "e79ed0fa-f967-47af-981a-15dcd52268f6", + "label": "label-2899", + "height": 480, + "background": "red" + }, + { + "key": "45afa842-39d0-43be-a722-35490136eb1a", + "label": "label-2900", + "height": 291, + "background": "green" + }, + { + "key": "9cde6aeb-3003-41ca-a94c-9655fc6fa2b1", + "label": "label-2901", + "height": 212, + "background": "yellow" + }, + { + "key": "575933b0-163d-48b8-bba8-e2d3e02f511c", + "label": "label-2902", + "height": 474, + "background": "red" + }, + { + "key": "456fa29b-6229-4147-b285-4134dad4243d", + "label": "label-2903", + "height": 323, + "background": "red" + }, + { + "key": "049e9ad8-ddb1-4555-aacf-3a7808f10fde", + "label": "label-2904", + "height": 222, + "background": "green" + }, + { + "key": "b0a63800-f204-4b21-86a2-8802eba6dbc6", + "label": "label-2905", + "height": 94, + "background": "blue" + }, + { + "key": "02246746-6382-4eb5-947e-6747112c5695", + "label": "label-2906", + "height": 485, + "background": "blue" + }, + { + "key": "0d5109a8-c850-46b5-90dc-317e1868f963", + "label": "label-2907", + "height": 323, + "background": "yellow" + }, + { + "key": "99b49903-c152-4255-abf6-af9c601038f2", + "label": "label-2908", + "height": 444, + "background": "yellow" + }, + { + "key": "81b11070-b79d-4df7-8433-bed0556f2b9a", + "label": "label-2909", + "height": 519, + "background": "green" + }, + { + "key": "8dfe3c9b-77aa-4994-91ac-cc587c746413", + "label": "label-2910", + "height": 371, + "background": "red" + }, + { + "key": "63cbfe02-f8d5-4317-ac53-1e47464f0f3a", + "label": "label-2911", + "height": 110, + "background": "blue" + }, + { + "key": "5b61652e-ee19-4fdc-b313-a102516ed634", + "label": "label-2912", + "height": 97, + "background": "yellow" + }, + { + "key": "ff8a18b8-eb55-4946-8ab2-fcd012dd6a59", + "label": "label-2913", + "height": 518, + "background": "green" + }, + { + "key": "cc868867-54a1-49f2-9a2d-b71d569b6127", + "label": "label-2914", + "height": 314, + "background": "yellow" + }, + { + "key": "7c6b4eb4-1539-4d85-a1a3-55da56e27c5d", + "label": "label-2915", + "height": 188, + "background": "red" + }, + { + "key": "8be22782-e2cd-4477-a5dc-d8e47f5210fc", + "label": "label-2916", + "height": 390, + "background": "yellow" + }, + { + "key": "0d7eef3b-4cb3-4717-a2c5-17ddadeb2228", + "label": "label-2917", + "height": 70, + "background": "green" + }, + { + "key": "5a6f3455-7b2b-4fcc-96d9-743d6c6ccb02", + "label": "label-2918", + "height": 426, + "background": "yellow" + }, + { + "key": "ff93a476-359b-491e-97cb-c5d845eed59f", + "label": "label-2919", + "height": 331, + "background": "blue" + }, + { + "key": "5c43fbbf-26bb-4c35-83c6-1fedab94f1a4", + "label": "label-2920", + "height": 320, + "background": "green" + }, + { + "key": "62ce25a9-0e9a-4a06-82f5-d92bc315e029", + "label": "label-2921", + "height": 318, + "background": "yellow" + }, + { + "key": "c6439d43-3bb5-495c-9e26-c63ff323f714", + "label": "label-2922", + "height": 365, + "background": "green" + }, + { + "key": "22153940-089f-4256-a0b3-604d06b6bfd6", + "label": "label-2923", + "height": 137, + "background": "yellow" + }, + { + "key": "f3bf9a75-5d74-457c-b54b-4617495add6b", + "label": "label-2924", + "height": 40, + "background": "red" + }, + { + "key": "6ecf452a-750a-47b3-bee4-d59a470d2d59", + "label": "label-2925", + "height": 408, + "background": "blue" + }, + { + "key": "79c755bc-fff6-45a9-92d1-26d17e5363ce", + "label": "label-2926", + "height": 166, + "background": "yellow" + }, + { + "key": "d1016b42-35c1-4dd6-9154-bcb1cd086aac", + "label": "label-2927", + "height": 446, + "background": "yellow" + }, + { + "key": "def61ca5-81ec-49ea-997d-87efbffb10cf", + "label": "label-2928", + "height": 247, + "background": "red" + }, + { + "key": "5e6d513f-74f3-4eb3-aebb-89acc236a35f", + "label": "label-2929", + "height": 152, + "background": "red" + }, + { + "key": "a4dcda5d-5ead-42e1-bd8d-83d120d81146", + "label": "label-2930", + "height": 53, + "background": "blue" + }, + { + "key": "cb00204e-e477-4897-9113-204317d5fa46", + "label": "label-2931", + "height": 45, + "background": "blue" + }, + { + "key": "3ef9c90b-c4d1-4279-bb89-47a15434555f", + "label": "label-2932", + "height": 438, + "background": "blue" + }, + { + "key": "1f5f4c13-9f19-416f-be16-412acb371b30", + "label": "label-2933", + "height": 137, + "background": "green" + }, + { + "key": "ecf106c6-80bc-477f-847b-7b2ecdbd1bea", + "label": "label-2934", + "height": 322, + "background": "yellow" + }, + { + "key": "18ac88c6-de68-45ea-ac83-5524b7065eef", + "label": "label-2935", + "height": 294, + "background": "red" + }, + { + "key": "cf68dbdd-2f28-4950-8c14-8db2fce6496c", + "label": "label-2936", + "height": 32, + "background": "blue" + }, + { + "key": "1f479c61-20ca-4fab-a2ce-fe6ab1c120e5", + "label": "label-2937", + "height": 160, + "background": "green" + }, + { + "key": "f31ac9f1-a368-49f8-8f87-7a25659dc188", + "label": "label-2938", + "height": 468, + "background": "red" + }, + { + "key": "178b0cad-834c-40f9-bd24-758f86c0c3e7", + "label": "label-2939", + "height": 265, + "background": "green" + }, + { + "key": "7b2059f6-68f0-449e-a09b-933bcc402e62", + "label": "label-2940", + "height": 42, + "background": "red" + }, + { + "key": "dd09c0ba-c9d0-40ad-bd52-64f932e25c04", + "label": "label-2941", + "height": 150, + "background": "red" + }, + { + "key": "59b257c0-a8c1-483c-8b89-0b520cefd64e", + "label": "label-2942", + "height": 370, + "background": "green" + }, + { + "key": "47d7a7c2-299d-4d0b-b2b4-bf0641b1bc4f", + "label": "label-2943", + "height": 47, + "background": "yellow" + }, + { + "key": "999e4051-90e5-4174-ae89-a3c6b7a716cb", + "label": "label-2944", + "height": 441, + "background": "red" + }, + { + "key": "7b868bb3-6d1a-4e00-b34d-c36bbe5c841f", + "label": "label-2945", + "height": 399, + "background": "blue" + }, + { + "key": "13db22ba-7861-49c0-8095-f1ada915bc50", + "label": "label-2946", + "height": 245, + "background": "blue" + }, + { + "key": "253c62a0-6013-4b34-a6f5-f429fada1b52", + "label": "label-2947", + "height": 442, + "background": "blue" + }, + { + "key": "9269bdec-3164-43f6-91ac-2ddbfcb768de", + "label": "label-2948", + "height": 272, + "background": "red" + }, + { + "key": "149b25f2-4bde-4247-8e5e-51bde91c853b", + "label": "label-2949", + "height": 33, + "background": "green" + }, + { + "key": "d57093c3-0142-4b53-b242-47862ee367d4", + "label": "label-2950", + "height": 426, + "background": "yellow" + }, + { + "key": "203695e2-50eb-4b9a-95a7-af3a09707d0b", + "label": "label-2951", + "height": 133, + "background": "yellow" + }, + { + "key": "e39fb298-d667-45a5-9db5-85ed1bed0fe3", + "label": "label-2952", + "height": 364, + "background": "green" + }, + { + "key": "39326a23-741c-4052-b26b-c668081ea850", + "label": "label-2953", + "height": 472, + "background": "blue" + }, + { + "key": "0f34b970-a31d-47f3-b6bc-7471c6e4c5c0", + "label": "label-2954", + "height": 465, + "background": "yellow" + }, + { + "key": "b2145850-7731-4496-bb42-0141787a0d14", + "label": "label-2955", + "height": 428, + "background": "blue" + }, + { + "key": "421d2c6f-d11b-4e40-81f7-8728f89769de", + "label": "label-2956", + "height": 215, + "background": "red" + }, + { + "key": "4b4b6ba2-110e-488b-a575-df93d8a92288", + "label": "label-2957", + "height": 284, + "background": "blue" + }, + { + "key": "eb9de83e-e6df-45d1-9b5e-9d0ed6d258da", + "label": "label-2958", + "height": 453, + "background": "yellow" + }, + { + "key": "dab57bb2-8827-42fe-841c-edde04bdb45d", + "label": "label-2959", + "height": 205, + "background": "yellow" + }, + { + "key": "0a44816e-f0a6-4e77-8c5b-bffc718b215d", + "label": "label-2960", + "height": 296, + "background": "yellow" + }, + { + "key": "fb81190a-9719-4a9d-a958-aee7a1950328", + "label": "label-2961", + "height": 209, + "background": "yellow" + }, + { + "key": "ce68b553-10e8-4025-873a-53b1c794befe", + "label": "label-2962", + "height": 336, + "background": "blue" + }, + { + "key": "6abcfd80-3a31-483c-a28f-67f4a7ba0706", + "label": "label-2963", + "height": 238, + "background": "blue" + }, + { + "key": "2872c868-d919-4c95-a9b7-d9d8fcf09abf", + "label": "label-2964", + "height": 328, + "background": "blue" + }, + { + "key": "f76ca27e-e96c-4ca6-866c-1ecc5efbae38", + "label": "label-2965", + "height": 425, + "background": "red" + }, + { + "key": "f9352431-1463-42e0-95aa-786a5a5b2298", + "label": "label-2966", + "height": 235, + "background": "red" + }, + { + "key": "c1bc1acc-0bf8-4efd-83de-d9a49047c992", + "label": "label-2967", + "height": 455, + "background": "yellow" + }, + { + "key": "e88f816c-4bda-4f68-8de8-108d8b660416", + "label": "label-2968", + "height": 224, + "background": "green" + }, + { + "key": "eb840bf1-0340-468c-8efc-9b1ba21fe74b", + "label": "label-2969", + "height": 154, + "background": "red" + }, + { + "key": "a90f8e47-11f1-403a-b7de-f953af3a0330", + "label": "label-2970", + "height": 116, + "background": "blue" + }, + { + "key": "5d78c586-d613-4df2-9d32-657b847c8888", + "label": "label-2971", + "height": 421, + "background": "green" + }, + { + "key": "ea8a2d34-e9c7-4e7d-912f-8950ee5eef29", + "label": "label-2972", + "height": 210, + "background": "yellow" + }, + { + "key": "90ce1329-7c33-4aa9-9946-db5eb1dca6d4", + "label": "label-2973", + "height": 340, + "background": "blue" + }, + { + "key": "fd264658-c030-4e80-abd0-5c41a7e0afde", + "label": "label-2974", + "height": 384, + "background": "red" + }, + { + "key": "09da0120-d505-4561-9f4c-d110209cb89e", + "label": "label-2975", + "height": 381, + "background": "red" + }, + { + "key": "edff0e43-9330-41f7-92a8-974cb3e0f3b7", + "label": "label-2976", + "height": 164, + "background": "red" + }, + { + "key": "8babd3b7-6060-449a-b4b5-2584101cd919", + "label": "label-2977", + "height": 353, + "background": "green" + }, + { + "key": "0b866076-2652-4fd3-b102-fb715d2289ca", + "label": "label-2978", + "height": 421, + "background": "red" + }, + { + "key": "c5faff27-5d18-4e1f-bb85-ea05814f3b02", + "label": "label-2979", + "height": 170, + "background": "green" + }, + { + "key": "5b18e44f-3845-4eaa-8718-04a90f2009eb", + "label": "label-2980", + "height": 32, + "background": "green" + }, + { + "key": "ae2f46ec-027c-4a92-9d5d-381cdb245c75", + "label": "label-2981", + "height": 470, + "background": "green" + }, + { + "key": "b18c1c03-07be-4fa1-8c6b-d74f2de12e27", + "label": "label-2982", + "height": 458, + "background": "red" + }, + { + "key": "3ceda287-7bdd-493a-8b1c-8dc24d4e6147", + "label": "label-2983", + "height": 270, + "background": "yellow" + }, + { + "key": "60d4d32f-aa91-448d-9a8e-6a60f43e5756", + "label": "label-2984", + "height": 296, + "background": "green" + }, + { + "key": "df280f94-044b-4a60-acaa-3ef6a18aaef2", + "label": "label-2985", + "height": 298, + "background": "yellow" + }, + { + "key": "72ca13fb-e728-4b46-a7aa-8ba5e710631a", + "label": "label-2986", + "height": 179, + "background": "blue" + }, + { + "key": "1ce8ba3e-fc9e-48a0-8b8e-188f8dbef288", + "label": "label-2987", + "height": 52, + "background": "blue" + }, + { + "key": "0aa526c2-821b-499f-b503-1154232edfae", + "label": "label-2988", + "height": 510, + "background": "blue" + }, + { + "key": "6bcedb98-8c13-4fa6-a90d-bd9e498bfcf8", + "label": "label-2989", + "height": 215, + "background": "blue" + }, + { + "key": "ce608bb9-c15d-4340-a622-1522f79fbd07", + "label": "label-2990", + "height": 201, + "background": "yellow" + }, + { + "key": "edc64bd0-2c18-4179-91e5-683f40272856", + "label": "label-2991", + "height": 395, + "background": "yellow" + }, + { + "key": "7392ac09-2bdf-4947-9bf9-0c2cdab27ef8", + "label": "label-2992", + "height": 532, + "background": "red" + }, + { + "key": "dd352bfe-3826-4f15-b30f-fdb0d533136d", + "label": "label-2993", + "height": 222, + "background": "green" + }, + { + "key": "42dcbcd5-449c-4b0f-baa2-20b2230d7c27", + "label": "label-2994", + "height": 191, + "background": "red" + }, + { + "key": "163498c4-fc0a-4645-9c07-343bf2cf5a9e", + "label": "label-2995", + "height": 301, + "background": "blue" + }, + { + "key": "74029e6e-e182-4daf-9b0e-a5cbf5983331", + "label": "label-2996", + "height": 517, + "background": "red" + }, + { + "key": "c7c89a11-a851-410b-96cd-7fbbfa3215fd", + "label": "label-2997", + "height": 383, + "background": "green" + }, + { + "key": "8811745c-13cb-4927-8081-91db0a5b65fa", + "label": "label-2998", + "height": 494, + "background": "green" + }, + { + "key": "62e9cec7-a466-453b-86c2-c27f71dc3a3c", + "label": "label-2999", + "height": 452, + "background": "red" + }, + { + "key": "6c5cf218-ead6-4b5d-a497-5bafe543d5d6", + "label": "label-3000", + "height": 429, + "background": "green" + }, + { + "key": "8d3068cd-04d6-4e28-acc2-2994cc02966f", + "label": "label-3001", + "height": 493, + "background": "yellow" + }, + { + "key": "5db10665-dc4d-4e2d-80cf-a1358e5cef03", + "label": "label-3002", + "height": 355, + "background": "yellow" + }, + { + "key": "9bce728d-dbbf-4c35-9b45-e22486189fe7", + "label": "label-3003", + "height": 492, + "background": "red" + }, + { + "key": "729a0d56-c339-4bde-b58b-e00167603720", + "label": "label-3004", + "height": 332, + "background": "blue" + }, + { + "key": "242e15ed-a20b-4250-ad25-e7b8bbb7552d", + "label": "label-3005", + "height": 379, + "background": "green" + }, + { + "key": "64bd0dcf-ef92-4ada-91ff-ec213e251e4c", + "label": "label-3006", + "height": 183, + "background": "red" + }, + { + "key": "43eff57d-a931-424c-af26-ae87e72cb8c8", + "label": "label-3007", + "height": 293, + "background": "blue" + }, + { + "key": "1bf24f8b-3dcb-4ff3-8bcd-288ec542298f", + "label": "label-3008", + "height": 370, + "background": "green" + }, + { + "key": "8456dbe3-2af9-4359-a87d-4acb1cf27ece", + "label": "label-3009", + "height": 429, + "background": "red" + }, + { + "key": "0d3da78d-636f-439d-9cff-47022d50a8ab", + "label": "label-3010", + "height": 452, + "background": "green" + }, + { + "key": "5fe79ab0-3af9-46d4-b213-ca871ce39e0b", + "label": "label-3011", + "height": 180, + "background": "red" + }, + { + "key": "11ef300b-5f7b-43a2-acbb-b1c3b2c905a4", + "label": "label-3012", + "height": 172, + "background": "blue" + }, + { + "key": "7a04c2af-c036-40b4-ae3a-111c64c48f9d", + "label": "label-3013", + "height": 336, + "background": "blue" + }, + { + "key": "d630a8bb-9ef7-4173-9654-a29dd8e5cd4a", + "label": "label-3014", + "height": 471, + "background": "blue" + }, + { + "key": "0c47add0-68fc-443d-9a62-29914e2e99eb", + "label": "label-3015", + "height": 132, + "background": "blue" + }, + { + "key": "65c7ef08-9ffc-4053-bf04-43660c7934f6", + "label": "label-3016", + "height": 349, + "background": "yellow" + }, + { + "key": "9694ba62-de74-40d9-9706-0391c234d2ce", + "label": "label-3017", + "height": 451, + "background": "green" + }, + { + "key": "1fb1f698-762e-4f96-8f78-097d98aa0e22", + "label": "label-3018", + "height": 250, + "background": "red" + }, + { + "key": "43140ac7-6ebd-40f9-8cc1-e31bce3b40e6", + "label": "label-3019", + "height": 304, + "background": "red" + }, + { + "key": "424f9d67-9f65-4ad6-8db1-7d3448870572", + "label": "label-3020", + "height": 465, + "background": "blue" + }, + { + "key": "751f462c-8771-4276-b08d-4fbcf86f509d", + "label": "label-3021", + "height": 433, + "background": "yellow" + }, + { + "key": "fc7ca61f-e580-4ee0-8db8-32d2ff5d4bb9", + "label": "label-3022", + "height": 105, + "background": "yellow" + }, + { + "key": "a4ddbc10-4d24-4ebd-9c14-ef9883383b6a", + "label": "label-3023", + "height": 108, + "background": "yellow" + }, + { + "key": "658701ee-2cd2-4e82-aff0-b5d5085cfb8c", + "label": "label-3024", + "height": 305, + "background": "green" + }, + { + "key": "7ad51e92-7032-4564-af10-0097f77d8df1", + "label": "label-3025", + "height": 340, + "background": "blue" + }, + { + "key": "00c43698-5f05-4bd1-9059-e0d4b2a5a454", + "label": "label-3026", + "height": 257, + "background": "red" + }, + { + "key": "60c84048-2c29-47d4-b474-53da8d734571", + "label": "label-3027", + "height": 466, + "background": "yellow" + }, + { + "key": "f52bf8e9-7e80-4523-afa1-839f2333a0e9", + "label": "label-3028", + "height": 265, + "background": "blue" + }, + { + "key": "465c33d9-59e0-44e0-8ef7-ddc5de67ca8a", + "label": "label-3029", + "height": 107, + "background": "red" + }, + { + "key": "da69f8f3-6500-4bab-a2ac-1ddbfcff2628", + "label": "label-3030", + "height": 456, + "background": "blue" + }, + { + "key": "c011d779-9f1d-492a-b212-51d5729d6f6d", + "label": "label-3031", + "height": 510, + "background": "red" + }, + { + "key": "84c6609a-00a2-44cd-a583-6e5c1a77e797", + "label": "label-3032", + "height": 458, + "background": "red" + }, + { + "key": "7fce3c7c-9385-4944-9eb6-020796a0138c", + "label": "label-3033", + "height": 171, + "background": "red" + }, + { + "key": "18e20273-8324-4e3e-af38-7e46ebfdc543", + "label": "label-3034", + "height": 453, + "background": "yellow" + }, + { + "key": "926e5364-4ec5-498b-9381-88f2e9ece2ee", + "label": "label-3035", + "height": 328, + "background": "green" + }, + { + "key": "5a4240d0-1b09-4110-93fb-e2643fd1a41b", + "label": "label-3036", + "height": 438, + "background": "blue" + }, + { + "key": "bf647ebf-f41f-4729-8d38-7c857e9347b9", + "label": "label-3037", + "height": 466, + "background": "red" + }, + { + "key": "356d1510-f42f-47e1-8d96-562fbf55b07a", + "label": "label-3038", + "height": 514, + "background": "yellow" + }, + { + "key": "ced47f75-179a-45e7-bd1f-727806b5dfb3", + "label": "label-3039", + "height": 474, + "background": "yellow" + }, + { + "key": "8f070f15-744f-4e1f-8bea-386784bf55c4", + "label": "label-3040", + "height": 530, + "background": "yellow" + }, + { + "key": "b5272bf0-3d57-4383-8596-be3c6d408718", + "label": "label-3041", + "height": 131, + "background": "green" + }, + { + "key": "6f7f9d46-bda4-40e2-9ac2-e81cf89f363e", + "label": "label-3042", + "height": 106, + "background": "blue" + }, + { + "key": "76013e59-980a-4a7f-b23e-2770294c2acc", + "label": "label-3043", + "height": 77, + "background": "yellow" + }, + { + "key": "a1eed7c4-3d2a-4ef0-a08a-8799e0a2fed6", + "label": "label-3044", + "height": 522, + "background": "yellow" + }, + { + "key": "db5f8b28-6d59-407c-94ee-c1652b2dd45f", + "label": "label-3045", + "height": 336, + "background": "red" + }, + { + "key": "8886c20f-dbc3-4f92-8fef-078864c71b52", + "label": "label-3046", + "height": 288, + "background": "red" + }, + { + "key": "521ec5c4-441c-4d12-9dd2-369bffdb23bc", + "label": "label-3047", + "height": 349, + "background": "red" + }, + { + "key": "fc8c680a-d20c-4244-9018-d453dcb48c2d", + "label": "label-3048", + "height": 245, + "background": "green" + }, + { + "key": "d5a9117d-9d33-4993-8a89-80c855822e8a", + "label": "label-3049", + "height": 248, + "background": "yellow" + }, + { + "key": "2d1d2357-0aa5-4830-a75e-f7ece16c9c78", + "label": "label-3050", + "height": 282, + "background": "yellow" + }, + { + "key": "72e41a70-cd86-44a1-9384-1c053c7e6d80", + "label": "label-3051", + "height": 163, + "background": "yellow" + }, + { + "key": "f3b879b0-19ee-41c0-b990-fb14aee72ece", + "label": "label-3052", + "height": 365, + "background": "blue" + }, + { + "key": "52827b0d-afca-4bff-9d60-28cb1e742eec", + "label": "label-3053", + "height": 337, + "background": "green" + }, + { + "key": "d287e08d-5238-4f46-899f-3654ac2ec943", + "label": "label-3054", + "height": 223, + "background": "yellow" + }, + { + "key": "11235a62-cff1-4135-9678-510d5e22b990", + "label": "label-3055", + "height": 115, + "background": "blue" + }, + { + "key": "fd771419-5fa7-4019-829f-4b3c9c7d9596", + "label": "label-3056", + "height": 217, + "background": "green" + }, + { + "key": "486bb298-fc5f-4294-9e9e-10b7fb3e5aa2", + "label": "label-3057", + "height": 64, + "background": "green" + }, + { + "key": "b0fa8454-c860-4fb3-bfc9-f5ee83e7ef7e", + "label": "label-3058", + "height": 218, + "background": "yellow" + }, + { + "key": "ca98aa6a-e485-4f38-8577-c5ce4376cf8b", + "label": "label-3059", + "height": 469, + "background": "blue" + }, + { + "key": "76ce49f2-cb5a-44f5-a096-9378f88d5ede", + "label": "label-3060", + "height": 209, + "background": "red" + }, + { + "key": "42ace908-8be9-47ee-97d8-3aeb519c21fb", + "label": "label-3061", + "height": 397, + "background": "yellow" + }, + { + "key": "03139f57-ac85-4141-ba65-787a6e9350dc", + "label": "label-3062", + "height": 126, + "background": "blue" + }, + { + "key": "11b719d3-f3ff-4f83-bb63-6db6ac4bc1f2", + "label": "label-3063", + "height": 247, + "background": "green" + }, + { + "key": "ee51bd98-6797-49a9-847a-7bfb7a63e6d5", + "label": "label-3064", + "height": 91, + "background": "yellow" + }, + { + "key": "16968a8b-0ed0-456a-99f4-6e033ce118b6", + "label": "label-3065", + "height": 232, + "background": "blue" + }, + { + "key": "b602fee9-5b68-4cb7-8ae3-7e8d289d8418", + "label": "label-3066", + "height": 188, + "background": "blue" + }, + { + "key": "181df5bd-bce2-4829-bec0-e52be8090ff3", + "label": "label-3067", + "height": 460, + "background": "red" + }, + { + "key": "47318f2c-0177-4d1c-afb5-3383e8468642", + "label": "label-3068", + "height": 82, + "background": "blue" + }, + { + "key": "6fca4210-0e9b-4bad-9eee-9b83c9eafcc3", + "label": "label-3069", + "height": 145, + "background": "blue" + }, + { + "key": "865e349e-1cf6-49d9-a709-09c20270ba2d", + "label": "label-3070", + "height": 416, + "background": "green" + }, + { + "key": "b50b3d24-97ba-4918-92eb-75963c953009", + "label": "label-3071", + "height": 390, + "background": "blue" + }, + { + "key": "5f9d0243-e84f-45d4-be2e-fa5537d60779", + "label": "label-3072", + "height": 155, + "background": "blue" + }, + { + "key": "b38b314b-d752-4016-8ab5-0797dc85829c", + "label": "label-3073", + "height": 480, + "background": "green" + }, + { + "key": "d7e84318-8a52-425b-b9c7-ef96c3bb6478", + "label": "label-3074", + "height": 384, + "background": "red" + }, + { + "key": "d3944797-8ed2-4cfe-b85e-b35a8024f6b0", + "label": "label-3075", + "height": 186, + "background": "red" + }, + { + "key": "ff710bda-5020-43ec-aef8-57fc981f0e35", + "label": "label-3076", + "height": 361, + "background": "yellow" + }, + { + "key": "373792c2-a67e-41a7-806c-c06232718e5f", + "label": "label-3077", + "height": 166, + "background": "red" + }, + { + "key": "64ac34c6-d42f-4193-a28a-a1ef445ce546", + "label": "label-3078", + "height": 193, + "background": "green" + }, + { + "key": "348a0b49-2949-4299-8c27-e07c5b042cae", + "label": "label-3079", + "height": 434, + "background": "blue" + }, + { + "key": "0628393a-d4c4-4fe8-a631-0d488806219c", + "label": "label-3080", + "height": 197, + "background": "red" + }, + { + "key": "cf7cf887-d69a-40ad-a66a-ff073d086df1", + "label": "label-3081", + "height": 357, + "background": "red" + }, + { + "key": "6c745eba-09c0-4ea3-bf41-c2049c7c4ed3", + "label": "label-3082", + "height": 352, + "background": "green" + }, + { + "key": "57cadd91-8406-40b3-a9c4-5736e86d24d1", + "label": "label-3083", + "height": 462, + "background": "yellow" + }, + { + "key": "4b3bc53f-5dc2-46e7-887b-251e86f580d1", + "label": "label-3084", + "height": 454, + "background": "red" + }, + { + "key": "ec477269-ce05-4554-a3f8-fb1b3f8f5c1d", + "label": "label-3085", + "height": 206, + "background": "green" + }, + { + "key": "70672fee-f51d-4131-bf6e-00d6d7781fa3", + "label": "label-3086", + "height": 162, + "background": "green" + }, + { + "key": "88ae9e02-e874-4e5c-867a-048348bc7465", + "label": "label-3087", + "height": 332, + "background": "red" + }, + { + "key": "55382b01-fbe6-4f2e-8eab-666d0a9935e3", + "label": "label-3088", + "height": 136, + "background": "red" + }, + { + "key": "e1a2bde4-6af0-4f4a-9bd2-419daeabcf48", + "label": "label-3089", + "height": 118, + "background": "green" + }, + { + "key": "d480acff-8775-463b-af64-0f2a979ea8df", + "label": "label-3090", + "height": 45, + "background": "yellow" + }, + { + "key": "9b7e7d5a-0672-456e-943d-662748a44467", + "label": "label-3091", + "height": 153, + "background": "red" + }, + { + "key": "eede428a-ecca-47e2-8f5d-15b494100563", + "label": "label-3092", + "height": 326, + "background": "green" + }, + { + "key": "00353eea-0d68-4c0e-9859-9ab7f58700c2", + "label": "label-3093", + "height": 378, + "background": "yellow" + }, + { + "key": "8f421fa0-7919-4a05-9369-02cacf1febbd", + "label": "label-3094", + "height": 301, + "background": "green" + }, + { + "key": "f44156bb-aae1-4ae6-ad75-b7a03e52770a", + "label": "label-3095", + "height": 192, + "background": "yellow" + }, + { + "key": "93fd917c-89d9-434f-8b93-dfbab731550f", + "label": "label-3096", + "height": 268, + "background": "yellow" + }, + { + "key": "2c540354-bcd0-49c6-addc-0e0bb3e8866e", + "label": "label-3097", + "height": 96, + "background": "red" + }, + { + "key": "b4115f0a-e9d9-43c2-aa19-2d32cf9d3d7c", + "label": "label-3098", + "height": 313, + "background": "red" + }, + { + "key": "0b4e0f6d-ebbd-4c95-9530-dd561c626bf2", + "label": "label-3099", + "height": 128, + "background": "green" + }, + { + "key": "8dc11aa3-b102-419d-a8e6-d52cb269d996", + "label": "label-3100", + "height": 72, + "background": "blue" + }, + { + "key": "2ac763f7-af98-4d01-8fe3-5cb6957cc185", + "label": "label-3101", + "height": 523, + "background": "green" + }, + { + "key": "2ca798ef-e10f-44d3-9469-5680c2a330b8", + "label": "label-3102", + "height": 54, + "background": "yellow" + }, + { + "key": "1c07bf7a-7a53-4b64-b021-7b2255477775", + "label": "label-3103", + "height": 83, + "background": "yellow" + }, + { + "key": "c2e7fa5f-ca81-40fb-8115-f15a2e28ad6c", + "label": "label-3104", + "height": 148, + "background": "red" + }, + { + "key": "c1704989-6e3d-4aac-983c-75fdfebdd4b3", + "label": "label-3105", + "height": 301, + "background": "yellow" + }, + { + "key": "3ac389bf-8626-401c-ab8f-3c1bd959be3e", + "label": "label-3106", + "height": 358, + "background": "green" + }, + { + "key": "85313c96-a452-445f-88c7-f157846fc018", + "label": "label-3107", + "height": 138, + "background": "green" + }, + { + "key": "8845efe3-b62e-47cf-90b1-627b36f4929d", + "label": "label-3108", + "height": 60, + "background": "blue" + }, + { + "key": "6acc2817-b0b9-403a-b00d-66125afe99b9", + "label": "label-3109", + "height": 212, + "background": "blue" + }, + { + "key": "405c76e8-e59e-40ca-a5a8-e74b7cc9ea0c", + "label": "label-3110", + "height": 75, + "background": "yellow" + }, + { + "key": "c1817875-3a0e-44ed-9530-43da65df41a6", + "label": "label-3111", + "height": 338, + "background": "red" + }, + { + "key": "2569be77-9561-42a2-8abc-50b57727df07", + "label": "label-3112", + "height": 520, + "background": "blue" + }, + { + "key": "245237d8-05a6-4eb0-b9bd-dbee4af54aa8", + "label": "label-3113", + "height": 70, + "background": "blue" + }, + { + "key": "e1f0be4b-9b48-437d-97c0-f87a801a1bdb", + "label": "label-3114", + "height": 388, + "background": "green" + }, + { + "key": "181ef6de-71a3-48fe-93b7-d7d9b06e6d7a", + "label": "label-3115", + "height": 293, + "background": "green" + }, + { + "key": "9a8d53de-ca77-496e-ad3f-deb9ed728947", + "label": "label-3116", + "height": 476, + "background": "red" + }, + { + "key": "22aa6dff-5a09-4ae1-a8e0-a7ac2503dd60", + "label": "label-3117", + "height": 65, + "background": "green" + }, + { + "key": "79a563fc-f06f-4808-a170-502297a7dc6a", + "label": "label-3118", + "height": 145, + "background": "blue" + }, + { + "key": "75c88b46-61e4-487c-a4d2-99eba972dea8", + "label": "label-3119", + "height": 177, + "background": "blue" + }, + { + "key": "11e685cc-a06d-4c26-b530-cce8c302bd2e", + "label": "label-3120", + "height": 448, + "background": "green" + }, + { + "key": "a3f56a3a-019c-4aa9-8c06-dea987085d9e", + "label": "label-3121", + "height": 201, + "background": "yellow" + }, + { + "key": "2267ebd7-50f7-463d-ba41-87c2ed802bfc", + "label": "label-3122", + "height": 484, + "background": "red" + }, + { + "key": "8bfe1e65-ce2d-46b6-8fe1-1f9a40de080e", + "label": "label-3123", + "height": 323, + "background": "red" + }, + { + "key": "455db1a7-a9d7-4098-99a5-a7cd5334ec43", + "label": "label-3124", + "height": 52, + "background": "red" + }, + { + "key": "9a762ef5-af1b-4ada-a594-087948d6dd32", + "label": "label-3125", + "height": 114, + "background": "green" + }, + { + "key": "d81341f2-d4ec-4880-af96-b1b7fac0c38f", + "label": "label-3126", + "height": 38, + "background": "green" + }, + { + "key": "853b0dd4-f58e-4647-8354-eb3e8c110b64", + "label": "label-3127", + "height": 436, + "background": "red" + }, + { + "key": "22c4152e-13f0-4d0b-b6ed-4f753d91df75", + "label": "label-3128", + "height": 62, + "background": "red" + }, + { + "key": "cf42ec14-4bc3-488a-bd1a-8ec4a46c7c22", + "label": "label-3129", + "height": 144, + "background": "yellow" + }, + { + "key": "75ee3b40-82b0-4834-a6da-a49a63981f43", + "label": "label-3130", + "height": 393, + "background": "green" + }, + { + "key": "fa9bb290-513a-4a03-ab16-630dc257f347", + "label": "label-3131", + "height": 175, + "background": "red" + }, + { + "key": "4b8d7dc0-f7e6-4d48-9629-bf489e263fd5", + "label": "label-3132", + "height": 402, + "background": "yellow" + }, + { + "key": "098176db-a294-4009-a27b-98535b824a71", + "label": "label-3133", + "height": 402, + "background": "yellow" + }, + { + "key": "05f9afab-0648-4ba9-9189-3c361669da7b", + "label": "label-3134", + "height": 133, + "background": "green" + }, + { + "key": "4142e3be-0a27-4eb1-a22c-765243047c99", + "label": "label-3135", + "height": 169, + "background": "yellow" + }, + { + "key": "2e7857cc-7818-4334-b168-22d9019028b6", + "label": "label-3136", + "height": 258, + "background": "blue" + }, + { + "key": "49ddc052-0e55-470d-a175-8a7a4af24941", + "label": "label-3137", + "height": 300, + "background": "green" + }, + { + "key": "cda7c764-4399-4515-9189-fc00b9c9f19c", + "label": "label-3138", + "height": 139, + "background": "yellow" + }, + { + "key": "83edb55e-b7c9-4b37-ac54-6aa1efe23b6e", + "label": "label-3139", + "height": 413, + "background": "green" + }, + { + "key": "dae548b5-d9ae-465a-8ae1-87a8a0671f32", + "label": "label-3140", + "height": 68, + "background": "green" + }, + { + "key": "7abe9e3b-fd96-4bb4-8692-2ed0b353c542", + "label": "label-3141", + "height": 405, + "background": "blue" + }, + { + "key": "2364c3c7-291b-473b-8841-269e3e0db05f", + "label": "label-3142", + "height": 216, + "background": "yellow" + }, + { + "key": "c0eef2ce-5a03-45ff-a4a7-06742d927d44", + "label": "label-3143", + "height": 472, + "background": "red" + }, + { + "key": "d21d8ce5-b265-433e-bb62-06a520baeaa0", + "label": "label-3144", + "height": 478, + "background": "red" + }, + { + "key": "f8587671-d71b-4a91-9f39-44c5e9863ee3", + "label": "label-3145", + "height": 177, + "background": "red" + }, + { + "key": "2f539d44-4dd0-43aa-b6d0-591b930a105f", + "label": "label-3146", + "height": 410, + "background": "red" + }, + { + "key": "932a1c35-0d78-433d-9a7e-2adac2708d1f", + "label": "label-3147", + "height": 495, + "background": "green" + }, + { + "key": "5308bda4-667b-4de4-98f0-37d3841fe334", + "label": "label-3148", + "height": 398, + "background": "yellow" + }, + { + "key": "303493a9-22e3-4edf-8aa3-27f8191d1cdb", + "label": "label-3149", + "height": 496, + "background": "yellow" + }, + { + "key": "6ab746a3-31ab-47db-af51-85ee848ded82", + "label": "label-3150", + "height": 419, + "background": "green" + }, + { + "key": "536b1508-8e2c-4989-8167-fdeb630b7633", + "label": "label-3151", + "height": 449, + "background": "blue" + }, + { + "key": "a340342a-d867-49c2-9adc-0665fb587fab", + "label": "label-3152", + "height": 173, + "background": "red" + }, + { + "key": "a28ab6c3-8752-476a-bf74-2be95828f144", + "label": "label-3153", + "height": 332, + "background": "yellow" + }, + { + "key": "f4b419b7-94ab-4490-a589-534662c8cdb0", + "label": "label-3154", + "height": 66, + "background": "blue" + }, + { + "key": "c38809e6-7abb-435f-a19f-114a87ec6cee", + "label": "label-3155", + "height": 514, + "background": "green" + }, + { + "key": "c76acfff-8925-47c8-8368-b11f9cd329f9", + "label": "label-3156", + "height": 462, + "background": "yellow" + }, + { + "key": "9cdfd38b-2bba-4a79-b655-95f18a2a3b2f", + "label": "label-3157", + "height": 360, + "background": "yellow" + }, + { + "key": "19ebeed2-4a10-41f1-9e32-80a1316c9e3b", + "label": "label-3158", + "height": 221, + "background": "red" + }, + { + "key": "025e43e0-3c05-4fa2-b6f9-e8318cb37a8a", + "label": "label-3159", + "height": 214, + "background": "blue" + }, + { + "key": "663c9a19-4e31-41cc-a771-a63745b79130", + "label": "label-3160", + "height": 375, + "background": "red" + }, + { + "key": "8ea62009-00d4-43bc-a622-00c54794de76", + "label": "label-3161", + "height": 528, + "background": "green" + }, + { + "key": "03e80fe1-37ea-409f-bbbd-835f587c44a4", + "label": "label-3162", + "height": 280, + "background": "red" + }, + { + "key": "57d51f02-e67c-40d8-b30b-5450fa463857", + "label": "label-3163", + "height": 476, + "background": "green" + }, + { + "key": "c9e46aa0-b497-43fc-8acc-74fb91c384f3", + "label": "label-3164", + "height": 493, + "background": "blue" + }, + { + "key": "5a26b204-f0bb-4f31-bee8-a79ef0165b9c", + "label": "label-3165", + "height": 52, + "background": "blue" + }, + { + "key": "ced72d76-1a80-4727-8009-76d8f46e0ca0", + "label": "label-3166", + "height": 495, + "background": "red" + }, + { + "key": "92e94cdb-cb7c-4906-b81f-57183a07e2b6", + "label": "label-3167", + "height": 339, + "background": "yellow" + }, + { + "key": "feba14cd-0c2b-4566-9d12-1a4ebf655a0f", + "label": "label-3168", + "height": 464, + "background": "green" + }, + { + "key": "d24cf4db-0b2b-48bf-97dd-1b52c23d18be", + "label": "label-3169", + "height": 127, + "background": "green" + }, + { + "key": "86450688-96e1-4ed6-9af5-bcf0ef88afad", + "label": "label-3170", + "height": 496, + "background": "blue" + }, + { + "key": "896524cf-c773-485f-93f9-511e0347a1b1", + "label": "label-3171", + "height": 249, + "background": "red" + }, + { + "key": "9c15bbf8-ec06-4f91-8aec-740d88097c6f", + "label": "label-3172", + "height": 447, + "background": "green" + }, + { + "key": "b61cf1ef-2213-4509-922d-b2ed7296dd69", + "label": "label-3173", + "height": 90, + "background": "green" + }, + { + "key": "d18c6ab3-d034-408a-9f2d-3bed4730d3fb", + "label": "label-3174", + "height": 141, + "background": "blue" + }, + { + "key": "fb5087fc-a60e-4fec-8190-44a082748ffb", + "label": "label-3175", + "height": 157, + "background": "yellow" + }, + { + "key": "dfd7be90-9376-4d60-a533-38ca5226cafa", + "label": "label-3176", + "height": 527, + "background": "red" + }, + { + "key": "52adb74c-3463-4160-968f-a733b629ff3a", + "label": "label-3177", + "height": 137, + "background": "blue" + }, + { + "key": "e35633a7-5709-4859-8089-745bc19380bd", + "label": "label-3178", + "height": 96, + "background": "blue" + }, + { + "key": "79a3f207-6426-48eb-8adb-3e9caab16948", + "label": "label-3179", + "height": 38, + "background": "yellow" + }, + { + "key": "34e763a1-c3f4-423e-822f-98b713fb73cc", + "label": "label-3180", + "height": 346, + "background": "red" + }, + { + "key": "04082bc5-f0f7-43e1-859b-f801d4c28ba9", + "label": "label-3181", + "height": 495, + "background": "blue" + }, + { + "key": "875f77b3-5daa-4a5b-87bc-74ea306d945a", + "label": "label-3182", + "height": 522, + "background": "yellow" + }, + { + "key": "0482d4db-6004-4948-8cca-a64c8857e9c5", + "label": "label-3183", + "height": 75, + "background": "yellow" + }, + { + "key": "4e5f367b-473b-4c4a-b848-60fcf8aa75e1", + "label": "label-3184", + "height": 60, + "background": "yellow" + }, + { + "key": "84a15924-66eb-486e-8aba-64776157b4be", + "label": "label-3185", + "height": 362, + "background": "red" + }, + { + "key": "811c35a7-f982-4b4d-bd76-884464301388", + "label": "label-3186", + "height": 36, + "background": "blue" + }, + { + "key": "c631b65a-9309-46cf-bb5d-80b19a1e9f7f", + "label": "label-3187", + "height": 310, + "background": "yellow" + }, + { + "key": "2cf3acfd-c3cf-43d0-8629-bd9bbe472018", + "label": "label-3188", + "height": 191, + "background": "red" + }, + { + "key": "cf33a9ac-b0c7-4266-b410-38d45b87b988", + "label": "label-3189", + "height": 527, + "background": "blue" + }, + { + "key": "753d9292-69ac-409e-b8c1-884940812b09", + "label": "label-3190", + "height": 439, + "background": "red" + }, + { + "key": "42bd0804-5a77-48a3-bd29-21a8d52447f9", + "label": "label-3191", + "height": 219, + "background": "red" + }, + { + "key": "9267d524-4c67-41a0-a87f-74abc0c3b547", + "label": "label-3192", + "height": 298, + "background": "blue" + }, + { + "key": "e8e8eb23-4587-435d-a3a3-58ce8ade8c5c", + "label": "label-3193", + "height": 144, + "background": "blue" + }, + { + "key": "6b433125-68d6-48a7-b24d-63e342d8f9a5", + "label": "label-3194", + "height": 363, + "background": "yellow" + }, + { + "key": "484ed40f-f32e-4f1d-9ef1-4245e2f89602", + "label": "label-3195", + "height": 326, + "background": "red" + }, + { + "key": "bf59e366-2c0a-4740-9e05-a8e4d9e095b9", + "label": "label-3196", + "height": 488, + "background": "red" + }, + { + "key": "57f48dbe-2544-407a-8cbd-2df4907aac9e", + "label": "label-3197", + "height": 370, + "background": "green" + }, + { + "key": "a568caeb-317d-4644-b1ba-0a1f3d106cd7", + "label": "label-3198", + "height": 80, + "background": "blue" + }, + { + "key": "de5081ac-5f02-435b-9e26-a6d2411c66c1", + "label": "label-3199", + "height": 61, + "background": "blue" + }, + { + "key": "6efbd365-5bca-490a-b0d9-c387e3efc75d", + "label": "label-3200", + "height": 33, + "background": "red" + }, + { + "key": "62b06a5b-30e4-4761-acf2-f9b3999733fb", + "label": "label-3201", + "height": 55, + "background": "green" + }, + { + "key": "254ef927-6de6-40e1-a9bd-fddf5b61bf4c", + "label": "label-3202", + "height": 147, + "background": "red" + }, + { + "key": "bbc6c559-8546-4673-ab8d-46cee1c204b4", + "label": "label-3203", + "height": 475, + "background": "green" + }, + { + "key": "81d5f26c-2d6c-46a6-859f-41c717c9e0be", + "label": "label-3204", + "height": 81, + "background": "green" + }, + { + "key": "5fef51c1-60d3-4c6a-994d-1db9bd624abd", + "label": "label-3205", + "height": 245, + "background": "yellow" + }, + { + "key": "44e65695-d66a-4c0c-95c9-ea28cdab6c1e", + "label": "label-3206", + "height": 368, + "background": "green" + }, + { + "key": "9258c5bc-ccd0-431d-afa0-9c1341ec4a4f", + "label": "label-3207", + "height": 342, + "background": "green" + }, + { + "key": "e3e802ad-5689-47e1-a935-3e4ae45122cf", + "label": "label-3208", + "height": 102, + "background": "red" + }, + { + "key": "cb075eb9-db54-40c7-a3a0-c3e1440faca2", + "label": "label-3209", + "height": 208, + "background": "red" + }, + { + "key": "feb4b7f3-41f9-4265-9ab9-b8590a095335", + "label": "label-3210", + "height": 245, + "background": "green" + }, + { + "key": "58379d31-ecee-4c87-8279-8725d70ba23b", + "label": "label-3211", + "height": 92, + "background": "yellow" + }, + { + "key": "54080bca-54ef-4c4d-bd80-f94a936ef9fa", + "label": "label-3212", + "height": 484, + "background": "green" + }, + { + "key": "cab5b3be-8237-49e4-aec2-e15047e0b002", + "label": "label-3213", + "height": 362, + "background": "yellow" + }, + { + "key": "fede79db-afda-43d0-aeaa-0a0ba23f5bff", + "label": "label-3214", + "height": 126, + "background": "green" + }, + { + "key": "222ab69a-991e-491d-b3f6-322d1549da6d", + "label": "label-3215", + "height": 239, + "background": "blue" + }, + { + "key": "a9d047c2-f7fb-4edd-9ea9-b78aec9bf478", + "label": "label-3216", + "height": 480, + "background": "green" + }, + { + "key": "2b5c666d-614d-4908-a208-81d5054f26a6", + "label": "label-3217", + "height": 471, + "background": "red" + }, + { + "key": "a15241a6-f26a-4408-ac72-37e519e1b18f", + "label": "label-3218", + "height": 250, + "background": "blue" + }, + { + "key": "e6d29f61-1811-43d5-8f5e-77d5535e1cdf", + "label": "label-3219", + "height": 499, + "background": "red" + }, + { + "key": "6116cd33-d452-4d43-a855-d20096bdfbd6", + "label": "label-3220", + "height": 489, + "background": "blue" + }, + { + "key": "473b4ba3-8cd3-4160-9894-cf66a3955995", + "label": "label-3221", + "height": 436, + "background": "green" + }, + { + "key": "527bb8cb-a8a2-4dee-9b6a-6018c6a0daa9", + "label": "label-3222", + "height": 249, + "background": "blue" + }, + { + "key": "180d4b6c-09a0-415b-9935-3cb2cebed1b9", + "label": "label-3223", + "height": 104, + "background": "blue" + }, + { + "key": "6fd8fd54-c0f5-4b42-9ac2-1939d45dc32a", + "label": "label-3224", + "height": 154, + "background": "yellow" + }, + { + "key": "89318df0-e847-4f23-b0bc-1a78f29370ed", + "label": "label-3225", + "height": 422, + "background": "yellow" + }, + { + "key": "339820a8-5114-4009-9cad-25e7b221fd52", + "label": "label-3226", + "height": 242, + "background": "yellow" + }, + { + "key": "6258179a-3cfa-4204-87ce-39c8276e11b5", + "label": "label-3227", + "height": 98, + "background": "red" + }, + { + "key": "c8eea80b-aebf-4148-9709-ab41b919d8ab", + "label": "label-3228", + "height": 208, + "background": "red" + }, + { + "key": "90aa5620-016b-4cde-8a44-0c49c2889eb0", + "label": "label-3229", + "height": 81, + "background": "green" + }, + { + "key": "3aab8b36-6cc3-4464-95bd-9ef8e22711bf", + "label": "label-3230", + "height": 408, + "background": "blue" + }, + { + "key": "e8798826-c198-4c76-ae09-20e4113d9cac", + "label": "label-3231", + "height": 386, + "background": "blue" + }, + { + "key": "1b227834-d25e-4b2b-99bd-a8cb6c5e2228", + "label": "label-3232", + "height": 253, + "background": "red" + }, + { + "key": "0dbc6747-6014-4a12-be68-2f36c7770ebb", + "label": "label-3233", + "height": 437, + "background": "red" + }, + { + "key": "94389628-8cf0-4d9e-9585-7d1de3af1333", + "label": "label-3234", + "height": 499, + "background": "green" + }, + { + "key": "9a505268-e1ee-4532-a3b4-8ec36e85942e", + "label": "label-3235", + "height": 396, + "background": "red" + }, + { + "key": "21989ea8-462d-4eec-a940-513dd41cf49b", + "label": "label-3236", + "height": 247, + "background": "red" + }, + { + "key": "32dda9b2-b10b-47f5-a631-98677a840161", + "label": "label-3237", + "height": 297, + "background": "blue" + }, + { + "key": "3abdac8a-bb31-48c5-8cae-ad50e66a7aa4", + "label": "label-3238", + "height": 525, + "background": "blue" + }, + { + "key": "c0afc55c-b257-42ae-b895-6a464a1ff105", + "label": "label-3239", + "height": 274, + "background": "green" + }, + { + "key": "3e454f10-c3c0-4ae3-a549-30b0172441ed", + "label": "label-3240", + "height": 236, + "background": "red" + }, + { + "key": "6a4c8d2c-f2cf-48ca-84e1-494483edc264", + "label": "label-3241", + "height": 422, + "background": "red" + }, + { + "key": "cc3821c7-7d7f-41ef-8148-a585739b9811", + "label": "label-3242", + "height": 529, + "background": "blue" + }, + { + "key": "8a3a5892-b723-4d4a-b418-d3f611b437d0", + "label": "label-3243", + "height": 228, + "background": "yellow" + }, + { + "key": "fb08066d-fbd3-410d-870b-e3811707c4d7", + "label": "label-3244", + "height": 183, + "background": "blue" + }, + { + "key": "7ca127f0-dde8-438a-9ee9-03193fcbd6f6", + "label": "label-3245", + "height": 459, + "background": "yellow" + }, + { + "key": "ac683db2-bff8-4286-b449-7873afe43732", + "label": "label-3246", + "height": 339, + "background": "green" + }, + { + "key": "670dac38-109b-455a-94d0-9449ad13f554", + "label": "label-3247", + "height": 412, + "background": "yellow" + }, + { + "key": "19ae5fea-a380-4684-9e24-9c7b0ed3310a", + "label": "label-3248", + "height": 413, + "background": "blue" + }, + { + "key": "9bb91142-48be-47be-8f81-41997049c12f", + "label": "label-3249", + "height": 222, + "background": "green" + }, + { + "key": "8485175c-680b-4eb3-a9ac-f975280988ef", + "label": "label-3250", + "height": 113, + "background": "green" + }, + { + "key": "55851696-46f6-4841-8dd8-15ed5a374eb3", + "label": "label-3251", + "height": 525, + "background": "blue" + }, + { + "key": "83dc6c7b-388c-4062-98e4-719a4084dce7", + "label": "label-3252", + "height": 477, + "background": "red" + }, + { + "key": "0376736d-1fb7-4a0c-b19b-407ded7979c7", + "label": "label-3253", + "height": 191, + "background": "red" + }, + { + "key": "5b1011aa-cb3a-4c00-85b2-aedb573edb29", + "label": "label-3254", + "height": 215, + "background": "yellow" + }, + { + "key": "858fe84e-6d30-46a7-8be1-9cf7d8bc2eb7", + "label": "label-3255", + "height": 349, + "background": "blue" + }, + { + "key": "1081f703-3b5f-4593-ae6b-2db6c0c9b8dd", + "label": "label-3256", + "height": 69, + "background": "red" + }, + { + "key": "cdf97657-e99a-4910-92d4-2b6c7c15df26", + "label": "label-3257", + "height": 212, + "background": "blue" + }, + { + "key": "ef48e82b-c4ef-49d3-b6d7-96ffc17c1d0b", + "label": "label-3258", + "height": 298, + "background": "red" + }, + { + "key": "d2dce2e5-fe2e-4993-b831-cc1b4df45504", + "label": "label-3259", + "height": 373, + "background": "blue" + }, + { + "key": "262f39bc-a5e5-40f2-b817-5ad64bd29eb1", + "label": "label-3260", + "height": 69, + "background": "yellow" + }, + { + "key": "13797ad7-2ad1-4160-9dba-5f8fd2d2c6e9", + "label": "label-3261", + "height": 67, + "background": "blue" + }, + { + "key": "7544f4b7-79ff-4b0a-be30-dc3a7f8b5276", + "label": "label-3262", + "height": 400, + "background": "red" + }, + { + "key": "f7c7a3ca-01b9-45af-b205-bf122e821ffa", + "label": "label-3263", + "height": 443, + "background": "yellow" + }, + { + "key": "9c246ee6-0add-4faa-9cff-34690d3f2c22", + "label": "label-3264", + "height": 350, + "background": "red" + }, + { + "key": "bb8694bd-594b-48d8-8cd0-0b3c81f06b9a", + "label": "label-3265", + "height": 413, + "background": "red" + }, + { + "key": "9f605a6e-e86d-4f83-918b-cda4a669c418", + "label": "label-3266", + "height": 426, + "background": "yellow" + }, + { + "key": "ffa3b30b-719e-4a45-9e59-fec8aaf22318", + "label": "label-3267", + "height": 48, + "background": "red" + }, + { + "key": "01c1e5c0-9973-4a4b-b646-d7d766d7cb5e", + "label": "label-3268", + "height": 312, + "background": "red" + }, + { + "key": "c9922023-d86b-423c-847c-ec362124b190", + "label": "label-3269", + "height": 301, + "background": "green" + }, + { + "key": "cddd7108-7228-475b-8a51-423b0585895e", + "label": "label-3270", + "height": 223, + "background": "blue" + }, + { + "key": "38bc6c2d-32dc-498f-90dc-4cdceae391e6", + "label": "label-3271", + "height": 460, + "background": "green" + }, + { + "key": "17214a10-e890-4be5-92ef-5f88d2d694cf", + "label": "label-3272", + "height": 483, + "background": "yellow" + }, + { + "key": "ae93e454-111c-43da-9906-6b8ffbb0e3fa", + "label": "label-3273", + "height": 320, + "background": "yellow" + }, + { + "key": "b45b5862-867d-4ecb-a832-b872fb380f4b", + "label": "label-3274", + "height": 242, + "background": "red" + }, + { + "key": "39dd252f-3e48-47f4-be81-36741a807305", + "label": "label-3275", + "height": 95, + "background": "red" + }, + { + "key": "d2e6c337-e75a-4cea-8a23-944115df83c2", + "label": "label-3276", + "height": 467, + "background": "green" + }, + { + "key": "69c1691f-c311-426b-9b41-1e6b1d9089d0", + "label": "label-3277", + "height": 324, + "background": "yellow" + }, + { + "key": "1b966332-d87a-4270-9aa7-a1b24729d15e", + "label": "label-3278", + "height": 465, + "background": "green" + }, + { + "key": "aed1534a-2238-4e22-82a1-af27c4609cf7", + "label": "label-3279", + "height": 77, + "background": "green" + }, + { + "key": "ace3053f-b960-4488-a5c3-21b8052382c4", + "label": "label-3280", + "height": 421, + "background": "blue" + }, + { + "key": "eb90c0ff-3a35-4de5-813e-709ed958c6c4", + "label": "label-3281", + "height": 404, + "background": "green" + }, + { + "key": "81fbe57c-9a39-49f3-a108-1986492ddd58", + "label": "label-3282", + "height": 499, + "background": "blue" + }, + { + "key": "55f2ccd3-1484-4ac5-b52d-48e64dc0ed1a", + "label": "label-3283", + "height": 342, + "background": "yellow" + }, + { + "key": "d99d1a7d-8ccd-4ee4-ab42-fa6780f84448", + "label": "label-3284", + "height": 316, + "background": "yellow" + }, + { + "key": "4bf905c9-9b75-4102-82de-245827cddbf7", + "label": "label-3285", + "height": 227, + "background": "blue" + }, + { + "key": "9a4ffb7a-0c01-43d0-82bf-131a486a5f5a", + "label": "label-3286", + "height": 317, + "background": "yellow" + }, + { + "key": "3e3975dd-960a-4ce2-aa08-bd22df40d948", + "label": "label-3287", + "height": 119, + "background": "yellow" + }, + { + "key": "6c929449-a2c6-42b7-a047-d6f851322e7b", + "label": "label-3288", + "height": 56, + "background": "yellow" + }, + { + "key": "17a2b40a-8f51-4019-a003-f27b4e88bd90", + "label": "label-3289", + "height": 154, + "background": "red" + }, + { + "key": "0d7b14c1-a6d6-4f72-aed5-b9b9e69403a4", + "label": "label-3290", + "height": 279, + "background": "green" + }, + { + "key": "61b04569-c5e4-4884-9c57-e566573989c0", + "label": "label-3291", + "height": 79, + "background": "yellow" + }, + { + "key": "89f45ad2-b227-42af-877c-95a8d9f2f78d", + "label": "label-3292", + "height": 356, + "background": "yellow" + }, + { + "key": "f519bc8e-4ade-479c-b6d6-094123d6048c", + "label": "label-3293", + "height": 311, + "background": "green" + }, + { + "key": "d8e66d3f-9905-4dd1-a249-27362555fd04", + "label": "label-3294", + "height": 122, + "background": "blue" + }, + { + "key": "8cb4d0be-a6b6-44b8-a7cc-c10edab08877", + "label": "label-3295", + "height": 366, + "background": "red" + }, + { + "key": "317f5460-0884-486b-b8c5-425918164525", + "label": "label-3296", + "height": 453, + "background": "green" + }, + { + "key": "07db4631-bcc9-4a74-a143-5601ffccb961", + "label": "label-3297", + "height": 270, + "background": "blue" + }, + { + "key": "6e4d6fc3-4245-4ed4-94fe-be88faeb2ff0", + "label": "label-3298", + "height": 128, + "background": "green" + }, + { + "key": "e53dc0c7-97b4-431b-ad24-8a1c482f6f9f", + "label": "label-3299", + "height": 357, + "background": "green" + }, + { + "key": "408b9a31-8d18-4358-b55e-c1f0c07589cb", + "label": "label-3300", + "height": 480, + "background": "blue" + }, + { + "key": "efc172fe-235c-4241-94c2-870e9cabb18f", + "label": "label-3301", + "height": 174, + "background": "red" + }, + { + "key": "b2f91986-b171-494c-b15a-265c2c8be0ef", + "label": "label-3302", + "height": 173, + "background": "red" + }, + { + "key": "45879ef0-f000-4e9a-864a-8c637b04fe32", + "label": "label-3303", + "height": 451, + "background": "blue" + }, + { + "key": "817984f5-7cee-4ec6-bdc5-395bcdf90476", + "label": "label-3304", + "height": 271, + "background": "green" + }, + { + "key": "93cc0e62-5db1-4619-acb4-2553ec7c3d57", + "label": "label-3305", + "height": 379, + "background": "green" + }, + { + "key": "eeb4d385-1a47-44d7-9923-dcbb07e072a1", + "label": "label-3306", + "height": 271, + "background": "yellow" + }, + { + "key": "c81f77bc-d7df-4aff-b7eb-7a8e798e0d1b", + "label": "label-3307", + "height": 517, + "background": "blue" + }, + { + "key": "3d01f9d7-9666-4905-b348-edbdfd34fcca", + "label": "label-3308", + "height": 524, + "background": "red" + }, + { + "key": "2dffee6a-fbf3-4396-a9df-b2b73d1e1e54", + "label": "label-3309", + "height": 249, + "background": "blue" + }, + { + "key": "43be7666-b89a-49e5-9e12-b83cfbbb0f50", + "label": "label-3310", + "height": 38, + "background": "yellow" + }, + { + "key": "22a59429-3242-49fd-948b-8a3bfa669ae1", + "label": "label-3311", + "height": 70, + "background": "red" + }, + { + "key": "d37355e9-d120-469b-bbf0-1335ca770c5f", + "label": "label-3312", + "height": 358, + "background": "green" + }, + { + "key": "00fed855-fdf3-4590-bf33-4c3324704f47", + "label": "label-3313", + "height": 232, + "background": "yellow" + }, + { + "key": "c020f50d-fe2a-4a74-ba03-868a49e48c42", + "label": "label-3314", + "height": 288, + "background": "red" + }, + { + "key": "51524c39-1653-4105-9fc4-19331f0fba94", + "label": "label-3315", + "height": 66, + "background": "red" + }, + { + "key": "5acdd838-797e-4ca1-b15e-39a855d00643", + "label": "label-3316", + "height": 48, + "background": "green" + }, + { + "key": "770c8f8a-26d7-438d-ad7f-f16557510c7e", + "label": "label-3317", + "height": 362, + "background": "red" + }, + { + "key": "beb9c909-2a7d-4ac6-8f40-13e466c054e4", + "label": "label-3318", + "height": 279, + "background": "green" + }, + { + "key": "0194d162-d155-4777-9d78-a028ec4b80b8", + "label": "label-3319", + "height": 339, + "background": "red" + }, + { + "key": "358eeff3-9c04-41d4-8cbb-3117161a663f", + "label": "label-3320", + "height": 96, + "background": "yellow" + }, + { + "key": "2b81ab41-0fa1-4343-8cff-6ec5b418d17b", + "label": "label-3321", + "height": 409, + "background": "blue" + }, + { + "key": "791cd30a-bbd3-41d2-a457-bea1ea3084bf", + "label": "label-3322", + "height": 488, + "background": "green" + }, + { + "key": "8532742e-4bc6-4968-bff8-643583d04503", + "label": "label-3323", + "height": 279, + "background": "red" + }, + { + "key": "c4766af5-4914-41d9-9b77-2cb38862811d", + "label": "label-3324", + "height": 333, + "background": "blue" + }, + { + "key": "dcc67c91-f30b-4ae1-9c9d-883243c73350", + "label": "label-3325", + "height": 225, + "background": "green" + }, + { + "key": "8e77f732-a02d-4bc2-9697-c4daf0842365", + "label": "label-3326", + "height": 71, + "background": "yellow" + }, + { + "key": "ca538e88-94a4-45f1-a9f3-23727b90d1d0", + "label": "label-3327", + "height": 300, + "background": "green" + }, + { + "key": "a91c77a6-c236-4491-9617-42fbd69c8180", + "label": "label-3328", + "height": 204, + "background": "red" + }, + { + "key": "57b4bb9c-3620-4d99-b747-ccd7543c3bf9", + "label": "label-3329", + "height": 190, + "background": "red" + }, + { + "key": "8d79cb9e-94dd-4568-9062-81bc6dc39f06", + "label": "label-3330", + "height": 478, + "background": "yellow" + }, + { + "key": "9b3aaa3b-dab2-4ac3-941f-6e5a0d464ee6", + "label": "label-3331", + "height": 57, + "background": "green" + }, + { + "key": "20a533e1-9b6f-420e-8da2-01504f54812b", + "label": "label-3332", + "height": 169, + "background": "blue" + }, + { + "key": "6c8e2698-e2ad-4fa2-89fd-71824713cc25", + "label": "label-3333", + "height": 522, + "background": "yellow" + }, + { + "key": "ae51882f-fe17-4a4c-9459-0d9a92a9453d", + "label": "label-3334", + "height": 293, + "background": "green" + }, + { + "key": "1a8df027-5ccb-4373-b06a-f5024a627686", + "label": "label-3335", + "height": 186, + "background": "yellow" + }, + { + "key": "050ea9b6-9e52-4806-93b0-467bbe931f0c", + "label": "label-3336", + "height": 437, + "background": "red" + }, + { + "key": "85d6bc2e-e2c1-41b3-b9ed-df0ceff1817b", + "label": "label-3337", + "height": 111, + "background": "blue" + }, + { + "key": "1c457091-5ee0-4555-8b9a-e9d8f019f8d4", + "label": "label-3338", + "height": 409, + "background": "green" + }, + { + "key": "73cd2f1d-8a39-496f-a425-e3b156586b48", + "label": "label-3339", + "height": 410, + "background": "yellow" + }, + { + "key": "ad442d48-6fe6-4812-b7c4-98ce9cdd522f", + "label": "label-3340", + "height": 327, + "background": "blue" + }, + { + "key": "7c11877c-ec38-4dec-ab94-6d50b9333c7e", + "label": "label-3341", + "height": 347, + "background": "blue" + }, + { + "key": "6fcf5233-7825-4746-8167-b4d582bed252", + "label": "label-3342", + "height": 102, + "background": "yellow" + }, + { + "key": "517854a9-4ed0-4f29-9d1f-8897fab61239", + "label": "label-3343", + "height": 265, + "background": "blue" + }, + { + "key": "6a275bb7-1150-4d1f-9d3e-576f8ef47486", + "label": "label-3344", + "height": 422, + "background": "yellow" + }, + { + "key": "8208332d-5fa4-4138-a6cc-806069f0c775", + "label": "label-3345", + "height": 260, + "background": "green" + }, + { + "key": "6bd55322-0c8e-48f9-b9c2-91767107ff60", + "label": "label-3346", + "height": 466, + "background": "yellow" + }, + { + "key": "698ab8ac-96a2-46c6-982b-ac1bce63a1de", + "label": "label-3347", + "height": 282, + "background": "green" + }, + { + "key": "c48d988f-9e4d-4547-b65c-bf6abd0a478d", + "label": "label-3348", + "height": 92, + "background": "blue" + }, + { + "key": "9c4de0bd-dce9-49dd-92cd-311ba7bbf10d", + "label": "label-3349", + "height": 122, + "background": "green" + }, + { + "key": "f41177b9-c8a4-4d28-adb2-4eaa8601ba54", + "label": "label-3350", + "height": 198, + "background": "red" + }, + { + "key": "932f5756-9cd3-48a2-862a-2f9de6ad4e20", + "label": "label-3351", + "height": 320, + "background": "blue" + }, + { + "key": "095810b4-9bd7-42d7-8ae7-819f5393ef52", + "label": "label-3352", + "height": 234, + "background": "blue" + }, + { + "key": "e913c3c2-d799-4268-bb00-6532367a13bb", + "label": "label-3353", + "height": 453, + "background": "red" + }, + { + "key": "53c7aff0-a753-4d22-9727-82dfdc30c616", + "label": "label-3354", + "height": 330, + "background": "green" + }, + { + "key": "4f8e25b1-2771-460f-9b08-fc614fda4392", + "label": "label-3355", + "height": 392, + "background": "blue" + }, + { + "key": "b23db512-4142-483e-aa45-a17c8cd7a76e", + "label": "label-3356", + "height": 341, + "background": "yellow" + }, + { + "key": "5892f0b2-eff4-4d3f-acf4-41b434ff67ac", + "label": "label-3357", + "height": 274, + "background": "blue" + }, + { + "key": "f32cacfd-1748-49c3-ba21-5ee96ab6f90f", + "label": "label-3358", + "height": 280, + "background": "red" + }, + { + "key": "1528a444-e098-44a9-acee-991db466eb17", + "label": "label-3359", + "height": 92, + "background": "red" + }, + { + "key": "08d09690-f09c-4b8e-8eca-126660cef499", + "label": "label-3360", + "height": 233, + "background": "blue" + }, + { + "key": "76210f3b-1cc2-4fea-8d1d-4341de110405", + "label": "label-3361", + "height": 524, + "background": "green" + }, + { + "key": "e7cfd70e-0ce9-4038-9881-c544cdee6b00", + "label": "label-3362", + "height": 143, + "background": "yellow" + }, + { + "key": "88b98451-537a-45da-88fc-9b015179f161", + "label": "label-3363", + "height": 236, + "background": "blue" + }, + { + "key": "5906dda9-de27-4b1d-98db-79ac616c635d", + "label": "label-3364", + "height": 111, + "background": "green" + }, + { + "key": "055e4c27-458a-4faf-8b8d-4d317a4c2c5b", + "label": "label-3365", + "height": 377, + "background": "red" + }, + { + "key": "ebfeb113-35e6-4a4f-9a66-d77c83788f00", + "label": "label-3366", + "height": 99, + "background": "red" + }, + { + "key": "71a22e1e-24ba-4f7e-bd26-5ff1796d17c4", + "label": "label-3367", + "height": 340, + "background": "blue" + }, + { + "key": "7d5e02da-922a-4fc4-8dd8-7a71d4e17426", + "label": "label-3368", + "height": 496, + "background": "blue" + }, + { + "key": "fa4311da-fd1c-4b49-a9eb-29a32f322c1d", + "label": "label-3369", + "height": 81, + "background": "red" + }, + { + "key": "5ef2cb1d-ff0f-471d-b1b3-ddf0acc4caa8", + "label": "label-3370", + "height": 186, + "background": "yellow" + }, + { + "key": "68f09486-7918-4a27-b519-cae654e25f98", + "label": "label-3371", + "height": 70, + "background": "blue" + }, + { + "key": "0fa88738-d1cc-4fb3-8b0f-63217711cb96", + "label": "label-3372", + "height": 56, + "background": "green" + }, + { + "key": "c4c37629-1ca3-4c0c-baee-d00baaf595c5", + "label": "label-3373", + "height": 75, + "background": "blue" + }, + { + "key": "a05d6064-d250-4ba4-b39e-c8f15c535beb", + "label": "label-3374", + "height": 471, + "background": "blue" + }, + { + "key": "f0f2cf5c-78a6-4467-bdfe-3a0795270f70", + "label": "label-3375", + "height": 181, + "background": "yellow" + }, + { + "key": "f96ed03b-a05c-43d6-bb18-026a773fa271", + "label": "label-3376", + "height": 171, + "background": "yellow" + }, + { + "key": "e2864127-d350-4902-bd7a-0be1cdc4cff7", + "label": "label-3377", + "height": 123, + "background": "yellow" + }, + { + "key": "6095ee00-d3d8-40d2-ab1f-19aa70665a5a", + "label": "label-3378", + "height": 448, + "background": "green" + }, + { + "key": "61a1f95e-338b-49d0-8d56-9306d5351f68", + "label": "label-3379", + "height": 497, + "background": "blue" + }, + { + "key": "99b8b162-2db7-4e05-a60d-7ebb26b6e9ab", + "label": "label-3380", + "height": 393, + "background": "red" + }, + { + "key": "38308552-8db8-41b9-b305-4c851ab7e65e", + "label": "label-3381", + "height": 278, + "background": "yellow" + }, + { + "key": "aff414fe-c763-494b-80ec-611b952c7b96", + "label": "label-3382", + "height": 341, + "background": "yellow" + }, + { + "key": "44a785d2-9744-4bae-ba7d-06c76574d6f3", + "label": "label-3383", + "height": 299, + "background": "blue" + }, + { + "key": "f8f2bace-e982-4b1b-875a-995af24c796c", + "label": "label-3384", + "height": 436, + "background": "yellow" + }, + { + "key": "5592e9fb-3387-4086-ab46-cdfddc0b92fc", + "label": "label-3385", + "height": 471, + "background": "red" + }, + { + "key": "f8dc0c10-b80e-4b4f-a629-d7cb7170cc00", + "label": "label-3386", + "height": 427, + "background": "yellow" + }, + { + "key": "d8d6ffed-b024-4f50-a5c2-936918944e91", + "label": "label-3387", + "height": 32, + "background": "blue" + }, + { + "key": "3f833c7a-c9a7-4aff-ad27-8602cebf3561", + "label": "label-3388", + "height": 122, + "background": "green" + }, + { + "key": "578c6578-cc88-4560-a4a7-1fb176f5eb0e", + "label": "label-3389", + "height": 112, + "background": "green" + }, + { + "key": "ed43b265-4961-4dfc-b043-a1c5f791b71a", + "label": "label-3390", + "height": 38, + "background": "blue" + }, + { + "key": "c234314d-5325-45fa-a6b5-50aed991e5c2", + "label": "label-3391", + "height": 371, + "background": "yellow" + }, + { + "key": "9421dc04-1eac-489d-9d46-eb5291da051c", + "label": "label-3392", + "height": 368, + "background": "blue" + }, + { + "key": "554c03d5-4ca8-4648-a9bc-2aa5bf993065", + "label": "label-3393", + "height": 280, + "background": "red" + }, + { + "key": "675f68e0-7b00-4f40-bc9c-0f80749f9d5d", + "label": "label-3394", + "height": 282, + "background": "yellow" + }, + { + "key": "d5736c60-a5b8-424e-8c35-9da185704825", + "label": "label-3395", + "height": 482, + "background": "red" + }, + { + "key": "6e043f8a-f99b-4cbc-81da-34e4203b7dc2", + "label": "label-3396", + "height": 497, + "background": "yellow" + }, + { + "key": "cd56b385-4baa-4ab9-a03d-f5b0948fb3f7", + "label": "label-3397", + "height": 188, + "background": "green" + }, + { + "key": "c9f87916-18ce-4b7f-a897-55598399092f", + "label": "label-3398", + "height": 504, + "background": "red" + }, + { + "key": "8c0d4cdb-9004-4a65-8cef-3fd1e954e804", + "label": "label-3399", + "height": 492, + "background": "yellow" + }, + { + "key": "79364563-67f7-43a6-87c3-d5c648321db3", + "label": "label-3400", + "height": 387, + "background": "green" + }, + { + "key": "fe4e8cad-3ca9-4928-9767-7afc4aedba18", + "label": "label-3401", + "height": 524, + "background": "yellow" + }, + { + "key": "dd93477a-63ed-4bca-bebc-9c1dd18ce4b3", + "label": "label-3402", + "height": 242, + "background": "red" + }, + { + "key": "2aafed9f-5a57-4039-9441-a83126d8e2a1", + "label": "label-3403", + "height": 431, + "background": "green" + }, + { + "key": "0db13d5f-8484-4d9a-8c3c-2239e9545695", + "label": "label-3404", + "height": 331, + "background": "yellow" + }, + { + "key": "11058735-109f-43c3-ac28-22ef2fc5c41b", + "label": "label-3405", + "height": 212, + "background": "blue" + }, + { + "key": "58745ae0-a9cf-4706-97bf-e9679957a7bb", + "label": "label-3406", + "height": 314, + "background": "red" + }, + { + "key": "ffbe7fef-74b3-4674-b473-9974c1576846", + "label": "label-3407", + "height": 517, + "background": "green" + }, + { + "key": "730db1b6-6b7c-4f67-b6a5-cbe6eefabe85", + "label": "label-3408", + "height": 231, + "background": "red" + }, + { + "key": "7b914114-1dfb-43e9-bd0a-29700a6069a1", + "label": "label-3409", + "height": 492, + "background": "yellow" + }, + { + "key": "612c9c31-d49e-4881-8965-4440b912c386", + "label": "label-3410", + "height": 497, + "background": "blue" + }, + { + "key": "768ea7d8-73b5-467a-ad6a-25c1a3ea222d", + "label": "label-3411", + "height": 510, + "background": "yellow" + }, + { + "key": "43103ee8-84a6-456b-a278-5976fbf923d7", + "label": "label-3412", + "height": 224, + "background": "red" + }, + { + "key": "0d538cc7-9be2-4cc9-885b-d9a5d44be04b", + "label": "label-3413", + "height": 257, + "background": "green" + }, + { + "key": "20410c93-a09c-4b5a-84bf-2fa21c332cc8", + "label": "label-3414", + "height": 155, + "background": "blue" + }, + { + "key": "be183f7f-54bf-4448-88aa-3789927e6867", + "label": "label-3415", + "height": 285, + "background": "red" + }, + { + "key": "31214cf8-e082-45ad-891a-6066a2ee7d09", + "label": "label-3416", + "height": 427, + "background": "yellow" + }, + { + "key": "05ff5200-b547-4064-bc27-883b9c91987a", + "label": "label-3417", + "height": 198, + "background": "green" + }, + { + "key": "59fd676b-cd93-42db-a9c7-008463ab49b1", + "label": "label-3418", + "height": 441, + "background": "yellow" + }, + { + "key": "07ec801d-dc8b-4335-b328-d910be904492", + "label": "label-3419", + "height": 66, + "background": "yellow" + }, + { + "key": "36a93583-9e0c-4f4a-9573-fbdefc33bfc6", + "label": "label-3420", + "height": 424, + "background": "yellow" + }, + { + "key": "543c1b51-c4d3-4c4b-9f8e-325a4a62bc33", + "label": "label-3421", + "height": 114, + "background": "green" + }, + { + "key": "ef08e1fa-9d0d-48eb-9abd-9f367d190132", + "label": "label-3422", + "height": 504, + "background": "blue" + }, + { + "key": "240df9fe-aa31-4f59-b507-25f23e6639de", + "label": "label-3423", + "height": 144, + "background": "blue" + }, + { + "key": "e1b24fc9-fe65-4c9b-bfd3-13c6cce36954", + "label": "label-3424", + "height": 313, + "background": "red" + }, + { + "key": "d53ff379-eb9a-4331-813c-f89ae55723bc", + "label": "label-3425", + "height": 209, + "background": "blue" + }, + { + "key": "d6326e7b-1ffd-40c0-9475-ea620ee21ed9", + "label": "label-3426", + "height": 81, + "background": "red" + }, + { + "key": "9eb5f157-65c4-4431-9ca4-d3950d008ec4", + "label": "label-3427", + "height": 144, + "background": "red" + }, + { + "key": "97483ebe-0f1d-4eb0-adfa-c4f87e3a3000", + "label": "label-3428", + "height": 176, + "background": "green" + }, + { + "key": "bf6bb73d-ff17-429a-9132-128b0d063bd9", + "label": "label-3429", + "height": 228, + "background": "green" + }, + { + "key": "45d0b349-532e-4b9b-9bcf-81d6ca07b169", + "label": "label-3430", + "height": 161, + "background": "blue" + }, + { + "key": "8ecfb28e-303d-4358-af5c-9eaea1eeb4fa", + "label": "label-3431", + "height": 369, + "background": "blue" + }, + { + "key": "c2d1ba10-b834-429f-b3e6-06abfc9a31f4", + "label": "label-3432", + "height": 99, + "background": "yellow" + }, + { + "key": "a65c6439-5a20-43ab-a7b6-9ed13ffffcb8", + "label": "label-3433", + "height": 234, + "background": "red" + }, + { + "key": "d2cf9d5f-1282-469b-bf49-45724a289c64", + "label": "label-3434", + "height": 297, + "background": "yellow" + }, + { + "key": "6ff84719-6c0a-4667-af13-d556ad6ad4bb", + "label": "label-3435", + "height": 88, + "background": "red" + }, + { + "key": "c94e53c5-d4ee-4e9c-9ccf-37ae3fbb8150", + "label": "label-3436", + "height": 215, + "background": "blue" + }, + { + "key": "b437dbb9-fe02-4abf-8e7c-d42ae4a43f6f", + "label": "label-3437", + "height": 218, + "background": "blue" + }, + { + "key": "9be0ada2-4b3e-49d6-8f25-afa4974c9431", + "label": "label-3438", + "height": 178, + "background": "green" + }, + { + "key": "b957a782-132c-4693-b443-39b3be28fce1", + "label": "label-3439", + "height": 382, + "background": "blue" + }, + { + "key": "3e65048d-2274-40fa-aca6-1f48a693b042", + "label": "label-3440", + "height": 95, + "background": "blue" + }, + { + "key": "c8545492-21b7-4559-a840-901cf51486d3", + "label": "label-3441", + "height": 340, + "background": "green" + }, + { + "key": "b065b3d0-7e82-466e-8d79-2f3b1f4f45de", + "label": "label-3442", + "height": 217, + "background": "red" + }, + { + "key": "e280ecfa-21a5-4a54-a256-43c98bcdd5f5", + "label": "label-3443", + "height": 446, + "background": "green" + }, + { + "key": "3d7edd65-1236-4a2f-b1ce-0295d7785b5d", + "label": "label-3444", + "height": 240, + "background": "red" + }, + { + "key": "100c2a65-2cfa-42c9-9c3f-ab73e5938837", + "label": "label-3445", + "height": 35, + "background": "green" + }, + { + "key": "d00849b1-75f6-476a-b518-790df4cd315f", + "label": "label-3446", + "height": 185, + "background": "yellow" + }, + { + "key": "a2b1a74a-ca68-4f2c-9238-b8bae0ad5744", + "label": "label-3447", + "height": 501, + "background": "blue" + }, + { + "key": "d38ec8d9-4ec9-4995-b5bc-254a7205a997", + "label": "label-3448", + "height": 410, + "background": "blue" + }, + { + "key": "184e3b37-a15c-4d47-8c67-3d0e88e6a111", + "label": "label-3449", + "height": 330, + "background": "blue" + }, + { + "key": "1952693a-7a0b-4d69-8221-5e2a09c94f98", + "label": "label-3450", + "height": 427, + "background": "green" + }, + { + "key": "288ec99e-ed35-49cd-ae4f-9b13f393316c", + "label": "label-3451", + "height": 443, + "background": "green" + }, + { + "key": "e326dfe0-3d5c-43af-b418-4e4dfb7876ff", + "label": "label-3452", + "height": 374, + "background": "green" + }, + { + "key": "459f10dd-474f-44f0-93bd-54a5abf2eb41", + "label": "label-3453", + "height": 452, + "background": "blue" + }, + { + "key": "511515c8-18f3-487a-99fd-87483fbdb564", + "label": "label-3454", + "height": 89, + "background": "blue" + }, + { + "key": "56c28767-6136-4d2b-87c6-7bfabb53274c", + "label": "label-3455", + "height": 107, + "background": "red" + }, + { + "key": "f7f3fb7e-f4cf-4c41-8fdd-efba841a549c", + "label": "label-3456", + "height": 480, + "background": "red" + }, + { + "key": "0464e66f-17ad-40d6-9046-8fb6f9abdc35", + "label": "label-3457", + "height": 55, + "background": "red" + }, + { + "key": "d4df0479-5ac4-457d-af4a-50af6d514b15", + "label": "label-3458", + "height": 130, + "background": "yellow" + }, + { + "key": "39fe930d-f2ab-4156-b5a7-7a3885dec547", + "label": "label-3459", + "height": 286, + "background": "yellow" + }, + { + "key": "198c7f81-75a9-4fa5-9423-5a3808be9c12", + "label": "label-3460", + "height": 53, + "background": "yellow" + }, + { + "key": "6a2ea655-5c71-409a-98d5-987456a6cc53", + "label": "label-3461", + "height": 303, + "background": "blue" + }, + { + "key": "454a6cf3-e946-4242-a45a-3f9638f96272", + "label": "label-3462", + "height": 60, + "background": "green" + }, + { + "key": "5c44e8e8-4757-428e-a4c9-4cca0a3a2954", + "label": "label-3463", + "height": 514, + "background": "yellow" + }, + { + "key": "1e9a7ec5-7ce6-4436-9ece-8571435396d9", + "label": "label-3464", + "height": 40, + "background": "blue" + }, + { + "key": "a8f72f28-e11e-4099-83f4-fb835f836e9e", + "label": "label-3465", + "height": 48, + "background": "green" + }, + { + "key": "06399faa-9bb0-42d6-ab42-61e9df982270", + "label": "label-3466", + "height": 394, + "background": "green" + }, + { + "key": "c50b2111-a4e3-4909-b180-ad4c4da7c715", + "label": "label-3467", + "height": 326, + "background": "blue" + }, + { + "key": "fef91d62-273c-4468-9ce3-0bab0231b03c", + "label": "label-3468", + "height": 502, + "background": "red" + }, + { + "key": "8f18da97-7962-4f0c-87dd-82d17d9fdcb2", + "label": "label-3469", + "height": 228, + "background": "blue" + }, + { + "key": "148722fa-eafa-46e2-8b9f-150b8153fd8e", + "label": "label-3470", + "height": 137, + "background": "red" + }, + { + "key": "86f5f8c4-389f-45c7-a10f-49c8837e01a6", + "label": "label-3471", + "height": 212, + "background": "yellow" + }, + { + "key": "60361f1e-a1fb-4275-b39f-532e20a49d8a", + "label": "label-3472", + "height": 194, + "background": "red" + }, + { + "key": "22a64358-f57d-4f4c-a3a1-082df1e55122", + "label": "label-3473", + "height": 350, + "background": "yellow" + }, + { + "key": "60ee66f5-60fa-43ae-b0ef-2e4be75823dd", + "label": "label-3474", + "height": 333, + "background": "green" + }, + { + "key": "4d897c18-b20e-48c4-8d4b-5e377ddfaaa2", + "label": "label-3475", + "height": 309, + "background": "yellow" + }, + { + "key": "e9641f8d-f96d-4259-a33b-b908767a6660", + "label": "label-3476", + "height": 110, + "background": "blue" + }, + { + "key": "48c2490f-849d-49c4-80d8-ae45d48b2d97", + "label": "label-3477", + "height": 151, + "background": "red" + }, + { + "key": "125300cf-f577-40ce-96cd-d1deb1b87769", + "label": "label-3478", + "height": 54, + "background": "yellow" + }, + { + "key": "73108280-6a33-4836-a09c-7142f93a44a3", + "label": "label-3479", + "height": 252, + "background": "red" + }, + { + "key": "774be007-26cd-4b4c-9d94-af7156b238b0", + "label": "label-3480", + "height": 321, + "background": "yellow" + }, + { + "key": "8f555810-b81b-4259-897c-e68068b8ee1c", + "label": "label-3481", + "height": 159, + "background": "blue" + }, + { + "key": "fd652044-84b9-4d04-a34b-cf96cbef14dc", + "label": "label-3482", + "height": 203, + "background": "green" + }, + { + "key": "e7e2da90-7081-4ae3-8d57-b800b3c03261", + "label": "label-3483", + "height": 454, + "background": "red" + }, + { + "key": "728dabff-5254-47ce-8371-04dda8e60bf6", + "label": "label-3484", + "height": 528, + "background": "red" + }, + { + "key": "d057e883-5242-423e-ae6d-5dc5d93b7e91", + "label": "label-3485", + "height": 439, + "background": "green" + }, + { + "key": "00c5a286-6a7f-40ab-a3aa-925f59b4334a", + "label": "label-3486", + "height": 343, + "background": "yellow" + }, + { + "key": "5ccc2e6e-b214-4ed9-accb-7c32e48414ec", + "label": "label-3487", + "height": 72, + "background": "green" + }, + { + "key": "22f496b3-28e3-4261-a161-00cd9ea5e13e", + "label": "label-3488", + "height": 267, + "background": "yellow" + }, + { + "key": "3b4183cc-5ce7-4cb2-b76d-0c39e182649e", + "label": "label-3489", + "height": 519, + "background": "red" + }, + { + "key": "898fe0a5-3652-4f4b-8178-84084232720a", + "label": "label-3490", + "height": 292, + "background": "red" + }, + { + "key": "e6b93b6c-14b0-405f-bfb9-f3b0760dd009", + "label": "label-3491", + "height": 63, + "background": "red" + }, + { + "key": "68a5e0b4-029c-40b9-a35c-194330d9c18e", + "label": "label-3492", + "height": 306, + "background": "blue" + }, + { + "key": "32b82b2a-daba-40df-ac9a-4aece8bff9b5", + "label": "label-3493", + "height": 329, + "background": "blue" + }, + { + "key": "76b3ecd6-fa8c-429f-90b0-4480eed6cb7f", + "label": "label-3494", + "height": 503, + "background": "green" + }, + { + "key": "18d8c361-332d-44aa-90f3-fb3473ca56f5", + "label": "label-3495", + "height": 433, + "background": "red" + }, + { + "key": "bcc7f5a9-4a77-4498-a273-504c4a274afa", + "label": "label-3496", + "height": 462, + "background": "red" + }, + { + "key": "1266a2d7-d42b-48de-8a9a-8071cc312341", + "label": "label-3497", + "height": 518, + "background": "yellow" + }, + { + "key": "6d0d19ae-1853-4a04-bc35-199caa3ca5fe", + "label": "label-3498", + "height": 43, + "background": "blue" + }, + { + "key": "aa57137f-2b5c-4549-a497-790235453d3e", + "label": "label-3499", + "height": 376, + "background": "green" + }, + { + "key": "cf3bf148-4e75-420e-bd3d-bdf2c0ae2585", + "label": "label-3500", + "height": 351, + "background": "blue" + }, + { + "key": "e3852380-53d7-4fb5-b54d-d6f796198960", + "label": "label-3501", + "height": 476, + "background": "red" + }, + { + "key": "7ff3b183-bbc4-43f9-aabd-abe59bc1d14d", + "label": "label-3502", + "height": 337, + "background": "blue" + }, + { + "key": "3489c9ac-a9c2-472d-8d76-2cc14906c3cf", + "label": "label-3503", + "height": 188, + "background": "red" + }, + { + "key": "4be5d380-f522-4ee3-be7e-814344a85211", + "label": "label-3504", + "height": 64, + "background": "green" + }, + { + "key": "56216696-7476-4635-9d9a-c4ccf7e2e29e", + "label": "label-3505", + "height": 327, + "background": "blue" + }, + { + "key": "55082613-17ac-4743-83e5-8626e6a85385", + "label": "label-3506", + "height": 160, + "background": "yellow" + }, + { + "key": "0e1ca475-71ae-4ffc-aaa4-3e53330a84b2", + "label": "label-3507", + "height": 144, + "background": "yellow" + }, + { + "key": "2d9cdb70-4bfe-4339-a899-d146acc0c7bd", + "label": "label-3508", + "height": 527, + "background": "yellow" + }, + { + "key": "ca32fa7b-1844-4878-9e52-0c5bea0fb487", + "label": "label-3509", + "height": 168, + "background": "blue" + }, + { + "key": "e45b9cf0-42da-4e75-a59c-6c120795b5b7", + "label": "label-3510", + "height": 82, + "background": "red" + }, + { + "key": "cb916218-9ff3-4134-b92e-c339ab0c53d6", + "label": "label-3511", + "height": 301, + "background": "yellow" + }, + { + "key": "a9b8b6d5-446a-4e93-b9a1-4372f64b57c5", + "label": "label-3512", + "height": 394, + "background": "red" + }, + { + "key": "52ae8adb-46d4-4b2f-9aae-3ab4141d2a25", + "label": "label-3513", + "height": 400, + "background": "yellow" + }, + { + "key": "60fb259b-47c1-4985-a46b-fe355be5308e", + "label": "label-3514", + "height": 467, + "background": "blue" + }, + { + "key": "07f0d1e5-448b-4502-a19e-15b3ba085899", + "label": "label-3515", + "height": 233, + "background": "red" + }, + { + "key": "0ef0e968-5a1e-4aa7-a61c-3a077438aee1", + "label": "label-3516", + "height": 216, + "background": "green" + }, + { + "key": "d4442127-9013-47d9-bd55-1d873cc49dcb", + "label": "label-3517", + "height": 313, + "background": "blue" + }, + { + "key": "a91d9587-6b12-49ff-a12a-bb0e151115a1", + "label": "label-3518", + "height": 491, + "background": "green" + }, + { + "key": "26309cbc-5b80-4851-ae88-29c58cfe7642", + "label": "label-3519", + "height": 62, + "background": "yellow" + }, + { + "key": "765dabfa-a9fa-478f-ad44-d40c1fd1b417", + "label": "label-3520", + "height": 428, + "background": "red" + }, + { + "key": "7a41cfad-57c0-4cc5-9565-39fe2a32c33f", + "label": "label-3521", + "height": 373, + "background": "yellow" + }, + { + "key": "86b3074e-3af9-43f6-85c2-e12302a2ea3e", + "label": "label-3522", + "height": 126, + "background": "green" + }, + { + "key": "7e85397c-32d1-47ee-b1a0-1d047dc943fb", + "label": "label-3523", + "height": 270, + "background": "green" + }, + { + "key": "f6a0f1fe-7519-4eb0-891a-b6418a7d5fc2", + "label": "label-3524", + "height": 248, + "background": "green" + }, + { + "key": "db15523c-9aeb-4f66-9cd7-6eb6c4abbdca", + "label": "label-3525", + "height": 377, + "background": "blue" + }, + { + "key": "04c09c47-44fb-473d-b6c8-c49da03de025", + "label": "label-3526", + "height": 290, + "background": "blue" + }, + { + "key": "77083407-5605-412a-ab15-cd0bee38467f", + "label": "label-3527", + "height": 77, + "background": "blue" + }, + { + "key": "41cc0ec1-0c26-4f2e-a5db-c24c39d7f42f", + "label": "label-3528", + "height": 104, + "background": "blue" + }, + { + "key": "4bf9b332-fcf8-4930-8234-97b22ffb6d32", + "label": "label-3529", + "height": 159, + "background": "blue" + }, + { + "key": "0b5c4149-08ed-40fb-9bb9-0bff1bc4bbe0", + "label": "label-3530", + "height": 305, + "background": "yellow" + }, + { + "key": "ecb44a2f-5ca9-46b9-b3f0-4b03e190cb97", + "label": "label-3531", + "height": 131, + "background": "blue" + }, + { + "key": "733a9fb1-eb3c-49cb-a29e-c33dfd329f22", + "label": "label-3532", + "height": 385, + "background": "green" + }, + { + "key": "1aff3362-c4b8-42a8-b5f4-82b5dd12b477", + "label": "label-3533", + "height": 323, + "background": "yellow" + }, + { + "key": "56890ee3-9c07-47ef-817a-74d9e74d1fc3", + "label": "label-3534", + "height": 120, + "background": "green" + }, + { + "key": "fa307d3c-0dc7-4829-b2a1-b9b6b3042204", + "label": "label-3535", + "height": 486, + "background": "red" + }, + { + "key": "46928e98-9c77-434f-9c23-29bc572035a0", + "label": "label-3536", + "height": 326, + "background": "green" + }, + { + "key": "560f84a8-7d89-4590-864f-f7f3fe8f10f8", + "label": "label-3537", + "height": 485, + "background": "red" + }, + { + "key": "f2b200b4-f778-4af8-87d8-df3ec9ecb963", + "label": "label-3538", + "height": 378, + "background": "green" + }, + { + "key": "f25ea22c-beda-4b34-875b-766b8c09e54c", + "label": "label-3539", + "height": 73, + "background": "blue" + }, + { + "key": "6f922f5b-09aa-4e26-b4c9-0e3192a092cd", + "label": "label-3540", + "height": 394, + "background": "yellow" + }, + { + "key": "f7addd9d-c142-477f-ba0b-8dee93c75213", + "label": "label-3541", + "height": 191, + "background": "yellow" + }, + { + "key": "c098fbec-eba3-4be4-8145-da55f7805a82", + "label": "label-3542", + "height": 160, + "background": "red" + }, + { + "key": "701058ae-71d3-4ef1-a9cd-299924cc5eb4", + "label": "label-3543", + "height": 139, + "background": "blue" + }, + { + "key": "8128bb08-03d0-4607-9986-2a3cc7c523e8", + "label": "label-3544", + "height": 285, + "background": "blue" + }, + { + "key": "2bbdcb30-41ca-4582-abfc-04348052f8dc", + "label": "label-3545", + "height": 503, + "background": "blue" + }, + { + "key": "0845113d-8740-4125-9baa-d5e503ef1c04", + "label": "label-3546", + "height": 258, + "background": "green" + }, + { + "key": "cb7e5e5e-86ef-4375-a391-e49546ff4abd", + "label": "label-3547", + "height": 220, + "background": "red" + }, + { + "key": "1cfebc38-bea7-4aae-9d0f-81a7d1e72b57", + "label": "label-3548", + "height": 195, + "background": "yellow" + }, + { + "key": "f0dd241a-6bda-41ba-9d41-5250ab012c10", + "label": "label-3549", + "height": 202, + "background": "blue" + }, + { + "key": "0299f3bc-0fab-481b-bf9d-fd5ffcab63d1", + "label": "label-3550", + "height": 334, + "background": "green" + }, + { + "key": "dc47d961-cb49-4eca-b398-2d5dfc9a82f0", + "label": "label-3551", + "height": 487, + "background": "red" + }, + { + "key": "17640012-62b4-414b-81ca-cb004da07828", + "label": "label-3552", + "height": 55, + "background": "yellow" + }, + { + "key": "6392b50e-ebd7-4899-820d-d723ae2e982a", + "label": "label-3553", + "height": 285, + "background": "yellow" + }, + { + "key": "e57c1eef-601d-4dd9-808c-05591223f40c", + "label": "label-3554", + "height": 346, + "background": "blue" + }, + { + "key": "83c546c0-9b32-4956-8c84-8e457ed1b62e", + "label": "label-3555", + "height": 442, + "background": "green" + }, + { + "key": "42143f8a-2d63-4435-b034-d1c9051ca133", + "label": "label-3556", + "height": 429, + "background": "red" + }, + { + "key": "66cfe361-3a11-4baa-b171-a3bd254d7956", + "label": "label-3557", + "height": 216, + "background": "red" + }, + { + "key": "3afd3f5b-e6ac-4c07-84b2-e686be2a4623", + "label": "label-3558", + "height": 232, + "background": "red" + }, + { + "key": "674d167c-9801-42bd-b370-29bf3160041e", + "label": "label-3559", + "height": 196, + "background": "red" + }, + { + "key": "b33ab728-3e67-4c7f-8e55-d8431bb92e90", + "label": "label-3560", + "height": 311, + "background": "yellow" + }, + { + "key": "cf14b6b6-d5d2-40c2-a014-e7c923d1cf27", + "label": "label-3561", + "height": 269, + "background": "red" + }, + { + "key": "dc59ca6b-af32-4cbf-aea6-6d76fcca55c2", + "label": "label-3562", + "height": 278, + "background": "red" + }, + { + "key": "1313ef1b-01db-4710-9225-54fe0b7b3717", + "label": "label-3563", + "height": 298, + "background": "yellow" + }, + { + "key": "7b35fe4d-ef6f-48fa-9255-d6ec14c6ac3b", + "label": "label-3564", + "height": 221, + "background": "yellow" + }, + { + "key": "6ec4e0b7-a6d4-4fa4-b0ff-59e8f6b7b477", + "label": "label-3565", + "height": 363, + "background": "green" + }, + { + "key": "c7ff911e-d80e-473c-b816-6c3934dde931", + "label": "label-3566", + "height": 380, + "background": "red" + }, + { + "key": "62959dca-edcb-48b9-bfb4-1ce062825036", + "label": "label-3567", + "height": 141, + "background": "blue" + }, + { + "key": "61f71ec8-ac3f-4d90-915f-e5e82cb5e73c", + "label": "label-3568", + "height": 133, + "background": "green" + }, + { + "key": "a1947e51-7f37-41b5-991c-711782793798", + "label": "label-3569", + "height": 197, + "background": "red" + }, + { + "key": "57270b69-4a27-4039-9ce0-db37acb33a53", + "label": "label-3570", + "height": 370, + "background": "blue" + }, + { + "key": "d419258c-e3c7-4fe6-b97d-c47a4d787139", + "label": "label-3571", + "height": 80, + "background": "blue" + }, + { + "key": "44e6a3c4-3107-4cf7-8f07-89cb2dbf4e0b", + "label": "label-3572", + "height": 377, + "background": "green" + }, + { + "key": "8d53bc3c-29a4-42d0-81fb-29c3fde5a421", + "label": "label-3573", + "height": 73, + "background": "green" + }, + { + "key": "93ebe909-79ba-42e9-b2c8-a8eb1cc001dd", + "label": "label-3574", + "height": 190, + "background": "yellow" + }, + { + "key": "9746adc3-628c-470d-a99b-4b0355eca43a", + "label": "label-3575", + "height": 108, + "background": "red" + }, + { + "key": "cf8b9f29-289e-4fee-8c4d-e60fb81b0f45", + "label": "label-3576", + "height": 343, + "background": "red" + }, + { + "key": "7c64ee04-bc78-43c9-b867-0fd1ef7b0600", + "label": "label-3577", + "height": 149, + "background": "yellow" + }, + { + "key": "e41e71c7-36da-4890-b3aa-6d486cf606a2", + "label": "label-3578", + "height": 62, + "background": "green" + }, + { + "key": "8639eb56-f16c-43cc-8a83-f545f954ef52", + "label": "label-3579", + "height": 287, + "background": "green" + }, + { + "key": "4677030f-b0da-4b4e-a642-00bb5e4d7a86", + "label": "label-3580", + "height": 40, + "background": "yellow" + }, + { + "key": "2807e2b9-9549-4c93-8396-8148cd5db5b2", + "label": "label-3581", + "height": 270, + "background": "green" + }, + { + "key": "b64f5f6f-5e8c-400d-9938-5afbc1642857", + "label": "label-3582", + "height": 130, + "background": "green" + }, + { + "key": "bda73781-103b-4acb-a69a-9b27d4f77fc9", + "label": "label-3583", + "height": 419, + "background": "blue" + }, + { + "key": "52e76320-ee15-4df1-9db6-21e05ea25b61", + "label": "label-3584", + "height": 377, + "background": "red" + }, + { + "key": "54a59102-7959-4e70-aae9-2099607119df", + "label": "label-3585", + "height": 133, + "background": "red" + }, + { + "key": "a2fb8ce6-783a-4f48-837e-53286ab79d17", + "label": "label-3586", + "height": 464, + "background": "yellow" + }, + { + "key": "26f0d927-1d10-429d-9fb7-31cc061ff709", + "label": "label-3587", + "height": 67, + "background": "green" + }, + { + "key": "65ac81b8-7fa4-4777-9a3a-79ded41122fe", + "label": "label-3588", + "height": 417, + "background": "blue" + }, + { + "key": "367961da-ed86-4a03-bc7a-57ea8f28354e", + "label": "label-3589", + "height": 473, + "background": "yellow" + }, + { + "key": "f7a73e87-471b-4526-91be-194f137b86dd", + "label": "label-3590", + "height": 136, + "background": "red" + }, + { + "key": "35bd5025-3066-4659-a98a-95c1e04d00e6", + "label": "label-3591", + "height": 357, + "background": "red" + }, + { + "key": "97811bcf-b85a-47f0-9116-ef2d7b341a91", + "label": "label-3592", + "height": 242, + "background": "yellow" + }, + { + "key": "a0a73d2b-ff68-4f55-8f17-11e4f1df9703", + "label": "label-3593", + "height": 413, + "background": "red" + }, + { + "key": "cf8361bd-c79e-4cbb-8fb6-55dd117d3137", + "label": "label-3594", + "height": 63, + "background": "yellow" + }, + { + "key": "aaf5b520-844c-43f3-ac54-9d431948e1bf", + "label": "label-3595", + "height": 515, + "background": "blue" + }, + { + "key": "f28e78ce-b20b-4da6-bea6-eeda1205aa93", + "label": "label-3596", + "height": 368, + "background": "red" + }, + { + "key": "fbe04691-b207-472d-a309-77d27c8d3d69", + "label": "label-3597", + "height": 159, + "background": "yellow" + }, + { + "key": "8517fd36-58c2-4b72-83f2-1309200f891c", + "label": "label-3598", + "height": 322, + "background": "green" + }, + { + "key": "de6ba442-32f3-443d-a908-0203545ba720", + "label": "label-3599", + "height": 308, + "background": "yellow" + }, + { + "key": "9c3ea700-dc74-4d3f-8c3a-8931dcdf775b", + "label": "label-3600", + "height": 446, + "background": "blue" + }, + { + "key": "df41938c-7478-42a6-830f-f9504487b404", + "label": "label-3601", + "height": 526, + "background": "green" + }, + { + "key": "34252d96-e565-4969-a11b-13e32e771f91", + "label": "label-3602", + "height": 90, + "background": "blue" + }, + { + "key": "8baf00e2-7c6b-4b3a-aa66-0462d6e058fc", + "label": "label-3603", + "height": 245, + "background": "red" + }, + { + "key": "449b0997-fddd-4276-813e-e1e527cc3cb2", + "label": "label-3604", + "height": 339, + "background": "yellow" + }, + { + "key": "048f4d52-ec57-4545-acb7-e02d15e9fe9e", + "label": "label-3605", + "height": 182, + "background": "green" + }, + { + "key": "f382c1a3-2e6c-443f-8850-18aac449c509", + "label": "label-3606", + "height": 81, + "background": "blue" + }, + { + "key": "8f8de4e4-0a37-4749-82d8-2329acae87e3", + "label": "label-3607", + "height": 467, + "background": "green" + }, + { + "key": "2790f146-6ef7-4ca8-97fc-247963622338", + "label": "label-3608", + "height": 421, + "background": "blue" + }, + { + "key": "1ecbf95d-3788-4e3c-a86a-e46cc65bb085", + "label": "label-3609", + "height": 250, + "background": "green" + }, + { + "key": "9a1d7031-70a4-4faf-b155-a6094bb4e736", + "label": "label-3610", + "height": 382, + "background": "blue" + }, + { + "key": "dd04fe5c-2726-425e-ad7f-2eb6921455d3", + "label": "label-3611", + "height": 391, + "background": "yellow" + }, + { + "key": "7be7f7d8-644f-4d17-8e75-0e3912ae0b59", + "label": "label-3612", + "height": 342, + "background": "red" + }, + { + "key": "ccb98430-6a20-4c13-aae9-19a4b7b7b9f1", + "label": "label-3613", + "height": 100, + "background": "blue" + }, + { + "key": "347bdf41-b38d-4e5d-b36b-c2d805a7e106", + "label": "label-3614", + "height": 142, + "background": "red" + }, + { + "key": "50495f1a-9a75-427b-8807-b07349b1cc4f", + "label": "label-3615", + "height": 44, + "background": "blue" + }, + { + "key": "7985ef40-df1b-4ac1-bf3d-c6e31d9e1be3", + "label": "label-3616", + "height": 250, + "background": "green" + }, + { + "key": "0d27b37e-bd69-4eca-a3c2-799065aec200", + "label": "label-3617", + "height": 124, + "background": "yellow" + }, + { + "key": "57cf9137-ba19-44f0-b10e-8aee70d7a025", + "label": "label-3618", + "height": 241, + "background": "green" + }, + { + "key": "2e8faf4c-c766-407d-97ad-34d1955c0279", + "label": "label-3619", + "height": 361, + "background": "blue" + }, + { + "key": "a5c5c7af-b0d2-4727-a591-b4257866c3ce", + "label": "label-3620", + "height": 162, + "background": "green" + }, + { + "key": "50e96316-133e-4fb8-a58f-ea108585f0bb", + "label": "label-3621", + "height": 116, + "background": "red" + }, + { + "key": "fd222cbf-b301-40cc-bd2d-0e487bb3edee", + "label": "label-3622", + "height": 167, + "background": "red" + }, + { + "key": "08a0bddd-30fb-40a5-8fe3-f1438ff5c198", + "label": "label-3623", + "height": 465, + "background": "blue" + }, + { + "key": "d63fa094-48df-4826-a9fb-8e7db514c346", + "label": "label-3624", + "height": 523, + "background": "yellow" + }, + { + "key": "9f9432ba-9c4c-4cdb-badd-0e01de916a26", + "label": "label-3625", + "height": 464, + "background": "yellow" + }, + { + "key": "5f13986c-3799-406c-af98-c1408b854145", + "label": "label-3626", + "height": 199, + "background": "yellow" + }, + { + "key": "f5cee64f-2fc8-4c5a-9633-d0fa8fd7bcc3", + "label": "label-3627", + "height": 309, + "background": "yellow" + }, + { + "key": "03b8925b-434a-4064-b6b0-1517f46513fe", + "label": "label-3628", + "height": 464, + "background": "green" + }, + { + "key": "f59c7661-db2d-446f-bc3d-5e4a13cf9bf0", + "label": "label-3629", + "height": 416, + "background": "red" + }, + { + "key": "c31194ba-4b14-4c9f-907b-837e96136983", + "label": "label-3630", + "height": 77, + "background": "yellow" + }, + { + "key": "8b431e85-f57f-46ed-bb79-ef73bdde8ff2", + "label": "label-3631", + "height": 300, + "background": "green" + }, + { + "key": "e1b91be1-e3c6-42db-8951-8c715f872664", + "label": "label-3632", + "height": 190, + "background": "green" + }, + { + "key": "3b06f5f6-e2b4-4c0e-8fe2-75a91bdd483d", + "label": "label-3633", + "height": 145, + "background": "yellow" + }, + { + "key": "3ed24f23-7c2a-4b81-9a2d-2d4bef4dadf4", + "label": "label-3634", + "height": 355, + "background": "yellow" + }, + { + "key": "4ae8952a-6ae9-4fb8-9e1b-1808979a7752", + "label": "label-3635", + "height": 480, + "background": "red" + }, + { + "key": "fff94857-57c9-4d5e-9c8f-f9b261f2418a", + "label": "label-3636", + "height": 158, + "background": "yellow" + }, + { + "key": "f5b5fe54-1f86-4cd2-9a6a-e922f385927d", + "label": "label-3637", + "height": 155, + "background": "yellow" + }, + { + "key": "f8a35df8-0568-4a8a-b28f-2fa4c8c0950a", + "label": "label-3638", + "height": 92, + "background": "green" + }, + { + "key": "0c0aff7d-3084-412e-9828-bf57d111a335", + "label": "label-3639", + "height": 154, + "background": "green" + }, + { + "key": "c7602ea2-2446-4b1b-b3fb-601b963db0ed", + "label": "label-3640", + "height": 524, + "background": "yellow" + }, + { + "key": "50b85f44-580c-4455-bd72-773404ee772b", + "label": "label-3641", + "height": 108, + "background": "red" + }, + { + "key": "6de8a86b-1117-4826-a9cd-4f2cdc080713", + "label": "label-3642", + "height": 429, + "background": "blue" + }, + { + "key": "dac19aa2-0c9f-4d9f-98c9-2e370cfc949d", + "label": "label-3643", + "height": 198, + "background": "green" + }, + { + "key": "98d67b78-a430-4d0c-bd9e-7df53cbdb544", + "label": "label-3644", + "height": 312, + "background": "yellow" + }, + { + "key": "0e8e1299-ea3a-4a9c-ac14-c60a415a661b", + "label": "label-3645", + "height": 100, + "background": "green" + }, + { + "key": "385e011e-5fac-4fb4-9a7f-fdd9014a4cc9", + "label": "label-3646", + "height": 273, + "background": "red" + }, + { + "key": "618a9cc2-5a23-46d0-be6d-c7e01de839c6", + "label": "label-3647", + "height": 284, + "background": "red" + }, + { + "key": "fecdd62c-264a-4f6f-a09b-00ccf5a437b0", + "label": "label-3648", + "height": 103, + "background": "yellow" + }, + { + "key": "8717b74a-6c65-41c2-abb8-11d2bbb234ea", + "label": "label-3649", + "height": 148, + "background": "green" + }, + { + "key": "2f18a6bc-2ce6-4592-b2f6-5361debbb6f4", + "label": "label-3650", + "height": 35, + "background": "red" + }, + { + "key": "3b9262f6-0860-4d80-bfb0-d8288819bde1", + "label": "label-3651", + "height": 431, + "background": "yellow" + }, + { + "key": "9e22b068-f8e1-45b7-b4a5-6b37e4ebd2b7", + "label": "label-3652", + "height": 301, + "background": "blue" + }, + { + "key": "f938933c-3ba3-4cc9-b2fb-5396c848b969", + "label": "label-3653", + "height": 272, + "background": "green" + }, + { + "key": "6a56ef88-1cc7-4425-84a9-1dbc4dd2c37d", + "label": "label-3654", + "height": 295, + "background": "blue" + }, + { + "key": "720dce18-3f35-4f35-9228-f06c733394c4", + "label": "label-3655", + "height": 250, + "background": "blue" + }, + { + "key": "b0b9ea96-c1e6-4a93-b1f7-cd212155a088", + "label": "label-3656", + "height": 347, + "background": "yellow" + }, + { + "key": "afea6b13-06d8-4617-870b-b06f9f5a51ac", + "label": "label-3657", + "height": 495, + "background": "yellow" + }, + { + "key": "4b4bfb4e-06b6-4fd4-ad5c-97fccd6ed50a", + "label": "label-3658", + "height": 111, + "background": "green" + }, + { + "key": "12a34300-c2a5-4d87-8758-29212b7d715c", + "label": "label-3659", + "height": 199, + "background": "red" + }, + { + "key": "0004b3b1-74bd-4ab3-94fe-4ae2d426ae59", + "label": "label-3660", + "height": 140, + "background": "green" + }, + { + "key": "728f6f15-af2f-41eb-936b-8c4b0b5ddb55", + "label": "label-3661", + "height": 316, + "background": "blue" + }, + { + "key": "3104e136-cb09-4967-98e7-c0fee3f986e0", + "label": "label-3662", + "height": 60, + "background": "red" + }, + { + "key": "c2b69421-0319-4251-a3ce-43f0029eb9b4", + "label": "label-3663", + "height": 341, + "background": "green" + }, + { + "key": "a9df982a-9e25-46d8-acf5-5375df939079", + "label": "label-3664", + "height": 50, + "background": "yellow" + }, + { + "key": "a2219af1-2277-445b-b794-904e2d5a4444", + "label": "label-3665", + "height": 458, + "background": "yellow" + }, + { + "key": "4b6c9bec-e2d4-4057-b5ed-b24bf74f159b", + "label": "label-3666", + "height": 209, + "background": "red" + }, + { + "key": "cfc99281-2f82-4426-8125-8fcc40382f1a", + "label": "label-3667", + "height": 137, + "background": "green" + }, + { + "key": "f7a70bcd-3354-42f8-8ff8-35d90f44e75c", + "label": "label-3668", + "height": 457, + "background": "green" + }, + { + "key": "f9a203ce-ae71-44ef-8910-22a2aee0ecd6", + "label": "label-3669", + "height": 380, + "background": "green" + }, + { + "key": "ca351845-e235-44a1-873c-d486e2b5d461", + "label": "label-3670", + "height": 495, + "background": "yellow" + }, + { + "key": "60cf7ca9-88e9-48d7-8018-ad888942a28f", + "label": "label-3671", + "height": 154, + "background": "blue" + }, + { + "key": "a841711a-968f-4194-ab6f-01420321472f", + "label": "label-3672", + "height": 41, + "background": "yellow" + }, + { + "key": "9e0d60a1-0ca5-455b-9078-527aecbedcae", + "label": "label-3673", + "height": 258, + "background": "yellow" + }, + { + "key": "9fbb580d-7c10-4887-9633-87f16951d35e", + "label": "label-3674", + "height": 85, + "background": "yellow" + }, + { + "key": "62fb4339-758a-4e0c-97c7-d358a3f2ccef", + "label": "label-3675", + "height": 275, + "background": "yellow" + }, + { + "key": "75af4e3f-48ba-4c31-976a-cc338cc38aa2", + "label": "label-3676", + "height": 232, + "background": "blue" + }, + { + "key": "6be83560-ff76-442c-bbf0-f7045f8d03c2", + "label": "label-3677", + "height": 436, + "background": "blue" + }, + { + "key": "87c7bfcc-01bb-4e96-9f98-5d15d9e9b063", + "label": "label-3678", + "height": 78, + "background": "red" + }, + { + "key": "fdab958f-2ae6-4ead-a05c-787dec4ce3ad", + "label": "label-3679", + "height": 112, + "background": "blue" + }, + { + "key": "30f3155e-282d-4f67-8751-a9f64f204357", + "label": "label-3680", + "height": 484, + "background": "yellow" + }, + { + "key": "64b9fc80-30b9-402f-83ad-5e208eaf78c1", + "label": "label-3681", + "height": 136, + "background": "yellow" + }, + { + "key": "412e532b-37a7-45f5-b6e8-2c5db39a87fb", + "label": "label-3682", + "height": 447, + "background": "green" + }, + { + "key": "ef578945-c41d-417f-b2c9-f711a2ea8916", + "label": "label-3683", + "height": 381, + "background": "blue" + }, + { + "key": "54497929-95c0-4a7d-b79f-b88993b74188", + "label": "label-3684", + "height": 105, + "background": "green" + }, + { + "key": "f57ea424-bc51-4a4f-b1e9-75505999ae49", + "label": "label-3685", + "height": 114, + "background": "yellow" + }, + { + "key": "2c56feeb-3d7b-44b4-a6be-8942ce023138", + "label": "label-3686", + "height": 211, + "background": "blue" + }, + { + "key": "0df02f6b-1c40-4a7a-a77c-b6ed916c2696", + "label": "label-3687", + "height": 263, + "background": "blue" + }, + { + "key": "bf01c316-df21-45b9-ae17-ddbf960d8a3a", + "label": "label-3688", + "height": 323, + "background": "green" + }, + { + "key": "d1a2ae9c-0e61-49db-8f1c-f510de310d68", + "label": "label-3689", + "height": 33, + "background": "green" + }, + { + "key": "946c563a-4432-4ae6-95d4-5401a9cf6aaf", + "label": "label-3690", + "height": 313, + "background": "yellow" + }, + { + "key": "524a68de-865a-41da-b3ef-46652215a236", + "label": "label-3691", + "height": 516, + "background": "yellow" + }, + { + "key": "5627676a-6d8b-4dfe-98d9-f3a3a7d97cb7", + "label": "label-3692", + "height": 354, + "background": "yellow" + }, + { + "key": "7f24afbd-330b-467e-844a-97845d992050", + "label": "label-3693", + "height": 152, + "background": "yellow" + }, + { + "key": "428a68d0-a262-484c-af35-9c5619fb6ae4", + "label": "label-3694", + "height": 312, + "background": "red" + }, + { + "key": "2a479167-7411-4a71-bfa1-9649419f4a36", + "label": "label-3695", + "height": 45, + "background": "yellow" + }, + { + "key": "16f254fe-6faf-4864-bce5-c7f73a16631e", + "label": "label-3696", + "height": 170, + "background": "yellow" + }, + { + "key": "f376233c-4924-461c-8239-c2429a673aed", + "label": "label-3697", + "height": 119, + "background": "green" + }, + { + "key": "bf0a14fc-5445-4691-bd4a-64df5616b1dd", + "label": "label-3698", + "height": 441, + "background": "yellow" + }, + { + "key": "fcf4e3d0-fbf8-4375-a20b-98efa603ed94", + "label": "label-3699", + "height": 427, + "background": "blue" + }, + { + "key": "15e05d4b-f3b0-4017-91c4-64f48e6ae0a3", + "label": "label-3700", + "height": 426, + "background": "red" + }, + { + "key": "33b91e91-7763-4005-8729-a3ed19849eff", + "label": "label-3701", + "height": 224, + "background": "blue" + }, + { + "key": "edd13a4c-2a9d-44ce-86c3-eedfb895d949", + "label": "label-3702", + "height": 377, + "background": "green" + }, + { + "key": "fa4cd073-c35f-461e-9ada-0b69b7e89575", + "label": "label-3703", + "height": 339, + "background": "red" + }, + { + "key": "1972704d-f269-4dfc-9ee0-6fe4b1443915", + "label": "label-3704", + "height": 235, + "background": "blue" + }, + { + "key": "0d8a5542-dccb-4f25-a429-803df9854449", + "label": "label-3705", + "height": 413, + "background": "red" + }, + { + "key": "2c79bf63-bd5a-4855-96df-b6108d4a77e0", + "label": "label-3706", + "height": 80, + "background": "red" + }, + { + "key": "fe8ea213-037d-4608-81a2-578621623dc7", + "label": "label-3707", + "height": 522, + "background": "yellow" + }, + { + "key": "7166170d-8ea4-415f-9d5b-1fee34c6e565", + "label": "label-3708", + "height": 284, + "background": "red" + }, + { + "key": "63050a4d-2c1c-40d3-aa56-37ba3ede437f", + "label": "label-3709", + "height": 332, + "background": "yellow" + }, + { + "key": "47c73895-ff71-4139-86cc-8f5a2a11240d", + "label": "label-3710", + "height": 321, + "background": "blue" + }, + { + "key": "ab227a9c-f9a0-4fc4-9255-d0aef3cfcc8d", + "label": "label-3711", + "height": 278, + "background": "green" + }, + { + "key": "6df294cf-3031-41bd-b1f7-4613a2d6cfea", + "label": "label-3712", + "height": 453, + "background": "green" + }, + { + "key": "49151253-d814-410e-bbd0-9f8e03ace0dc", + "label": "label-3713", + "height": 224, + "background": "blue" + }, + { + "key": "215fc307-a3df-4004-99e7-6bbbaa6074bc", + "label": "label-3714", + "height": 68, + "background": "yellow" + }, + { + "key": "1738449a-5277-48cb-a473-bdf04dd20663", + "label": "label-3715", + "height": 496, + "background": "red" + }, + { + "key": "82f8c7a1-e6bc-4e2a-9260-a0aa677612e1", + "label": "label-3716", + "height": 369, + "background": "red" + }, + { + "key": "cfb44280-1cf2-464e-a79b-b688d70aa1b8", + "label": "label-3717", + "height": 474, + "background": "blue" + }, + { + "key": "fd3007b7-772e-4139-aa1b-e57ee274c341", + "label": "label-3718", + "height": 324, + "background": "green" + }, + { + "key": "52fa2767-0e5c-4221-a160-1ba44de9263c", + "label": "label-3719", + "height": 164, + "background": "blue" + }, + { + "key": "bc3fda22-4073-459a-a40a-23c0dda7c73d", + "label": "label-3720", + "height": 250, + "background": "green" + }, + { + "key": "013607c5-7bce-4082-8267-20f24832d333", + "label": "label-3721", + "height": 411, + "background": "yellow" + }, + { + "key": "b0dfd770-55d3-4be2-933b-6dbb643675e0", + "label": "label-3722", + "height": 454, + "background": "green" + }, + { + "key": "71fd684f-71d5-423d-8fb5-c885ebb776b1", + "label": "label-3723", + "height": 512, + "background": "blue" + }, + { + "key": "997f9d64-1721-4385-b113-d1551d56051e", + "label": "label-3724", + "height": 422, + "background": "blue" + }, + { + "key": "8655ad7b-fe32-457f-941a-b9faa8b0fa89", + "label": "label-3725", + "height": 501, + "background": "green" + }, + { + "key": "c22a6d2d-4898-420c-a738-476a2d7e4ce8", + "label": "label-3726", + "height": 526, + "background": "yellow" + }, + { + "key": "e3ece7bd-a9e9-475f-a915-9dc49ad6d2cb", + "label": "label-3727", + "height": 431, + "background": "green" + }, + { + "key": "f8c58b3b-5ae9-455c-9434-d7ee759255c9", + "label": "label-3728", + "height": 434, + "background": "green" + }, + { + "key": "cb21887c-b917-4bce-b062-974f99e00a9b", + "label": "label-3729", + "height": 308, + "background": "blue" + }, + { + "key": "203d7af1-fc12-4f53-8a3c-934e9b4887fa", + "label": "label-3730", + "height": 481, + "background": "blue" + }, + { + "key": "d2e1625e-3a87-4362-b607-bb9de544258a", + "label": "label-3731", + "height": 187, + "background": "red" + }, + { + "key": "eb0b3c56-d6b2-48e9-8825-e48156f3a3e0", + "label": "label-3732", + "height": 42, + "background": "green" + }, + { + "key": "8832125c-e939-4c7e-8730-403499fcd1f9", + "label": "label-3733", + "height": 234, + "background": "green" + }, + { + "key": "e93471eb-5ba5-4881-b45a-4534c2950685", + "label": "label-3734", + "height": 272, + "background": "red" + }, + { + "key": "0f596b13-5a65-4293-9084-70f894f32c7b", + "label": "label-3735", + "height": 399, + "background": "red" + }, + { + "key": "08ef630d-83b3-4203-989d-dfe9648e7f86", + "label": "label-3736", + "height": 498, + "background": "yellow" + }, + { + "key": "fe729463-0f61-438a-8a77-115bf267f6b1", + "label": "label-3737", + "height": 310, + "background": "blue" + }, + { + "key": "0c037434-ec23-4954-94f2-4a51cbaf127b", + "label": "label-3738", + "height": 385, + "background": "blue" + }, + { + "key": "43a4084e-7fc8-4fd3-9232-d051a25898f1", + "label": "label-3739", + "height": 323, + "background": "blue" + }, + { + "key": "075b3fae-66d5-4c3b-8142-603d99a6eb25", + "label": "label-3740", + "height": 55, + "background": "green" + }, + { + "key": "1a400885-3eaa-42f8-b380-f9421a86a9a0", + "label": "label-3741", + "height": 248, + "background": "blue" + }, + { + "key": "f6481514-7bfb-4d84-b500-0c30afd68275", + "label": "label-3742", + "height": 175, + "background": "blue" + }, + { + "key": "233f08a8-7fcf-4134-a165-dbf404af6706", + "label": "label-3743", + "height": 139, + "background": "yellow" + }, + { + "key": "a1255a19-ab0c-4718-9551-b39952e43c09", + "label": "label-3744", + "height": 418, + "background": "blue" + }, + { + "key": "80761836-e821-4723-844b-413b56f89f19", + "label": "label-3745", + "height": 63, + "background": "red" + }, + { + "key": "f103b734-26ec-4ef1-ad14-122fdbeaa48a", + "label": "label-3746", + "height": 368, + "background": "red" + }, + { + "key": "c43308d1-e7fc-40e1-9bd7-4c5153cf59de", + "label": "label-3747", + "height": 137, + "background": "green" + }, + { + "key": "5020c6b5-82b0-41d9-93e3-9bbcccee8da0", + "label": "label-3748", + "height": 71, + "background": "blue" + }, + { + "key": "f30ad9cd-ec19-4ac9-96c2-8e146a622e20", + "label": "label-3749", + "height": 127, + "background": "green" + }, + { + "key": "01cc52bd-ee8d-4993-b123-096188120327", + "label": "label-3750", + "height": 413, + "background": "yellow" + }, + { + "key": "a1adf48d-5b63-4d97-bd41-f379c32bb7fe", + "label": "label-3751", + "height": 432, + "background": "green" + }, + { + "key": "e83d7c03-d415-4a4a-be95-009734c314c4", + "label": "label-3752", + "height": 314, + "background": "yellow" + }, + { + "key": "3d61e7ce-d8a8-4ea4-84c3-fd99015d1a05", + "label": "label-3753", + "height": 233, + "background": "yellow" + }, + { + "key": "45ddf229-cc5c-403f-9b40-3975df0e6b8b", + "label": "label-3754", + "height": 425, + "background": "yellow" + }, + { + "key": "63f15750-ba0c-454f-8800-3196a44efab4", + "label": "label-3755", + "height": 213, + "background": "red" + }, + { + "key": "1073e1eb-6025-493e-8a53-572709c7496e", + "label": "label-3756", + "height": 372, + "background": "blue" + }, + { + "key": "ea0f59a2-e253-49c7-bf0d-9b48dc7c194e", + "label": "label-3757", + "height": 350, + "background": "green" + }, + { + "key": "c399d95f-f953-4985-b844-580a6ab21d40", + "label": "label-3758", + "height": 88, + "background": "blue" + }, + { + "key": "f0c7cc17-ce79-4cf4-8906-37289b8106ff", + "label": "label-3759", + "height": 509, + "background": "yellow" + }, + { + "key": "1c3a97fa-c1ca-42d5-94e2-19fd8d78bd6f", + "label": "label-3760", + "height": 192, + "background": "green" + }, + { + "key": "71f738cc-c3b4-44f5-9778-9f9c0e475d14", + "label": "label-3761", + "height": 184, + "background": "green" + }, + { + "key": "6f9c954c-f160-40ec-853d-af5c50fb4d44", + "label": "label-3762", + "height": 284, + "background": "yellow" + }, + { + "key": "e58e1bdd-76e6-45c9-8d51-303f4fa05841", + "label": "label-3763", + "height": 91, + "background": "red" + }, + { + "key": "2ae12ad2-7701-4575-843c-9f6a80b9e96e", + "label": "label-3764", + "height": 34, + "background": "yellow" + }, + { + "key": "69d1b7d8-f2d3-4ae2-ba67-3745b3f7fe5e", + "label": "label-3765", + "height": 83, + "background": "green" + }, + { + "key": "0cbd23db-5b7f-47a1-9809-e566a2b07133", + "label": "label-3766", + "height": 207, + "background": "yellow" + }, + { + "key": "e4e64f14-cf86-4896-97a0-877030a4ddb3", + "label": "label-3767", + "height": 342, + "background": "green" + }, + { + "key": "e8aa2584-66b2-4b3f-9dd3-2e30c53c7595", + "label": "label-3768", + "height": 151, + "background": "red" + }, + { + "key": "9d6c2d13-918d-4513-9ff2-89dc4c189e48", + "label": "label-3769", + "height": 163, + "background": "yellow" + }, + { + "key": "3ee22c49-0f89-44c1-a2ea-02bf8313ceaa", + "label": "label-3770", + "height": 170, + "background": "green" + }, + { + "key": "7a3b06b2-e279-4682-9196-8247b1a76d3c", + "label": "label-3771", + "height": 411, + "background": "green" + }, + { + "key": "acc55e62-75c4-45fb-b935-1ac8e45172db", + "label": "label-3772", + "height": 234, + "background": "blue" + }, + { + "key": "7d20aed9-702d-458e-9254-f126f186c2ed", + "label": "label-3773", + "height": 531, + "background": "red" + }, + { + "key": "fc63e8b6-72ef-4a04-a108-d165afbeef7c", + "label": "label-3774", + "height": 101, + "background": "blue" + }, + { + "key": "5b188541-1151-4626-8043-8520f3067ac8", + "label": "label-3775", + "height": 71, + "background": "red" + }, + { + "key": "9073e369-0d48-4978-9532-b2138c1978b9", + "label": "label-3776", + "height": 359, + "background": "green" + }, + { + "key": "9cfc5346-3f01-4e2f-bbca-d3b799416782", + "label": "label-3777", + "height": 65, + "background": "green" + }, + { + "key": "cbd765ff-c209-4d10-8b80-7821f1bf44e7", + "label": "label-3778", + "height": 355, + "background": "red" + }, + { + "key": "ce064b1b-2777-4170-9cb2-c5275e348441", + "label": "label-3779", + "height": 473, + "background": "yellow" + }, + { + "key": "aed346b6-4ee6-424a-9059-d9533d9535ba", + "label": "label-3780", + "height": 503, + "background": "green" + }, + { + "key": "cc7a65bf-aa33-4dbb-9317-864d2a9e9267", + "label": "label-3781", + "height": 251, + "background": "yellow" + }, + { + "key": "5befd864-7b8c-40ee-bc7b-9356b0c7d5f1", + "label": "label-3782", + "height": 62, + "background": "green" + }, + { + "key": "196d6021-56ef-4bee-98f0-50f6d3ea07cb", + "label": "label-3783", + "height": 238, + "background": "green" + }, + { + "key": "bec63490-1389-41c4-a622-5f1fee785a3d", + "label": "label-3784", + "height": 170, + "background": "green" + }, + { + "key": "0a6eac17-5d54-4226-abe4-103824105310", + "label": "label-3785", + "height": 296, + "background": "green" + }, + { + "key": "34d4647f-5722-4e74-b81e-d1f3503be580", + "label": "label-3786", + "height": 292, + "background": "red" + }, + { + "key": "9a9c0ab3-e80b-49f4-a107-7d89b3edf691", + "label": "label-3787", + "height": 474, + "background": "yellow" + }, + { + "key": "1ba0de7e-3a73-4c58-b1f6-be098b67516c", + "label": "label-3788", + "height": 372, + "background": "yellow" + }, + { + "key": "1f0834d2-5c04-4d28-9d47-790a31a28995", + "label": "label-3789", + "height": 107, + "background": "yellow" + }, + { + "key": "4a093376-6409-4d65-a514-ce4aaf35d136", + "label": "label-3790", + "height": 349, + "background": "green" + }, + { + "key": "4859fef1-07b6-40cb-be58-7e352b60baa8", + "label": "label-3791", + "height": 350, + "background": "blue" + }, + { + "key": "c05856d1-4318-41eb-8caf-c164de224c05", + "label": "label-3792", + "height": 263, + "background": "red" + }, + { + "key": "30e62c2e-6e9b-4bca-aae0-2ac839222939", + "label": "label-3793", + "height": 89, + "background": "red" + }, + { + "key": "6c0337f7-8f69-413e-b13c-22b4b26087d2", + "label": "label-3794", + "height": 175, + "background": "yellow" + }, + { + "key": "0da37b32-3a4a-4c25-9c6d-dd25132e7e1c", + "label": "label-3795", + "height": 504, + "background": "blue" + }, + { + "key": "4a9e8256-1e27-40b8-bed2-81e29721fc04", + "label": "label-3796", + "height": 327, + "background": "yellow" + }, + { + "key": "bc71545c-b180-4007-8d4e-03dad5df18f2", + "label": "label-3797", + "height": 314, + "background": "green" + }, + { + "key": "dc4ccfd2-6a09-46b4-b5ae-0d649cb96ec4", + "label": "label-3798", + "height": 82, + "background": "blue" + }, + { + "key": "d0dc4190-6200-4927-b32d-4ba9fea8e0e6", + "label": "label-3799", + "height": 501, + "background": "yellow" + }, + { + "key": "f19bf45f-229f-4968-ac29-2bc4ad012ece", + "label": "label-3800", + "height": 215, + "background": "green" + }, + { + "key": "832100ad-1a66-467d-95cf-b5d95e2450a8", + "label": "label-3801", + "height": 320, + "background": "red" + }, + { + "key": "f3b33f79-e7ba-429f-9421-f3932795e543", + "label": "label-3802", + "height": 294, + "background": "red" + }, + { + "key": "2860fbc0-dbdd-4327-940f-ec12662546d6", + "label": "label-3803", + "height": 93, + "background": "green" + }, + { + "key": "de2902c4-540b-490c-a567-059e3bac27d8", + "label": "label-3804", + "height": 433, + "background": "blue" + }, + { + "key": "82708b87-cee3-401e-90ec-119e4c0a131c", + "label": "label-3805", + "height": 254, + "background": "green" + }, + { + "key": "4df390e1-fb30-4cc5-ae48-e77d13a880ea", + "label": "label-3806", + "height": 439, + "background": "yellow" + }, + { + "key": "9b605e5e-4628-4805-9480-6aa6882de431", + "label": "label-3807", + "height": 49, + "background": "red" + }, + { + "key": "0ca2228c-581f-4177-b92d-201abd474945", + "label": "label-3808", + "height": 486, + "background": "yellow" + }, + { + "key": "061b0cc8-c223-45bf-b572-af2f24ea0906", + "label": "label-3809", + "height": 530, + "background": "yellow" + }, + { + "key": "853618ef-9298-471a-8597-81dee2d25bb8", + "label": "label-3810", + "height": 452, + "background": "yellow" + }, + { + "key": "f46f8afc-ae28-48c9-a8f9-964dc9ce9e83", + "label": "label-3811", + "height": 230, + "background": "yellow" + }, + { + "key": "12ce964d-7097-409a-bc5e-1dc52734e61e", + "label": "label-3812", + "height": 260, + "background": "blue" + }, + { + "key": "90cdfc65-2365-4a0d-8eb7-2c37d236d6df", + "label": "label-3813", + "height": 395, + "background": "red" + }, + { + "key": "d162905d-3b49-4049-a0b4-47c1ace60c93", + "label": "label-3814", + "height": 111, + "background": "yellow" + }, + { + "key": "9ced3bac-0677-4883-920f-562596c3ca48", + "label": "label-3815", + "height": 403, + "background": "blue" + }, + { + "key": "058d7992-0073-4d3f-8284-6ccb83387e43", + "label": "label-3816", + "height": 282, + "background": "red" + }, + { + "key": "814598be-f4e4-448e-8e9c-c1eac941552c", + "label": "label-3817", + "height": 35, + "background": "yellow" + }, + { + "key": "f7664474-c482-4ac8-a9c7-a0e6f7a71785", + "label": "label-3818", + "height": 501, + "background": "blue" + }, + { + "key": "509baa9d-e487-4491-b79e-add73dc0f6d0", + "label": "label-3819", + "height": 432, + "background": "green" + }, + { + "key": "076555c6-633d-4336-a464-e1ada7d232e1", + "label": "label-3820", + "height": 358, + "background": "yellow" + }, + { + "key": "c7309feb-df28-4dac-b7d7-3ff0074ce49d", + "label": "label-3821", + "height": 295, + "background": "yellow" + }, + { + "key": "9c476b61-bd1f-435c-b2f1-9d6a970bfd67", + "label": "label-3822", + "height": 253, + "background": "red" + }, + { + "key": "ba82cdc5-876e-43f3-b072-1929ccfb6d0e", + "label": "label-3823", + "height": 166, + "background": "red" + }, + { + "key": "ffe16d85-dbdf-4de2-bad8-8bef3a3f2da4", + "label": "label-3824", + "height": 201, + "background": "green" + }, + { + "key": "566b2f7a-bd48-4c8b-b36d-bcaa1c30cc23", + "label": "label-3825", + "height": 489, + "background": "blue" + }, + { + "key": "92593993-8982-4bc8-a784-17b221cd9fc3", + "label": "label-3826", + "height": 525, + "background": "red" + }, + { + "key": "897938c6-f48a-41d5-99ae-d5f5983b841f", + "label": "label-3827", + "height": 435, + "background": "green" + }, + { + "key": "2b395efa-37ae-4825-8496-861e231b59ee", + "label": "label-3828", + "height": 56, + "background": "yellow" + }, + { + "key": "9bfa875f-f0ba-42ee-94db-8f3982b47ccf", + "label": "label-3829", + "height": 290, + "background": "blue" + }, + { + "key": "009ca915-cc23-446d-95c1-5e1d76395932", + "label": "label-3830", + "height": 72, + "background": "blue" + }, + { + "key": "68ae90ea-1bb2-43cc-aa18-46bce0b352d6", + "label": "label-3831", + "height": 500, + "background": "red" + }, + { + "key": "6236ff7b-481c-43c4-97e8-58bbf7918cbd", + "label": "label-3832", + "height": 173, + "background": "yellow" + }, + { + "key": "762746d2-296a-4735-bc86-9a24f17b0e18", + "label": "label-3833", + "height": 78, + "background": "green" + }, + { + "key": "466d5f0c-d2fc-45d0-9844-5612a1c10dfb", + "label": "label-3834", + "height": 251, + "background": "green" + }, + { + "key": "f02d1e53-e4cf-4238-9e66-ee1eaec2d603", + "label": "label-3835", + "height": 207, + "background": "yellow" + }, + { + "key": "90607e8b-b8c5-4e35-9898-dfb7b0b0bddf", + "label": "label-3836", + "height": 508, + "background": "blue" + }, + { + "key": "2dbfaa66-1b7a-47a5-9e15-de8dbb5b9c22", + "label": "label-3837", + "height": 204, + "background": "red" + }, + { + "key": "13fd58e4-4f69-457d-aad4-da882156b8e8", + "label": "label-3838", + "height": 129, + "background": "red" + }, + { + "key": "8f5e49f6-fa19-4217-8a12-0a8f40e5d249", + "label": "label-3839", + "height": 426, + "background": "red" + }, + { + "key": "3006b524-146a-44b9-bdaa-4f3743f5ffec", + "label": "label-3840", + "height": 184, + "background": "yellow" + }, + { + "key": "ddd2ea0a-1e2a-4faf-9913-0b5990917822", + "label": "label-3841", + "height": 454, + "background": "red" + }, + { + "key": "b43ad2c8-f57b-4e63-b438-1cbcef4de363", + "label": "label-3842", + "height": 505, + "background": "red" + }, + { + "key": "c40dd3ed-4490-44a8-8a35-1d33bf41b291", + "label": "label-3843", + "height": 365, + "background": "green" + }, + { + "key": "e72f0330-53ca-49b2-971d-b60bd530dc91", + "label": "label-3844", + "height": 390, + "background": "red" + }, + { + "key": "e5a36bea-9fba-4f20-a2f1-26d133b3688b", + "label": "label-3845", + "height": 379, + "background": "yellow" + }, + { + "key": "5bd68aa1-a17f-440c-b0b4-e37cf3e87d51", + "label": "label-3846", + "height": 466, + "background": "yellow" + }, + { + "key": "05778c52-bc26-4dd8-bfdf-8b933f01c097", + "label": "label-3847", + "height": 531, + "background": "blue" + }, + { + "key": "295e9d0e-276b-476f-ae0d-83135e74f8ff", + "label": "label-3848", + "height": 410, + "background": "blue" + }, + { + "key": "ca8e9ce5-496b-400b-8f09-506fd05a5acc", + "label": "label-3849", + "height": 456, + "background": "blue" + }, + { + "key": "fbfc88c6-5d1d-41f9-8ca9-e24d7d8a276f", + "label": "label-3850", + "height": 149, + "background": "red" + }, + { + "key": "27202d82-6e35-40df-b62b-40d3c968640f", + "label": "label-3851", + "height": 127, + "background": "yellow" + }, + { + "key": "4af4c1a9-99d4-4a60-9882-ec2a3499a2e7", + "label": "label-3852", + "height": 202, + "background": "red" + }, + { + "key": "3010acc5-b579-4cd7-bb04-0d70c0d9a798", + "label": "label-3853", + "height": 418, + "background": "red" + }, + { + "key": "aaeebd80-946c-452d-bd61-40801bb6c7b5", + "label": "label-3854", + "height": 269, + "background": "yellow" + }, + { + "key": "86ce6660-b529-4eac-9b8e-5c10374a2cdb", + "label": "label-3855", + "height": 440, + "background": "green" + }, + { + "key": "e1638c6a-2b8c-4169-89cd-db82ca15d20c", + "label": "label-3856", + "height": 140, + "background": "red" + }, + { + "key": "679e157d-8711-4767-9350-c89172c4f15f", + "label": "label-3857", + "height": 366, + "background": "green" + }, + { + "key": "bbe840ed-afd9-49e7-8f84-3b46c9158a6b", + "label": "label-3858", + "height": 114, + "background": "green" + }, + { + "key": "0f38ca9b-3e3d-4a10-80db-fcac2d22a93d", + "label": "label-3859", + "height": 379, + "background": "blue" + }, + { + "key": "1607926d-cb8f-4aa9-97ea-81bc603dba22", + "label": "label-3860", + "height": 185, + "background": "blue" + }, + { + "key": "9f3eebab-eac1-4b52-800c-326fae61fc9d", + "label": "label-3861", + "height": 119, + "background": "green" + }, + { + "key": "def8d695-ad25-453b-a717-27608125106f", + "label": "label-3862", + "height": 245, + "background": "green" + }, + { + "key": "948876f6-38aa-4167-ac6f-22efaa025f54", + "label": "label-3863", + "height": 293, + "background": "yellow" + }, + { + "key": "b915672b-af70-4486-81c8-2ab6f184d1a8", + "label": "label-3864", + "height": 234, + "background": "yellow" + }, + { + "key": "53813b39-134d-4192-a6b5-3b7d7e459407", + "label": "label-3865", + "height": 361, + "background": "red" + }, + { + "key": "5da0e7ea-703d-44f3-b7e3-bcedbdc68e94", + "label": "label-3866", + "height": 108, + "background": "blue" + }, + { + "key": "3cd4a5ce-e298-4ccd-bb07-688a7b6aebfb", + "label": "label-3867", + "height": 74, + "background": "red" + }, + { + "key": "29985d8f-81dd-44a8-9f0f-5fe0d86002f0", + "label": "label-3868", + "height": 351, + "background": "blue" + }, + { + "key": "f4acd0c7-45d2-4b14-8311-c7d609b3de5b", + "label": "label-3869", + "height": 471, + "background": "yellow" + }, + { + "key": "d9f74fb4-3930-4baa-a524-bb20fa950236", + "label": "label-3870", + "height": 255, + "background": "blue" + }, + { + "key": "bfca78b5-3596-47c1-809e-4cb8b28ffefd", + "label": "label-3871", + "height": 96, + "background": "green" + }, + { + "key": "bb809555-6caf-4a4c-a799-303d2a775e1b", + "label": "label-3872", + "height": 504, + "background": "red" + }, + { + "key": "9cc246a4-dec1-4eac-8018-51d4f04f0b7c", + "label": "label-3873", + "height": 356, + "background": "green" + }, + { + "key": "90182cbb-fac0-4039-9106-3c426d7d69ab", + "label": "label-3874", + "height": 324, + "background": "green" + }, + { + "key": "b09bd02e-ae48-45f3-8168-a928551a97af", + "label": "label-3875", + "height": 327, + "background": "green" + }, + { + "key": "7fd00213-d525-472c-b4e6-a9e0f3fd151a", + "label": "label-3876", + "height": 360, + "background": "green" + }, + { + "key": "0475a486-3c64-4954-994e-2f9981946ca4", + "label": "label-3877", + "height": 163, + "background": "blue" + }, + { + "key": "565ed8c4-871d-4afd-b967-d2133659b93a", + "label": "label-3878", + "height": 90, + "background": "red" + }, + { + "key": "459731b3-d220-44ea-b83a-32ad6009c016", + "label": "label-3879", + "height": 389, + "background": "yellow" + }, + { + "key": "40ff4f9b-d66a-4848-af3c-592e4620fcb7", + "label": "label-3880", + "height": 93, + "background": "green" + }, + { + "key": "e6ac578d-6022-4559-aa69-16a50b0b4af4", + "label": "label-3881", + "height": 425, + "background": "green" + }, + { + "key": "4c2f0d4d-eb22-4c76-a3a9-db3540cc7b5e", + "label": "label-3882", + "height": 49, + "background": "green" + }, + { + "key": "b714c5ce-cc65-4c08-be32-7a643a20189b", + "label": "label-3883", + "height": 346, + "background": "blue" + }, + { + "key": "8f34e146-ccdc-4a44-9e86-6cd6f12edeb5", + "label": "label-3884", + "height": 445, + "background": "blue" + }, + { + "key": "cc4382b0-59a8-410a-8d76-db01c257c32e", + "label": "label-3885", + "height": 159, + "background": "red" + }, + { + "key": "a3822ea3-d68a-4e41-94bb-619383cab573", + "label": "label-3886", + "height": 246, + "background": "yellow" + }, + { + "key": "36ad7e0c-53d2-4301-aea8-2873abefcdcc", + "label": "label-3887", + "height": 343, + "background": "yellow" + }, + { + "key": "216e2824-1589-4d48-8f86-32bfbb70cd04", + "label": "label-3888", + "height": 401, + "background": "green" + }, + { + "key": "2f04b7a8-d934-4d85-b5f7-feb570ba6bf4", + "label": "label-3889", + "height": 447, + "background": "green" + }, + { + "key": "e34f2f35-2035-43a5-8282-35cb91c87a36", + "label": "label-3890", + "height": 96, + "background": "red" + }, + { + "key": "2472c18d-460a-45a8-bee0-071d04133eab", + "label": "label-3891", + "height": 455, + "background": "green" + }, + { + "key": "380ef829-4660-469c-bc18-986e02dc552c", + "label": "label-3892", + "height": 37, + "background": "yellow" + }, + { + "key": "638ecb24-2f02-49db-bb00-22f48fc11a37", + "label": "label-3893", + "height": 132, + "background": "yellow" + }, + { + "key": "6fa29fa1-579f-4cbb-8205-39395f24ccbf", + "label": "label-3894", + "height": 299, + "background": "green" + }, + { + "key": "e11a9236-b20f-491d-86b5-b715beb76648", + "label": "label-3895", + "height": 457, + "background": "red" + }, + { + "key": "25259042-6053-4f93-9104-721a3eca2659", + "label": "label-3896", + "height": 168, + "background": "red" + }, + { + "key": "0d6d62d2-7bfe-4344-9b34-9e521154e9b3", + "label": "label-3897", + "height": 118, + "background": "yellow" + }, + { + "key": "6b5dadcf-6542-4a1e-aa8f-258c337d31cf", + "label": "label-3898", + "height": 283, + "background": "red" + }, + { + "key": "f844b03a-b0ef-4e74-82ce-a954674a298f", + "label": "label-3899", + "height": 106, + "background": "yellow" + }, + { + "key": "3cffb502-1924-459a-9a6b-3bbcd5f5bb19", + "label": "label-3900", + "height": 360, + "background": "blue" + }, + { + "key": "6103b618-c7fa-4765-9bcb-e8228bc5eb1e", + "label": "label-3901", + "height": 144, + "background": "yellow" + }, + { + "key": "6b9f70e8-1223-4f07-8ec9-d4a4d8026920", + "label": "label-3902", + "height": 252, + "background": "blue" + }, + { + "key": "9785f5fc-d166-42c2-aa20-be7280ce8352", + "label": "label-3903", + "height": 37, + "background": "yellow" + }, + { + "key": "3660775f-b171-467a-a5ab-aa2325f1ef67", + "label": "label-3904", + "height": 99, + "background": "blue" + }, + { + "key": "47e3035b-c0dc-4f07-82d0-9282d994e59d", + "label": "label-3905", + "height": 407, + "background": "blue" + }, + { + "key": "59edc9ca-1cd8-4cc1-b3ab-0c4072621d00", + "label": "label-3906", + "height": 119, + "background": "green" + }, + { + "key": "7d819b6f-6715-443f-8760-22debd1b49e0", + "label": "label-3907", + "height": 183, + "background": "red" + }, + { + "key": "212657d0-55d7-4f39-8361-63055b022de8", + "label": "label-3908", + "height": 255, + "background": "green" + }, + { + "key": "ebdeee67-0e80-4362-a86c-3c5a952060e5", + "label": "label-3909", + "height": 486, + "background": "blue" + }, + { + "key": "14649eb6-c398-46d7-bfbc-683a21ff8b0b", + "label": "label-3910", + "height": 434, + "background": "blue" + }, + { + "key": "70d577be-031a-414b-9e44-c4c1edbfc89f", + "label": "label-3911", + "height": 318, + "background": "yellow" + }, + { + "key": "b5e9d98c-0155-4b7c-a7f0-93de0f917586", + "label": "label-3912", + "height": 254, + "background": "green" + }, + { + "key": "82abb243-05af-465b-9264-c66745cf980c", + "label": "label-3913", + "height": 320, + "background": "red" + }, + { + "key": "a6474faf-fa77-4d98-9d64-3ada4ad71091", + "label": "label-3914", + "height": 442, + "background": "yellow" + }, + { + "key": "df46cc64-263a-423a-b8ef-5658a83c57b6", + "label": "label-3915", + "height": 150, + "background": "green" + }, + { + "key": "c3962cf4-08fb-4621-9e5f-9f4fe976e503", + "label": "label-3916", + "height": 442, + "background": "blue" + }, + { + "key": "0288e05d-b6de-4ad7-81c0-ac407fdd1455", + "label": "label-3917", + "height": 320, + "background": "green" + }, + { + "key": "31a44408-7e8a-41b4-97f9-313232b5cd28", + "label": "label-3918", + "height": 455, + "background": "red" + }, + { + "key": "c4e8a96a-20d3-4308-b203-4dd90b4123c7", + "label": "label-3919", + "height": 416, + "background": "yellow" + }, + { + "key": "8fed5010-5210-4cc8-9ca6-b998ffca4c85", + "label": "label-3920", + "height": 394, + "background": "yellow" + }, + { + "key": "9fbee64c-9f53-4f74-8f4a-bf2ecddaabae", + "label": "label-3921", + "height": 220, + "background": "green" + }, + { + "key": "9da053e0-64da-452f-91bc-b9dbb69dc032", + "label": "label-3922", + "height": 303, + "background": "blue" + }, + { + "key": "669bbbf2-d30c-4d04-a593-f2f3dc06987a", + "label": "label-3923", + "height": 245, + "background": "red" + }, + { + "key": "b2e3e0e7-63e2-4142-8ad6-e12bd9732943", + "label": "label-3924", + "height": 119, + "background": "yellow" + }, + { + "key": "ee3ddbfd-7fa8-4747-852e-2e106ff7fd4b", + "label": "label-3925", + "height": 100, + "background": "yellow" + }, + { + "key": "a33c6472-ef3e-4318-9d39-263a0fcbe0a4", + "label": "label-3926", + "height": 453, + "background": "green" + }, + { + "key": "85e90dfd-5afd-4a05-857c-379e1f316f2a", + "label": "label-3927", + "height": 406, + "background": "red" + }, + { + "key": "023032e0-00bf-4d99-8bef-3c864bb4bb6a", + "label": "label-3928", + "height": 480, + "background": "red" + }, + { + "key": "b24984cc-8e75-4da3-b9ce-c87241e81ad9", + "label": "label-3929", + "height": 424, + "background": "green" + }, + { + "key": "2a2b6031-ce50-419b-907a-75afcced97dc", + "label": "label-3930", + "height": 180, + "background": "green" + }, + { + "key": "5c5dc4b6-2f29-405d-8cee-beb411d42d65", + "label": "label-3931", + "height": 45, + "background": "yellow" + }, + { + "key": "6963df4a-0703-41db-a0e3-aeba54b458ed", + "label": "label-3932", + "height": 317, + "background": "green" + }, + { + "key": "1e161952-7aed-4e35-bc62-e239d8691535", + "label": "label-3933", + "height": 180, + "background": "red" + }, + { + "key": "dd9f2874-3a1a-4479-950d-992b90b9045d", + "label": "label-3934", + "height": 154, + "background": "yellow" + }, + { + "key": "2aafe1ce-9dc0-4ddf-8df9-7aca43448d40", + "label": "label-3935", + "height": 197, + "background": "red" + }, + { + "key": "e8123c59-68d9-445e-84f1-b5aee193fd9f", + "label": "label-3936", + "height": 318, + "background": "blue" + }, + { + "key": "dd3dc50c-8347-4ab2-b0eb-4357ee962cc9", + "label": "label-3937", + "height": 278, + "background": "green" + }, + { + "key": "8b0eff19-e00d-485b-9514-fb7a96fa110e", + "label": "label-3938", + "height": 496, + "background": "red" + }, + { + "key": "88e0b0a1-ba3d-4272-b63e-95bc84637087", + "label": "label-3939", + "height": 422, + "background": "blue" + }, + { + "key": "c60b6c32-c048-49cf-8929-7a8f37aa5aa7", + "label": "label-3940", + "height": 255, + "background": "red" + }, + { + "key": "0d5ba7dd-406b-4d33-9540-dbe987056975", + "label": "label-3941", + "height": 223, + "background": "blue" + }, + { + "key": "877f5acd-c66d-49a1-a14d-488d56a9fba1", + "label": "label-3942", + "height": 408, + "background": "green" + }, + { + "key": "d900306c-c2fe-4bdc-b8ab-f5ed4647088b", + "label": "label-3943", + "height": 518, + "background": "green" + }, + { + "key": "0aae499c-2a34-4a03-a3b0-91d146a7a4a1", + "label": "label-3944", + "height": 57, + "background": "blue" + }, + { + "key": "0a0c4bcd-94e6-4467-9115-e46953059a54", + "label": "label-3945", + "height": 63, + "background": "red" + }, + { + "key": "35e0b723-7713-450f-b59c-6c7345f7b0dc", + "label": "label-3946", + "height": 399, + "background": "red" + }, + { + "key": "6b0034ea-babc-49ea-a78b-2566a299fd34", + "label": "label-3947", + "height": 134, + "background": "green" + }, + { + "key": "edaf4da3-8448-4047-bcae-a71e2b993e61", + "label": "label-3948", + "height": 319, + "background": "yellow" + }, + { + "key": "bac27a93-abaa-4cde-85bc-6c90a21319d5", + "label": "label-3949", + "height": 522, + "background": "green" + }, + { + "key": "71f39c13-19a3-4b92-b6c4-8d032573c5d8", + "label": "label-3950", + "height": 177, + "background": "red" + }, + { + "key": "9b3dac11-3b17-4559-8f29-d9ad06f1aa16", + "label": "label-3951", + "height": 121, + "background": "blue" + }, + { + "key": "17afc4ba-33ec-41b9-924e-b27755ef76c6", + "label": "label-3952", + "height": 107, + "background": "blue" + }, + { + "key": "634a381b-aaf9-405d-aa74-33114d6aeac8", + "label": "label-3953", + "height": 273, + "background": "red" + }, + { + "key": "5166781f-db14-441d-b3f8-ea67c3ca1c2b", + "label": "label-3954", + "height": 124, + "background": "green" + }, + { + "key": "a76f9633-c8be-46fd-8dea-5fc454499ff9", + "label": "label-3955", + "height": 177, + "background": "red" + }, + { + "key": "4df099ed-0117-4198-8d65-763319311aaf", + "label": "label-3956", + "height": 186, + "background": "blue" + }, + { + "key": "fbf589a7-e41e-4bb2-aeec-ae15268909b8", + "label": "label-3957", + "height": 244, + "background": "red" + }, + { + "key": "f1b9182a-3399-43fe-8089-38b1ab87276c", + "label": "label-3958", + "height": 97, + "background": "yellow" + }, + { + "key": "283793fe-c5e9-4d1f-90ed-ca3c000f935b", + "label": "label-3959", + "height": 223, + "background": "blue" + }, + { + "key": "727e3818-af3b-46d1-86c6-d5cb01db1b27", + "label": "label-3960", + "height": 259, + "background": "yellow" + }, + { + "key": "f55441f7-89e5-4676-ac42-fbd4805a9841", + "label": "label-3961", + "height": 400, + "background": "blue" + }, + { + "key": "ee78bb0d-1750-447f-8edb-5bf7ce78b4fb", + "label": "label-3962", + "height": 110, + "background": "green" + }, + { + "key": "95f47556-5566-49ff-b581-8d1de52e3378", + "label": "label-3963", + "height": 234, + "background": "red" + }, + { + "key": "e0840fe8-fa49-43cb-94a6-7c9f4820d004", + "label": "label-3964", + "height": 446, + "background": "green" + }, + { + "key": "cefbf08f-d0f1-4f54-91d2-9bd107fff18a", + "label": "label-3965", + "height": 58, + "background": "yellow" + }, + { + "key": "c9b11096-74c6-428e-acdd-640ce9afa29d", + "label": "label-3966", + "height": 139, + "background": "red" + }, + { + "key": "d5117e58-de41-41cc-9d6f-eb9594c43978", + "label": "label-3967", + "height": 125, + "background": "blue" + }, + { + "key": "8904c6a5-78c3-4b04-8743-441fe32ae067", + "label": "label-3968", + "height": 462, + "background": "yellow" + }, + { + "key": "63c8d627-76a2-4f75-b0ed-02958966b991", + "label": "label-3969", + "height": 141, + "background": "yellow" + }, + { + "key": "f41f6318-9284-4c1e-8f46-35af0b7b9151", + "label": "label-3970", + "height": 399, + "background": "green" + }, + { + "key": "8547a382-2abc-4265-9378-bc39149835ab", + "label": "label-3971", + "height": 76, + "background": "green" + }, + { + "key": "27078488-5496-4fa6-a997-c0deb82f1e2c", + "label": "label-3972", + "height": 80, + "background": "yellow" + }, + { + "key": "c28d596a-e348-4965-a72b-3b16ca6493a3", + "label": "label-3973", + "height": 80, + "background": "blue" + }, + { + "key": "459aac8a-71c8-4bfc-820c-fe2c64ac33fb", + "label": "label-3974", + "height": 55, + "background": "green" + }, + { + "key": "982facb5-bb22-4c62-89e0-23429f4f9e16", + "label": "label-3975", + "height": 296, + "background": "green" + }, + { + "key": "262a8f3b-18cc-42bf-b65a-0e6afc5fb94a", + "label": "label-3976", + "height": 118, + "background": "yellow" + }, + { + "key": "e3151695-d093-4f57-a6da-3f39cc2252eb", + "label": "label-3977", + "height": 125, + "background": "red" + }, + { + "key": "cd753fe8-5a85-4d58-88e5-06015aaedf77", + "label": "label-3978", + "height": 352, + "background": "yellow" + }, + { + "key": "3417ec9b-18db-4ed7-803a-6ba8c76124ff", + "label": "label-3979", + "height": 181, + "background": "yellow" + }, + { + "key": "123a6444-c87c-4dee-9ff9-40bf6a59bd0b", + "label": "label-3980", + "height": 188, + "background": "blue" + }, + { + "key": "6a991886-2716-422f-90d2-511b39a3ec28", + "label": "label-3981", + "height": 347, + "background": "green" + }, + { + "key": "68dda5a1-488d-4b78-b075-7538395acff6", + "label": "label-3982", + "height": 238, + "background": "green" + }, + { + "key": "5ffbdbde-45e6-4149-b72b-9bddc819883f", + "label": "label-3983", + "height": 461, + "background": "blue" + }, + { + "key": "8a393519-f02a-4708-a4ef-d88cd8b71b0e", + "label": "label-3984", + "height": 127, + "background": "green" + }, + { + "key": "f800cddf-3ad0-4c3b-811c-46d19b2c9cea", + "label": "label-3985", + "height": 115, + "background": "yellow" + }, + { + "key": "3cf608e4-5ee1-41b6-ba23-568a7d2ce2c6", + "label": "label-3986", + "height": 359, + "background": "red" + }, + { + "key": "3f9ed45c-48e5-440f-9b0c-2a922a74b3fc", + "label": "label-3987", + "height": 445, + "background": "yellow" + }, + { + "key": "082ea272-30e4-4e4e-a387-de21b373927c", + "label": "label-3988", + "height": 332, + "background": "blue" + }, + { + "key": "10a16974-4985-4ca5-a16e-829e178de525", + "label": "label-3989", + "height": 483, + "background": "red" + }, + { + "key": "f27033c3-0cac-4160-8beb-93ed252ac922", + "label": "label-3990", + "height": 392, + "background": "green" + }, + { + "key": "fd6f2bf2-3626-4845-bb23-f92c3f1443b0", + "label": "label-3991", + "height": 78, + "background": "green" + }, + { + "key": "953eb1ba-27c2-47d9-b10c-30cca6cb139c", + "label": "label-3992", + "height": 207, + "background": "green" + }, + { + "key": "1c102ac6-e9cc-4b63-8180-cbf190e57bb8", + "label": "label-3993", + "height": 436, + "background": "yellow" + }, + { + "key": "96928ed6-a86e-4761-b6da-7fa58ec234f9", + "label": "label-3994", + "height": 90, + "background": "yellow" + }, + { + "key": "f698f713-08a1-4bf9-bb37-53b2667ed15a", + "label": "label-3995", + "height": 56, + "background": "yellow" + }, + { + "key": "a007a987-d105-44a2-b577-046ef6330e18", + "label": "label-3996", + "height": 301, + "background": "red" + }, + { + "key": "933abc72-ea64-41bb-9e36-780799344069", + "label": "label-3997", + "height": 71, + "background": "green" + }, + { + "key": "f5a985ae-cf20-420c-8a32-83b7c1c113c3", + "label": "label-3998", + "height": 242, + "background": "green" + }, + { + "key": "a2c2f554-d04c-4c7a-98d3-90332e1f9533", + "label": "label-3999", + "height": 36, + "background": "yellow" + }, + { + "key": "12cecd0b-d2a0-48c5-acdc-794e71eead26", + "label": "label-4000", + "height": 103, + "background": "green" + }, + { + "key": "dc0313f6-8275-4441-bc58-b7e29a6d1846", + "label": "label-4001", + "height": 150, + "background": "yellow" + }, + { + "key": "988b7c78-4474-40b4-b10d-36769408a847", + "label": "label-4002", + "height": 76, + "background": "yellow" + }, + { + "key": "fa12a900-1bd6-46f4-a75c-4c7e7db07927", + "label": "label-4003", + "height": 336, + "background": "yellow" + }, + { + "key": "3ac1e41d-684d-4e07-80e2-4a882a858af9", + "label": "label-4004", + "height": 434, + "background": "blue" + }, + { + "key": "1f732e06-7e0a-49af-8ed7-bf16244e925b", + "label": "label-4005", + "height": 463, + "background": "red" + }, + { + "key": "44a8bb44-6bd9-408b-97b5-30ab9a0cb9bd", + "label": "label-4006", + "height": 343, + "background": "red" + }, + { + "key": "da04fdbf-0ea5-4ebc-9709-ef0a5680d760", + "label": "label-4007", + "height": 57, + "background": "red" + }, + { + "key": "b2c5f6db-d1cc-41a2-8fa2-5be60733cff1", + "label": "label-4008", + "height": 112, + "background": "green" + }, + { + "key": "943b8ff9-5852-45ac-b891-53b66c89dd41", + "label": "label-4009", + "height": 64, + "background": "yellow" + }, + { + "key": "5c74014b-3c54-4d8f-83c2-9f7add525f08", + "label": "label-4010", + "height": 317, + "background": "blue" + }, + { + "key": "9cb6136a-d5b6-467b-a0e1-ff0518e0314e", + "label": "label-4011", + "height": 220, + "background": "green" + }, + { + "key": "6bd475c3-ad31-44d6-bf38-f22c0191414a", + "label": "label-4012", + "height": 73, + "background": "yellow" + }, + { + "key": "495b67b7-2fb2-4460-ba0e-175e25e142c5", + "label": "label-4013", + "height": 119, + "background": "yellow" + }, + { + "key": "2a5bfa26-8635-41d6-b79c-7b16b82337ab", + "label": "label-4014", + "height": 36, + "background": "red" + }, + { + "key": "4ffba6b0-d7b6-4f95-a6b7-ae9d5c78e462", + "label": "label-4015", + "height": 348, + "background": "yellow" + }, + { + "key": "6d0da94f-2042-4854-bed5-868ed75f9681", + "label": "label-4016", + "height": 132, + "background": "blue" + }, + { + "key": "b28003f1-2d1e-4fc2-819f-7df64cf1994c", + "label": "label-4017", + "height": 109, + "background": "blue" + }, + { + "key": "ef6e7e2d-8d2a-400a-b9ea-5f150818f978", + "label": "label-4018", + "height": 267, + "background": "red" + }, + { + "key": "a49ae4af-8ecb-478d-aec0-23191d5f3e30", + "label": "label-4019", + "height": 74, + "background": "red" + }, + { + "key": "af5e75e4-5ceb-4e8a-9c7b-bc8a4e23a668", + "label": "label-4020", + "height": 178, + "background": "red" + }, + { + "key": "cd1aa34f-ac5d-4035-b6f2-a0e80e3055ad", + "label": "label-4021", + "height": 324, + "background": "blue" + }, + { + "key": "01f84516-fa23-44f4-a168-1e6be905b66d", + "label": "label-4022", + "height": 285, + "background": "blue" + }, + { + "key": "94e8a2c9-0304-494c-a6ed-c2d23d217523", + "label": "label-4023", + "height": 82, + "background": "blue" + }, + { + "key": "08bb0b78-33bd-4742-99ee-d3a51e05be49", + "label": "label-4024", + "height": 253, + "background": "red" + }, + { + "key": "d8d0b0f8-dba0-4a37-8f06-a1796000210c", + "label": "label-4025", + "height": 358, + "background": "red" + }, + { + "key": "09616b60-3850-4542-abc3-f2b361841e81", + "label": "label-4026", + "height": 326, + "background": "yellow" + }, + { + "key": "726befad-71fb-497b-ae76-88e9072b45d6", + "label": "label-4027", + "height": 135, + "background": "blue" + }, + { + "key": "2ffa3efd-3718-4c13-b105-63164c79d962", + "label": "label-4028", + "height": 417, + "background": "blue" + }, + { + "key": "bb391d9b-1103-4384-916b-a2dec1088198", + "label": "label-4029", + "height": 507, + "background": "green" + }, + { + "key": "8c2ab897-1251-4ca8-a06f-430b58f65fa9", + "label": "label-4030", + "height": 485, + "background": "yellow" + }, + { + "key": "78a9061c-d97f-4477-91e8-7c3fe9d12c6e", + "label": "label-4031", + "height": 114, + "background": "red" + }, + { + "key": "9995ecd8-3838-4765-8e9d-d9c5a0ffbd6d", + "label": "label-4032", + "height": 115, + "background": "red" + }, + { + "key": "fb1b4cb4-d19b-4871-baa9-195584489a0d", + "label": "label-4033", + "height": 179, + "background": "green" + }, + { + "key": "bd4c0c9e-cd21-48fd-b2eb-e5c81b1b65c4", + "label": "label-4034", + "height": 265, + "background": "red" + }, + { + "key": "0700a703-5213-4abf-93c1-f65f4fb25881", + "label": "label-4035", + "height": 112, + "background": "red" + }, + { + "key": "bd3f9036-1b46-448d-bef5-a44f8acb9dfb", + "label": "label-4036", + "height": 57, + "background": "yellow" + }, + { + "key": "bc9af5fd-e62e-464d-a166-ba6fff09c0ce", + "label": "label-4037", + "height": 438, + "background": "red" + }, + { + "key": "e8dc12f3-b450-4257-850e-f8486e851e0b", + "label": "label-4038", + "height": 228, + "background": "red" + }, + { + "key": "a725ecc2-cf04-42bd-bf54-5df6a8456f54", + "label": "label-4039", + "height": 217, + "background": "yellow" + }, + { + "key": "81868551-5a9a-4423-a8c8-472413224635", + "label": "label-4040", + "height": 437, + "background": "green" + }, + { + "key": "73f9e2f7-d8db-4e84-8ed5-ea0d8b0046f1", + "label": "label-4041", + "height": 309, + "background": "yellow" + }, + { + "key": "3e783038-d25f-4f84-a165-96708c5e47ad", + "label": "label-4042", + "height": 502, + "background": "green" + }, + { + "key": "6c6b724f-3ddd-4573-934b-14631e8866ca", + "label": "label-4043", + "height": 249, + "background": "green" + }, + { + "key": "7912c964-92bd-47c4-bb3d-4f14ba9a0fb4", + "label": "label-4044", + "height": 312, + "background": "blue" + }, + { + "key": "8f62b462-451d-4f19-8de7-2d77f2b5d72f", + "label": "label-4045", + "height": 522, + "background": "green" + }, + { + "key": "9eeab150-0bef-49bd-b05f-ece4932ebd41", + "label": "label-4046", + "height": 148, + "background": "red" + }, + { + "key": "1de9a6ae-990b-4f91-8b8f-13a2478a71df", + "label": "label-4047", + "height": 335, + "background": "blue" + }, + { + "key": "f82d9f0d-275b-4331-8f29-26bb928364de", + "label": "label-4048", + "height": 229, + "background": "red" + }, + { + "key": "4d4ad80b-55f9-47cd-9c71-35c56e716aeb", + "label": "label-4049", + "height": 91, + "background": "yellow" + }, + { + "key": "33802c1b-bc7e-4f67-b033-1a750ff91ec8", + "label": "label-4050", + "height": 177, + "background": "blue" + }, + { + "key": "6c013ddf-3856-4354-91e3-eb8ba93d7aa5", + "label": "label-4051", + "height": 263, + "background": "yellow" + }, + { + "key": "0d064297-7169-4f22-8ae6-23b1a12e0fe5", + "label": "label-4052", + "height": 382, + "background": "blue" + }, + { + "key": "985b2884-0216-401f-a313-4a45d72bca7d", + "label": "label-4053", + "height": 165, + "background": "yellow" + }, + { + "key": "f703093e-7b8e-4be0-8f57-78a5308bc304", + "label": "label-4054", + "height": 326, + "background": "green" + }, + { + "key": "68c743c4-5e90-4952-8e9f-4154bfe629ff", + "label": "label-4055", + "height": 414, + "background": "yellow" + }, + { + "key": "d5010433-b547-4c77-b3fd-37c7f6f4c287", + "label": "label-4056", + "height": 93, + "background": "green" + }, + { + "key": "a3d2e4ed-64ee-4654-93e8-ccf302f916be", + "label": "label-4057", + "height": 39, + "background": "green" + }, + { + "key": "1129016f-2b92-40fe-8ab2-97f8981b3be0", + "label": "label-4058", + "height": 349, + "background": "yellow" + }, + { + "key": "e2616ddb-43bc-49dd-adc6-090811e10093", + "label": "label-4059", + "height": 473, + "background": "yellow" + }, + { + "key": "fa539f4b-5bae-4fda-be37-9101cb1f2823", + "label": "label-4060", + "height": 423, + "background": "green" + }, + { + "key": "0ab2aeb1-716d-4875-b8b9-46b4f34efebc", + "label": "label-4061", + "height": 452, + "background": "green" + }, + { + "key": "bb2a7427-9bab-4e19-9652-171982daa481", + "label": "label-4062", + "height": 233, + "background": "red" + }, + { + "key": "c910930b-ef68-44df-8767-1e993a7b29e3", + "label": "label-4063", + "height": 265, + "background": "red" + }, + { + "key": "7f6b0ce5-f839-498b-ab3b-ea5d02c5c8a5", + "label": "label-4064", + "height": 66, + "background": "red" + }, + { + "key": "cbbe7b13-59c6-4418-95f7-0cf4a6b9decd", + "label": "label-4065", + "height": 164, + "background": "green" + }, + { + "key": "89e473c8-9e38-498a-975f-6bcc115da60e", + "label": "label-4066", + "height": 270, + "background": "green" + }, + { + "key": "82d634c3-00de-45bd-a030-78559adddbed", + "label": "label-4067", + "height": 109, + "background": "red" + }, + { + "key": "c8eec253-95e3-4799-91e8-c299d63443ef", + "label": "label-4068", + "height": 367, + "background": "green" + }, + { + "key": "7837b92f-4aa0-4f22-8770-57717d7bd265", + "label": "label-4069", + "height": 505, + "background": "green" + }, + { + "key": "9e592db6-3a4d-411c-849d-d58a5476d036", + "label": "label-4070", + "height": 498, + "background": "blue" + }, + { + "key": "32d510e2-d270-4e47-aca7-d0d570f6f3e1", + "label": "label-4071", + "height": 491, + "background": "red" + }, + { + "key": "37df71c1-ccda-48c5-b575-943eff1c397d", + "label": "label-4072", + "height": 93, + "background": "green" + }, + { + "key": "253c111a-2c4e-4c6d-bf51-4a3da99df74e", + "label": "label-4073", + "height": 241, + "background": "blue" + }, + { + "key": "b791eb31-176b-48a6-b9d5-91e68ea35842", + "label": "label-4074", + "height": 145, + "background": "red" + }, + { + "key": "45250597-13ec-4d4c-b0cf-8af384657eff", + "label": "label-4075", + "height": 189, + "background": "red" + }, + { + "key": "a5260958-e34e-41a3-94f8-1a39f3943130", + "label": "label-4076", + "height": 171, + "background": "yellow" + }, + { + "key": "16fc331b-4989-4dda-953e-a9b867fedefb", + "label": "label-4077", + "height": 342, + "background": "green" + }, + { + "key": "9156fb9a-89a7-4c47-8aad-457c15f2c19f", + "label": "label-4078", + "height": 199, + "background": "blue" + }, + { + "key": "1ca1e415-d6e8-407d-84a2-533816a10f6c", + "label": "label-4079", + "height": 90, + "background": "yellow" + }, + { + "key": "504fa5a3-7bf6-45f6-847e-ef3841003a1f", + "label": "label-4080", + "height": 159, + "background": "yellow" + }, + { + "key": "bbcd13a3-ef79-423e-bfdb-1ca215239c9f", + "label": "label-4081", + "height": 146, + "background": "blue" + }, + { + "key": "16a320cb-6442-450b-9245-c678a0d62753", + "label": "label-4082", + "height": 145, + "background": "red" + }, + { + "key": "7d97ff92-1450-4b1a-9701-75a69241c354", + "label": "label-4083", + "height": 167, + "background": "green" + }, + { + "key": "7f2b45cd-9ac7-47e9-96bc-65b0870dd55a", + "label": "label-4084", + "height": 350, + "background": "yellow" + }, + { + "key": "deae5cdc-c1ed-4366-9bba-3a7caee0c031", + "label": "label-4085", + "height": 330, + "background": "red" + }, + { + "key": "00ef6877-c749-41c3-9f89-8d0a4382f456", + "label": "label-4086", + "height": 240, + "background": "yellow" + }, + { + "key": "42b1cd3c-7f4a-45d5-ad7e-c581ad46e9b4", + "label": "label-4087", + "height": 161, + "background": "yellow" + }, + { + "key": "8e74273a-42fb-418c-bb41-f99c7966b3de", + "label": "label-4088", + "height": 313, + "background": "yellow" + }, + { + "key": "6eb614d2-09aa-4863-badd-7dc42f5b9c18", + "label": "label-4089", + "height": 295, + "background": "blue" + }, + { + "key": "97e3db9d-5b00-487b-ace4-678945f1863a", + "label": "label-4090", + "height": 433, + "background": "blue" + }, + { + "key": "bda2200f-13f5-4c9e-a4b0-f0f81ad7699f", + "label": "label-4091", + "height": 345, + "background": "yellow" + }, + { + "key": "a0bc6ef0-1754-4093-a463-14b4aeb87d4f", + "label": "label-4092", + "height": 435, + "background": "red" + }, + { + "key": "dcfbe5ce-85a6-4c2d-8174-5af3a24ddc25", + "label": "label-4093", + "height": 367, + "background": "green" + }, + { + "key": "d10f1a4e-cc43-4d3e-a2a8-eb6d1a1532d5", + "label": "label-4094", + "height": 76, + "background": "yellow" + }, + { + "key": "a8b0fc68-3c6b-4111-828a-b21d740daeb2", + "label": "label-4095", + "height": 418, + "background": "blue" + }, + { + "key": "8a447bd3-4db7-4a7a-918d-f734c5b71c2c", + "label": "label-4096", + "height": 169, + "background": "green" + }, + { + "key": "aafc4715-c30d-413d-bb05-d005c49a2275", + "label": "label-4097", + "height": 90, + "background": "red" + }, + { + "key": "d63a54b1-afde-4f61-9002-5963269d1a81", + "label": "label-4098", + "height": 302, + "background": "green" + }, + { + "key": "16188699-a19d-468d-9ea7-fff6dac22131", + "label": "label-4099", + "height": 69, + "background": "green" + }, + { + "key": "c3291f8b-900f-4010-ab60-f03e658c4594", + "label": "label-4100", + "height": 113, + "background": "green" + }, + { + "key": "490ad9f6-45e5-4930-a975-79e4f1e050e6", + "label": "label-4101", + "height": 531, + "background": "yellow" + }, + { + "key": "77dcc13d-1c8e-47ec-9826-8ca608848066", + "label": "label-4102", + "height": 230, + "background": "red" + }, + { + "key": "6879f779-47bb-4622-a276-73fadc001927", + "label": "label-4103", + "height": 492, + "background": "yellow" + }, + { + "key": "0dffbce9-8e5c-4a0f-bc91-687fe464822e", + "label": "label-4104", + "height": 100, + "background": "red" + }, + { + "key": "066314b1-dc5a-4b16-87b9-8a679180bd8b", + "label": "label-4105", + "height": 259, + "background": "green" + }, + { + "key": "889de7df-b607-4f23-a21a-45390fef9a33", + "label": "label-4106", + "height": 415, + "background": "red" + }, + { + "key": "1f75ac5f-ca13-4112-b293-53d58a162684", + "label": "label-4107", + "height": 334, + "background": "red" + }, + { + "key": "2a4e61b1-aac9-4f7a-98f0-7c7e53cdfcc6", + "label": "label-4108", + "height": 114, + "background": "blue" + }, + { + "key": "cd2eda46-0640-4c99-af93-19224842e5c5", + "label": "label-4109", + "height": 395, + "background": "yellow" + }, + { + "key": "576bdb9c-6bac-4016-80c2-256584266090", + "label": "label-4110", + "height": 470, + "background": "yellow" + }, + { + "key": "830fa5bb-068b-4b24-baff-ccc4158dc0f5", + "label": "label-4111", + "height": 93, + "background": "blue" + }, + { + "key": "e1ead7e5-f2be-4548-ad12-b87808e70dae", + "label": "label-4112", + "height": 393, + "background": "green" + }, + { + "key": "00dfd95d-9c23-4e56-9cac-03eb03508b49", + "label": "label-4113", + "height": 135, + "background": "green" + }, + { + "key": "e1c756f3-9c9c-45a5-bd77-af8a10d4a560", + "label": "label-4114", + "height": 393, + "background": "yellow" + }, + { + "key": "3f5816d9-649a-480a-97db-6c76c245a199", + "label": "label-4115", + "height": 213, + "background": "green" + }, + { + "key": "051d2288-e0ca-4ebe-8d0d-18d2ec1869f7", + "label": "label-4116", + "height": 490, + "background": "green" + }, + { + "key": "b59a3072-7878-4656-8db9-7b8d71f58e85", + "label": "label-4117", + "height": 497, + "background": "yellow" + }, + { + "key": "011dd1b2-c49a-4db3-9f3d-631bac905692", + "label": "label-4118", + "height": 321, + "background": "red" + }, + { + "key": "2297a74f-694c-409a-b768-b8fabcfa6d59", + "label": "label-4119", + "height": 72, + "background": "red" + }, + { + "key": "58c10db7-0d84-431d-819e-f8140060dddc", + "label": "label-4120", + "height": 85, + "background": "red" + }, + { + "key": "59a6f4d9-e140-4627-bfb5-0c7229bd1560", + "label": "label-4121", + "height": 148, + "background": "yellow" + }, + { + "key": "e8dd5feb-3902-4702-bc01-f4978ad362ab", + "label": "label-4122", + "height": 479, + "background": "red" + }, + { + "key": "850a1048-82f0-4f27-a250-9712e2fce2be", + "label": "label-4123", + "height": 217, + "background": "red" + }, + { + "key": "fea8e62d-feca-42ea-9127-1cb76d7d9535", + "label": "label-4124", + "height": 350, + "background": "blue" + }, + { + "key": "2cfc95c0-f34d-4a38-a5f1-f45f994321d6", + "label": "label-4125", + "height": 405, + "background": "green" + }, + { + "key": "5c1a45e7-defb-4baf-9a43-c8820eb823f9", + "label": "label-4126", + "height": 185, + "background": "green" + }, + { + "key": "245e136b-9f21-44c0-9b86-a0c80a7675a2", + "label": "label-4127", + "height": 162, + "background": "yellow" + }, + { + "key": "98c1f5e8-2793-4395-ad85-9f7e587bd1ad", + "label": "label-4128", + "height": 164, + "background": "blue" + }, + { + "key": "cda7b6d4-ce53-4b9c-9fb3-2b77fd0197f9", + "label": "label-4129", + "height": 245, + "background": "blue" + }, + { + "key": "35c11870-d8d3-4457-9a9b-2de546ad6bc1", + "label": "label-4130", + "height": 134, + "background": "green" + }, + { + "key": "a0417163-9cc1-4cc8-9d79-540c603a7c6f", + "label": "label-4131", + "height": 170, + "background": "green" + }, + { + "key": "c8b86432-ce84-461d-b5d7-21ca3306c309", + "label": "label-4132", + "height": 259, + "background": "blue" + }, + { + "key": "fff0b7b5-576e-4229-8348-9c0465eb324a", + "label": "label-4133", + "height": 333, + "background": "blue" + }, + { + "key": "87a97caa-1848-464e-802e-a7329c123739", + "label": "label-4134", + "height": 428, + "background": "green" + }, + { + "key": "aadf1dc8-5aa8-4bee-8c0e-5381480c7a96", + "label": "label-4135", + "height": 200, + "background": "yellow" + }, + { + "key": "1c3f880c-3054-4fbd-802e-e25071ff6c56", + "label": "label-4136", + "height": 486, + "background": "red" + }, + { + "key": "9d78ec4c-9058-449f-85de-2c676e2751ed", + "label": "label-4137", + "height": 431, + "background": "green" + }, + { + "key": "d12bbdf0-6160-4536-a3e2-9367df9f2fa6", + "label": "label-4138", + "height": 295, + "background": "green" + }, + { + "key": "5eca5cc3-1d36-41f7-afa1-6e1bf73e339c", + "label": "label-4139", + "height": 442, + "background": "yellow" + }, + { + "key": "020f1d94-ca8c-4856-b79a-b1d33424d9c9", + "label": "label-4140", + "height": 205, + "background": "yellow" + }, + { + "key": "6c0d6b9c-6132-4a03-8a86-213691e0d8e7", + "label": "label-4141", + "height": 66, + "background": "blue" + }, + { + "key": "264bea91-bde7-45e4-b3c3-80517a8a9c0d", + "label": "label-4142", + "height": 218, + "background": "yellow" + }, + { + "key": "efd7cf48-5156-40b0-b584-bff42b2175ec", + "label": "label-4143", + "height": 491, + "background": "blue" + }, + { + "key": "de006c53-4317-4605-94fe-9633a0554e31", + "label": "label-4144", + "height": 467, + "background": "green" + }, + { + "key": "6cc3c06e-393c-4356-b80a-cfae23c3c608", + "label": "label-4145", + "height": 57, + "background": "blue" + }, + { + "key": "e7688190-ca3d-4720-9d5e-367762cc6087", + "label": "label-4146", + "height": 78, + "background": "yellow" + }, + { + "key": "e641f2dc-85d8-4647-bc47-e8725437e785", + "label": "label-4147", + "height": 425, + "background": "red" + }, + { + "key": "89c1cb0a-aad7-493c-9ec1-096509d74b0e", + "label": "label-4148", + "height": 364, + "background": "blue" + }, + { + "key": "29f3e7ac-0d9d-4190-aa52-dfa8464293b1", + "label": "label-4149", + "height": 115, + "background": "yellow" + }, + { + "key": "9aa17b42-3787-4c8d-9827-556ffd0a7a49", + "label": "label-4150", + "height": 452, + "background": "red" + }, + { + "key": "69b83aa4-c59c-4775-8deb-4c5c6f0bb1b1", + "label": "label-4151", + "height": 350, + "background": "yellow" + }, + { + "key": "201a5ae6-71c4-4459-8d26-22b664706d29", + "label": "label-4152", + "height": 423, + "background": "yellow" + }, + { + "key": "48b2c02a-188d-4e38-ac21-f1c39e165fd3", + "label": "label-4153", + "height": 173, + "background": "red" + }, + { + "key": "983888ea-b2bd-43dc-97a9-0386212b3169", + "label": "label-4154", + "height": 162, + "background": "blue" + }, + { + "key": "546bdf74-4b2b-4191-8c7d-08f2ed2bc77a", + "label": "label-4155", + "height": 154, + "background": "yellow" + }, + { + "key": "8c227a05-8581-4eb2-af49-d7d50f29491c", + "label": "label-4156", + "height": 414, + "background": "red" + }, + { + "key": "0b0f8dca-f2db-4ae1-a39e-fe48aa424e89", + "label": "label-4157", + "height": 271, + "background": "red" + }, + { + "key": "e61b63c2-46f3-4049-a194-54900b62a443", + "label": "label-4158", + "height": 515, + "background": "green" + }, + { + "key": "d4229630-45d8-4334-ad96-ebbed2119226", + "label": "label-4159", + "height": 127, + "background": "yellow" + }, + { + "key": "3ff73c45-aece-456d-84d1-2f90dd49e96f", + "label": "label-4160", + "height": 96, + "background": "yellow" + }, + { + "key": "c800bf41-c85e-4818-817a-65cc6f6fbc8f", + "label": "label-4161", + "height": 120, + "background": "blue" + }, + { + "key": "9b1edf43-57f7-4c2d-bb77-f900a61eb7d7", + "label": "label-4162", + "height": 34, + "background": "red" + }, + { + "key": "76d0f2c1-a57e-429a-89c7-4e56f2a82af8", + "label": "label-4163", + "height": 340, + "background": "blue" + }, + { + "key": "6ef5e990-b54f-4593-9ebc-dfe54aa886cf", + "label": "label-4164", + "height": 123, + "background": "blue" + }, + { + "key": "a1ac0159-a006-43f6-865a-d29ac59e7cb5", + "label": "label-4165", + "height": 222, + "background": "green" + }, + { + "key": "01157df5-79e5-4596-94e0-59340f8915f7", + "label": "label-4166", + "height": 235, + "background": "red" + }, + { + "key": "16491361-cfeb-4e00-b092-5cc09c574663", + "label": "label-4167", + "height": 76, + "background": "yellow" + }, + { + "key": "117473f7-409a-4c5d-9c8d-df5cd22ce240", + "label": "label-4168", + "height": 493, + "background": "green" + }, + { + "key": "f110767a-ade4-4106-ba59-d269a8abb9e8", + "label": "label-4169", + "height": 203, + "background": "green" + }, + { + "key": "5fc6c38c-1b84-4c56-b76f-7b0147137d1e", + "label": "label-4170", + "height": 322, + "background": "red" + }, + { + "key": "7bd61246-38f7-4594-bcec-0a0e7c0be48a", + "label": "label-4171", + "height": 473, + "background": "red" + }, + { + "key": "eab65ad6-feda-4e53-8705-2211d1030f5a", + "label": "label-4172", + "height": 428, + "background": "red" + }, + { + "key": "9cfbce66-0d1b-4632-8460-420b0201bae2", + "label": "label-4173", + "height": 436, + "background": "green" + }, + { + "key": "73fe0221-7d1b-47f8-9b88-f6f56299bf64", + "label": "label-4174", + "height": 411, + "background": "blue" + }, + { + "key": "b69bd3ef-c739-4f20-bb29-16ca44c81d1b", + "label": "label-4175", + "height": 515, + "background": "blue" + }, + { + "key": "a2b07f22-31e1-43a8-8965-5a4b86797963", + "label": "label-4176", + "height": 494, + "background": "blue" + }, + { + "key": "def6d591-36b4-45a4-92f2-64c7ed487f4a", + "label": "label-4177", + "height": 246, + "background": "blue" + }, + { + "key": "7e6ecaa4-65e7-48cd-80dd-341e3f3bd3ae", + "label": "label-4178", + "height": 239, + "background": "yellow" + }, + { + "key": "1f3d6450-7335-497a-ba6b-8d2854638b2b", + "label": "label-4179", + "height": 124, + "background": "yellow" + }, + { + "key": "899a4aa0-00ce-4035-a416-4c884b466330", + "label": "label-4180", + "height": 252, + "background": "red" + }, + { + "key": "1aefdea7-6349-4eca-801d-445fa8f0a65b", + "label": "label-4181", + "height": 480, + "background": "green" + }, + { + "key": "ccb1a980-7d6e-4e09-8bdf-a8ddb65da317", + "label": "label-4182", + "height": 124, + "background": "green" + }, + { + "key": "54e35cb7-97d5-46e8-9200-4aa6a0f79ced", + "label": "label-4183", + "height": 85, + "background": "blue" + }, + { + "key": "0b1bb2e1-e71a-4536-a02a-d0a8b46dc4bc", + "label": "label-4184", + "height": 493, + "background": "yellow" + }, + { + "key": "f1b979a2-6ab0-42c7-9f4b-028893b604b0", + "label": "label-4185", + "height": 214, + "background": "green" + }, + { + "key": "24f04092-0464-401e-90aa-b887cc16ab51", + "label": "label-4186", + "height": 408, + "background": "green" + }, + { + "key": "ef008178-db97-40f5-be3e-8c0ddf5437d5", + "label": "label-4187", + "height": 334, + "background": "blue" + }, + { + "key": "dc5178d2-9609-4c5b-8d1c-bf6f63ad40f9", + "label": "label-4188", + "height": 67, + "background": "yellow" + }, + { + "key": "a0388ca3-fcce-4119-9e99-1e8dfe526c22", + "label": "label-4189", + "height": 312, + "background": "blue" + }, + { + "key": "12bd2168-92da-401c-a9b2-baa0723be8e9", + "label": "label-4190", + "height": 378, + "background": "red" + }, + { + "key": "b3a4aecd-0846-4956-9e5a-b17e0f915c2b", + "label": "label-4191", + "height": 406, + "background": "yellow" + }, + { + "key": "da87a138-6805-424b-974d-c67004d054ba", + "label": "label-4192", + "height": 126, + "background": "green" + }, + { + "key": "aaf14e5a-18e5-4120-ae4c-cd5520991c87", + "label": "label-4193", + "height": 462, + "background": "red" + }, + { + "key": "c120cb21-a895-4b44-ab47-f51ed26427f0", + "label": "label-4194", + "height": 171, + "background": "green" + }, + { + "key": "50ec2488-7e00-431e-a1cb-32686077afa2", + "label": "label-4195", + "height": 378, + "background": "blue" + }, + { + "key": "36a84b87-a35a-47de-ace9-36ceaffb0f24", + "label": "label-4196", + "height": 343, + "background": "yellow" + }, + { + "key": "b8fa7b69-d19f-470d-93bd-61a4ac46f6b3", + "label": "label-4197", + "height": 294, + "background": "blue" + }, + { + "key": "0401e56a-f52b-4e24-9864-5600bacbfbba", + "label": "label-4198", + "height": 295, + "background": "green" + }, + { + "key": "21bfd899-3c88-4d0d-87b3-c6b4a1dc93d0", + "label": "label-4199", + "height": 467, + "background": "yellow" + }, + { + "key": "b3af9424-e494-413f-8803-f089cb92359d", + "label": "label-4200", + "height": 491, + "background": "blue" + }, + { + "key": "89156e22-0b37-4340-8845-78a86c097e05", + "label": "label-4201", + "height": 307, + "background": "red" + }, + { + "key": "2f32d38b-9507-4c99-8619-193bc02fcad5", + "label": "label-4202", + "height": 281, + "background": "green" + }, + { + "key": "c8132a44-8aa0-4680-8c45-590958c11a00", + "label": "label-4203", + "height": 289, + "background": "red" + }, + { + "key": "f436e82c-b1a0-49ee-a270-15b1afc055e9", + "label": "label-4204", + "height": 252, + "background": "yellow" + }, + { + "key": "c88b4c6e-02ec-4c34-9aa5-ca63ea50453d", + "label": "label-4205", + "height": 199, + "background": "green" + }, + { + "key": "8c3915ec-ba49-4556-9288-1dcb6d821895", + "label": "label-4206", + "height": 183, + "background": "yellow" + }, + { + "key": "87de4ebd-174f-47c6-b49b-11f64dc3f839", + "label": "label-4207", + "height": 126, + "background": "red" + }, + { + "key": "ab27fa58-ba5e-4a46-b4be-5b183f0d4105", + "label": "label-4208", + "height": 320, + "background": "red" + }, + { + "key": "67e5aca5-84ba-4e39-8c9a-e527efb20a7a", + "label": "label-4209", + "height": 152, + "background": "red" + }, + { + "key": "104a4921-4116-49e8-9481-1cc24c8cbc8c", + "label": "label-4210", + "height": 408, + "background": "yellow" + }, + { + "key": "f8fa5092-c075-4cc1-9faf-f89d5245d8cd", + "label": "label-4211", + "height": 483, + "background": "blue" + }, + { + "key": "3b846c24-ee3b-4955-9350-ef8a0522f1d5", + "label": "label-4212", + "height": 320, + "background": "yellow" + }, + { + "key": "232882cb-2865-4015-9804-f913bf1f5769", + "label": "label-4213", + "height": 217, + "background": "red" + }, + { + "key": "58738441-e66d-41e5-acc4-afc735dd471b", + "label": "label-4214", + "height": 374, + "background": "blue" + }, + { + "key": "3da74d19-9ec3-4d80-b6b4-588158b1f77d", + "label": "label-4215", + "height": 47, + "background": "green" + }, + { + "key": "22aed194-9434-4d0a-99f6-593c11f2f390", + "label": "label-4216", + "height": 52, + "background": "blue" + }, + { + "key": "b2a45d9c-24ac-4caa-b38d-8a06153a4bce", + "label": "label-4217", + "height": 137, + "background": "green" + }, + { + "key": "39c89a66-cb15-4a05-8d2f-b6f8d4239a40", + "label": "label-4218", + "height": 328, + "background": "red" + }, + { + "key": "663340f3-2118-4bc1-9912-719f4f90c088", + "label": "label-4219", + "height": 177, + "background": "red" + }, + { + "key": "6dadf757-fe30-42d6-b870-4e9235c60b61", + "label": "label-4220", + "height": 449, + "background": "yellow" + }, + { + "key": "94e68d9c-1108-4325-a8c1-e667448aa44d", + "label": "label-4221", + "height": 106, + "background": "yellow" + }, + { + "key": "dbbe3e22-6cab-44bf-b91a-a0c82a7c206b", + "label": "label-4222", + "height": 48, + "background": "green" + }, + { + "key": "e6c7048e-e428-40fa-a2a9-98050cc5eb34", + "label": "label-4223", + "height": 384, + "background": "red" + }, + { + "key": "6b64ba7a-a1a7-4460-a297-7e9f6506c69e", + "label": "label-4224", + "height": 158, + "background": "green" + }, + { + "key": "9edcac01-f2f0-46f0-8def-40c0e2e5763a", + "label": "label-4225", + "height": 210, + "background": "blue" + }, + { + "key": "7de1cf23-8e80-4c91-8284-eb46b1d3f214", + "label": "label-4226", + "height": 448, + "background": "green" + }, + { + "key": "3985b063-a8a6-48dc-b27e-f829ebaf3cab", + "label": "label-4227", + "height": 211, + "background": "blue" + }, + { + "key": "69131fc9-1a28-4283-864f-b59a5824396e", + "label": "label-4228", + "height": 193, + "background": "yellow" + }, + { + "key": "b0c8fbea-4956-4840-af3a-dcfa565dbbbc", + "label": "label-4229", + "height": 514, + "background": "red" + }, + { + "key": "ae9dcb93-88d1-45b2-bce0-a772d6850ec8", + "label": "label-4230", + "height": 370, + "background": "red" + }, + { + "key": "59945b64-0c98-45a4-85db-e6644799c8a7", + "label": "label-4231", + "height": 409, + "background": "yellow" + }, + { + "key": "6acacbd8-f68e-45b2-8d34-5b4c69ebb674", + "label": "label-4232", + "height": 377, + "background": "red" + }, + { + "key": "636abd43-3f9d-440e-b2e5-518d1fbb4da2", + "label": "label-4233", + "height": 326, + "background": "yellow" + }, + { + "key": "836092b1-0fef-4230-8cd4-ca8941d8355d", + "label": "label-4234", + "height": 437, + "background": "blue" + }, + { + "key": "09f6dabc-011b-4412-88dd-0ce311bf1c67", + "label": "label-4235", + "height": 478, + "background": "blue" + }, + { + "key": "ffa6b00b-d542-4071-9bd4-a8c00a386330", + "label": "label-4236", + "height": 501, + "background": "yellow" + }, + { + "key": "ac576fb0-689c-4c1f-823b-5fa624a3c4b0", + "label": "label-4237", + "height": 365, + "background": "green" + }, + { + "key": "2182d371-cb4e-4f55-bc0f-d2154fbbf8c1", + "label": "label-4238", + "height": 377, + "background": "blue" + }, + { + "key": "54db165c-fefb-4df5-abd3-7b41408697a2", + "label": "label-4239", + "height": 238, + "background": "blue" + }, + { + "key": "65959401-8c84-4a19-aa3e-9193e8afd5c4", + "label": "label-4240", + "height": 330, + "background": "red" + }, + { + "key": "4e2de701-dfab-457f-9509-9cd5bf42011d", + "label": "label-4241", + "height": 213, + "background": "red" + }, + { + "key": "2bcc1015-edba-40bc-9207-dcf64b646f68", + "label": "label-4242", + "height": 117, + "background": "green" + }, + { + "key": "cb1662ea-75d1-4709-88ae-2cebfe74aef4", + "label": "label-4243", + "height": 521, + "background": "green" + }, + { + "key": "f04488f9-fa92-45ec-bb94-fe51516e04dc", + "label": "label-4244", + "height": 240, + "background": "green" + }, + { + "key": "2e18b4e0-a9ac-4a40-add4-bc42c8d6b8c1", + "label": "label-4245", + "height": 509, + "background": "yellow" + }, + { + "key": "4fe8cf75-0f28-4343-9e2e-567984f02990", + "label": "label-4246", + "height": 284, + "background": "blue" + }, + { + "key": "1526f3f4-eef8-42e5-ad77-7bd4ab7c673d", + "label": "label-4247", + "height": 256, + "background": "blue" + }, + { + "key": "29a1b684-825d-4e37-a7de-4f1b85b9bb46", + "label": "label-4248", + "height": 329, + "background": "green" + }, + { + "key": "8097761a-ac6d-43de-b93b-6a973a6914f3", + "label": "label-4249", + "height": 57, + "background": "red" + }, + { + "key": "b89a0872-c72b-4984-b3e8-29a84d7747b5", + "label": "label-4250", + "height": 455, + "background": "green" + }, + { + "key": "112afbbc-3f3f-4407-a221-e28bb5ed4450", + "label": "label-4251", + "height": 419, + "background": "green" + }, + { + "key": "14a943ad-7e32-4136-b0c6-52f3d6041a72", + "label": "label-4252", + "height": 398, + "background": "red" + }, + { + "key": "0f85508a-a85a-44ca-b81f-2caf2e4c02f4", + "label": "label-4253", + "height": 153, + "background": "blue" + }, + { + "key": "b82ca8fd-13c2-4fff-bd3c-ef0913353021", + "label": "label-4254", + "height": 431, + "background": "yellow" + }, + { + "key": "ceb8efb8-792e-4393-9cb4-27a1c2be3747", + "label": "label-4255", + "height": 320, + "background": "yellow" + }, + { + "key": "b84f7c1d-e174-4a34-b00e-a8254a51b825", + "label": "label-4256", + "height": 419, + "background": "blue" + }, + { + "key": "bbca8def-ca9f-4893-b5af-ceac56b40360", + "label": "label-4257", + "height": 320, + "background": "green" + }, + { + "key": "37897232-2b65-4c9c-81f6-8a9bd0bf522b", + "label": "label-4258", + "height": 37, + "background": "red" + }, + { + "key": "45066eac-4a33-49fd-b097-bee074f23348", + "label": "label-4259", + "height": 464, + "background": "green" + }, + { + "key": "80652683-e5ee-4234-ac22-92d7fcc11b72", + "label": "label-4260", + "height": 519, + "background": "yellow" + }, + { + "key": "f2463a70-b9b0-4bce-9fee-b4eb617ea72d", + "label": "label-4261", + "height": 508, + "background": "blue" + }, + { + "key": "01803452-a8c1-4cc4-acab-257f24de1672", + "label": "label-4262", + "height": 301, + "background": "blue" + }, + { + "key": "a76eb2e5-f865-4c42-8972-7ca15db286b7", + "label": "label-4263", + "height": 190, + "background": "yellow" + }, + { + "key": "a4ea5b28-9de0-431a-8e89-25a5982a4ce2", + "label": "label-4264", + "height": 370, + "background": "red" + }, + { + "key": "b2ef0987-9ddd-4ae0-9447-68be2e6135b9", + "label": "label-4265", + "height": 276, + "background": "blue" + }, + { + "key": "16a28621-ad21-48a9-ada3-97827d944974", + "label": "label-4266", + "height": 420, + "background": "blue" + }, + { + "key": "e93a116a-9f2a-4b99-9f21-36d24ba72d43", + "label": "label-4267", + "height": 478, + "background": "blue" + }, + { + "key": "27978ca3-064f-462a-a7b7-0aa6bb72f9ce", + "label": "label-4268", + "height": 443, + "background": "yellow" + }, + { + "key": "196553b1-c1f8-4861-bc6d-abe08d1b9088", + "label": "label-4269", + "height": 135, + "background": "blue" + }, + { + "key": "e0ac35f4-ee89-417d-813e-e056a98effdd", + "label": "label-4270", + "height": 148, + "background": "yellow" + }, + { + "key": "e59752c6-17c9-4379-84f3-747719522703", + "label": "label-4271", + "height": 88, + "background": "yellow" + }, + { + "key": "3dc217b7-bbd0-4848-95b3-ce2b9741db85", + "label": "label-4272", + "height": 273, + "background": "green" + }, + { + "key": "ca5914ba-b969-4d21-b54d-db60db364ff3", + "label": "label-4273", + "height": 131, + "background": "green" + }, + { + "key": "9de468d6-4710-4ab6-b78a-7eea2bdac5a0", + "label": "label-4274", + "height": 318, + "background": "yellow" + }, + { + "key": "b546d558-08f5-46d5-8645-27ea55b41d2c", + "label": "label-4275", + "height": 71, + "background": "red" + }, + { + "key": "1387c902-7c6a-46f6-b754-36a1b6f8f96e", + "label": "label-4276", + "height": 147, + "background": "red" + }, + { + "key": "4b4b33c7-fa89-4df9-b237-27c259ab833a", + "label": "label-4277", + "height": 114, + "background": "yellow" + }, + { + "key": "c6c3e8fc-133e-41bd-a6ec-1bf6a80bff67", + "label": "label-4278", + "height": 176, + "background": "blue" + }, + { + "key": "38d07165-06b0-490c-b848-58362103bbb3", + "label": "label-4279", + "height": 43, + "background": "blue" + }, + { + "key": "e5024b85-28fd-4d52-90a1-ffef122682fb", + "label": "label-4280", + "height": 503, + "background": "yellow" + }, + { + "key": "01a5cf01-4276-44dc-9bca-a0637e63616d", + "label": "label-4281", + "height": 528, + "background": "red" + }, + { + "key": "65f35996-d750-4055-b827-aac52eca3aff", + "label": "label-4282", + "height": 496, + "background": "red" + }, + { + "key": "a13aa5b7-862f-4813-b429-72354ef4e135", + "label": "label-4283", + "height": 102, + "background": "red" + }, + { + "key": "2ab6f347-f4e4-40b5-87e3-61ad549d448b", + "label": "label-4284", + "height": 273, + "background": "red" + }, + { + "key": "1fb29bdb-64f1-4b27-8c9c-3df31b67a1a4", + "label": "label-4285", + "height": 170, + "background": "blue" + }, + { + "key": "8130ece6-774b-4921-9737-740d897595b1", + "label": "label-4286", + "height": 84, + "background": "green" + }, + { + "key": "d5beb274-2033-4b3c-b2e7-85c8f42aeed3", + "label": "label-4287", + "height": 98, + "background": "yellow" + }, + { + "key": "a7684c52-661b-45f9-a06a-775d3444e0c3", + "label": "label-4288", + "height": 362, + "background": "blue" + }, + { + "key": "ce8f618b-7d7f-4fd7-9eb5-ccffcdace4b8", + "label": "label-4289", + "height": 179, + "background": "blue" + }, + { + "key": "b27b75bd-8c2e-4fff-a53f-8295e631c04a", + "label": "label-4290", + "height": 510, + "background": "red" + }, + { + "key": "12652eec-0fcb-4796-ab02-990164480e72", + "label": "label-4291", + "height": 291, + "background": "yellow" + }, + { + "key": "0489b362-cc28-4473-951f-b4faef0a5161", + "label": "label-4292", + "height": 311, + "background": "red" + }, + { + "key": "9b59f82e-25b8-4efd-b1dd-4ca8ce3fa69b", + "label": "label-4293", + "height": 170, + "background": "red" + }, + { + "key": "549a4ff1-45d4-47dc-b05e-cb337abac164", + "label": "label-4294", + "height": 420, + "background": "yellow" + }, + { + "key": "c4eaa9a1-a04b-4457-8a08-95ac7e6ff4f6", + "label": "label-4295", + "height": 189, + "background": "green" + }, + { + "key": "c0ab02f7-b0a4-4a5e-93c2-1641c864f568", + "label": "label-4296", + "height": 130, + "background": "blue" + }, + { + "key": "f3a267b9-6f7a-4ee9-b4e6-ca1e8c23a52e", + "label": "label-4297", + "height": 116, + "background": "yellow" + }, + { + "key": "ce3a77bb-bb5a-4a79-918a-e251bfdb76bd", + "label": "label-4298", + "height": 321, + "background": "red" + }, + { + "key": "c54c705e-11c9-4901-a9d7-8561e8a926fa", + "label": "label-4299", + "height": 274, + "background": "blue" + }, + { + "key": "04e8d48b-52bb-4427-8da6-592b208d573a", + "label": "label-4300", + "height": 199, + "background": "yellow" + }, + { + "key": "73715ab9-c733-4f2c-9edf-0e9aaad9f9a7", + "label": "label-4301", + "height": 401, + "background": "blue" + }, + { + "key": "3cd361d0-e55b-42a7-8a7b-e5295cd1fc0b", + "label": "label-4302", + "height": 361, + "background": "green" + }, + { + "key": "0ebb8007-da2b-454e-ae9b-9fa241c63ce4", + "label": "label-4303", + "height": 181, + "background": "yellow" + }, + { + "key": "198f49a0-3f19-4ccc-88ab-3a937b6f5bc7", + "label": "label-4304", + "height": 440, + "background": "blue" + }, + { + "key": "f1d24786-2a3b-4b7c-8c1a-4ce3718a753e", + "label": "label-4305", + "height": 94, + "background": "yellow" + }, + { + "key": "0e42b30e-5c3a-46ea-9370-6562e0c471cf", + "label": "label-4306", + "height": 485, + "background": "yellow" + }, + { + "key": "09c14053-3d8b-4ce9-8927-0992aac08922", + "label": "label-4307", + "height": 250, + "background": "red" + }, + { + "key": "8045682d-6a88-42b4-990c-fcfab90c5750", + "label": "label-4308", + "height": 401, + "background": "yellow" + }, + { + "key": "171e68e8-fdc0-4f7d-a47f-9467d0fd51bd", + "label": "label-4309", + "height": 199, + "background": "red" + }, + { + "key": "0400eb1f-5e9a-406e-b8ef-2be1cff32673", + "label": "label-4310", + "height": 113, + "background": "red" + }, + { + "key": "b40d8f8a-2e2e-4081-a835-e8beb3e83044", + "label": "label-4311", + "height": 147, + "background": "yellow" + }, + { + "key": "6b1f4e1d-ee05-4797-9d80-6a9e7003ea35", + "label": "label-4312", + "height": 509, + "background": "red" + }, + { + "key": "0ced9745-c3b8-4503-a2ad-a32b6b8f34e1", + "label": "label-4313", + "height": 402, + "background": "red" + }, + { + "key": "5747ba10-3d76-40ab-a1a2-35ae048491db", + "label": "label-4314", + "height": 399, + "background": "blue" + }, + { + "key": "4963edfa-6233-4bec-b912-19d63f00d5f7", + "label": "label-4315", + "height": 472, + "background": "green" + }, + { + "key": "6c55feea-9148-43d7-8602-934b04528bc3", + "label": "label-4316", + "height": 77, + "background": "blue" + }, + { + "key": "8ace4877-048c-42b6-a29a-d5b3971f7295", + "label": "label-4317", + "height": 203, + "background": "red" + }, + { + "key": "4e52c7d8-6f0a-4a9a-a4cf-e3eca3034aae", + "label": "label-4318", + "height": 502, + "background": "yellow" + }, + { + "key": "0c03851f-0f4e-464c-ac90-e48186832e31", + "label": "label-4319", + "height": 129, + "background": "red" + }, + { + "key": "458c222d-cbd1-4c3b-bb35-9f694753b71e", + "label": "label-4320", + "height": 245, + "background": "red" + }, + { + "key": "bb0346ea-4953-4eb4-ab78-3c3fe7e66095", + "label": "label-4321", + "height": 383, + "background": "green" + }, + { + "key": "e9d9b030-0ede-4394-8f9a-a29e7085935e", + "label": "label-4322", + "height": 504, + "background": "green" + }, + { + "key": "6f42fc5e-3df2-473d-9202-bbfb452b4d89", + "label": "label-4323", + "height": 36, + "background": "yellow" + }, + { + "key": "5672c57f-f6a7-4abe-9d34-655eb8748a5b", + "label": "label-4324", + "height": 476, + "background": "blue" + }, + { + "key": "893b0df7-1fa1-4c85-baef-b8b2d43a10eb", + "label": "label-4325", + "height": 34, + "background": "green" + }, + { + "key": "102e2bb3-088a-4d24-aea8-acfc48185297", + "label": "label-4326", + "height": 170, + "background": "yellow" + }, + { + "key": "25d8c2c9-a52a-4904-9ef2-a138d26406cb", + "label": "label-4327", + "height": 464, + "background": "blue" + }, + { + "key": "f275b6d1-6cfb-41c7-92e4-bf336d026add", + "label": "label-4328", + "height": 98, + "background": "red" + }, + { + "key": "9e215e43-6703-4906-b7d6-362f03a78d50", + "label": "label-4329", + "height": 305, + "background": "red" + }, + { + "key": "c74a221e-9754-449f-932b-ca40e2992b94", + "label": "label-4330", + "height": 190, + "background": "green" + }, + { + "key": "0dc1ccf4-78c8-48f5-a63c-d00cc2103c1d", + "label": "label-4331", + "height": 368, + "background": "yellow" + }, + { + "key": "dd72f7fb-e0c7-464f-b890-d1499d71d9fe", + "label": "label-4332", + "height": 224, + "background": "green" + }, + { + "key": "61f5123b-7650-436d-9111-65eaf1daff92", + "label": "label-4333", + "height": 37, + "background": "yellow" + }, + { + "key": "381cad7e-c498-4c27-99f0-2616714fb7cd", + "label": "label-4334", + "height": 257, + "background": "blue" + }, + { + "key": "3c362a4d-3838-4887-b0a6-ecc2d9623cd7", + "label": "label-4335", + "height": 294, + "background": "red" + }, + { + "key": "6cf4b893-1efe-4800-a359-fca4de1ec35e", + "label": "label-4336", + "height": 437, + "background": "blue" + }, + { + "key": "ef1fada8-b75e-4283-a0d2-1e679acc4f9f", + "label": "label-4337", + "height": 504, + "background": "yellow" + }, + { + "key": "4778efb6-9890-42c1-ac7c-79af4e375060", + "label": "label-4338", + "height": 200, + "background": "green" + }, + { + "key": "f4a75da0-a2f4-4cda-abdf-5ace0e48a2b3", + "label": "label-4339", + "height": 381, + "background": "green" + }, + { + "key": "d8c8767e-3b44-46bd-b41b-b383e2dfd3eb", + "label": "label-4340", + "height": 338, + "background": "yellow" + }, + { + "key": "9e458192-f356-418f-bea0-7ae99b8bf748", + "label": "label-4341", + "height": 138, + "background": "blue" + }, + { + "key": "7279a8d0-5df1-4cec-b66a-15272f1ebb4d", + "label": "label-4342", + "height": 373, + "background": "red" + }, + { + "key": "32dc299c-6c11-4dfc-a457-fb2753879037", + "label": "label-4343", + "height": 254, + "background": "red" + }, + { + "key": "6c292f23-5139-4020-9a9f-0f48d3abba84", + "label": "label-4344", + "height": 252, + "background": "green" + }, + { + "key": "27311d50-bb3f-458a-a57d-78bfb7d5a63a", + "label": "label-4345", + "height": 179, + "background": "blue" + }, + { + "key": "e34331f5-ae26-4113-af50-df702da61846", + "label": "label-4346", + "height": 360, + "background": "blue" + }, + { + "key": "9526f0a2-280e-49a9-9ced-9d7d2b749205", + "label": "label-4347", + "height": 381, + "background": "yellow" + }, + { + "key": "4b638544-9682-4f0c-8e63-a46c610e81bb", + "label": "label-4348", + "height": 375, + "background": "red" + }, + { + "key": "ac79229c-9fe4-48cf-95d1-2af994f66115", + "label": "label-4349", + "height": 203, + "background": "green" + }, + { + "key": "4fb8e16c-d705-4d91-8b0b-f2a25f354890", + "label": "label-4350", + "height": 268, + "background": "red" + }, + { + "key": "fbc1b2c9-5e94-4afd-a8b6-79d08d270d2a", + "label": "label-4351", + "height": 385, + "background": "blue" + }, + { + "key": "ff505bb6-a736-42b3-a147-0a3c379ea389", + "label": "label-4352", + "height": 238, + "background": "green" + }, + { + "key": "b0110eb2-fcbb-435c-843b-31f7fefa49ee", + "label": "label-4353", + "height": 239, + "background": "red" + }, + { + "key": "32625bb3-41a3-4ec3-9346-3f4ee7896379", + "label": "label-4354", + "height": 342, + "background": "green" + }, + { + "key": "628d124c-ea29-43e7-a60c-f964b4679df6", + "label": "label-4355", + "height": 322, + "background": "red" + }, + { + "key": "c04f1a07-6b39-4071-b149-de8b9a4e0426", + "label": "label-4356", + "height": 210, + "background": "blue" + }, + { + "key": "f0d6bcce-3aaa-4792-af4e-2d5b6116e7e1", + "label": "label-4357", + "height": 482, + "background": "red" + }, + { + "key": "fc3370ff-7e1e-4c04-a5e2-3f08539d6d3f", + "label": "label-4358", + "height": 73, + "background": "green" + }, + { + "key": "6e9c3a23-922f-4747-924a-24422eab089f", + "label": "label-4359", + "height": 374, + "background": "blue" + }, + { + "key": "1ab205f5-88f8-4bb2-ac26-645b46ef2ea5", + "label": "label-4360", + "height": 342, + "background": "red" + }, + { + "key": "5c381742-4041-4c33-8bb4-6f2e808e6cb8", + "label": "label-4361", + "height": 181, + "background": "green" + }, + { + "key": "da29a233-ba34-453e-8d01-9de4ca77a758", + "label": "label-4362", + "height": 350, + "background": "yellow" + }, + { + "key": "71db0517-c049-4d7a-9bca-215baeab4bc9", + "label": "label-4363", + "height": 380, + "background": "blue" + }, + { + "key": "390ec818-87a6-45f3-9d3a-b8d9fbb0d3cf", + "label": "label-4364", + "height": 346, + "background": "blue" + }, + { + "key": "02da07e1-bd03-4aa0-8e4b-a2d99922bf69", + "label": "label-4365", + "height": 360, + "background": "blue" + }, + { + "key": "aef85d67-40d1-4c0a-8d3e-2224314945a2", + "label": "label-4366", + "height": 360, + "background": "green" + }, + { + "key": "3a4a240e-719f-470d-b945-ea4601c92300", + "label": "label-4367", + "height": 348, + "background": "green" + }, + { + "key": "1c7fcfac-b1de-4340-890c-249e0e95cd99", + "label": "label-4368", + "height": 187, + "background": "yellow" + }, + { + "key": "c9ddbb18-9174-4b70-87bb-f17160695c91", + "label": "label-4369", + "height": 364, + "background": "yellow" + }, + { + "key": "afb16f0d-eb29-4268-8cd6-6d73bca3fba3", + "label": "label-4370", + "height": 446, + "background": "green" + }, + { + "key": "a0bb37e0-9554-4328-bf9c-e31be050a464", + "label": "label-4371", + "height": 353, + "background": "red" + }, + { + "key": "9d791690-a362-4edc-a3e7-fbaeaad0df4d", + "label": "label-4372", + "height": 229, + "background": "red" + }, + { + "key": "bde930fd-ca23-4a68-9091-91cb017aee5a", + "label": "label-4373", + "height": 345, + "background": "red" + }, + { + "key": "e9bce460-a562-458f-b68c-6b5baa940b5d", + "label": "label-4374", + "height": 291, + "background": "blue" + }, + { + "key": "37a02d37-9d95-4633-a6d8-8a0a3f6611ed", + "label": "label-4375", + "height": 255, + "background": "blue" + }, + { + "key": "8f25f2aa-48af-4545-bae9-a27f1fdf49bf", + "label": "label-4376", + "height": 320, + "background": "green" + }, + { + "key": "bdfb73c9-52a8-4648-89ff-4f19748462c6", + "label": "label-4377", + "height": 423, + "background": "yellow" + }, + { + "key": "265db311-0e50-4ec3-b482-6d051269398d", + "label": "label-4378", + "height": 227, + "background": "blue" + }, + { + "key": "9e1839e7-e46a-4f48-9af2-5af21ea82757", + "label": "label-4379", + "height": 310, + "background": "green" + }, + { + "key": "9ff09b5d-ed63-44dc-a5c7-0dab32e4a492", + "label": "label-4380", + "height": 414, + "background": "blue" + }, + { + "key": "893d3cbe-83f1-45cb-af89-d52beac47554", + "label": "label-4381", + "height": 194, + "background": "red" + }, + { + "key": "506fea88-f6db-434f-90a7-70ba1f4db2cd", + "label": "label-4382", + "height": 468, + "background": "red" + }, + { + "key": "dd0d82bb-bef8-4c30-8423-80da60e9cb3a", + "label": "label-4383", + "height": 429, + "background": "green" + }, + { + "key": "fb04e394-d776-46be-9627-afafec45cc95", + "label": "label-4384", + "height": 342, + "background": "blue" + }, + { + "key": "0800e075-8d0c-4365-b187-d8fed847f8b7", + "label": "label-4385", + "height": 379, + "background": "red" + }, + { + "key": "2bda2576-f94f-49d7-8e21-7434febfd94e", + "label": "label-4386", + "height": 385, + "background": "green" + }, + { + "key": "9a1111cd-b3a9-4984-b7c1-303c4dd78104", + "label": "label-4387", + "height": 325, + "background": "red" + }, + { + "key": "f6093926-e2cb-4962-b187-ffefefe8698b", + "label": "label-4388", + "height": 352, + "background": "yellow" + }, + { + "key": "ba4cdf9e-4110-4188-968d-876cc8dd0760", + "label": "label-4389", + "height": 405, + "background": "red" + }, + { + "key": "308e5f0d-ebc6-43c6-ac68-9c0980d8c4b3", + "label": "label-4390", + "height": 143, + "background": "green" + }, + { + "key": "722172bb-ef41-4314-a1e3-02533ba79594", + "label": "label-4391", + "height": 189, + "background": "green" + }, + { + "key": "e1101a8f-b88f-47b1-96e0-c7687677b486", + "label": "label-4392", + "height": 168, + "background": "red" + }, + { + "key": "866fd0e7-0e40-4f82-9087-7fcbfde67a8c", + "label": "label-4393", + "height": 55, + "background": "green" + }, + { + "key": "e584b3d7-8dc6-4f70-a979-64074be386ab", + "label": "label-4394", + "height": 392, + "background": "red" + }, + { + "key": "02c1e65b-a6ba-48ea-a7d9-8610e8cc0c7a", + "label": "label-4395", + "height": 93, + "background": "green" + }, + { + "key": "a2b695e1-0d6c-4bbe-9954-5fb320500e60", + "label": "label-4396", + "height": 418, + "background": "blue" + }, + { + "key": "8847fa14-2152-42de-852f-82507ac0fff5", + "label": "label-4397", + "height": 94, + "background": "yellow" + }, + { + "key": "085e8eed-8e2f-408b-9619-e83056600844", + "label": "label-4398", + "height": 491, + "background": "green" + }, + { + "key": "4bdab24c-30e8-48df-8179-2356237b40a8", + "label": "label-4399", + "height": 164, + "background": "red" + }, + { + "key": "9170c2d3-3378-4bcd-a8e1-8ccff5f411df", + "label": "label-4400", + "height": 185, + "background": "blue" + }, + { + "key": "d172f237-2f74-49ac-95fa-c5472e1e0d44", + "label": "label-4401", + "height": 455, + "background": "yellow" + }, + { + "key": "295aedaf-8a60-4ab1-bfeb-17620697d2e2", + "label": "label-4402", + "height": 445, + "background": "yellow" + }, + { + "key": "954b71a4-3079-4f69-b998-864ce71d4023", + "label": "label-4403", + "height": 427, + "background": "blue" + }, + { + "key": "e866c281-28ec-49d9-86d0-0a8d02759126", + "label": "label-4404", + "height": 397, + "background": "red" + }, + { + "key": "c4f5d3db-1c99-4898-b7c7-71117f93d156", + "label": "label-4405", + "height": 128, + "background": "red" + }, + { + "key": "4a85e178-26a6-4b3b-b491-5b25f2846acf", + "label": "label-4406", + "height": 426, + "background": "yellow" + }, + { + "key": "81c4b58e-da2f-49fe-b95d-7dd7ea31ac3e", + "label": "label-4407", + "height": 528, + "background": "green" + }, + { + "key": "4098c0bf-bf4e-42da-9b31-55f651aa54e5", + "label": "label-4408", + "height": 186, + "background": "blue" + }, + { + "key": "ccc2e6d7-6f70-4610-86ca-8f83353035fc", + "label": "label-4409", + "height": 275, + "background": "blue" + }, + { + "key": "400c17ba-a708-49c9-b74d-d153fdc3fde8", + "label": "label-4410", + "height": 499, + "background": "yellow" + }, + { + "key": "b18d79bc-1054-476c-9797-9b5fc6eeafb2", + "label": "label-4411", + "height": 250, + "background": "green" + }, + { + "key": "b698b4de-0372-4ef4-9ac2-32a9944d3464", + "label": "label-4412", + "height": 395, + "background": "blue" + }, + { + "key": "1e12d8c6-3dc5-4536-abdb-9929877ec884", + "label": "label-4413", + "height": 148, + "background": "red" + }, + { + "key": "2e6f15ad-e038-47ae-844b-c5acf8e50058", + "label": "label-4414", + "height": 225, + "background": "yellow" + }, + { + "key": "d42ffb17-0542-4d24-a2ef-d18b2b061689", + "label": "label-4415", + "height": 510, + "background": "red" + }, + { + "key": "aa9ea8fa-8917-4cb0-b00c-412384d2ca59", + "label": "label-4416", + "height": 481, + "background": "blue" + }, + { + "key": "9f4c11da-3014-4549-a9a9-476c1e258744", + "label": "label-4417", + "height": 104, + "background": "blue" + }, + { + "key": "c9e47c79-1c72-49bc-8970-18a772a0d2ce", + "label": "label-4418", + "height": 34, + "background": "blue" + }, + { + "key": "139bf0b6-30bd-4909-9b68-beb42caeca8a", + "label": "label-4419", + "height": 310, + "background": "green" + }, + { + "key": "111b09c1-0d41-45e1-8b65-833ff517e100", + "label": "label-4420", + "height": 434, + "background": "blue" + }, + { + "key": "e74c2408-dcfc-4246-93a6-59f9d96d6f17", + "label": "label-4421", + "height": 285, + "background": "yellow" + }, + { + "key": "c51c9e4e-2364-4d78-bc53-4fad92a33ab6", + "label": "label-4422", + "height": 182, + "background": "green" + }, + { + "key": "31952b23-fdad-4c81-afb0-a2c721d33369", + "label": "label-4423", + "height": 522, + "background": "yellow" + }, + { + "key": "34d84372-a508-405a-9264-ec73de6bca69", + "label": "label-4424", + "height": 146, + "background": "yellow" + }, + { + "key": "ddd84b26-694e-44f5-a162-b5d703698782", + "label": "label-4425", + "height": 520, + "background": "red" + }, + { + "key": "e7f1ce2c-d07d-4878-9089-80ba8f6159ba", + "label": "label-4426", + "height": 200, + "background": "yellow" + }, + { + "key": "28e7987e-3cd1-4c34-8147-6059c36da8cc", + "label": "label-4427", + "height": 302, + "background": "blue" + }, + { + "key": "77d58cbe-126f-4650-bb61-9be834bb68a5", + "label": "label-4428", + "height": 405, + "background": "blue" + }, + { + "key": "85a7c4d9-c966-435c-897f-73b234fa8865", + "label": "label-4429", + "height": 403, + "background": "blue" + }, + { + "key": "0cca5005-91a2-43c6-b1fb-6c22658273fc", + "label": "label-4430", + "height": 279, + "background": "green" + }, + { + "key": "c160b258-ed3a-4fce-8a5f-d71aa3e2af06", + "label": "label-4431", + "height": 430, + "background": "green" + }, + { + "key": "d314613f-4c12-4720-af05-c9a472924417", + "label": "label-4432", + "height": 195, + "background": "green" + }, + { + "key": "e0fe8667-dd84-45bb-9ca0-8634199df179", + "label": "label-4433", + "height": 259, + "background": "red" + }, + { + "key": "31b8de9d-8512-4ca1-8182-116f966e67a6", + "label": "label-4434", + "height": 48, + "background": "green" + }, + { + "key": "997f22a1-7ca0-4d87-a3c6-4f9ccd3c2250", + "label": "label-4435", + "height": 512, + "background": "green" + }, + { + "key": "289ab29e-b690-4c6a-bb3e-e511ba49b5f2", + "label": "label-4436", + "height": 399, + "background": "yellow" + }, + { + "key": "31300b0b-3ef6-44ec-b57d-bd9164c1ad8e", + "label": "label-4437", + "height": 229, + "background": "yellow" + }, + { + "key": "e3c34322-2157-4e14-83df-9038e5308d65", + "label": "label-4438", + "height": 305, + "background": "red" + }, + { + "key": "4c77ff1b-48e9-43a5-a1df-536ed0b3113a", + "label": "label-4439", + "height": 243, + "background": "red" + }, + { + "key": "9e665199-f553-488e-8c28-478a501d9e21", + "label": "label-4440", + "height": 60, + "background": "green" + }, + { + "key": "7d5844b4-a48a-45ef-afd3-9929b90e4ad7", + "label": "label-4441", + "height": 114, + "background": "green" + }, + { + "key": "91037d1a-fae1-4021-a6ee-5df1a9814b2e", + "label": "label-4442", + "height": 126, + "background": "green" + }, + { + "key": "196214fc-747c-42bc-bd84-72d16cfbc1da", + "label": "label-4443", + "height": 120, + "background": "blue" + }, + { + "key": "34c51292-1d35-43db-bf16-b8ece3ad78bf", + "label": "label-4444", + "height": 280, + "background": "green" + }, + { + "key": "690f5ed8-bf4c-4b98-af4c-2c26a7aa4b7b", + "label": "label-4445", + "height": 445, + "background": "green" + }, + { + "key": "207c0a33-db25-4865-862f-a0a563080ef0", + "label": "label-4446", + "height": 89, + "background": "red" + }, + { + "key": "6ec722cc-417c-47ef-ba8a-94bc65c1984d", + "label": "label-4447", + "height": 357, + "background": "red" + }, + { + "key": "68b340e5-0216-4a08-8c24-1d59c0bd76b8", + "label": "label-4448", + "height": 246, + "background": "blue" + }, + { + "key": "f54d7449-cf44-4a17-ae3f-9feca77b6585", + "label": "label-4449", + "height": 440, + "background": "blue" + }, + { + "key": "a32ba030-af0d-4eb6-aedf-e6e0ece75d75", + "label": "label-4450", + "height": 74, + "background": "green" + }, + { + "key": "bc5625f6-c59a-4944-b77a-a29b13dea48f", + "label": "label-4451", + "height": 520, + "background": "yellow" + }, + { + "key": "2ca61067-2ec8-4864-9e9b-a3e9c76f62d0", + "label": "label-4452", + "height": 509, + "background": "yellow" + }, + { + "key": "eb6c4660-cc12-4e92-9654-84e31752f166", + "label": "label-4453", + "height": 209, + "background": "green" + }, + { + "key": "bb22afbf-d405-48e7-9949-82a608e43c72", + "label": "label-4454", + "height": 127, + "background": "green" + }, + { + "key": "e2be9bb8-a619-4ca7-9ed0-2e04e4b6e00c", + "label": "label-4455", + "height": 370, + "background": "green" + }, + { + "key": "dcd14d92-9c92-4736-809e-75cab2a0ad34", + "label": "label-4456", + "height": 40, + "background": "yellow" + }, + { + "key": "dd072a4d-55bc-425b-949d-835ff7ce3cb0", + "label": "label-4457", + "height": 509, + "background": "red" + }, + { + "key": "6561207d-f5fb-4971-a5e2-b85182632d04", + "label": "label-4458", + "height": 98, + "background": "blue" + }, + { + "key": "6b52fca7-aed3-4753-9d87-b62a97acce10", + "label": "label-4459", + "height": 223, + "background": "green" + }, + { + "key": "079aab17-2cc9-4bdb-a37e-d26db4dce06d", + "label": "label-4460", + "height": 94, + "background": "yellow" + }, + { + "key": "95b4a030-7f24-4922-a7de-3c4a39c545ac", + "label": "label-4461", + "height": 526, + "background": "yellow" + }, + { + "key": "acacaa9a-f42e-4417-8a65-2cf653733ac0", + "label": "label-4462", + "height": 78, + "background": "red" + }, + { + "key": "b110336b-962e-4ef9-8c7a-ab80344d87e6", + "label": "label-4463", + "height": 84, + "background": "red" + }, + { + "key": "19198240-3b93-46e0-8eb0-260e74ebda50", + "label": "label-4464", + "height": 42, + "background": "red" + }, + { + "key": "d901e79f-f299-4f23-9601-4f0f47a5e6f8", + "label": "label-4465", + "height": 441, + "background": "blue" + }, + { + "key": "9bfadca6-78bd-43af-aa4c-801b284bde16", + "label": "label-4466", + "height": 379, + "background": "green" + }, + { + "key": "9d6ab94b-5c97-439f-91fd-748ff887ae5d", + "label": "label-4467", + "height": 402, + "background": "green" + }, + { + "key": "8248c26a-802f-4698-bdec-c3f96abb2f7f", + "label": "label-4468", + "height": 39, + "background": "green" + }, + { + "key": "795c6f49-e6f3-45ef-8e8e-21be354d5080", + "label": "label-4469", + "height": 381, + "background": "red" + }, + { + "key": "39b77f89-01f8-482a-83dd-fcb2ddf6454d", + "label": "label-4470", + "height": 342, + "background": "blue" + }, + { + "key": "d42360c8-ebae-4745-9242-ec8c2dcc6907", + "label": "label-4471", + "height": 441, + "background": "green" + }, + { + "key": "223e3d0b-1d3e-452d-9d80-605514cb1696", + "label": "label-4472", + "height": 506, + "background": "red" + }, + { + "key": "4083d4c7-c292-4392-851d-dde3aacc472f", + "label": "label-4473", + "height": 350, + "background": "blue" + }, + { + "key": "720e0d4f-630d-47ab-8619-0106277dd119", + "label": "label-4474", + "height": 401, + "background": "yellow" + }, + { + "key": "7796ed39-79f0-47b9-92aa-7fa9afbd2da7", + "label": "label-4475", + "height": 129, + "background": "red" + }, + { + "key": "1b3cedcd-ca7d-44c3-ab6a-6ead73c9d769", + "label": "label-4476", + "height": 427, + "background": "red" + }, + { + "key": "568fcd34-c4eb-4201-bd6e-ea8e92f2535d", + "label": "label-4477", + "height": 184, + "background": "blue" + }, + { + "key": "a3bee121-6f7f-46b9-8336-0b8498c39c23", + "label": "label-4478", + "height": 414, + "background": "blue" + }, + { + "key": "b609189b-8724-49a8-9e79-575972592a77", + "label": "label-4479", + "height": 94, + "background": "red" + }, + { + "key": "2132c1c7-9228-4f79-b212-eff5c2801dd7", + "label": "label-4480", + "height": 253, + "background": "yellow" + }, + { + "key": "c3f1608a-3bfa-4bbf-96f7-b12dadd213a9", + "label": "label-4481", + "height": 218, + "background": "green" + }, + { + "key": "2b6cc369-f9ff-49dc-ab19-2ad55acea603", + "label": "label-4482", + "height": 404, + "background": "blue" + }, + { + "key": "6b4c6bb0-0a7d-423d-810e-bbe7b4310d04", + "label": "label-4483", + "height": 137, + "background": "green" + }, + { + "key": "7313466c-088d-40d1-aa80-912eb6015b34", + "label": "label-4484", + "height": 72, + "background": "blue" + }, + { + "key": "ca411346-45be-453f-bbb2-949e6a079a56", + "label": "label-4485", + "height": 212, + "background": "blue" + }, + { + "key": "6c3612de-e40a-49b8-aa41-4109741f2659", + "label": "label-4486", + "height": 470, + "background": "yellow" + }, + { + "key": "0d6ad3a2-0787-4e88-8106-96fc723f6b04", + "label": "label-4487", + "height": 319, + "background": "red" + }, + { + "key": "256a7961-53b4-4dd1-848e-eaf9916bd5c3", + "label": "label-4488", + "height": 390, + "background": "green" + }, + { + "key": "7c92cb3f-396d-4d30-bbd2-244481d42ab5", + "label": "label-4489", + "height": 77, + "background": "green" + }, + { + "key": "239fea54-cc65-4f99-8f12-ae871115bad2", + "label": "label-4490", + "height": 327, + "background": "red" + }, + { + "key": "d231f8fc-5af4-462c-b6bd-9a22c55d0a4d", + "label": "label-4491", + "height": 408, + "background": "blue" + }, + { + "key": "b9e9f384-d6a7-428e-9b4a-7574642616cd", + "label": "label-4492", + "height": 321, + "background": "red" + }, + { + "key": "43bcfd28-53d0-40ff-b362-e6ab2fed7260", + "label": "label-4493", + "height": 314, + "background": "yellow" + }, + { + "key": "48d95922-17fc-4de9-bde0-2851c80a681b", + "label": "label-4494", + "height": 383, + "background": "red" + }, + { + "key": "eacc4bba-51d0-4173-a389-02f1debc59cc", + "label": "label-4495", + "height": 519, + "background": "red" + }, + { + "key": "b0fd15ad-cc33-4620-b4ae-285c3b3bf521", + "label": "label-4496", + "height": 249, + "background": "red" + }, + { + "key": "5bef5f24-7b39-45de-91ab-e526f77f1fbd", + "label": "label-4497", + "height": 125, + "background": "yellow" + }, + { + "key": "02538c23-2269-41a0-bad7-337c35580dc5", + "label": "label-4498", + "height": 169, + "background": "red" + }, + { + "key": "0da39c6a-d1df-44fc-abd8-88e1ef7553fa", + "label": "label-4499", + "height": 391, + "background": "blue" + }, + { + "key": "aa4e5b39-bf0e-4427-8a9d-626198c45ca4", + "label": "label-4500", + "height": 191, + "background": "blue" + }, + { + "key": "f44c1290-d31b-48b4-8da1-69d1b7be3d3f", + "label": "label-4501", + "height": 419, + "background": "yellow" + }, + { + "key": "943fb1dd-df8d-4d3c-aa6f-f1b89938845e", + "label": "label-4502", + "height": 278, + "background": "red" + }, + { + "key": "78734fb7-9777-4e5a-a820-c28ea1758ff4", + "label": "label-4503", + "height": 357, + "background": "yellow" + }, + { + "key": "c6e3853b-4026-449a-a3dd-57f0cbfb0eaf", + "label": "label-4504", + "height": 83, + "background": "yellow" + }, + { + "key": "ef564bde-ff45-472f-b280-ff6487e46ac5", + "label": "label-4505", + "height": 225, + "background": "red" + }, + { + "key": "e162d08d-cf05-45fa-8925-6b56950fc5d6", + "label": "label-4506", + "height": 146, + "background": "blue" + }, + { + "key": "390d8b10-c8de-441c-afcc-4ddaef2b1a5f", + "label": "label-4507", + "height": 90, + "background": "green" + }, + { + "key": "e5d6781e-b6ba-4f54-b21a-ab9af9cd9a32", + "label": "label-4508", + "height": 182, + "background": "green" + }, + { + "key": "97cd8daa-6159-415b-9c14-abd5c789b4d1", + "label": "label-4509", + "height": 251, + "background": "yellow" + }, + { + "key": "63b0cef9-57d2-4ceb-869c-01d36e3b2cd9", + "label": "label-4510", + "height": 39, + "background": "green" + }, + { + "key": "525220a6-0330-4c23-b1e9-caf6a9a48c84", + "label": "label-4511", + "height": 268, + "background": "yellow" + }, + { + "key": "8a2eeabc-d6fd-4e9f-bd52-57ca45600264", + "label": "label-4512", + "height": 84, + "background": "red" + }, + { + "key": "49b6ca1c-a05f-44ac-a0e0-8d5d6307f390", + "label": "label-4513", + "height": 402, + "background": "green" + }, + { + "key": "1f6aec43-bb35-41c2-aa32-d6ce6033427b", + "label": "label-4514", + "height": 119, + "background": "yellow" + }, + { + "key": "16d822d6-965e-4c4a-9e53-15b8413b0228", + "label": "label-4515", + "height": 351, + "background": "blue" + }, + { + "key": "d7eec8fe-197f-4ce5-a4bc-d8fd8a115566", + "label": "label-4516", + "height": 520, + "background": "blue" + }, + { + "key": "6cc57f8c-a53e-4765-aa29-347c96c042f9", + "label": "label-4517", + "height": 103, + "background": "green" + }, + { + "key": "d161d156-d92c-47eb-87a1-69212b6acf5d", + "label": "label-4518", + "height": 310, + "background": "green" + }, + { + "key": "103cc59a-8012-4ed6-b71a-046e2909444f", + "label": "label-4519", + "height": 222, + "background": "green" + }, + { + "key": "a841ec2d-0485-416f-9d5e-2e695831199e", + "label": "label-4520", + "height": 400, + "background": "green" + }, + { + "key": "c4660e57-77b8-4512-93ab-53121a143dc1", + "label": "label-4521", + "height": 236, + "background": "red" + }, + { + "key": "30446eb3-fb3e-4fa3-9a39-a2249717d448", + "label": "label-4522", + "height": 458, + "background": "yellow" + }, + { + "key": "7f365a19-e4ea-4218-a242-23797ea00a12", + "label": "label-4523", + "height": 308, + "background": "blue" + }, + { + "key": "6f8b1205-beb6-4d11-aaad-b0acf85183c6", + "label": "label-4524", + "height": 529, + "background": "yellow" + }, + { + "key": "6e9b7e12-b35f-43c4-ba8c-4d9aea66c0da", + "label": "label-4525", + "height": 359, + "background": "yellow" + }, + { + "key": "5e268cff-5000-48d2-b915-21097207193f", + "label": "label-4526", + "height": 475, + "background": "blue" + }, + { + "key": "24bf4567-1275-4ef4-81c9-52f1f4ea314e", + "label": "label-4527", + "height": 337, + "background": "blue" + }, + { + "key": "6b3087c6-bf1d-4918-a5bf-1b38782ca555", + "label": "label-4528", + "height": 333, + "background": "blue" + }, + { + "key": "b2e66008-cd60-48b2-b1b3-9989c4be4758", + "label": "label-4529", + "height": 115, + "background": "blue" + }, + { + "key": "317dbb1d-7851-420e-aa59-947302159b2e", + "label": "label-4530", + "height": 498, + "background": "green" + }, + { + "key": "9f3717b0-d7bb-476e-806e-2363823e553d", + "label": "label-4531", + "height": 528, + "background": "blue" + }, + { + "key": "5c72581f-af1f-447d-82fa-6bfe23810324", + "label": "label-4532", + "height": 104, + "background": "red" + }, + { + "key": "61de3fb0-341a-4fc3-a5a7-ebde0628543d", + "label": "label-4533", + "height": 272, + "background": "blue" + }, + { + "key": "17805760-e6c7-42b5-8c83-ba2f5f6e5af0", + "label": "label-4534", + "height": 366, + "background": "yellow" + }, + { + "key": "7f0b9712-c044-4779-ae43-cd2e65521ded", + "label": "label-4535", + "height": 485, + "background": "yellow" + }, + { + "key": "00606ad3-1d6d-4802-ae78-0147b033164e", + "label": "label-4536", + "height": 347, + "background": "green" + }, + { + "key": "edb11c83-2c73-4a98-8d18-8915d373762f", + "label": "label-4537", + "height": 150, + "background": "yellow" + }, + { + "key": "bfb41af0-6ac9-41ef-9c48-372749522beb", + "label": "label-4538", + "height": 62, + "background": "green" + }, + { + "key": "5679a1d0-70bb-4a41-981a-17023b53e505", + "label": "label-4539", + "height": 414, + "background": "blue" + }, + { + "key": "c1400f28-5ce0-4a67-846f-26b29a6e4d7b", + "label": "label-4540", + "height": 53, + "background": "green" + }, + { + "key": "a7620cf0-72a2-4cb2-826b-1b8890c83fbf", + "label": "label-4541", + "height": 170, + "background": "blue" + }, + { + "key": "79f4d1bf-eb5a-422a-99ae-8a8fef97bf1b", + "label": "label-4542", + "height": 219, + "background": "red" + }, + { + "key": "644fc0aa-9426-42e1-86be-5011d284bde7", + "label": "label-4543", + "height": 352, + "background": "blue" + }, + { + "key": "370b8fe6-4448-43c3-b6c8-57b6b1304e1a", + "label": "label-4544", + "height": 238, + "background": "yellow" + }, + { + "key": "fde7a6cc-4210-4895-8ff0-b5301f62cb70", + "label": "label-4545", + "height": 337, + "background": "blue" + }, + { + "key": "e63ed960-0ed6-4708-84ba-d286d7fd551c", + "label": "label-4546", + "height": 220, + "background": "red" + }, + { + "key": "94c16a30-395d-42f5-bb12-54e2870e7f65", + "label": "label-4547", + "height": 489, + "background": "red" + }, + { + "key": "02f43d38-b380-4afb-ad86-f7c9c186a66f", + "label": "label-4548", + "height": 433, + "background": "yellow" + }, + { + "key": "1add4787-e6be-4f3e-8b7a-56b46a8aac88", + "label": "label-4549", + "height": 474, + "background": "red" + }, + { + "key": "a593e157-224d-499b-b1e7-c315f0c7786f", + "label": "label-4550", + "height": 221, + "background": "red" + }, + { + "key": "cca1bca6-ab8a-47e5-b438-481abf7aa6a2", + "label": "label-4551", + "height": 83, + "background": "blue" + }, + { + "key": "98931329-52a5-48ac-bbeb-325cc6b9d800", + "label": "label-4552", + "height": 521, + "background": "red" + }, + { + "key": "0703ec98-a6f6-4f23-b542-6323bc8f64a8", + "label": "label-4553", + "height": 256, + "background": "green" + }, + { + "key": "d31b837b-4493-46fb-9cfa-ac464efcebaf", + "label": "label-4554", + "height": 202, + "background": "red" + }, + { + "key": "7f40bbf9-56b0-493c-80ed-c0e9913e082f", + "label": "label-4555", + "height": 382, + "background": "yellow" + }, + { + "key": "d301449b-3c85-41d0-9b2b-47f379ef2e35", + "label": "label-4556", + "height": 299, + "background": "blue" + }, + { + "key": "7691189b-4ec8-4f2b-852c-fa80087052de", + "label": "label-4557", + "height": 460, + "background": "red" + }, + { + "key": "c5636f3b-5f0d-441e-b113-3dde2f033530", + "label": "label-4558", + "height": 468, + "background": "blue" + }, + { + "key": "9bf2cc1e-b79c-43df-a5cd-594fd7ae6737", + "label": "label-4559", + "height": 289, + "background": "green" + }, + { + "key": "512fb15c-d536-4130-bff8-dfd425f9ebe3", + "label": "label-4560", + "height": 497, + "background": "red" + }, + { + "key": "8bbe028b-8e53-4749-be68-0a5c303b6dfd", + "label": "label-4561", + "height": 74, + "background": "red" + }, + { + "key": "5f5a29f6-7cd5-4771-be58-d445f180673e", + "label": "label-4562", + "height": 208, + "background": "green" + }, + { + "key": "9df86681-e391-41d8-aa90-2748d64940d4", + "label": "label-4563", + "height": 404, + "background": "red" + }, + { + "key": "57e37367-a9b2-4aa1-9699-3f51a123c60c", + "label": "label-4564", + "height": 191, + "background": "green" + }, + { + "key": "86a2c14d-347a-40ba-8085-882a989e0f47", + "label": "label-4565", + "height": 288, + "background": "green" + }, + { + "key": "2638e5df-ea08-474c-8f38-c3eb64a7811a", + "label": "label-4566", + "height": 440, + "background": "blue" + }, + { + "key": "e68805d4-1e3b-42b3-b9d5-23c05a40b426", + "label": "label-4567", + "height": 40, + "background": "red" + }, + { + "key": "1511700b-8f63-4987-8c7c-fdffea75a4c3", + "label": "label-4568", + "height": 208, + "background": "green" + }, + { + "key": "a264489a-2024-45b2-a2bc-b0abae749ebd", + "label": "label-4569", + "height": 253, + "background": "red" + }, + { + "key": "253d91f5-7e2c-40ae-9c27-d5ed51d13345", + "label": "label-4570", + "height": 439, + "background": "blue" + }, + { + "key": "1a434c1c-f728-4de0-8b3f-caeee0b7b920", + "label": "label-4571", + "height": 411, + "background": "yellow" + }, + { + "key": "b2fb49d4-2215-498b-9b6c-f22e8b313e4d", + "label": "label-4572", + "height": 426, + "background": "green" + }, + { + "key": "c09f1bbd-d011-4a8b-a34c-51dabb200e28", + "label": "label-4573", + "height": 108, + "background": "green" + }, + { + "key": "74d6e71e-40b0-4891-9e1a-e7b30af0cb2f", + "label": "label-4574", + "height": 216, + "background": "green" + }, + { + "key": "87f7bb4f-dd1c-414d-849b-2f131c5e48bc", + "label": "label-4575", + "height": 400, + "background": "green" + }, + { + "key": "28ca5df7-2e5f-41c8-b764-c32327aed477", + "label": "label-4576", + "height": 367, + "background": "blue" + }, + { + "key": "b02145f2-3d02-4eab-ac99-400703a70139", + "label": "label-4577", + "height": 451, + "background": "blue" + }, + { + "key": "7eee5f80-8c90-4185-8c28-c5c47d787b9d", + "label": "label-4578", + "height": 309, + "background": "blue" + }, + { + "key": "7c0d1528-9f76-43d7-bb4c-3c130ac36a60", + "label": "label-4579", + "height": 89, + "background": "green" + }, + { + "key": "957027ca-8ed3-4fe2-bf32-edd1b42b60f2", + "label": "label-4580", + "height": 313, + "background": "red" + }, + { + "key": "e3624ea5-a8e0-47f3-a323-379331a687ec", + "label": "label-4581", + "height": 73, + "background": "blue" + }, + { + "key": "8fe5b85f-6dd9-48e8-8fc1-ca08714989e2", + "label": "label-4582", + "height": 508, + "background": "blue" + }, + { + "key": "f3cb4a52-6c25-4b6b-812b-a7b4175f76c4", + "label": "label-4583", + "height": 341, + "background": "yellow" + }, + { + "key": "1313a41b-5e58-4957-99aa-c890e85bc3d1", + "label": "label-4584", + "height": 147, + "background": "green" + }, + { + "key": "3b9bec9b-a5e1-4a21-a39b-f90f0c84f1c1", + "label": "label-4585", + "height": 284, + "background": "red" + }, + { + "key": "6b7b2b90-0ba8-4621-b37a-58658f92702e", + "label": "label-4586", + "height": 498, + "background": "green" + }, + { + "key": "a6fa0e22-efb7-4817-b7cc-0d5671edf9ed", + "label": "label-4587", + "height": 98, + "background": "green" + }, + { + "key": "036f3bcf-cd17-4f00-92fc-32a26559fbdf", + "label": "label-4588", + "height": 464, + "background": "red" + }, + { + "key": "4cfcbc8f-5a3f-434c-b07a-ee67e7028070", + "label": "label-4589", + "height": 322, + "background": "blue" + }, + { + "key": "333bbfce-6a7b-4bb2-92b9-57ee7b69e20d", + "label": "label-4590", + "height": 483, + "background": "blue" + }, + { + "key": "652a1cd0-b385-4c3b-8a52-365ff2af597b", + "label": "label-4591", + "height": 389, + "background": "blue" + }, + { + "key": "2c9474d8-9e84-4790-91e3-f993492d68e0", + "label": "label-4592", + "height": 410, + "background": "red" + }, + { + "key": "04f50eaf-9865-4803-85de-9bb83ce64b86", + "label": "label-4593", + "height": 425, + "background": "yellow" + }, + { + "key": "79387146-935b-4b2c-8d03-b60843c8b1bc", + "label": "label-4594", + "height": 157, + "background": "green" + }, + { + "key": "6fd87f3a-02f1-460a-aa05-cff8ef21ef95", + "label": "label-4595", + "height": 253, + "background": "red" + }, + { + "key": "b4ede8bf-9b75-4361-bead-ee45da553576", + "label": "label-4596", + "height": 234, + "background": "green" + }, + { + "key": "73c65a85-cb3a-45b8-8d11-f679ac92d138", + "label": "label-4597", + "height": 428, + "background": "red" + }, + { + "key": "d94b696c-5aa9-477e-9e14-1d299711195f", + "label": "label-4598", + "height": 152, + "background": "yellow" + }, + { + "key": "f26cf68e-a0bf-49e1-a0e6-bcce5da6cc84", + "label": "label-4599", + "height": 236, + "background": "blue" + }, + { + "key": "ddcfc574-2ec9-439e-b0c4-52fe3d173d24", + "label": "label-4600", + "height": 372, + "background": "blue" + }, + { + "key": "0d32f5f6-8801-4664-92c1-cb0981308edc", + "label": "label-4601", + "height": 177, + "background": "blue" + }, + { + "key": "85e1f0ef-1074-4a28-a1d5-eef2704bb889", + "label": "label-4602", + "height": 169, + "background": "yellow" + }, + { + "key": "76fc1d6a-26f8-4401-b40b-e0ef8169de2a", + "label": "label-4603", + "height": 162, + "background": "yellow" + }, + { + "key": "fe31cd7d-4d99-4008-9a49-1d0e31c1f4f1", + "label": "label-4604", + "height": 37, + "background": "blue" + }, + { + "key": "b10a28f9-40f1-4e5a-a326-9225c09e9b7d", + "label": "label-4605", + "height": 48, + "background": "blue" + }, + { + "key": "42429383-af18-417e-891c-fc906405e729", + "label": "label-4606", + "height": 117, + "background": "green" + }, + { + "key": "b455ffd0-aa1a-4043-8cad-035a06ed69d4", + "label": "label-4607", + "height": 311, + "background": "red" + }, + { + "key": "4e80abb9-9af2-4a08-ae7c-004ac2c0e07f", + "label": "label-4608", + "height": 121, + "background": "yellow" + }, + { + "key": "202c6e38-815a-4802-b5dd-52466cfeb3c9", + "label": "label-4609", + "height": 92, + "background": "red" + }, + { + "key": "90a32f58-8055-46b8-a799-93a1ac92901c", + "label": "label-4610", + "height": 367, + "background": "red" + }, + { + "key": "0d1d389f-7ab2-4051-97a7-2629faf15fce", + "label": "label-4611", + "height": 363, + "background": "blue" + }, + { + "key": "1b654ccb-6582-4d54-a1bc-0a7d9bd255ca", + "label": "label-4612", + "height": 90, + "background": "red" + }, + { + "key": "7c3bb67d-c2bb-4877-99a1-47ebbf0fe8e8", + "label": "label-4613", + "height": 423, + "background": "red" + }, + { + "key": "e145e7a6-58bb-4975-af56-5839c112e0df", + "label": "label-4614", + "height": 397, + "background": "yellow" + }, + { + "key": "a7701e7d-9553-4cfd-812b-718aecb1e5ec", + "label": "label-4615", + "height": 164, + "background": "blue" + }, + { + "key": "b8bc8deb-f6a6-4f6f-b392-a1385bff3e38", + "label": "label-4616", + "height": 451, + "background": "red" + }, + { + "key": "bac23507-ffca-4749-8b3b-6a594591c781", + "label": "label-4617", + "height": 49, + "background": "green" + }, + { + "key": "279e4f85-0632-4263-8935-c144c699fc9b", + "label": "label-4618", + "height": 180, + "background": "yellow" + }, + { + "key": "8d6f3c88-da0b-45e7-9296-00f9c25343ef", + "label": "label-4619", + "height": 115, + "background": "blue" + }, + { + "key": "19735ebd-a5fe-401e-8b0e-9749347c0e51", + "label": "label-4620", + "height": 203, + "background": "green" + }, + { + "key": "3975f81a-c44c-48db-aab7-3ebd21f186c2", + "label": "label-4621", + "height": 108, + "background": "yellow" + }, + { + "key": "83377f2c-3593-44aa-b48c-13a2b03bb907", + "label": "label-4622", + "height": 439, + "background": "blue" + }, + { + "key": "15ac2c64-5769-4859-892f-3e3761aefaf9", + "label": "label-4623", + "height": 496, + "background": "red" + }, + { + "key": "73032bf3-f635-45b8-8534-2dcbe7d6ef07", + "label": "label-4624", + "height": 397, + "background": "yellow" + }, + { + "key": "7bc28b3e-e3ba-4526-b5b6-43af646e366d", + "label": "label-4625", + "height": 85, + "background": "blue" + }, + { + "key": "d6406e67-9b4c-43af-8a7b-c37f26d49436", + "label": "label-4626", + "height": 429, + "background": "green" + }, + { + "key": "f93fd035-769b-4d5f-8e52-945ae63767d5", + "label": "label-4627", + "height": 180, + "background": "yellow" + }, + { + "key": "e624d0e5-0722-4fff-a5cb-d3efe0d65684", + "label": "label-4628", + "height": 339, + "background": "red" + }, + { + "key": "e38049cd-3f8c-449a-8bc3-137ab49268e7", + "label": "label-4629", + "height": 277, + "background": "yellow" + }, + { + "key": "2e2ca378-2517-4b29-b38b-00683d2dce38", + "label": "label-4630", + "height": 294, + "background": "green" + }, + { + "key": "4f49514b-91b4-41e2-9b92-b3190efe04f1", + "label": "label-4631", + "height": 413, + "background": "blue" + }, + { + "key": "81b45da5-3233-4bde-bdb1-2ab6696961e6", + "label": "label-4632", + "height": 528, + "background": "blue" + }, + { + "key": "5532cd39-2a31-4ed6-ade0-17e8e8bbea96", + "label": "label-4633", + "height": 59, + "background": "yellow" + }, + { + "key": "0b3797bb-e13c-4d2b-99eb-84d5fcdd1d60", + "label": "label-4634", + "height": 388, + "background": "green" + }, + { + "key": "5e9505a9-2524-4e08-b6e6-6b033964afb0", + "label": "label-4635", + "height": 401, + "background": "red" + }, + { + "key": "ee7d6434-4c3c-4201-9b90-eb5e0595153f", + "label": "label-4636", + "height": 399, + "background": "blue" + }, + { + "key": "47148de4-a899-4517-8a45-b02089596298", + "label": "label-4637", + "height": 395, + "background": "yellow" + }, + { + "key": "ab9cddd7-937c-4b91-8c34-10bb013123ba", + "label": "label-4638", + "height": 339, + "background": "red" + }, + { + "key": "77a3dc6e-8545-49fd-9694-c90204ac3bb2", + "label": "label-4639", + "height": 513, + "background": "blue" + }, + { + "key": "cbef50b8-f213-4360-90e1-8cfcd44bf26b", + "label": "label-4640", + "height": 301, + "background": "red" + }, + { + "key": "cf4dd15b-7ce5-4e6a-b4eb-dd5e7a009ff5", + "label": "label-4641", + "height": 330, + "background": "red" + }, + { + "key": "7b48ea09-bea8-4e71-8ca2-b4158f1bcfd7", + "label": "label-4642", + "height": 399, + "background": "red" + }, + { + "key": "09a943f9-90c0-4f3b-b15a-042ade743f5f", + "label": "label-4643", + "height": 343, + "background": "yellow" + }, + { + "key": "f2b7951f-fc30-45a7-b402-842b9f7a4fe7", + "label": "label-4644", + "height": 416, + "background": "green" + }, + { + "key": "5d6f5a46-f21c-4d97-8a4b-dec075c31a32", + "label": "label-4645", + "height": 292, + "background": "green" + }, + { + "key": "151052aa-ca3a-4bf0-875c-6566376b4a1b", + "label": "label-4646", + "height": 448, + "background": "green" + }, + { + "key": "5e3ed430-9088-426d-a74e-f57be5f1891f", + "label": "label-4647", + "height": 59, + "background": "red" + }, + { + "key": "1bd12050-0ec3-4f5c-bbdc-4062582e448a", + "label": "label-4648", + "height": 107, + "background": "yellow" + }, + { + "key": "0c4308c3-e4de-4df1-b2f5-4edac4cb390a", + "label": "label-4649", + "height": 134, + "background": "green" + }, + { + "key": "08443177-8228-442e-8fcf-f1324c95b520", + "label": "label-4650", + "height": 68, + "background": "red" + }, + { + "key": "3cd0fb7c-6220-44d4-b17f-d41068c15eb7", + "label": "label-4651", + "height": 418, + "background": "red" + }, + { + "key": "c552dc40-11aa-486f-820d-2768fb51c947", + "label": "label-4652", + "height": 138, + "background": "green" + }, + { + "key": "664c4df1-7a09-40ec-aaac-b483b184c8bf", + "label": "label-4653", + "height": 302, + "background": "yellow" + }, + { + "key": "320547b2-f085-45cf-a241-6de9eea7a9e3", + "label": "label-4654", + "height": 391, + "background": "red" + }, + { + "key": "14f46bb3-40d3-4f7a-a95a-dca89c452084", + "label": "label-4655", + "height": 274, + "background": "yellow" + }, + { + "key": "21787c8b-abc0-4dd9-99ea-a507e2ecbdcc", + "label": "label-4656", + "height": 64, + "background": "yellow" + }, + { + "key": "b670f7f1-e60f-4f3c-ba8e-270c391c9978", + "label": "label-4657", + "height": 104, + "background": "yellow" + }, + { + "key": "0fbee955-425c-4e5c-9cc4-f0b1a516e9e1", + "label": "label-4658", + "height": 92, + "background": "green" + }, + { + "key": "8b939818-8100-4cab-8d2b-322649a8be18", + "label": "label-4659", + "height": 330, + "background": "red" + }, + { + "key": "9adcdc8b-8c32-4397-958e-cb61cbd6eaae", + "label": "label-4660", + "height": 147, + "background": "blue" + }, + { + "key": "ed8f3922-69d3-4c41-bd4e-83c502cd750b", + "label": "label-4661", + "height": 53, + "background": "red" + }, + { + "key": "0de4b78e-d17d-4261-864d-261a510a15b5", + "label": "label-4662", + "height": 362, + "background": "blue" + }, + { + "key": "349a0c3c-0b81-4588-882e-7aa89227eebc", + "label": "label-4663", + "height": 280, + "background": "yellow" + }, + { + "key": "67972e0f-27d7-41f9-962e-77d888fbfa47", + "label": "label-4664", + "height": 115, + "background": "red" + }, + { + "key": "76bdd96e-0cda-48ee-978c-553f53c36a13", + "label": "label-4665", + "height": 321, + "background": "blue" + }, + { + "key": "ac4e5faa-de1b-44d1-85f4-07c7ec370d51", + "label": "label-4666", + "height": 88, + "background": "blue" + }, + { + "key": "4dca9942-d408-4354-ab9d-63ba129b6f23", + "label": "label-4667", + "height": 157, + "background": "green" + }, + { + "key": "c684817d-ac5c-4b86-a147-b43d2ecd462e", + "label": "label-4668", + "height": 47, + "background": "green" + }, + { + "key": "69448b53-e46b-416d-baac-f7e53d92de24", + "label": "label-4669", + "height": 530, + "background": "blue" + }, + { + "key": "34b17c8a-eb64-4cb1-96d9-c4048a1c57d4", + "label": "label-4670", + "height": 343, + "background": "blue" + }, + { + "key": "3f34810c-3fc9-466b-b56b-a65040401a0e", + "label": "label-4671", + "height": 100, + "background": "blue" + }, + { + "key": "b73d08cc-0224-473e-9ab6-30edb7cb92b8", + "label": "label-4672", + "height": 173, + "background": "red" + }, + { + "key": "3fdf8de6-364c-46d1-93b8-4ac4bb75bef5", + "label": "label-4673", + "height": 297, + "background": "yellow" + }, + { + "key": "70c8fc0a-ca6b-4a8e-a0ce-524120e5de12", + "label": "label-4674", + "height": 358, + "background": "yellow" + }, + { + "key": "1dff6336-725e-4934-9a54-5a6fd3324684", + "label": "label-4675", + "height": 467, + "background": "red" + }, + { + "key": "665a609f-10ab-4ce0-bf79-55658fcea86a", + "label": "label-4676", + "height": 245, + "background": "red" + }, + { + "key": "b824436e-27be-4613-8bb6-d4a3172e4c92", + "label": "label-4677", + "height": 462, + "background": "green" + }, + { + "key": "b1c38b6c-4009-4298-b285-989a474ec48d", + "label": "label-4678", + "height": 443, + "background": "green" + }, + { + "key": "23c594e1-1017-4347-8892-2dfe1d11ad50", + "label": "label-4679", + "height": 369, + "background": "yellow" + }, + { + "key": "8681a1b5-6965-4565-ba09-68770711bfd3", + "label": "label-4680", + "height": 260, + "background": "green" + }, + { + "key": "2af42072-4eb8-48c7-a71a-b039d3ddc6fb", + "label": "label-4681", + "height": 102, + "background": "yellow" + }, + { + "key": "8569a89d-e890-4228-855e-8cbc31c61bee", + "label": "label-4682", + "height": 334, + "background": "yellow" + }, + { + "key": "6c4f0781-4188-4587-9b88-a772d06045f3", + "label": "label-4683", + "height": 411, + "background": "blue" + }, + { + "key": "930f0551-08d1-4162-8aed-5a0d60ab04b6", + "label": "label-4684", + "height": 317, + "background": "blue" + }, + { + "key": "e6c9fd05-eefd-4ca4-bc5c-49f92b374fc8", + "label": "label-4685", + "height": 415, + "background": "red" + }, + { + "key": "1e2f91ae-66ef-45f9-a7a5-eb9dcacc8857", + "label": "label-4686", + "height": 196, + "background": "blue" + }, + { + "key": "e7168604-b30d-4616-99c5-5cfb242d2cfb", + "label": "label-4687", + "height": 65, + "background": "yellow" + }, + { + "key": "a10aa5d4-aee4-4f07-9f96-39f7335dd56f", + "label": "label-4688", + "height": 196, + "background": "blue" + }, + { + "key": "20dd9352-de64-49cd-802f-1a88841b1bcb", + "label": "label-4689", + "height": 467, + "background": "yellow" + }, + { + "key": "ad6794c6-d20f-46df-8540-0efcc625d4b6", + "label": "label-4690", + "height": 501, + "background": "blue" + }, + { + "key": "2a50e048-4275-48e8-aa6d-6c5c194d3213", + "label": "label-4691", + "height": 237, + "background": "green" + }, + { + "key": "ec9f3852-d7d7-4941-b250-e7f02508ba43", + "label": "label-4692", + "height": 320, + "background": "yellow" + }, + { + "key": "d6392648-b48d-4d52-8135-2f4d85b7ea30", + "label": "label-4693", + "height": 140, + "background": "yellow" + }, + { + "key": "e47f92a7-c0ba-483d-9f24-fb618cfc0952", + "label": "label-4694", + "height": 222, + "background": "blue" + }, + { + "key": "9232ae4a-05e5-47d4-b177-76c582dd6951", + "label": "label-4695", + "height": 509, + "background": "blue" + }, + { + "key": "ac63b5ed-55b6-4d2a-80f9-765c23885ef6", + "label": "label-4696", + "height": 501, + "background": "blue" + }, + { + "key": "2deb433a-0f8d-42a5-a042-e81e18175a01", + "label": "label-4697", + "height": 148, + "background": "blue" + }, + { + "key": "bf2c575e-ea8b-4ea7-9a58-e82dbcb66168", + "label": "label-4698", + "height": 148, + "background": "blue" + }, + { + "key": "717d8ce8-7600-47f2-8b35-65622eb976a4", + "label": "label-4699", + "height": 247, + "background": "red" + }, + { + "key": "e9a77874-0a0f-4781-a175-11f0fe16a0a4", + "label": "label-4700", + "height": 146, + "background": "yellow" + }, + { + "key": "e98226b2-af22-45f4-8d1f-0313af374d15", + "label": "label-4701", + "height": 205, + "background": "blue" + }, + { + "key": "20cfa6bf-6c5a-4ac1-ae46-572035ea82da", + "label": "label-4702", + "height": 349, + "background": "yellow" + }, + { + "key": "5ad44353-be99-4511-bdaf-39c776ba8124", + "label": "label-4703", + "height": 428, + "background": "red" + }, + { + "key": "e797e953-a7b5-4115-ac0a-2db156c23132", + "label": "label-4704", + "height": 421, + "background": "red" + }, + { + "key": "7a1fd42d-38df-4256-8fb8-d73a1619f6bc", + "label": "label-4705", + "height": 235, + "background": "red" + }, + { + "key": "a9c87b5b-1f03-4759-987a-a8bed134e7a2", + "label": "label-4706", + "height": 199, + "background": "red" + }, + { + "key": "4f6351cc-bf9b-4f20-a657-715bac85e3d9", + "label": "label-4707", + "height": 459, + "background": "red" + }, + { + "key": "365dedea-14f7-4912-bc38-6586df60248b", + "label": "label-4708", + "height": 185, + "background": "green" + }, + { + "key": "ba283e89-458b-45e2-9cdd-022fff672ae5", + "label": "label-4709", + "height": 455, + "background": "green" + }, + { + "key": "3f6d8945-a02f-4aa5-b971-142423a91a21", + "label": "label-4710", + "height": 162, + "background": "red" + }, + { + "key": "22be491a-326e-4f27-a185-b2ec91cf03f6", + "label": "label-4711", + "height": 88, + "background": "red" + }, + { + "key": "c83bfc76-24da-4540-ba9e-4e6387b9d582", + "label": "label-4712", + "height": 373, + "background": "blue" + }, + { + "key": "e7fb14e1-9f34-4605-9541-42ac454d0743", + "label": "label-4713", + "height": 484, + "background": "green" + }, + { + "key": "5ad1b495-1172-4e4e-a254-e6fa7888b344", + "label": "label-4714", + "height": 440, + "background": "green" + }, + { + "key": "1b722cb9-2d3c-4378-87b8-c4e047ab9ac9", + "label": "label-4715", + "height": 108, + "background": "blue" + }, + { + "key": "26b5386e-b380-428a-97ad-871d9c2fd963", + "label": "label-4716", + "height": 279, + "background": "red" + }, + { + "key": "5120a501-5a21-4d07-bdcb-4be47d7b9a5c", + "label": "label-4717", + "height": 529, + "background": "yellow" + }, + { + "key": "f3d107ca-a07c-45b6-b10a-6d23562278c8", + "label": "label-4718", + "height": 142, + "background": "red" + }, + { + "key": "4144944f-1fc7-413a-9d55-91b05c7103d7", + "label": "label-4719", + "height": 351, + "background": "green" + }, + { + "key": "d64267d6-ff72-40aa-987e-16eafdb8e077", + "label": "label-4720", + "height": 49, + "background": "green" + }, + { + "key": "67c77e6f-928a-4f65-ac4a-8c0efbec295b", + "label": "label-4721", + "height": 166, + "background": "yellow" + }, + { + "key": "163d2ecf-9df3-45d1-b7c0-c76d72a1a4d7", + "label": "label-4722", + "height": 509, + "background": "blue" + }, + { + "key": "7fd30f7f-4435-4266-b7e0-928703ba7ae0", + "label": "label-4723", + "height": 237, + "background": "yellow" + }, + { + "key": "377eeee5-4c0f-4abc-94ad-7158bffce838", + "label": "label-4724", + "height": 401, + "background": "green" + }, + { + "key": "0f5ef2cf-97ef-446f-9ddc-cec83a7bfee2", + "label": "label-4725", + "height": 285, + "background": "blue" + }, + { + "key": "8c5a261d-d993-4c81-b8a8-80237ff7b20e", + "label": "label-4726", + "height": 275, + "background": "blue" + }, + { + "key": "33f93a2e-aef8-40af-ae9f-905600233b19", + "label": "label-4727", + "height": 281, + "background": "blue" + }, + { + "key": "651ed81e-24c6-4a34-87bf-818cd56d17f7", + "label": "label-4728", + "height": 453, + "background": "red" + }, + { + "key": "f6dc730d-f1f3-4f51-9ee2-b09aada03e51", + "label": "label-4729", + "height": 119, + "background": "green" + }, + { + "key": "40e24d74-8d3c-4456-ae50-406cdbd173a4", + "label": "label-4730", + "height": 351, + "background": "green" + }, + { + "key": "38ef16f1-4f84-4c21-9907-ec6b099a59eb", + "label": "label-4731", + "height": 115, + "background": "red" + }, + { + "key": "24a3c516-863c-4daf-a25e-a5b1181ef80a", + "label": "label-4732", + "height": 522, + "background": "yellow" + }, + { + "key": "ffe49092-4677-4cb1-af54-5c4fd2370967", + "label": "label-4733", + "height": 388, + "background": "green" + }, + { + "key": "67bc63c7-d9c8-48f2-9a6c-c3bc2b725120", + "label": "label-4734", + "height": 382, + "background": "red" + }, + { + "key": "75d0e849-260e-4099-9020-425829e80001", + "label": "label-4735", + "height": 33, + "background": "yellow" + }, + { + "key": "394ff149-b2c2-408e-ba61-509d190af755", + "label": "label-4736", + "height": 356, + "background": "yellow" + }, + { + "key": "d4096ad8-5bb3-404c-9f45-b37b9503eb72", + "label": "label-4737", + "height": 84, + "background": "yellow" + }, + { + "key": "cda08779-164e-42f4-b5e8-9c8cc4270237", + "label": "label-4738", + "height": 358, + "background": "yellow" + }, + { + "key": "991b8e9f-fd03-4af3-9362-0312d212faf4", + "label": "label-4739", + "height": 417, + "background": "yellow" + }, + { + "key": "e7657fd2-f71b-4440-81e6-dad5464b4e26", + "label": "label-4740", + "height": 74, + "background": "green" + }, + { + "key": "a263b4d9-8e65-4007-80ab-ee5fab3fc003", + "label": "label-4741", + "height": 452, + "background": "yellow" + }, + { + "key": "2459c802-3aed-466b-ba84-b3c4a1e9656f", + "label": "label-4742", + "height": 521, + "background": "red" + }, + { + "key": "ef7bcfcd-7720-4878-98a6-83b0e456c000", + "label": "label-4743", + "height": 113, + "background": "green" + }, + { + "key": "706a96b8-95f1-4bc8-ac87-c3bb68d9dfe7", + "label": "label-4744", + "height": 93, + "background": "yellow" + }, + { + "key": "855a4634-fc8f-48e3-95e9-5854322ae50c", + "label": "label-4745", + "height": 530, + "background": "green" + }, + { + "key": "da803ace-fbb0-4e8e-81ac-a962d54cf55f", + "label": "label-4746", + "height": 420, + "background": "blue" + }, + { + "key": "ded4a905-77ae-490e-aaeb-aa6f2daeb7d5", + "label": "label-4747", + "height": 139, + "background": "yellow" + }, + { + "key": "37452334-aa5a-4c06-9cf7-5f113e708e1e", + "label": "label-4748", + "height": 449, + "background": "blue" + }, + { + "key": "228b96cb-a287-40c7-9d07-96f96493bf87", + "label": "label-4749", + "height": 151, + "background": "red" + }, + { + "key": "90b156b2-9af3-4e82-9cf4-ddfa9e0fd484", + "label": "label-4750", + "height": 188, + "background": "green" + }, + { + "key": "1c452f04-e77e-4d0d-b82a-4ad09c2423a1", + "label": "label-4751", + "height": 379, + "background": "red" + }, + { + "key": "8ab53346-cfbd-42e6-9d61-2bd1649600de", + "label": "label-4752", + "height": 266, + "background": "red" + }, + { + "key": "00a2d71e-df98-4e32-85ef-c1f7ec7283d6", + "label": "label-4753", + "height": 240, + "background": "blue" + }, + { + "key": "31b650bd-2cb5-4d9c-b0c4-e7513ef46b78", + "label": "label-4754", + "height": 267, + "background": "blue" + }, + { + "key": "cb02e318-6a38-45ea-b524-c575f2294eca", + "label": "label-4755", + "height": 206, + "background": "red" + }, + { + "key": "e512ee0c-859d-4cab-a209-1923ac7ee16c", + "label": "label-4756", + "height": 488, + "background": "blue" + }, + { + "key": "8d48013c-66f4-4541-8b3d-28ff09a8f12e", + "label": "label-4757", + "height": 329, + "background": "blue" + }, + { + "key": "70693aa6-2d94-4a59-b304-bef025903e17", + "label": "label-4758", + "height": 451, + "background": "green" + }, + { + "key": "74ff3896-0dbc-4af5-a7ba-98d90a9e7edb", + "label": "label-4759", + "height": 191, + "background": "red" + }, + { + "key": "1259a3a8-7ae3-4d53-9dd7-a05082f6acec", + "label": "label-4760", + "height": 372, + "background": "blue" + }, + { + "key": "66c1eefc-ee04-4a76-b267-bd27a551257b", + "label": "label-4761", + "height": 317, + "background": "green" + }, + { + "key": "49b808be-951b-43fe-b638-4ca0e2ae1412", + "label": "label-4762", + "height": 427, + "background": "red" + }, + { + "key": "ef98d30e-97ef-4d30-bee2-e80dc296fae9", + "label": "label-4763", + "height": 512, + "background": "green" + }, + { + "key": "de84dc26-8149-4b6f-8990-cb36ce6de55c", + "label": "label-4764", + "height": 66, + "background": "blue" + }, + { + "key": "58b3edb3-e708-48da-b91b-b75aff65fe3f", + "label": "label-4765", + "height": 341, + "background": "red" + }, + { + "key": "814a44ea-a348-48fb-9632-5da44db2e9c0", + "label": "label-4766", + "height": 348, + "background": "blue" + }, + { + "key": "a82053c1-d94f-41d5-9f11-d33309398935", + "label": "label-4767", + "height": 60, + "background": "yellow" + }, + { + "key": "b8561290-a390-4570-bc4c-759289e950b0", + "label": "label-4768", + "height": 74, + "background": "green" + }, + { + "key": "55950f9f-ae9e-40b3-a1ec-b0dd98d17696", + "label": "label-4769", + "height": 415, + "background": "green" + }, + { + "key": "edc29f17-9c30-41ab-bde9-25c142a6100a", + "label": "label-4770", + "height": 514, + "background": "red" + }, + { + "key": "8ce4ec51-d5ba-404d-bf7e-82ae0b028074", + "label": "label-4771", + "height": 432, + "background": "yellow" + }, + { + "key": "1fbe7207-be7d-4830-8f66-ce0e9e9b089a", + "label": "label-4772", + "height": 230, + "background": "green" + }, + { + "key": "3bad0c48-ed4c-4753-b85f-4155b82915d6", + "label": "label-4773", + "height": 172, + "background": "yellow" + }, + { + "key": "9cca3c52-c7a5-4c93-b3f3-55eef1eeb7e1", + "label": "label-4774", + "height": 437, + "background": "blue" + }, + { + "key": "8617a6cc-40aa-48d3-b6a6-1cf05b1dab2a", + "label": "label-4775", + "height": 387, + "background": "yellow" + }, + { + "key": "eda5b678-665d-4221-bc56-e0d3faf51d1e", + "label": "label-4776", + "height": 153, + "background": "blue" + }, + { + "key": "c03fe78a-ec13-416b-ab58-eead9a93a00f", + "label": "label-4777", + "height": 46, + "background": "blue" + }, + { + "key": "bccc18c7-b780-4321-9316-af0e1cc7504e", + "label": "label-4778", + "height": 304, + "background": "red" + }, + { + "key": "8a0915e7-ad29-418c-bd7a-90183dcdbfdf", + "label": "label-4779", + "height": 390, + "background": "yellow" + }, + { + "key": "44e29983-4564-4188-ab7a-5ce6c20a3d8b", + "label": "label-4780", + "height": 233, + "background": "green" + }, + { + "key": "eb172e77-e131-47d3-a7ab-90d09949861c", + "label": "label-4781", + "height": 342, + "background": "blue" + }, + { + "key": "8d7299c8-6601-4699-881e-06e44e036511", + "label": "label-4782", + "height": 61, + "background": "yellow" + }, + { + "key": "448bf065-0103-4e2f-8215-d578161e1f7e", + "label": "label-4783", + "height": 143, + "background": "blue" + }, + { + "key": "25ab106f-8c70-40c3-a74a-9923a3ce8cf7", + "label": "label-4784", + "height": 213, + "background": "yellow" + }, + { + "key": "f4fd63b4-49bf-4163-b0b7-272b1650f4ba", + "label": "label-4785", + "height": 77, + "background": "blue" + }, + { + "key": "56e7ac39-9c85-463b-8d49-d6133d1c6d27", + "label": "label-4786", + "height": 500, + "background": "red" + }, + { + "key": "711cffcb-c34d-4fc6-944c-034b9ad967f7", + "label": "label-4787", + "height": 315, + "background": "blue" + }, + { + "key": "17afe303-048d-402f-a8e6-628e41d1b8a2", + "label": "label-4788", + "height": 469, + "background": "yellow" + }, + { + "key": "2b8cb5d7-31bc-4786-8b2b-939c1ef9e1dc", + "label": "label-4789", + "height": 129, + "background": "green" + }, + { + "key": "bf949686-00e6-4324-9407-f2874da0205e", + "label": "label-4790", + "height": 139, + "background": "green" + }, + { + "key": "49cd6fa8-f1bb-4090-b799-0a9913486de7", + "label": "label-4791", + "height": 234, + "background": "green" + }, + { + "key": "3a0b015b-f91e-4d48-a361-ef5b4dacd58d", + "label": "label-4792", + "height": 472, + "background": "red" + }, + { + "key": "38bf910e-187f-4d2e-bc3c-f4a78e922c4f", + "label": "label-4793", + "height": 317, + "background": "red" + }, + { + "key": "8e66eb0d-3a13-4c60-b2c6-ffcfb564eca2", + "label": "label-4794", + "height": 187, + "background": "green" + }, + { + "key": "f64f59e4-a63f-4a58-93e6-eef9fb0a283b", + "label": "label-4795", + "height": 130, + "background": "blue" + }, + { + "key": "05a10d8a-c52b-4915-9d97-9197ece7f8e4", + "label": "label-4796", + "height": 128, + "background": "green" + }, + { + "key": "63f1396a-2618-4f25-b545-d0a70824ec89", + "label": "label-4797", + "height": 347, + "background": "blue" + }, + { + "key": "04f09c80-9fbe-4e1d-9656-1d1ec0064207", + "label": "label-4798", + "height": 125, + "background": "blue" + }, + { + "key": "eff8a1b5-3b91-4f37-9a7a-8b63a9cfc9c5", + "label": "label-4799", + "height": 383, + "background": "red" + }, + { + "key": "7e0fe518-a01f-4982-acee-ec312626a43e", + "label": "label-4800", + "height": 289, + "background": "blue" + }, + { + "key": "b5ecabbe-2568-46a3-8783-f7c6e6d18f5a", + "label": "label-4801", + "height": 223, + "background": "yellow" + }, + { + "key": "f5cad4d6-02f1-41b1-aeff-a2544dd87e46", + "label": "label-4802", + "height": 437, + "background": "red" + }, + { + "key": "969d1b8d-c67c-4c52-a740-3bc48d0ca273", + "label": "label-4803", + "height": 372, + "background": "red" + }, + { + "key": "d5833c01-1afb-48f6-9068-09c1d4f0429c", + "label": "label-4804", + "height": 396, + "background": "yellow" + }, + { + "key": "f15313ed-8ca6-44d2-8058-a298046ce3b9", + "label": "label-4805", + "height": 420, + "background": "blue" + }, + { + "key": "739d1cef-1eb6-4e3c-a2c7-108ae0c51497", + "label": "label-4806", + "height": 404, + "background": "red" + }, + { + "key": "d5d3dadc-0596-4e95-bb73-96cba5140fdd", + "label": "label-4807", + "height": 495, + "background": "red" + }, + { + "key": "7eeb3d3b-9608-414c-b5a3-c34be6f1e15d", + "label": "label-4808", + "height": 466, + "background": "green" + }, + { + "key": "e8a2f5bb-d031-4deb-bfde-96e536d5fb1d", + "label": "label-4809", + "height": 260, + "background": "yellow" + }, + { + "key": "fd567aa8-63ab-45cf-9361-e9d04adc5bab", + "label": "label-4810", + "height": 290, + "background": "green" + }, + { + "key": "f80ba147-2e5e-4d8f-b7c0-141adebd27e3", + "label": "label-4811", + "height": 129, + "background": "red" + }, + { + "key": "e4843cab-9576-4dd2-9f23-1a67ae5518e8", + "label": "label-4812", + "height": 74, + "background": "red" + }, + { + "key": "592592e5-a2d3-471e-a2c2-daa80a412148", + "label": "label-4813", + "height": 531, + "background": "green" + }, + { + "key": "1f4db9c6-51ea-42a0-9b33-6d849524aae7", + "label": "label-4814", + "height": 251, + "background": "green" + }, + { + "key": "8f2e4562-4b5c-4e09-96c0-ca0659064858", + "label": "label-4815", + "height": 183, + "background": "yellow" + }, + { + "key": "3ecca6f7-51e6-4044-a98b-d7a417dc368f", + "label": "label-4816", + "height": 445, + "background": "red" + }, + { + "key": "97413e98-0c5f-4138-baeb-e5c65434b23c", + "label": "label-4817", + "height": 512, + "background": "yellow" + }, + { + "key": "ec4388dd-254e-4b1a-aaa1-8cf9802414bd", + "label": "label-4818", + "height": 403, + "background": "green" + }, + { + "key": "d0d6b9a6-b793-4c5a-ba2e-2c70966c1671", + "label": "label-4819", + "height": 484, + "background": "yellow" + }, + { + "key": "81ca1b48-ea63-4eae-b4e9-e4ae41953cda", + "label": "label-4820", + "height": 83, + "background": "yellow" + }, + { + "key": "e078dd45-e1ae-449d-b902-969945282df7", + "label": "label-4821", + "height": 244, + "background": "green" + }, + { + "key": "c2eefbd6-2427-48cc-acae-e0fd0d2e7d1e", + "label": "label-4822", + "height": 511, + "background": "blue" + }, + { + "key": "aa8e82ba-3cb5-46bd-8fcc-eb65307f89ea", + "label": "label-4823", + "height": 489, + "background": "blue" + }, + { + "key": "f63bae80-ec3c-4a12-b5b4-6433e5d4125a", + "label": "label-4824", + "height": 305, + "background": "red" + }, + { + "key": "2f5d3b91-2acf-49bc-b57b-9ef04eb739bd", + "label": "label-4825", + "height": 462, + "background": "green" + }, + { + "key": "971b1530-e973-4813-84ee-7da984695f02", + "label": "label-4826", + "height": 122, + "background": "blue" + }, + { + "key": "62eb98e2-c4c3-4536-8a3e-aa3b4ca50c75", + "label": "label-4827", + "height": 408, + "background": "green" + }, + { + "key": "0599826a-f06d-468a-93c1-b8ea9ff8cb27", + "label": "label-4828", + "height": 94, + "background": "blue" + }, + { + "key": "d73f17e6-6c7f-46cc-a56f-8cfc16822b82", + "label": "label-4829", + "height": 84, + "background": "green" + }, + { + "key": "72618179-e4e9-430e-adcd-49f5c922348a", + "label": "label-4830", + "height": 122, + "background": "yellow" + }, + { + "key": "4624a440-302b-4307-a17d-40f507a2782f", + "label": "label-4831", + "height": 109, + "background": "green" + }, + { + "key": "56c36e0b-0f9a-4c15-9bb3-2e26ce366e8d", + "label": "label-4832", + "height": 419, + "background": "yellow" + }, + { + "key": "25a868b5-0e4d-4231-b1c6-8abd0ed7edcf", + "label": "label-4833", + "height": 122, + "background": "red" + }, + { + "key": "7b3d6346-b21e-48ac-8d6f-bdf904be03b8", + "label": "label-4834", + "height": 175, + "background": "green" + }, + { + "key": "90825430-4afb-4e20-990f-2bd18c74ed8c", + "label": "label-4835", + "height": 179, + "background": "green" + }, + { + "key": "0faae62e-07fd-4cf2-b521-b389bef805c4", + "label": "label-4836", + "height": 121, + "background": "blue" + }, + { + "key": "1c2feed9-982c-4aff-95ef-5b91d0070db6", + "label": "label-4837", + "height": 451, + "background": "blue" + }, + { + "key": "15353d3f-b5fd-47bf-874f-351f5dd2f04c", + "label": "label-4838", + "height": 65, + "background": "green" + }, + { + "key": "3af13edc-0200-4bf7-b10c-0e3b1b50d891", + "label": "label-4839", + "height": 444, + "background": "blue" + }, + { + "key": "cfc89bc4-e3bf-4f5b-9d3c-51dea7617a09", + "label": "label-4840", + "height": 181, + "background": "yellow" + }, + { + "key": "b82d823f-cce3-4446-a027-888f545372e9", + "label": "label-4841", + "height": 470, + "background": "blue" + }, + { + "key": "b30419e6-30ac-4a99-a1b6-8c52e5b74c38", + "label": "label-4842", + "height": 399, + "background": "red" + }, + { + "key": "6712e82f-a703-4840-97e7-962d1c2ac370", + "label": "label-4843", + "height": 491, + "background": "red" + }, + { + "key": "d64300fd-e7d3-42ee-867a-f4cc49bd57ec", + "label": "label-4844", + "height": 405, + "background": "blue" + }, + { + "key": "f0aecb7c-8e74-411e-a64d-b2792612a0d8", + "label": "label-4845", + "height": 69, + "background": "blue" + }, + { + "key": "bacee7bd-4720-47cf-aba5-bb27fe81e1dd", + "label": "label-4846", + "height": 128, + "background": "yellow" + }, + { + "key": "5994eeab-8290-47e3-abfe-cfe8f0a7ab91", + "label": "label-4847", + "height": 136, + "background": "red" + }, + { + "key": "c39d94df-441b-48dc-a216-d77395e14445", + "label": "label-4848", + "height": 63, + "background": "red" + }, + { + "key": "732716bd-62b6-4bbb-a84e-2043003653dd", + "label": "label-4849", + "height": 404, + "background": "blue" + }, + { + "key": "704605f3-4301-481c-92e5-8d88d013f4e3", + "label": "label-4850", + "height": 246, + "background": "red" + }, + { + "key": "2a88b9e6-0227-4255-8fd1-34b1a5682e5e", + "label": "label-4851", + "height": 527, + "background": "green" + }, + { + "key": "7bb8cc83-87e1-4fc0-87c6-a2e05c424bef", + "label": "label-4852", + "height": 416, + "background": "green" + }, + { + "key": "33109bac-ba04-4f21-8ed8-e50672ac60a8", + "label": "label-4853", + "height": 400, + "background": "green" + }, + { + "key": "27d44ca0-05cb-414d-9c27-0ce7332f5956", + "label": "label-4854", + "height": 283, + "background": "yellow" + }, + { + "key": "9495215e-a771-4b79-b2b9-490d506bbe19", + "label": "label-4855", + "height": 403, + "background": "red" + }, + { + "key": "36dff508-0777-4592-9100-260417c6a34b", + "label": "label-4856", + "height": 161, + "background": "red" + }, + { + "key": "220c4e7f-554b-451f-b33f-fc7416d90ab0", + "label": "label-4857", + "height": 328, + "background": "green" + }, + { + "key": "8dda06f3-7c9b-4800-94be-0adacdebe5ef", + "label": "label-4858", + "height": 176, + "background": "yellow" + }, + { + "key": "012a7365-a9a5-4ba6-9a53-7eb84043a355", + "label": "label-4859", + "height": 249, + "background": "blue" + }, + { + "key": "084ab2fa-8ac8-4fb5-8965-b7aa23ac9845", + "label": "label-4860", + "height": 180, + "background": "red" + }, + { + "key": "927b9fdb-a98e-4552-bf3f-0ccee8970866", + "label": "label-4861", + "height": 231, + "background": "yellow" + }, + { + "key": "5897b0a0-d4bb-49dd-99b5-b0595037cbfa", + "label": "label-4862", + "height": 149, + "background": "blue" + }, + { + "key": "af9c7ffb-0c25-4c48-9142-307fd300c29e", + "label": "label-4863", + "height": 325, + "background": "blue" + }, + { + "key": "b4c3ee58-ae5b-4098-ad68-08c181d301a2", + "label": "label-4864", + "height": 252, + "background": "red" + }, + { + "key": "9b9dc92b-59ad-4ed4-b5f5-79436c2817f1", + "label": "label-4865", + "height": 209, + "background": "red" + }, + { + "key": "24048f20-4ea9-4158-b98c-569989409ee1", + "label": "label-4866", + "height": 476, + "background": "blue" + }, + { + "key": "881c68b7-7738-4202-b7ee-28dfff905680", + "label": "label-4867", + "height": 100, + "background": "blue" + }, + { + "key": "46c5abc6-1c5a-45d2-bad7-eafc9e371e3f", + "label": "label-4868", + "height": 140, + "background": "yellow" + }, + { + "key": "40aebb3c-93c7-44b8-a022-2a3dc628c2ae", + "label": "label-4869", + "height": 271, + "background": "blue" + }, + { + "key": "36cab81b-c4ab-4eec-b732-fad4cd90e8f4", + "label": "label-4870", + "height": 355, + "background": "blue" + }, + { + "key": "cfc29685-e248-4ad8-a302-8118849eb9be", + "label": "label-4871", + "height": 428, + "background": "red" + }, + { + "key": "ce1eab3f-3d2d-4e75-bafa-34115f9a2be8", + "label": "label-4872", + "height": 91, + "background": "red" + }, + { + "key": "858249ef-9319-4732-8967-095e40a3e831", + "label": "label-4873", + "height": 109, + "background": "blue" + }, + { + "key": "2e0e0f65-42be-494e-a5ed-f660e3cabfdf", + "label": "label-4874", + "height": 212, + "background": "red" + }, + { + "key": "7addffba-48a8-455a-9c72-67322f42ac3d", + "label": "label-4875", + "height": 301, + "background": "green" + }, + { + "key": "4aa24f56-a418-4ed2-9370-17488ac31115", + "label": "label-4876", + "height": 236, + "background": "red" + }, + { + "key": "ac132ac4-a94b-4d7e-a678-87891da80658", + "label": "label-4877", + "height": 306, + "background": "blue" + }, + { + "key": "60d11d4e-4e16-4e6e-a908-774cb9c9d61b", + "label": "label-4878", + "height": 510, + "background": "green" + }, + { + "key": "2baa1265-cef6-4d9f-94c1-c9c061a4a0c0", + "label": "label-4879", + "height": 507, + "background": "green" + }, + { + "key": "b097ca75-0914-4c67-bb03-9c9429313253", + "label": "label-4880", + "height": 282, + "background": "red" + }, + { + "key": "4fd4e0a1-d14a-43b2-938e-cf864f55399c", + "label": "label-4881", + "height": 137, + "background": "yellow" + }, + { + "key": "891dde12-164a-4da6-827c-59e906fd1176", + "label": "label-4882", + "height": 259, + "background": "green" + }, + { + "key": "7f64207f-63ee-42b7-b553-954d914debd3", + "label": "label-4883", + "height": 290, + "background": "green" + }, + { + "key": "049deb47-f4be-4a8d-9c5a-79a4c2746a8c", + "label": "label-4884", + "height": 176, + "background": "red" + }, + { + "key": "89fc14cd-034c-4ac5-8072-fa95664869eb", + "label": "label-4885", + "height": 358, + "background": "green" + }, + { + "key": "a9c15ba9-1175-4ec8-a8ff-4e82e6720a98", + "label": "label-4886", + "height": 513, + "background": "blue" + }, + { + "key": "708a98de-28df-4ef1-895d-46b18f10138c", + "label": "label-4887", + "height": 202, + "background": "blue" + }, + { + "key": "3ca152a5-6439-4d91-ac82-b1027e235400", + "label": "label-4888", + "height": 117, + "background": "blue" + }, + { + "key": "de0e2032-2c84-472d-b5c8-ac2dfd4db2a4", + "label": "label-4889", + "height": 130, + "background": "red" + }, + { + "key": "d6e00478-6aae-4b3a-a76b-6a96ba030004", + "label": "label-4890", + "height": 75, + "background": "yellow" + }, + { + "key": "af0d1338-6ab5-4614-bb9f-082acaecaf68", + "label": "label-4891", + "height": 62, + "background": "yellow" + }, + { + "key": "7624c63f-f7d8-4e09-a542-4325e15c3276", + "label": "label-4892", + "height": 359, + "background": "yellow" + }, + { + "key": "82aaae09-2e90-40e2-ab50-6624909cfdb6", + "label": "label-4893", + "height": 129, + "background": "blue" + }, + { + "key": "75773294-f4e6-4bff-bd48-8eb324a3168c", + "label": "label-4894", + "height": 413, + "background": "green" + }, + { + "key": "7b60a7f3-6bf8-4406-a4f6-480de09e4bb3", + "label": "label-4895", + "height": 178, + "background": "yellow" + }, + { + "key": "45b95bd7-e854-432f-a111-fec6f58d188e", + "label": "label-4896", + "height": 221, + "background": "yellow" + }, + { + "key": "d6804ccf-216e-4ca7-b248-7abee29a058c", + "label": "label-4897", + "height": 224, + "background": "red" + }, + { + "key": "efd0113e-6000-4b7b-9f7d-a5db4ddf31d4", + "label": "label-4898", + "height": 470, + "background": "blue" + }, + { + "key": "2deb83de-d5cc-425b-9369-e770aca74e6f", + "label": "label-4899", + "height": 122, + "background": "green" + }, + { + "key": "37c320d0-4594-4fc3-aa47-1fb261af5861", + "label": "label-4900", + "height": 396, + "background": "yellow" + }, + { + "key": "5f36e790-62d4-40fa-b9d7-5c36cef6edb8", + "label": "label-4901", + "height": 512, + "background": "red" + }, + { + "key": "fa090aab-1fd0-4219-a191-6b553ff625d3", + "label": "label-4902", + "height": 481, + "background": "red" + }, + { + "key": "25e6cd07-7c2f-482e-b2f2-325b5004f42f", + "label": "label-4903", + "height": 434, + "background": "yellow" + }, + { + "key": "fbfbed9b-1e31-46f6-a34d-8b9965f79ff9", + "label": "label-4904", + "height": 129, + "background": "green" + }, + { + "key": "6022f964-cf58-40d2-a6f0-2595bbaa76d0", + "label": "label-4905", + "height": 522, + "background": "red" + }, + { + "key": "d5924dd8-a3ba-48a4-8068-9d10ca91d9d4", + "label": "label-4906", + "height": 93, + "background": "yellow" + }, + { + "key": "482a04b0-0b4e-432c-bd73-7e89b1e5b9d7", + "label": "label-4907", + "height": 367, + "background": "red" + }, + { + "key": "96b1a8a9-6326-4e32-b174-2f1474cbac26", + "label": "label-4908", + "height": 133, + "background": "green" + }, + { + "key": "bcba8c0d-54ad-4a0a-99e4-410020d8e636", + "label": "label-4909", + "height": 449, + "background": "yellow" + }, + { + "key": "86890408-eaf7-481d-9f68-beb250f8d8b3", + "label": "label-4910", + "height": 251, + "background": "blue" + }, + { + "key": "21dbd841-c768-4496-b8ba-3c88b9039f99", + "label": "label-4911", + "height": 225, + "background": "green" + }, + { + "key": "5cb69cf5-c422-4391-b6b3-ef114c2aa9ba", + "label": "label-4912", + "height": 60, + "background": "red" + }, + { + "key": "e6d2fb5d-507c-4a96-8736-0ecab3ad2f23", + "label": "label-4913", + "height": 482, + "background": "blue" + }, + { + "key": "44b89ce5-6e88-4028-87c0-2336018234d9", + "label": "label-4914", + "height": 339, + "background": "yellow" + }, + { + "key": "5fa6b385-aab4-47d7-9d63-9cc33371b9f6", + "label": "label-4915", + "height": 265, + "background": "blue" + }, + { + "key": "7ce41678-b3ff-4f98-854d-1205bdfb587b", + "label": "label-4916", + "height": 525, + "background": "blue" + }, + { + "key": "5e6f4dba-1733-41fa-a3d6-4dacc42b8968", + "label": "label-4917", + "height": 406, + "background": "green" + }, + { + "key": "551cd1d1-c836-4b8b-808e-936a4de3f021", + "label": "label-4918", + "height": 518, + "background": "red" + }, + { + "key": "352640a3-6264-4681-970b-05c95a00df13", + "label": "label-4919", + "height": 131, + "background": "green" + }, + { + "key": "a15156b0-6365-4ff7-8f50-4486c387c3be", + "label": "label-4920", + "height": 96, + "background": "green" + }, + { + "key": "9360be1e-061d-4a33-a05d-78014b9f5cdb", + "label": "label-4921", + "height": 116, + "background": "green" + }, + { + "key": "2e11b7c6-b0d1-4e27-99c8-ce2fab356fe4", + "label": "label-4922", + "height": 498, + "background": "yellow" + }, + { + "key": "ac0f4068-cece-44b2-9cb6-e66849dc73b5", + "label": "label-4923", + "height": 349, + "background": "green" + }, + { + "key": "bca15b10-70c0-4f79-b930-8cf4e4d0893d", + "label": "label-4924", + "height": 148, + "background": "red" + }, + { + "key": "6dfcd82e-4c6f-461e-9325-c6cf451106ba", + "label": "label-4925", + "height": 478, + "background": "blue" + }, + { + "key": "6acf364b-4577-4934-802a-022f12c50f23", + "label": "label-4926", + "height": 220, + "background": "green" + }, + { + "key": "73c4c512-5a29-4861-89cf-743f80441978", + "label": "label-4927", + "height": 275, + "background": "red" + }, + { + "key": "5654fc21-3d75-4aee-9570-78b2af939315", + "label": "label-4928", + "height": 75, + "background": "blue" + }, + { + "key": "ca479628-9640-46dc-99cf-9713f69054d6", + "label": "label-4929", + "height": 77, + "background": "blue" + }, + { + "key": "9f4b3fdc-35ab-4111-aee6-071f9400df76", + "label": "label-4930", + "height": 343, + "background": "blue" + }, + { + "key": "ea68236c-bbe1-421c-9805-80e7974f1e75", + "label": "label-4931", + "height": 108, + "background": "red" + }, + { + "key": "3d38134a-7d5a-4200-9814-38bffc1cba22", + "label": "label-4932", + "height": 147, + "background": "yellow" + }, + { + "key": "14e7ff16-2751-4d82-963b-289e023e7a95", + "label": "label-4933", + "height": 396, + "background": "green" + }, + { + "key": "86222925-ddf1-4c54-b3f1-631e563ea1d6", + "label": "label-4934", + "height": 290, + "background": "blue" + }, + { + "key": "c613ac27-43a4-4fd9-99d7-efaef2c6c06a", + "label": "label-4935", + "height": 458, + "background": "red" + }, + { + "key": "b3bbd192-30d5-4791-a808-03e4b6df80e1", + "label": "label-4936", + "height": 512, + "background": "blue" + }, + { + "key": "a196b194-5fbe-47f7-ad3f-7b52424e68b3", + "label": "label-4937", + "height": 64, + "background": "yellow" + }, + { + "key": "1976f41b-4d7a-48ae-90aa-aff1d5cc552d", + "label": "label-4938", + "height": 242, + "background": "red" + }, + { + "key": "bd6ab1e2-63a3-4e4a-ba57-892ec8ea06f1", + "label": "label-4939", + "height": 100, + "background": "red" + }, + { + "key": "40c2693d-ca86-4055-a5c0-0a48ad091289", + "label": "label-4940", + "height": 208, + "background": "blue" + }, + { + "key": "623306b8-671e-4b33-9d6c-33d1499cd049", + "label": "label-4941", + "height": 429, + "background": "yellow" + }, + { + "key": "bd8b4709-0590-4ac6-b87c-b55e52716872", + "label": "label-4942", + "height": 41, + "background": "green" + }, + { + "key": "14b3eee7-da51-44c4-a07e-7d580f36e368", + "label": "label-4943", + "height": 388, + "background": "green" + }, + { + "key": "7551ec45-4bf7-4384-b74f-724590519042", + "label": "label-4944", + "height": 525, + "background": "red" + }, + { + "key": "94d9fabb-a84e-4f6f-b166-fa009947aad2", + "label": "label-4945", + "height": 90, + "background": "yellow" + }, + { + "key": "417650ab-cb93-4dc7-ad0a-4c9aafac3d30", + "label": "label-4946", + "height": 367, + "background": "yellow" + }, + { + "key": "bee327d5-0172-4bcb-9aa9-650852d9e692", + "label": "label-4947", + "height": 331, + "background": "red" + }, + { + "key": "95af4165-23d0-4174-9d87-411f097891e4", + "label": "label-4948", + "height": 440, + "background": "red" + }, + { + "key": "be335fc8-cfcc-453b-95cf-346589441fcd", + "label": "label-4949", + "height": 237, + "background": "green" + }, + { + "key": "2fbd4ece-4bba-49f7-83d4-a1416ad2c9ad", + "label": "label-4950", + "height": 55, + "background": "green" + }, + { + "key": "47b665be-4d0b-44e7-80d2-be3f9a356eaf", + "label": "label-4951", + "height": 162, + "background": "green" + }, + { + "key": "bf25151e-552b-4ae7-a96a-5ff27ea6640d", + "label": "label-4952", + "height": 108, + "background": "green" + }, + { + "key": "acb6689d-7498-4211-b8c1-a218c609439d", + "label": "label-4953", + "height": 300, + "background": "yellow" + }, + { + "key": "a95855a4-08b9-4b0f-8ec4-2736d20a950f", + "label": "label-4954", + "height": 341, + "background": "red" + }, + { + "key": "bcc4b0ae-c75a-4dd4-a54a-755222acce8a", + "label": "label-4955", + "height": 356, + "background": "green" + }, + { + "key": "dbb1008c-4e28-4399-b15e-ebe9e1020303", + "label": "label-4956", + "height": 66, + "background": "blue" + }, + { + "key": "70ee3971-7205-4675-bc23-04725d77113e", + "label": "label-4957", + "height": 396, + "background": "red" + }, + { + "key": "bf231534-62a6-4854-8b06-4f551d750edc", + "label": "label-4958", + "height": 260, + "background": "green" + }, + { + "key": "ce2264cc-0f16-4ee8-8dcd-1fd8d11e4dbb", + "label": "label-4959", + "height": 429, + "background": "blue" + }, + { + "key": "4c4d1f82-8a76-4f10-b6e8-569725719182", + "label": "label-4960", + "height": 104, + "background": "red" + }, + { + "key": "b413393a-8942-423e-a919-4f018ab4c112", + "label": "label-4961", + "height": 213, + "background": "blue" + }, + { + "key": "ae08659d-007d-4750-b471-431473351ed5", + "label": "label-4962", + "height": 58, + "background": "red" + }, + { + "key": "656c1151-95e2-4bf2-bf9f-61a6b7bf7982", + "label": "label-4963", + "height": 391, + "background": "yellow" + }, + { + "key": "b09f6ceb-c393-478b-9ae6-f497b65e5f27", + "label": "label-4964", + "height": 147, + "background": "yellow" + }, + { + "key": "37c36db3-1d50-4bce-9fcc-2ad6f4c057c2", + "label": "label-4965", + "height": 173, + "background": "green" + }, + { + "key": "06aec897-2ffa-451f-8f41-1fb4118ad33d", + "label": "label-4966", + "height": 133, + "background": "green" + }, + { + "key": "a71ac198-4f9c-4226-a7ab-fa12f41c222e", + "label": "label-4967", + "height": 78, + "background": "yellow" + }, + { + "key": "970bf84c-dd4e-4cee-afff-9b857ac4dbf8", + "label": "label-4968", + "height": 90, + "background": "green" + }, + { + "key": "5102bb43-e24d-4ad8-8af3-b7c00838a732", + "label": "label-4969", + "height": 279, + "background": "blue" + }, + { + "key": "3522bed7-cccf-469e-8d63-494c4baa2efd", + "label": "label-4970", + "height": 37, + "background": "blue" + }, + { + "key": "d4bfb2ba-6396-4b71-9a69-fc494a1920c1", + "label": "label-4971", + "height": 485, + "background": "red" + }, + { + "key": "60acb075-6809-46c3-bf44-ceda3da2c6a0", + "label": "label-4972", + "height": 373, + "background": "red" + }, + { + "key": "f398730b-8e6a-42c2-a54c-8c3849cfc3ce", + "label": "label-4973", + "height": 405, + "background": "yellow" + }, + { + "key": "963bc775-6aee-4c3d-8cec-03e0c3c30a65", + "label": "label-4974", + "height": 362, + "background": "red" + }, + { + "key": "b925b20a-1b34-439b-b7e6-3d89b789ff4b", + "label": "label-4975", + "height": 434, + "background": "yellow" + }, + { + "key": "8aefac9b-4ffb-441b-8ade-482decb15c69", + "label": "label-4976", + "height": 387, + "background": "red" + }, + { + "key": "2279edf7-f9ee-4af5-a834-fc25e5479bd7", + "label": "label-4977", + "height": 307, + "background": "yellow" + }, + { + "key": "7bb6bf8e-2e5e-4a46-85a5-2c30638e4ad6", + "label": "label-4978", + "height": 271, + "background": "red" + }, + { + "key": "2666a0c0-954d-4de0-8e39-871c1727494d", + "label": "label-4979", + "height": 425, + "background": "red" + }, + { + "key": "e2c3f504-01d2-49ca-8a69-b229bb4cd82e", + "label": "label-4980", + "height": 65, + "background": "blue" + }, + { + "key": "0ce0e5cf-d313-4f15-b305-dddc251734a4", + "label": "label-4981", + "height": 129, + "background": "yellow" + }, + { + "key": "d3e973ad-c517-4867-87f5-9eb4a67b6599", + "label": "label-4982", + "height": 144, + "background": "blue" + }, + { + "key": "c878080b-ec2b-4870-81c5-f8ef2c6ff4b7", + "label": "label-4983", + "height": 174, + "background": "green" + }, + { + "key": "8eab6b98-8d1f-4a50-a7ec-f6c548d41880", + "label": "label-4984", + "height": 421, + "background": "yellow" + }, + { + "key": "7078a56c-a868-4482-8d90-7216f41460ed", + "label": "label-4985", + "height": 380, + "background": "red" + }, + { + "key": "a1cb395f-bb81-427b-8fe7-e9529434278e", + "label": "label-4986", + "height": 131, + "background": "blue" + }, + { + "key": "34cc15a2-7209-4391-b63d-2d5af8301740", + "label": "label-4987", + "height": 262, + "background": "green" + }, + { + "key": "f2b0b07e-e6fe-4876-8249-f51beebc208d", + "label": "label-4988", + "height": 139, + "background": "yellow" + }, + { + "key": "26a4f54b-89d6-4ff3-a855-c7111e1a122c", + "label": "label-4989", + "height": 434, + "background": "green" + }, + { + "key": "8a905e98-d631-4948-9cdc-210a31d8049c", + "label": "label-4990", + "height": 311, + "background": "yellow" + }, + { + "key": "1dfc55d6-9cc9-4db0-a7f3-09118881d823", + "label": "label-4991", + "height": 382, + "background": "red" + }, + { + "key": "25edd4db-2672-4c3d-91c7-0d0a7f279294", + "label": "label-4992", + "height": 143, + "background": "green" + }, + { + "key": "2f1a86d8-9e0c-4d84-a63e-86a150c233d5", + "label": "label-4993", + "height": 80, + "background": "red" + }, + { + "key": "46805294-667a-45dc-8992-2a45f2b3fd14", + "label": "label-4994", + "height": 34, + "background": "yellow" + }, + { + "key": "63b66b2f-3c3e-413d-a9a7-83d46835059d", + "label": "label-4995", + "height": 434, + "background": "blue" + }, + { + "key": "76bbd9b1-c398-48a6-b533-170bde40da98", + "label": "label-4996", + "height": 193, + "background": "green" + }, + { + "key": "367647d7-d9ed-4f6d-b95f-5102137c6612", + "label": "label-4997", + "height": 34, + "background": "red" + }, + { + "key": "c0758de4-c9fe-452b-929b-81701a0ddffb", + "label": "label-4998", + "height": 477, + "background": "red" + }, + { + "key": "7e8bbdfd-d747-48b1-be9a-ac3efea263d5", + "label": "label-4999", + "height": 264, + "background": "green" + }, + { + "key": "6cec6029-42fa-4bf9-bd0b-81a88c146aaf", + "label": "label-5000", + "height": 479, + "background": "blue" + }, + { + "key": "edbdaf31-10b0-44e0-9d69-5eeea052dd85", + "label": "label-5001", + "height": 234, + "background": "yellow" + }, + { + "key": "d66117f0-823f-4816-af95-d70b98f0991d", + "label": "label-5002", + "height": 61, + "background": "yellow" + }, + { + "key": "a2665eee-e9e7-4c70-ab52-06fabb6cecf0", + "label": "label-5003", + "height": 104, + "background": "blue" + }, + { + "key": "e3d2f058-eda9-487b-b418-5b3709352b35", + "label": "label-5004", + "height": 386, + "background": "red" + }, + { + "key": "9fdf8c5b-7bf7-423a-a847-c6ad006aefe4", + "label": "label-5005", + "height": 304, + "background": "blue" + }, + { + "key": "817ae931-88e2-4c47-9668-24233c6fcba0", + "label": "label-5006", + "height": 499, + "background": "yellow" + }, + { + "key": "e7edd1b1-5b51-40c3-b42b-ae19e40b166e", + "label": "label-5007", + "height": 105, + "background": "green" + }, + { + "key": "968b3e3c-57e0-4469-8def-4a44e3d26b34", + "label": "label-5008", + "height": 68, + "background": "green" + }, + { + "key": "53178862-d96c-42b9-b7b7-b1e2bd78d107", + "label": "label-5009", + "height": 298, + "background": "green" + }, + { + "key": "768b1a1b-dc83-4355-9304-5e22aaa943aa", + "label": "label-5010", + "height": 280, + "background": "blue" + }, + { + "key": "c89c3d86-b39d-42b9-add8-0653f6e01b04", + "label": "label-5011", + "height": 305, + "background": "red" + }, + { + "key": "4a958ef3-7ec5-46d2-bbbb-89542506cc0e", + "label": "label-5012", + "height": 123, + "background": "blue" + }, + { + "key": "4e2e0a11-f0d5-4d85-9006-3219ce3ae866", + "label": "label-5013", + "height": 194, + "background": "green" + }, + { + "key": "d2d52b80-6834-43c1-b931-261692dc6b84", + "label": "label-5014", + "height": 428, + "background": "red" + }, + { + "key": "1d16a0f9-e499-417b-a493-6b1448acb24f", + "label": "label-5015", + "height": 374, + "background": "red" + }, + { + "key": "0e5390f8-cb68-41db-9ea7-81e62daade62", + "label": "label-5016", + "height": 60, + "background": "green" + }, + { + "key": "8a92d36b-bedf-4c4d-8730-ad03aaccae1d", + "label": "label-5017", + "height": 228, + "background": "yellow" + }, + { + "key": "dc896d73-8bd5-4552-94cd-0c1eb8e89eef", + "label": "label-5018", + "height": 186, + "background": "yellow" + }, + { + "key": "5847b95e-7ce3-4e54-944c-43a0f647861a", + "label": "label-5019", + "height": 33, + "background": "green" + }, + { + "key": "904ae3de-ef04-43ed-b2b3-5fdec3752549", + "label": "label-5020", + "height": 55, + "background": "blue" + }, + { + "key": "caeae444-f6fe-46d3-a868-1a2c56718601", + "label": "label-5021", + "height": 148, + "background": "blue" + }, + { + "key": "5701f1df-52c5-4d41-af25-e71e78330142", + "label": "label-5022", + "height": 87, + "background": "red" + }, + { + "key": "e5ece253-08de-4cfb-bfde-e4d0b9b045a4", + "label": "label-5023", + "height": 368, + "background": "yellow" + }, + { + "key": "8d5c26c2-256f-4787-b990-893fd8e173ed", + "label": "label-5024", + "height": 275, + "background": "red" + }, + { + "key": "22fa4427-0539-42c6-8d31-c6cb3bfc2a02", + "label": "label-5025", + "height": 88, + "background": "green" + }, + { + "key": "0171b128-73d6-4a80-9e1a-551ce3ea6c4c", + "label": "label-5026", + "height": 151, + "background": "red" + }, + { + "key": "c84c65ae-f8bc-4e52-bab0-379f9172ea5c", + "label": "label-5027", + "height": 207, + "background": "green" + }, + { + "key": "116bf3d1-fd27-424d-b660-ebff84427ea6", + "label": "label-5028", + "height": 406, + "background": "green" + }, + { + "key": "7e802fd7-8e46-4dbe-9b30-220c4f705218", + "label": "label-5029", + "height": 177, + "background": "blue" + }, + { + "key": "25e2125b-2ab8-4eba-b587-f3b63ff055c0", + "label": "label-5030", + "height": 350, + "background": "blue" + }, + { + "key": "b2636f2b-51d6-4b59-b636-4a948038c303", + "label": "label-5031", + "height": 77, + "background": "yellow" + }, + { + "key": "663009ce-d6c3-4b44-85f3-29f0781caa97", + "label": "label-5032", + "height": 182, + "background": "yellow" + }, + { + "key": "ead6111f-7031-4998-99d1-240c4029c804", + "label": "label-5033", + "height": 61, + "background": "blue" + }, + { + "key": "cf581032-c18d-4df3-acce-b5dd09f23e80", + "label": "label-5034", + "height": 191, + "background": "yellow" + }, + { + "key": "9cac2d83-90ec-4d82-825e-6dec737f9c0a", + "label": "label-5035", + "height": 436, + "background": "blue" + }, + { + "key": "51ef15ff-8035-4e1a-baf5-08b7940b9943", + "label": "label-5036", + "height": 226, + "background": "green" + }, + { + "key": "fea64488-29db-481f-9433-fa9d1fbbec4e", + "label": "label-5037", + "height": 168, + "background": "blue" + }, + { + "key": "dfacfd14-fc61-43d1-94e1-27b1d30ca661", + "label": "label-5038", + "height": 220, + "background": "blue" + }, + { + "key": "e31d06d1-d72a-4ff1-ae05-15e1551ee510", + "label": "label-5039", + "height": 198, + "background": "red" + }, + { + "key": "b1ee962b-33de-4e78-82bb-e8b965bc1a7f", + "label": "label-5040", + "height": 272, + "background": "red" + }, + { + "key": "8cd847ae-d3c5-4974-9ece-2432bec12d74", + "label": "label-5041", + "height": 124, + "background": "green" + }, + { + "key": "8ff359c8-2573-4130-a84d-85ca39fee206", + "label": "label-5042", + "height": 345, + "background": "red" + }, + { + "key": "c58c8a9c-875d-4e61-9be0-382e612e718a", + "label": "label-5043", + "height": 122, + "background": "green" + }, + { + "key": "eacc3967-5249-4ed9-bd4f-385366e7d424", + "label": "label-5044", + "height": 524, + "background": "red" + }, + { + "key": "ac5f61f9-2208-42be-bbcf-5afd124c837c", + "label": "label-5045", + "height": 472, + "background": "blue" + }, + { + "key": "cd7243eb-e5c1-4095-b066-fff213f31bb2", + "label": "label-5046", + "height": 378, + "background": "red" + }, + { + "key": "946c4d60-0375-48a0-baa0-6520e143b8b8", + "label": "label-5047", + "height": 462, + "background": "blue" + }, + { + "key": "9abb1fe4-cd9f-484f-beb6-a4698539aa6e", + "label": "label-5048", + "height": 481, + "background": "blue" + }, + { + "key": "af2ff2a0-992c-49ee-bea2-05331127f204", + "label": "label-5049", + "height": 324, + "background": "red" + }, + { + "key": "b76540df-d935-4423-804a-26422bfaee81", + "label": "label-5050", + "height": 69, + "background": "red" + }, + { + "key": "577cc99e-cc54-4b19-876c-6eeaeabceddb", + "label": "label-5051", + "height": 400, + "background": "yellow" + }, + { + "key": "c9468547-a498-49dc-928b-315e5b9641ba", + "label": "label-5052", + "height": 486, + "background": "red" + }, + { + "key": "26aa5ecd-abc5-4306-86b3-d955b6640e9d", + "label": "label-5053", + "height": 310, + "background": "yellow" + }, + { + "key": "e6eb6371-c026-4dab-afef-1718fbe30e8f", + "label": "label-5054", + "height": 267, + "background": "green" + }, + { + "key": "85ca0245-fdd1-4f00-93eb-f5ae16237150", + "label": "label-5055", + "height": 415, + "background": "yellow" + }, + { + "key": "6a44d15a-81e1-4e07-a1e1-a2b1703b525d", + "label": "label-5056", + "height": 157, + "background": "green" + }, + { + "key": "7bbdc280-2428-4c3d-8a8c-b6025ed49109", + "label": "label-5057", + "height": 152, + "background": "blue" + }, + { + "key": "a7fd9885-1c66-42f4-87a1-72bd29352200", + "label": "label-5058", + "height": 158, + "background": "green" + }, + { + "key": "bc52557d-4637-4292-9917-05953a3b1834", + "label": "label-5059", + "height": 492, + "background": "red" + }, + { + "key": "f0a15f5d-f665-4fe6-8c2d-e22c20bbcbf6", + "label": "label-5060", + "height": 216, + "background": "blue" + }, + { + "key": "0e4f6c70-86b3-4471-8a58-ee8d0c88aa71", + "label": "label-5061", + "height": 143, + "background": "red" + }, + { + "key": "260cca9b-003c-42dd-94e9-adc06c290f94", + "label": "label-5062", + "height": 38, + "background": "green" + }, + { + "key": "615dcaac-d3b4-4eaa-b6c9-b86f5319ddcc", + "label": "label-5063", + "height": 498, + "background": "green" + }, + { + "key": "584761c9-03db-49df-8013-a7ee4a17a0cd", + "label": "label-5064", + "height": 61, + "background": "green" + }, + { + "key": "43c1c5c6-b74a-4460-b102-4bd300a209f6", + "label": "label-5065", + "height": 345, + "background": "red" + }, + { + "key": "96d3b326-d456-473a-9be8-bd0fed6caff3", + "label": "label-5066", + "height": 128, + "background": "red" + }, + { + "key": "621ea74d-bbab-4084-818e-dd23bafb85fd", + "label": "label-5067", + "height": 272, + "background": "green" + }, + { + "key": "6ecdf69d-7f78-49e9-81a3-4d71e2ff104d", + "label": "label-5068", + "height": 309, + "background": "yellow" + }, + { + "key": "5bd76733-7d8a-496d-a2c2-4fb2aa10e98a", + "label": "label-5069", + "height": 411, + "background": "red" + }, + { + "key": "98bc6bb1-d805-460e-a2a7-77f297cd94ac", + "label": "label-5070", + "height": 508, + "background": "blue" + }, + { + "key": "3ef7bf79-ef92-4d87-9279-db6dc21a9fba", + "label": "label-5071", + "height": 100, + "background": "red" + }, + { + "key": "f59135bb-4c72-4666-891a-ce9f7427b91a", + "label": "label-5072", + "height": 382, + "background": "yellow" + }, + { + "key": "a8b57be6-b1be-44cb-a6d9-39cb1d55b765", + "label": "label-5073", + "height": 244, + "background": "yellow" + }, + { + "key": "50e0ff93-a02a-4969-bb01-8c7dfc45a5dc", + "label": "label-5074", + "height": 236, + "background": "yellow" + }, + { + "key": "1fadbd3e-d414-4a58-ba8e-9e565931e2b1", + "label": "label-5075", + "height": 227, + "background": "green" + }, + { + "key": "977ca5aa-362c-40a8-afbf-6895dabc5729", + "label": "label-5076", + "height": 212, + "background": "green" + }, + { + "key": "4efede7f-02c4-403d-a0bb-e8580b984fe8", + "label": "label-5077", + "height": 280, + "background": "green" + }, + { + "key": "fea85fee-39a7-4045-a373-4b23aae00b11", + "label": "label-5078", + "height": 137, + "background": "green" + }, + { + "key": "1fa8ed6e-be6d-4db3-a944-c5f57ff79c6f", + "label": "label-5079", + "height": 324, + "background": "green" + }, + { + "key": "e9d42639-3b42-4597-a0a2-3483fdeab2ea", + "label": "label-5080", + "height": 272, + "background": "yellow" + }, + { + "key": "3a9cf5ad-c236-4003-9c19-41a6540dd85e", + "label": "label-5081", + "height": 489, + "background": "green" + }, + { + "key": "ff8a12de-38d0-4b52-b39d-ca8a740e8f78", + "label": "label-5082", + "height": 262, + "background": "red" + }, + { + "key": "2a0f7926-4b72-41ee-925a-0242bf36fdfa", + "label": "label-5083", + "height": 475, + "background": "red" + }, + { + "key": "1d77302f-1812-4222-952a-390af57bff74", + "label": "label-5084", + "height": 255, + "background": "red" + }, + { + "key": "22a8a417-e5e2-4e9e-9193-f19409647ded", + "label": "label-5085", + "height": 510, + "background": "yellow" + }, + { + "key": "c5b259cc-b592-488f-a07b-7bd5d8d2e01c", + "label": "label-5086", + "height": 405, + "background": "yellow" + }, + { + "key": "405e8858-81da-4cad-8621-484a9452b6e3", + "label": "label-5087", + "height": 468, + "background": "red" + }, + { + "key": "5e3cb2a0-45f3-48fa-a78a-ca3644276bae", + "label": "label-5088", + "height": 115, + "background": "red" + }, + { + "key": "d40c1e7d-68e7-4d51-8f49-33c666b6f54c", + "label": "label-5089", + "height": 159, + "background": "blue" + }, + { + "key": "eb35c513-35c4-4827-9ab9-b4258ad85872", + "label": "label-5090", + "height": 218, + "background": "red" + }, + { + "key": "c1e3e671-bdfb-42be-a875-651e00dbe5b6", + "label": "label-5091", + "height": 366, + "background": "green" + }, + { + "key": "9121b729-520c-4088-8fb1-2d62526b24f9", + "label": "label-5092", + "height": 518, + "background": "green" + }, + { + "key": "638d2cc1-d2d7-444b-90ba-b10bd9eefb1c", + "label": "label-5093", + "height": 503, + "background": "blue" + }, + { + "key": "3cfa05e1-98f1-49a5-8890-c2fec2c21a9b", + "label": "label-5094", + "height": 81, + "background": "red" + }, + { + "key": "bf3382ad-6823-49c7-a827-a9f5d8cb8392", + "label": "label-5095", + "height": 392, + "background": "yellow" + }, + { + "key": "66df0bc2-8c66-445b-8520-bf164c4ade19", + "label": "label-5096", + "height": 417, + "background": "yellow" + }, + { + "key": "7f5499fd-8083-4768-8055-7e740f0f725b", + "label": "label-5097", + "height": 512, + "background": "red" + }, + { + "key": "43a0511e-483d-4ee4-a734-d704b56bf608", + "label": "label-5098", + "height": 79, + "background": "red" + }, + { + "key": "a0a8041a-7ea7-49c8-83e2-e306612f2edf", + "label": "label-5099", + "height": 413, + "background": "yellow" + }, + { + "key": "6a5a8f15-17cd-4b89-8831-9f9476015e30", + "label": "label-5100", + "height": 133, + "background": "green" + }, + { + "key": "46887cfb-aa66-40af-bb5d-628a5932a7fc", + "label": "label-5101", + "height": 213, + "background": "blue" + }, + { + "key": "828bec37-2a11-4291-9ba3-475ef0056ad1", + "label": "label-5102", + "height": 496, + "background": "yellow" + }, + { + "key": "e491113d-96ba-4595-8c59-63602fe65451", + "label": "label-5103", + "height": 259, + "background": "green" + }, + { + "key": "75abdcd8-6a1c-4b93-a151-c8263843c619", + "label": "label-5104", + "height": 503, + "background": "blue" + }, + { + "key": "33ae4499-573e-41e2-bed1-2c6fb3f73493", + "label": "label-5105", + "height": 155, + "background": "blue" + }, + { + "key": "d15a0b55-eda6-4586-9382-241b3591ba39", + "label": "label-5106", + "height": 149, + "background": "red" + }, + { + "key": "188d4372-8c31-41b1-ac29-b423d54ed28d", + "label": "label-5107", + "height": 319, + "background": "yellow" + }, + { + "key": "d2b32575-2ea5-4571-8cab-7fe63ea847b8", + "label": "label-5108", + "height": 231, + "background": "green" + }, + { + "key": "6c0d7570-0b91-459f-aee2-13121d18cbcf", + "label": "label-5109", + "height": 376, + "background": "red" + }, + { + "key": "31853516-afa8-4c5d-94a3-88fed345e00b", + "label": "label-5110", + "height": 462, + "background": "blue" + }, + { + "key": "dbab8ce3-f3dc-418e-858e-a3aeecda43c8", + "label": "label-5111", + "height": 386, + "background": "red" + }, + { + "key": "502022d6-f15e-489e-8394-22b155b1781a", + "label": "label-5112", + "height": 321, + "background": "green" + }, + { + "key": "64ef75b2-2301-485c-908a-105ca14aa696", + "label": "label-5113", + "height": 519, + "background": "blue" + }, + { + "key": "ce983f72-8c3e-4237-8e4d-fd706d0b423b", + "label": "label-5114", + "height": 342, + "background": "green" + }, + { + "key": "aa88b4ca-babd-4053-b716-5aded8f22432", + "label": "label-5115", + "height": 369, + "background": "yellow" + }, + { + "key": "05519c7f-9e4a-466d-a9ab-721002518ebb", + "label": "label-5116", + "height": 306, + "background": "blue" + }, + { + "key": "85ab78c3-dbdc-4820-a893-9bbd2fee4f87", + "label": "label-5117", + "height": 124, + "background": "yellow" + }, + { + "key": "71f4b3c2-5006-430d-a784-27c61464e03a", + "label": "label-5118", + "height": 464, + "background": "blue" + }, + { + "key": "e7ea99de-2862-4e33-b7e7-4b2e87bd0f80", + "label": "label-5119", + "height": 456, + "background": "blue" + }, + { + "key": "e8ad095d-8005-4e4b-9618-9ab2a58f536e", + "label": "label-5120", + "height": 175, + "background": "blue" + }, + { + "key": "522e40af-04af-45f8-bce0-7380458b8ea7", + "label": "label-5121", + "height": 60, + "background": "blue" + }, + { + "key": "1f6ff600-5cb0-422c-89c5-494b48b9b938", + "label": "label-5122", + "height": 336, + "background": "yellow" + }, + { + "key": "253c1885-fdb6-49b5-b34d-8fe55c0a4b8d", + "label": "label-5123", + "height": 155, + "background": "green" + }, + { + "key": "6ec93694-4458-4a5c-af75-30e95057fc12", + "label": "label-5124", + "height": 108, + "background": "blue" + }, + { + "key": "1ccf7051-7733-4bd5-9198-d2978e00c083", + "label": "label-5125", + "height": 40, + "background": "blue" + }, + { + "key": "33fbec8b-cfe9-4cc7-a11f-8b00495f5573", + "label": "label-5126", + "height": 489, + "background": "blue" + }, + { + "key": "7aed4ace-6247-4ca7-bdde-67e4c6e314af", + "label": "label-5127", + "height": 46, + "background": "yellow" + }, + { + "key": "aed9f371-b61b-4a53-b6f5-a8105a36899e", + "label": "label-5128", + "height": 430, + "background": "blue" + }, + { + "key": "c47d528b-5051-42ee-be2e-77f4e6440f6c", + "label": "label-5129", + "height": 434, + "background": "red" + }, + { + "key": "7dcab37c-a20e-4045-a561-fd4a3aa4a281", + "label": "label-5130", + "height": 509, + "background": "red" + }, + { + "key": "db53f559-6ac3-4b99-b2a0-3b344a29e1b6", + "label": "label-5131", + "height": 84, + "background": "red" + }, + { + "key": "764c94a5-c1c3-4ed7-9d2c-93e2d1dd720c", + "label": "label-5132", + "height": 377, + "background": "blue" + }, + { + "key": "c852498d-b370-4af8-b648-4e27436197e0", + "label": "label-5133", + "height": 88, + "background": "yellow" + }, + { + "key": "0587f443-02d3-428d-a74e-d7e14905d165", + "label": "label-5134", + "height": 479, + "background": "yellow" + }, + { + "key": "8a17e9d0-e693-470f-8c8a-842870c0a36e", + "label": "label-5135", + "height": 182, + "background": "red" + }, + { + "key": "bb0291a2-4060-45ee-9d46-780aa0b14a24", + "label": "label-5136", + "height": 168, + "background": "yellow" + }, + { + "key": "5691acf5-ca27-4051-bdd5-09923149e60c", + "label": "label-5137", + "height": 161, + "background": "blue" + }, + { + "key": "8e34d60c-aa0b-45b7-95d5-f3464fedbe85", + "label": "label-5138", + "height": 32, + "background": "yellow" + }, + { + "key": "1fe4e682-fe70-4625-a35f-6c86f8055a5b", + "label": "label-5139", + "height": 211, + "background": "blue" + }, + { + "key": "61cc595e-b42c-472d-a8c1-1773bd94a1cf", + "label": "label-5140", + "height": 373, + "background": "yellow" + }, + { + "key": "d9d3f139-c378-4d32-97b0-65dc5d47791d", + "label": "label-5141", + "height": 95, + "background": "yellow" + }, + { + "key": "5d56d8ca-db2d-4839-8b96-8252f6f17155", + "label": "label-5142", + "height": 400, + "background": "green" + }, + { + "key": "6796a8cd-895a-497d-bd83-f693fcf47648", + "label": "label-5143", + "height": 335, + "background": "yellow" + }, + { + "key": "a0a8f860-9874-439a-91c5-fc883c1858c0", + "label": "label-5144", + "height": 188, + "background": "red" + }, + { + "key": "cf533bba-346e-41bf-af28-44212a658c50", + "label": "label-5145", + "height": 366, + "background": "red" + }, + { + "key": "35892f7f-2c56-4f9b-ad1e-3c8135121a50", + "label": "label-5146", + "height": 425, + "background": "green" + }, + { + "key": "d75dde28-26be-48c4-97d1-e4a3d030e4e7", + "label": "label-5147", + "height": 65, + "background": "green" + }, + { + "key": "5fe6b648-0662-422f-8ef4-2e48d9e6db29", + "label": "label-5148", + "height": 257, + "background": "green" + }, + { + "key": "ff63beda-3679-49a6-9e90-ba11a28364b4", + "label": "label-5149", + "height": 427, + "background": "red" + }, + { + "key": "d07c6bd2-0e0c-43e9-9f7e-838e824011f8", + "label": "label-5150", + "height": 182, + "background": "blue" + }, + { + "key": "899fdd45-7bae-4e01-8c4f-5b85290e7c41", + "label": "label-5151", + "height": 125, + "background": "green" + }, + { + "key": "55861404-a2be-451f-b9e3-2f8d08ea641b", + "label": "label-5152", + "height": 466, + "background": "yellow" + }, + { + "key": "9f46f0b6-18c7-4480-9946-e6681da0196c", + "label": "label-5153", + "height": 179, + "background": "red" + }, + { + "key": "a0cd1f5d-6a12-4ab4-b661-3ab02593264a", + "label": "label-5154", + "height": 202, + "background": "yellow" + }, + { + "key": "e4ca197a-1b48-45cf-b6a8-2f6d2cbc18e8", + "label": "label-5155", + "height": 333, + "background": "yellow" + }, + { + "key": "7658e06d-c32a-412d-b919-5f537fb0d14b", + "label": "label-5156", + "height": 290, + "background": "blue" + }, + { + "key": "572e00c9-a170-4095-9900-f6487ac527f6", + "label": "label-5157", + "height": 476, + "background": "yellow" + }, + { + "key": "d96a01b0-0f00-412f-ac22-836f5fd45497", + "label": "label-5158", + "height": 466, + "background": "blue" + }, + { + "key": "43a55737-7f23-4195-9661-1faee447dd7f", + "label": "label-5159", + "height": 401, + "background": "green" + }, + { + "key": "bc01644f-24db-467d-8ed8-ac9c083b8216", + "label": "label-5160", + "height": 383, + "background": "blue" + }, + { + "key": "a1ea2c70-71e7-43de-8986-24482a6ffd82", + "label": "label-5161", + "height": 487, + "background": "red" + }, + { + "key": "c936127a-5108-413b-bebd-1157b777c5ed", + "label": "label-5162", + "height": 520, + "background": "yellow" + }, + { + "key": "c5250ad7-f383-4fd7-b64e-1ab59fa93da2", + "label": "label-5163", + "height": 56, + "background": "blue" + }, + { + "key": "6077f608-bec4-4fb0-a777-ab35c6976bb2", + "label": "label-5164", + "height": 159, + "background": "green" + }, + { + "key": "a5487bef-3901-463c-a9ca-1b460a29d8cd", + "label": "label-5165", + "height": 453, + "background": "blue" + }, + { + "key": "6da872f8-3c7f-4b72-9786-290bc692ff33", + "label": "label-5166", + "height": 341, + "background": "green" + }, + { + "key": "b72cbd46-e78e-4859-be44-14d96a57375c", + "label": "label-5167", + "height": 268, + "background": "red" + }, + { + "key": "76625a1b-0d05-41fc-ad9b-d129b7589c11", + "label": "label-5168", + "height": 443, + "background": "red" + }, + { + "key": "87a515fe-8b54-4281-9179-70016f0d1b5f", + "label": "label-5169", + "height": 59, + "background": "yellow" + }, + { + "key": "0bdce4d3-5aa5-4fed-a0e1-cb56e3fcdeff", + "label": "label-5170", + "height": 489, + "background": "red" + }, + { + "key": "50416cf6-79fc-4b80-acd8-91dac1312a2b", + "label": "label-5171", + "height": 64, + "background": "red" + }, + { + "key": "129e6283-8b1d-4ca7-9edd-36d509253d44", + "label": "label-5172", + "height": 352, + "background": "green" + }, + { + "key": "2d0ad15d-7cea-4cff-a0a1-8e29e27e8701", + "label": "label-5173", + "height": 368, + "background": "blue" + }, + { + "key": "4676e0fe-3451-4f3e-b7d8-c63beba48c28", + "label": "label-5174", + "height": 123, + "background": "green" + }, + { + "key": "bd6235f6-5971-4fb4-873a-871731d48d8c", + "label": "label-5175", + "height": 110, + "background": "red" + }, + { + "key": "2f13ab17-668f-4cff-a6d3-ef2efb1636fb", + "label": "label-5176", + "height": 419, + "background": "yellow" + }, + { + "key": "9e416ec1-a529-4cfd-aaff-82aa08cdff0f", + "label": "label-5177", + "height": 201, + "background": "green" + }, + { + "key": "d7ef1bac-f88e-462d-91fe-5ff961f6f4b1", + "label": "label-5178", + "height": 459, + "background": "yellow" + }, + { + "key": "195a4a8a-0323-470e-b539-16ba4f45c015", + "label": "label-5179", + "height": 451, + "background": "yellow" + }, + { + "key": "69edd9b0-e1c6-4e40-af40-5029d00e1946", + "label": "label-5180", + "height": 362, + "background": "red" + }, + { + "key": "dd41ff93-620a-4a9c-8a23-debe4eb209e1", + "label": "label-5181", + "height": 95, + "background": "blue" + }, + { + "key": "07e3f2f1-129e-4fc7-91dd-1a0a1f7fadfe", + "label": "label-5182", + "height": 249, + "background": "green" + }, + { + "key": "cd6afb61-cb39-4b61-af7d-e73e9f8ea309", + "label": "label-5183", + "height": 178, + "background": "red" + }, + { + "key": "22eb08ff-afbd-4ec3-9643-73e566d6afa6", + "label": "label-5184", + "height": 486, + "background": "red" + }, + { + "key": "1b1132a6-8e69-4d3f-9adc-2ee125b10e3f", + "label": "label-5185", + "height": 463, + "background": "yellow" + }, + { + "key": "2e099987-bf57-4889-9eeb-ed2dbeaa76f8", + "label": "label-5186", + "height": 401, + "background": "blue" + }, + { + "key": "62fc15cc-173f-41bd-a6ba-dbb3c5bc6d8c", + "label": "label-5187", + "height": 389, + "background": "red" + }, + { + "key": "790b24dc-45c6-4c98-84b9-c391993f085c", + "label": "label-5188", + "height": 50, + "background": "red" + }, + { + "key": "f687fc98-ca11-467b-88a7-c64435d29f7d", + "label": "label-5189", + "height": 522, + "background": "red" + }, + { + "key": "13d3df83-2c24-4993-bcf2-c3fdd6a49313", + "label": "label-5190", + "height": 343, + "background": "red" + }, + { + "key": "7e4b7bd0-17c7-42e8-8b44-69153685c0ec", + "label": "label-5191", + "height": 80, + "background": "blue" + }, + { + "key": "f8c2df42-9284-4ab8-93aa-3e2fd2d1328f", + "label": "label-5192", + "height": 457, + "background": "green" + }, + { + "key": "50c7af05-4cfb-4c11-bceb-53cbb9808acb", + "label": "label-5193", + "height": 317, + "background": "green" + }, + { + "key": "befc76cd-a0ab-4bb5-8fd3-232a36aed1f8", + "label": "label-5194", + "height": 114, + "background": "blue" + }, + { + "key": "31d5649a-dd67-4de7-b83d-86681e7e0da2", + "label": "label-5195", + "height": 35, + "background": "yellow" + }, + { + "key": "039e2bca-7d49-456d-a1c3-fcb6c643c5b9", + "label": "label-5196", + "height": 88, + "background": "blue" + }, + { + "key": "15261228-0d57-4454-837f-951abdb6fc1c", + "label": "label-5197", + "height": 421, + "background": "red" + }, + { + "key": "71e3dcdf-8bbe-4689-bcd6-9aa5c3d12086", + "label": "label-5198", + "height": 187, + "background": "blue" + }, + { + "key": "d1522a5c-ff02-4d18-ae23-dd364d28a440", + "label": "label-5199", + "height": 474, + "background": "green" + }, + { + "key": "ee689b02-4b67-4cd2-b2ac-0dc1412a6697", + "label": "label-5200", + "height": 167, + "background": "green" + }, + { + "key": "ad40d932-286a-4898-8566-a7e7640424c4", + "label": "label-5201", + "height": 531, + "background": "blue" + }, + { + "key": "40acd5f3-8d98-484b-95f7-169527f0e3a3", + "label": "label-5202", + "height": 177, + "background": "blue" + }, + { + "key": "d9db35d8-1224-4c0f-ae00-4de7d6fe7b3f", + "label": "label-5203", + "height": 154, + "background": "red" + }, + { + "key": "ae109dbb-7348-4744-8b7b-e5c9d19a733d", + "label": "label-5204", + "height": 236, + "background": "green" + }, + { + "key": "b7ecb647-6ce4-44fc-9663-6df9511e79b2", + "label": "label-5205", + "height": 336, + "background": "blue" + }, + { + "key": "abb3d197-b54a-42fd-b705-13449ee78d69", + "label": "label-5206", + "height": 336, + "background": "yellow" + }, + { + "key": "a1b3b810-f394-41fd-9cb8-1339f6ac3051", + "label": "label-5207", + "height": 525, + "background": "yellow" + }, + { + "key": "93906b20-bae8-4507-a1d7-48a42cfa1b0d", + "label": "label-5208", + "height": 516, + "background": "yellow" + }, + { + "key": "ba96ef81-9121-422e-81eb-2297819bd87f", + "label": "label-5209", + "height": 529, + "background": "red" + }, + { + "key": "8ef3ac85-23f5-412c-a959-e751f957355b", + "label": "label-5210", + "height": 65, + "background": "red" + }, + { + "key": "b082c236-c28d-4500-a7f5-6b58c1e58077", + "label": "label-5211", + "height": 435, + "background": "yellow" + }, + { + "key": "ab560cc6-4f29-48db-b621-3c68a29e3b33", + "label": "label-5212", + "height": 157, + "background": "yellow" + }, + { + "key": "35f9671b-2dbe-45b0-9289-91e8b81622aa", + "label": "label-5213", + "height": 236, + "background": "yellow" + }, + { + "key": "00421043-2d5b-4f2a-8610-5eba2a0701ca", + "label": "label-5214", + "height": 106, + "background": "red" + }, + { + "key": "a6cf3e07-f025-425b-91a4-faded04ae61a", + "label": "label-5215", + "height": 351, + "background": "blue" + }, + { + "key": "8c2dee7a-000b-44a1-9bb8-94ef883aebda", + "label": "label-5216", + "height": 423, + "background": "yellow" + }, + { + "key": "fd139566-f14f-42ed-9021-282bcfe18cb1", + "label": "label-5217", + "height": 280, + "background": "green" + }, + { + "key": "7b2c689a-d0b4-4f20-8ba9-9ecc008994c9", + "label": "label-5218", + "height": 321, + "background": "green" + }, + { + "key": "1d1d1082-2d27-42bc-9f93-5d5ba84f77c9", + "label": "label-5219", + "height": 455, + "background": "yellow" + }, + { + "key": "fd3f2aa9-d857-467c-ae0f-5031473ab2aa", + "label": "label-5220", + "height": 43, + "background": "blue" + }, + { + "key": "700f5c66-a571-458c-8fb0-e572d4021e63", + "label": "label-5221", + "height": 272, + "background": "yellow" + }, + { + "key": "e5d00209-f896-4a55-8cb8-4cf3ae051293", + "label": "label-5222", + "height": 37, + "background": "yellow" + }, + { + "key": "92b2c674-dc3f-4c34-b228-6751e552d369", + "label": "label-5223", + "height": 111, + "background": "blue" + }, + { + "key": "02f213be-d799-4eb0-ab7a-d04e54c2edb7", + "label": "label-5224", + "height": 370, + "background": "red" + }, + { + "key": "5514b4b9-3af4-4a41-ad44-4d35935cdb38", + "label": "label-5225", + "height": 379, + "background": "yellow" + }, + { + "key": "5b2ff6b2-ab3f-46cd-9287-b8bacc1a8d35", + "label": "label-5226", + "height": 351, + "background": "green" + }, + { + "key": "36eca9e4-719b-4ca5-a14c-453b69f5bfe8", + "label": "label-5227", + "height": 115, + "background": "blue" + }, + { + "key": "652a4bf6-99cd-4b4c-a483-7a13fa8762a1", + "label": "label-5228", + "height": 379, + "background": "blue" + }, + { + "key": "62a0f00a-8dfb-47ae-8f3a-64732c364368", + "label": "label-5229", + "height": 338, + "background": "red" + }, + { + "key": "f4276698-5250-4798-9cea-b66ef2535706", + "label": "label-5230", + "height": 63, + "background": "green" + }, + { + "key": "ad09eeab-5796-41db-9a65-94755f92a03b", + "label": "label-5231", + "height": 230, + "background": "green" + }, + { + "key": "7ff20dd8-4b93-40ff-9050-3e275f31b91c", + "label": "label-5232", + "height": 448, + "background": "green" + }, + { + "key": "ede98ba7-e774-4a1b-8fbb-1def501c6fa1", + "label": "label-5233", + "height": 105, + "background": "blue" + }, + { + "key": "c674c442-8da2-41db-a017-9e3f8112160f", + "label": "label-5234", + "height": 265, + "background": "green" + }, + { + "key": "6e5464ed-78ae-4fb5-8916-b37c53ef45b2", + "label": "label-5235", + "height": 399, + "background": "green" + }, + { + "key": "1da1dee0-afb8-4ab4-96ba-db4061d0ca53", + "label": "label-5236", + "height": 327, + "background": "blue" + }, + { + "key": "369437fe-d427-4a5a-bc4a-15a0491456db", + "label": "label-5237", + "height": 437, + "background": "blue" + }, + { + "key": "9ee14ec8-91ee-4c46-93e4-26aa5d4db2cf", + "label": "label-5238", + "height": 185, + "background": "blue" + }, + { + "key": "8b108601-134d-4265-875d-4e3fd177fe6b", + "label": "label-5239", + "height": 131, + "background": "blue" + }, + { + "key": "9646e2c4-b009-402f-90c8-42be49db24fa", + "label": "label-5240", + "height": 87, + "background": "yellow" + }, + { + "key": "9ca5a0af-bf45-42f6-ae8c-0f648aae5875", + "label": "label-5241", + "height": 235, + "background": "red" + }, + { + "key": "7db977d2-df5d-4877-b041-76ea4f8fdd89", + "label": "label-5242", + "height": 329, + "background": "green" + }, + { + "key": "8bb5e07f-3b9d-4460-93d7-46e9eb4ed9aa", + "label": "label-5243", + "height": 498, + "background": "red" + }, + { + "key": "36e548b3-2d2d-4018-9b3f-f51571e81375", + "label": "label-5244", + "height": 300, + "background": "yellow" + }, + { + "key": "8cd9a64f-0f1d-490a-a62d-f52951a15636", + "label": "label-5245", + "height": 157, + "background": "red" + }, + { + "key": "dfb41b47-8207-4eec-8e4e-91b3513d8f79", + "label": "label-5246", + "height": 210, + "background": "blue" + }, + { + "key": "351dff9d-32a9-4341-86ca-9949bf410edc", + "label": "label-5247", + "height": 107, + "background": "green" + }, + { + "key": "dd7a9129-939f-4beb-8d14-b47eee2721c2", + "label": "label-5248", + "height": 448, + "background": "red" + }, + { + "key": "6a5ae21b-6db7-45b0-8782-fd18928fa3b1", + "label": "label-5249", + "height": 331, + "background": "yellow" + }, + { + "key": "2b00b693-3ffc-44be-9a3e-f84db04c8e85", + "label": "label-5250", + "height": 194, + "background": "green" + }, + { + "key": "b5916586-223b-4196-837a-25e3797e26ef", + "label": "label-5251", + "height": 250, + "background": "red" + }, + { + "key": "56a1d4dd-1978-48eb-9c04-8c9bb369a17c", + "label": "label-5252", + "height": 491, + "background": "yellow" + }, + { + "key": "369be1da-b968-452a-8ebb-9307c3240599", + "label": "label-5253", + "height": 480, + "background": "blue" + }, + { + "key": "c982e4c7-daf5-4f6c-891b-978b8259becf", + "label": "label-5254", + "height": 273, + "background": "yellow" + }, + { + "key": "4cee4f1e-f235-485b-8dee-e834e0eef803", + "label": "label-5255", + "height": 188, + "background": "green" + }, + { + "key": "d26c9bb9-5324-400c-af43-258eda798528", + "label": "label-5256", + "height": 223, + "background": "yellow" + }, + { + "key": "691e7724-082d-476c-a1e1-cf98dcfcc405", + "label": "label-5257", + "height": 69, + "background": "blue" + }, + { + "key": "24804c53-9ba2-4e78-9b7b-2efd420c8d6b", + "label": "label-5258", + "height": 54, + "background": "yellow" + }, + { + "key": "237d09c1-58b8-4fb5-9df8-f8f49b79c448", + "label": "label-5259", + "height": 464, + "background": "red" + }, + { + "key": "de985cd6-efbd-43d4-a0a9-c2062bbe2c6e", + "label": "label-5260", + "height": 444, + "background": "red" + }, + { + "key": "1e1e9677-847b-4349-8eb0-c1cfd4cc0b5a", + "label": "label-5261", + "height": 391, + "background": "red" + }, + { + "key": "314ce323-b633-4afa-a281-299911225e2c", + "label": "label-5262", + "height": 382, + "background": "yellow" + }, + { + "key": "9b9846b7-3292-45e1-9645-804dfbf1f12f", + "label": "label-5263", + "height": 378, + "background": "blue" + }, + { + "key": "5ed9c193-8932-4acb-a481-49535182b8eb", + "label": "label-5264", + "height": 459, + "background": "red" + }, + { + "key": "8139f6ac-7a32-4d04-9de4-6e82ce33c058", + "label": "label-5265", + "height": 262, + "background": "blue" + }, + { + "key": "8d976e65-688a-4070-83c5-fcb5ecb97870", + "label": "label-5266", + "height": 152, + "background": "blue" + }, + { + "key": "63021f11-1647-4829-be6a-ae5c211fc9fb", + "label": "label-5267", + "height": 59, + "background": "blue" + }, + { + "key": "594fb5ab-c253-412f-a13f-880fa6798881", + "label": "label-5268", + "height": 288, + "background": "yellow" + }, + { + "key": "b06a48b4-88c0-4966-8c91-432e7aca5798", + "label": "label-5269", + "height": 306, + "background": "red" + }, + { + "key": "574883d4-f1ef-4276-9c6a-40acf6c3592f", + "label": "label-5270", + "height": 304, + "background": "green" + }, + { + "key": "3321b22a-6faa-482f-b520-4f53c08bbf74", + "label": "label-5271", + "height": 529, + "background": "yellow" + }, + { + "key": "912c4c4a-0643-4d3f-b902-b723fd3b63ca", + "label": "label-5272", + "height": 501, + "background": "red" + }, + { + "key": "f944594f-72a8-42f9-843e-c992c637135b", + "label": "label-5273", + "height": 405, + "background": "red" + }, + { + "key": "31e2df7c-9f36-4223-931d-c66a7975ff5f", + "label": "label-5274", + "height": 462, + "background": "green" + }, + { + "key": "94b41d3d-81a2-4a6c-9a91-1454499cf5bc", + "label": "label-5275", + "height": 170, + "background": "red" + }, + { + "key": "c2a11bfb-5fbb-4f00-961e-345e3454de4e", + "label": "label-5276", + "height": 125, + "background": "yellow" + }, + { + "key": "a74c3ae8-b0b0-45c4-ad5c-422e48580d69", + "label": "label-5277", + "height": 100, + "background": "blue" + }, + { + "key": "a82cfced-1980-4ff7-bb71-5dfebe0eb50c", + "label": "label-5278", + "height": 514, + "background": "green" + }, + { + "key": "fbb23fe0-f53d-47c3-b171-ade5f4c75257", + "label": "label-5279", + "height": 52, + "background": "blue" + }, + { + "key": "80970578-1b2d-4e93-92da-8e8cefb096eb", + "label": "label-5280", + "height": 254, + "background": "blue" + }, + { + "key": "8ce85a52-bf24-4efc-a394-e63b1a153375", + "label": "label-5281", + "height": 247, + "background": "red" + }, + { + "key": "5fb05be4-9d90-4327-a4d8-f858b8deda8b", + "label": "label-5282", + "height": 239, + "background": "green" + }, + { + "key": "516cd304-b03a-4dc3-9c43-31cb0f0e2303", + "label": "label-5283", + "height": 82, + "background": "yellow" + }, + { + "key": "297a15d2-5ee1-46f4-b324-991e03c96c1c", + "label": "label-5284", + "height": 214, + "background": "blue" + }, + { + "key": "a6f4c441-1e15-4b9c-b4e0-364c8e89d387", + "label": "label-5285", + "height": 459, + "background": "green" + }, + { + "key": "880a28d5-2361-4e66-9e54-270bbe4cf520", + "label": "label-5286", + "height": 382, + "background": "green" + }, + { + "key": "861c6fe6-e930-4e2e-9612-fe7c5a61f4f2", + "label": "label-5287", + "height": 440, + "background": "red" + }, + { + "key": "0a4544d3-f8eb-4175-92e0-b8f35fa9018d", + "label": "label-5288", + "height": 237, + "background": "yellow" + }, + { + "key": "bbfea698-e26d-42cc-a265-9ef1cf178d7a", + "label": "label-5289", + "height": 512, + "background": "green" + }, + { + "key": "d0a28340-5a1c-46bd-9ce2-6e5ab2be09bd", + "label": "label-5290", + "height": 397, + "background": "red" + }, + { + "key": "138283b7-35f2-4989-a758-9861eb6a69cc", + "label": "label-5291", + "height": 337, + "background": "red" + }, + { + "key": "41f56dda-fcbc-4940-b1ef-2849c718e479", + "label": "label-5292", + "height": 226, + "background": "green" + }, + { + "key": "90721132-80b7-4c90-b6b7-44e8cb41f1b9", + "label": "label-5293", + "height": 444, + "background": "green" + }, + { + "key": "63448ebd-d951-4eda-894f-8f27d0de7f62", + "label": "label-5294", + "height": 134, + "background": "green" + }, + { + "key": "18bed360-48ec-46b4-8074-1832f1f694fa", + "label": "label-5295", + "height": 276, + "background": "green" + }, + { + "key": "05b8163c-187e-4057-a633-db3234d333a4", + "label": "label-5296", + "height": 530, + "background": "red" + }, + { + "key": "809e5f84-c655-4cb9-bd59-f3b4175383e7", + "label": "label-5297", + "height": 269, + "background": "yellow" + }, + { + "key": "1678cc3b-36eb-4bf2-a65c-fcee5c7c1259", + "label": "label-5298", + "height": 513, + "background": "yellow" + }, + { + "key": "8699b2b3-20e3-4855-9c7e-24d73bf536eb", + "label": "label-5299", + "height": 78, + "background": "yellow" + }, + { + "key": "ade798a7-85f8-47fd-b918-6459c8163446", + "label": "label-5300", + "height": 522, + "background": "blue" + }, + { + "key": "99ecdc47-c67d-4d23-a6b0-ccec2219c8ed", + "label": "label-5301", + "height": 305, + "background": "blue" + }, + { + "key": "95f8e345-2e59-4e2b-b3cd-d2e0f7b599d3", + "label": "label-5302", + "height": 423, + "background": "yellow" + }, + { + "key": "87b93976-c903-4632-aa86-0e3b4a06c6b6", + "label": "label-5303", + "height": 104, + "background": "yellow" + }, + { + "key": "208fd629-1b09-49c8-affc-6a153fb9ac38", + "label": "label-5304", + "height": 321, + "background": "red" + }, + { + "key": "c6f2b509-5551-44e4-8987-9bfe7583a636", + "label": "label-5305", + "height": 483, + "background": "red" + }, + { + "key": "939b00a3-5a07-462a-99a3-16482f8f444c", + "label": "label-5306", + "height": 438, + "background": "blue" + }, + { + "key": "c4a5f428-a300-4161-8e97-b7edf47bd08a", + "label": "label-5307", + "height": 190, + "background": "yellow" + }, + { + "key": "238eec00-dc09-4376-af69-4cabfa20b1a7", + "label": "label-5308", + "height": 335, + "background": "blue" + }, + { + "key": "93b9cd37-01cd-4101-b05d-6a4fd5d2183b", + "label": "label-5309", + "height": 449, + "background": "red" + }, + { + "key": "6c440331-d768-4b3e-a7d7-9192cfe978ad", + "label": "label-5310", + "height": 206, + "background": "blue" + }, + { + "key": "d43083a6-08b6-4a47-a78e-ccbc1d002a90", + "label": "label-5311", + "height": 521, + "background": "red" + }, + { + "key": "7105c7d4-c288-4d41-9fa9-29a6a8b9a189", + "label": "label-5312", + "height": 506, + "background": "blue" + }, + { + "key": "0b4ce3ef-cf46-4e83-b870-90a429a986ec", + "label": "label-5313", + "height": 374, + "background": "blue" + }, + { + "key": "a1832e85-5dcc-49fc-8b18-15f9a1079a55", + "label": "label-5314", + "height": 506, + "background": "red" + }, + { + "key": "26a4e13a-5ae2-4cb9-bf32-4f9065764d41", + "label": "label-5315", + "height": 314, + "background": "red" + }, + { + "key": "1a51d890-8f1c-406a-ba29-d5713b7c58fb", + "label": "label-5316", + "height": 184, + "background": "green" + }, + { + "key": "add3cd62-e9ae-4872-a166-30dcd717ffdf", + "label": "label-5317", + "height": 146, + "background": "yellow" + }, + { + "key": "b84c1921-764f-429f-a80a-980a5433444d", + "label": "label-5318", + "height": 149, + "background": "blue" + }, + { + "key": "3f4368fb-cbf1-460e-bd0e-5189c918b211", + "label": "label-5319", + "height": 477, + "background": "yellow" + }, + { + "key": "8b29a66e-d512-434d-a0c1-1c435c8efe06", + "label": "label-5320", + "height": 62, + "background": "blue" + }, + { + "key": "8b86bbdf-4027-48e1-baa3-9c2118cb91b9", + "label": "label-5321", + "height": 408, + "background": "yellow" + }, + { + "key": "87668c91-79d2-4e3b-9f45-f80e1f58fcfd", + "label": "label-5322", + "height": 80, + "background": "yellow" + }, + { + "key": "1e864186-30f4-4125-8203-17af778f30ac", + "label": "label-5323", + "height": 225, + "background": "yellow" + }, + { + "key": "dfe17ca3-0068-40f1-a023-5f293107b910", + "label": "label-5324", + "height": 475, + "background": "red" + }, + { + "key": "2a52cff0-69c6-40ef-8c4f-22147d2f3dcb", + "label": "label-5325", + "height": 320, + "background": "green" + }, + { + "key": "0a263191-9395-448d-a83e-fd4a48f9d672", + "label": "label-5326", + "height": 372, + "background": "yellow" + }, + { + "key": "284c2c63-404e-4c19-993f-7fcf86ba90c9", + "label": "label-5327", + "height": 283, + "background": "blue" + }, + { + "key": "05313e40-372d-4215-8a2d-8a03fab5b332", + "label": "label-5328", + "height": 458, + "background": "red" + }, + { + "key": "0b300cc0-f185-4ce6-9412-228eb45ba5c0", + "label": "label-5329", + "height": 371, + "background": "green" + }, + { + "key": "12797940-3a1f-4410-a425-3cd4710d2fb5", + "label": "label-5330", + "height": 376, + "background": "red" + }, + { + "key": "8063c2e8-e51f-48ed-bdd2-c6545ddeb914", + "label": "label-5331", + "height": 332, + "background": "blue" + }, + { + "key": "b5d3ed4d-7070-4ac8-9775-1675d2afd179", + "label": "label-5332", + "height": 39, + "background": "red" + }, + { + "key": "02ce8237-63b9-4b28-b5db-1f7380836a2e", + "label": "label-5333", + "height": 136, + "background": "red" + }, + { + "key": "51c4d387-9174-4dc7-9d4a-299f90403f48", + "label": "label-5334", + "height": 522, + "background": "green" + }, + { + "key": "fdf161a4-1db7-4dbf-94d7-7b39980b62a8", + "label": "label-5335", + "height": 181, + "background": "blue" + }, + { + "key": "344ad2fa-c429-4abf-ad67-317684a98008", + "label": "label-5336", + "height": 317, + "background": "blue" + }, + { + "key": "1fdc8784-d14f-4a1b-908c-d00496218424", + "label": "label-5337", + "height": 281, + "background": "green" + }, + { + "key": "27bedc56-ea55-4ad4-a2b6-37bd543d428b", + "label": "label-5338", + "height": 439, + "background": "yellow" + }, + { + "key": "9fbae5de-7b4c-40a2-9def-4cd75f7b1957", + "label": "label-5339", + "height": 36, + "background": "green" + }, + { + "key": "3d317c8c-75f1-4762-aed0-e0eaa86c6b1c", + "label": "label-5340", + "height": 176, + "background": "blue" + }, + { + "key": "54a8bd4e-3313-48c7-a3df-abff5902dec4", + "label": "label-5341", + "height": 526, + "background": "blue" + }, + { + "key": "d053be9e-4f21-428e-b98b-1ad7f2b0144d", + "label": "label-5342", + "height": 348, + "background": "red" + }, + { + "key": "d86c2ad7-126b-41e5-9da5-eac348dc0029", + "label": "label-5343", + "height": 88, + "background": "yellow" + }, + { + "key": "f4075ea1-360e-45d7-8b56-c824237d98be", + "label": "label-5344", + "height": 520, + "background": "blue" + }, + { + "key": "4785a940-46fb-4aeb-af40-0657415d62a3", + "label": "label-5345", + "height": 277, + "background": "red" + }, + { + "key": "d99b912b-2f68-4126-aa30-2229163befed", + "label": "label-5346", + "height": 235, + "background": "yellow" + }, + { + "key": "f07e46a2-8fd2-4dbd-a4db-b43d72c5d7cd", + "label": "label-5347", + "height": 222, + "background": "yellow" + }, + { + "key": "a65ca9cd-3993-491f-a23a-836170859f16", + "label": "label-5348", + "height": 277, + "background": "yellow" + }, + { + "key": "37ce1e8b-f790-4d6d-9785-84ae9cb8518c", + "label": "label-5349", + "height": 362, + "background": "yellow" + }, + { + "key": "74054e1b-3314-42c4-8922-7d88294b5538", + "label": "label-5350", + "height": 353, + "background": "yellow" + }, + { + "key": "413d4778-401c-4554-858c-98c58b790962", + "label": "label-5351", + "height": 80, + "background": "blue" + }, + { + "key": "984ffed5-0d34-4487-8fe7-d2ec590c570e", + "label": "label-5352", + "height": 89, + "background": "red" + }, + { + "key": "5c4cca9d-def0-406e-9bd8-efc4e7ee75f5", + "label": "label-5353", + "height": 139, + "background": "yellow" + }, + { + "key": "7fed1ce2-b633-4e8c-a1a4-7741aa02db30", + "label": "label-5354", + "height": 284, + "background": "red" + }, + { + "key": "4ae2c9a3-df30-43dd-b4de-7f4c9a5f4e11", + "label": "label-5355", + "height": 222, + "background": "yellow" + }, + { + "key": "13fce413-783d-4683-80d7-c1fe40c7a700", + "label": "label-5356", + "height": 72, + "background": "green" + }, + { + "key": "4ec630ef-916d-4a5d-84e4-354bc48cf7d3", + "label": "label-5357", + "height": 202, + "background": "blue" + }, + { + "key": "f9244184-3e7e-426f-ad3d-fbd92d511011", + "label": "label-5358", + "height": 387, + "background": "red" + }, + { + "key": "51b07c7c-c621-4bda-9f23-cb8e267918b8", + "label": "label-5359", + "height": 411, + "background": "red" + }, + { + "key": "ead2ec1f-70e9-4417-b399-c55667a08496", + "label": "label-5360", + "height": 228, + "background": "blue" + }, + { + "key": "332c0254-a7da-4c7a-bd2e-81581254ce27", + "label": "label-5361", + "height": 188, + "background": "green" + }, + { + "key": "26696d48-17fd-4265-be4d-e2cdd3422f90", + "label": "label-5362", + "height": 474, + "background": "yellow" + }, + { + "key": "8f200b3d-4134-4449-a40e-bb0ec1fb49e9", + "label": "label-5363", + "height": 119, + "background": "blue" + }, + { + "key": "08b277ff-c524-4e88-aee0-3777d2d80c23", + "label": "label-5364", + "height": 460, + "background": "yellow" + }, + { + "key": "0e90562b-dd4f-4016-bb9e-0a8c5cfb3c12", + "label": "label-5365", + "height": 299, + "background": "blue" + }, + { + "key": "96ba890b-8e30-499c-a28b-b8da87735406", + "label": "label-5366", + "height": 40, + "background": "red" + }, + { + "key": "704a5be8-b2d3-4fa1-b263-7272c7be4d3e", + "label": "label-5367", + "height": 40, + "background": "red" + }, + { + "key": "11a04081-8d67-4b22-b67b-7ac9acd6d8e2", + "label": "label-5368", + "height": 366, + "background": "yellow" + }, + { + "key": "6ac97c78-b810-4ff9-ade7-1484fe169af7", + "label": "label-5369", + "height": 353, + "background": "yellow" + }, + { + "key": "09e9f073-0886-401d-88c7-06fefb05e771", + "label": "label-5370", + "height": 192, + "background": "red" + }, + { + "key": "477a5ff0-bf16-46eb-a3c1-5d69d4b32340", + "label": "label-5371", + "height": 257, + "background": "green" + }, + { + "key": "fa122807-08df-4eb7-a0e3-b331aecda5e9", + "label": "label-5372", + "height": 308, + "background": "yellow" + }, + { + "key": "fab7b878-6c95-4101-8790-c3118b002070", + "label": "label-5373", + "height": 372, + "background": "green" + }, + { + "key": "86509bf4-256e-4cfd-8d51-ea166d98de06", + "label": "label-5374", + "height": 191, + "background": "yellow" + }, + { + "key": "f23fdca6-c900-4172-adc6-56a869382399", + "label": "label-5375", + "height": 297, + "background": "red" + }, + { + "key": "0ed88cb5-d62a-4f74-b89d-ef09289ed83b", + "label": "label-5376", + "height": 459, + "background": "blue" + }, + { + "key": "24ee186e-b12d-4a99-9bda-0606ae7cf5b6", + "label": "label-5377", + "height": 328, + "background": "blue" + }, + { + "key": "0fd7874e-d502-48c9-9f76-6223abe42808", + "label": "label-5378", + "height": 477, + "background": "blue" + }, + { + "key": "1bfd7ab0-a282-4271-accc-5c3cc5404a3a", + "label": "label-5379", + "height": 316, + "background": "yellow" + }, + { + "key": "722296c8-124f-480e-8a83-83068d291f2a", + "label": "label-5380", + "height": 84, + "background": "yellow" + }, + { + "key": "d6e53066-0241-4c9c-a364-c3e4a70e59c4", + "label": "label-5381", + "height": 197, + "background": "green" + }, + { + "key": "6d07e2c7-4515-414d-80c5-cc33c725c48e", + "label": "label-5382", + "height": 448, + "background": "red" + }, + { + "key": "f327c6aa-49c5-4581-9f08-3378699d50b6", + "label": "label-5383", + "height": 283, + "background": "green" + }, + { + "key": "7d3e61ed-3b8a-4d2e-a547-87a038e61453", + "label": "label-5384", + "height": 438, + "background": "blue" + }, + { + "key": "4d82573f-8d0d-4c71-8887-091aa08ea6ca", + "label": "label-5385", + "height": 92, + "background": "blue" + }, + { + "key": "a05e7d3e-df9f-4c84-90b6-266d5fa1fcd8", + "label": "label-5386", + "height": 84, + "background": "yellow" + }, + { + "key": "cfbd3c43-9ecf-4b8e-a348-30a3b7f05ab4", + "label": "label-5387", + "height": 346, + "background": "blue" + }, + { + "key": "e7218d73-9d1c-4118-9a4d-c0c9462f973b", + "label": "label-5388", + "height": 173, + "background": "red" + }, + { + "key": "3a88b3be-5f9f-48a8-909f-e157b00c49ea", + "label": "label-5389", + "height": 348, + "background": "green" + }, + { + "key": "01de0657-427d-4bb6-ad67-2e32aa501ddb", + "label": "label-5390", + "height": 134, + "background": "blue" + }, + { + "key": "f4291398-b681-4624-855b-5c2259071523", + "label": "label-5391", + "height": 185, + "background": "yellow" + }, + { + "key": "aa72f6b0-976f-4571-9b39-04c8edf520b9", + "label": "label-5392", + "height": 228, + "background": "green" + }, + { + "key": "b1af682a-630a-4ac5-9ebe-6150270c8607", + "label": "label-5393", + "height": 466, + "background": "blue" + }, + { + "key": "bc4017a6-5d8b-426b-b16c-f7cbdf521d3f", + "label": "label-5394", + "height": 213, + "background": "red" + }, + { + "key": "1d4345fe-fcde-4e47-8529-5cf473a9c523", + "label": "label-5395", + "height": 174, + "background": "blue" + }, + { + "key": "c4c4ee75-f369-40ca-8e3c-33359e70e2c5", + "label": "label-5396", + "height": 335, + "background": "green" + }, + { + "key": "3c355d4f-f3c2-4ad7-9452-d54827281a6e", + "label": "label-5397", + "height": 33, + "background": "blue" + }, + { + "key": "1acc2497-c87e-4b4d-85d4-9470e69da6d7", + "label": "label-5398", + "height": 444, + "background": "blue" + }, + { + "key": "7b9da891-4152-4933-bcd4-d31629825ecb", + "label": "label-5399", + "height": 473, + "background": "red" + }, + { + "key": "5d9001e7-24de-4a2a-be6e-a8f7b9b7ddf8", + "label": "label-5400", + "height": 70, + "background": "red" + }, + { + "key": "4aeb954e-23df-40a3-88ec-a2990c866eee", + "label": "label-5401", + "height": 196, + "background": "yellow" + }, + { + "key": "359a608f-2fae-4e45-8c17-354b12554198", + "label": "label-5402", + "height": 315, + "background": "red" + }, + { + "key": "a4d743f8-273f-4a98-a90b-2dd07106ec29", + "label": "label-5403", + "height": 390, + "background": "red" + }, + { + "key": "f42c5d77-6cad-4258-9205-722cee5627dd", + "label": "label-5404", + "height": 340, + "background": "yellow" + }, + { + "key": "139e1538-9857-455a-a6ec-b7c4f9e61a4e", + "label": "label-5405", + "height": 241, + "background": "red" + }, + { + "key": "87a49091-f323-48bb-b92e-02ea182be512", + "label": "label-5406", + "height": 378, + "background": "green" + }, + { + "key": "8215378d-5bcd-4c80-99d0-0f5fcdb01f46", + "label": "label-5407", + "height": 203, + "background": "blue" + }, + { + "key": "ca1a5852-6978-4c28-8204-dbf42b7b6170", + "label": "label-5408", + "height": 158, + "background": "green" + }, + { + "key": "42eb11f1-d872-4003-8478-11307f710b89", + "label": "label-5409", + "height": 507, + "background": "yellow" + }, + { + "key": "6242deef-8128-4579-8323-b80f513661c0", + "label": "label-5410", + "height": 315, + "background": "yellow" + }, + { + "key": "250940e5-a06b-4760-b8b0-8b5742bdf6ed", + "label": "label-5411", + "height": 215, + "background": "yellow" + }, + { + "key": "6ea16271-8b5a-464a-8079-fce05a350b44", + "label": "label-5412", + "height": 105, + "background": "yellow" + }, + { + "key": "fca13ba5-df0c-4ffd-9361-060b2531ab00", + "label": "label-5413", + "height": 402, + "background": "yellow" + }, + { + "key": "f73ce2c8-4829-4d2a-b972-58c25bdfb412", + "label": "label-5414", + "height": 49, + "background": "red" + }, + { + "key": "2ac84376-b8ab-401d-9149-b62ba9fbcd8b", + "label": "label-5415", + "height": 485, + "background": "yellow" + }, + { + "key": "ddd89255-3196-4c38-b4cc-3be8760947ab", + "label": "label-5416", + "height": 143, + "background": "yellow" + }, + { + "key": "9ae1bac5-9f77-4f20-bae6-186591de18f5", + "label": "label-5417", + "height": 63, + "background": "green" + }, + { + "key": "774ca122-8a6d-4277-9ffe-70ba334bef1c", + "label": "label-5418", + "height": 72, + "background": "yellow" + }, + { + "key": "d86e4081-b638-42c3-b39f-9b379e20ba0b", + "label": "label-5419", + "height": 269, + "background": "red" + }, + { + "key": "6f52fdfe-eb59-4b9c-a6cd-c0b4823f0ad7", + "label": "label-5420", + "height": 244, + "background": "green" + }, + { + "key": "c3c2d080-ad64-4ed7-bb8f-dd462f3b4ad5", + "label": "label-5421", + "height": 195, + "background": "red" + }, + { + "key": "2aa6aae5-11e9-479e-bad5-efb0c5013c99", + "label": "label-5422", + "height": 525, + "background": "blue" + }, + { + "key": "24cef6ef-c553-4b68-ab07-9de9cb388695", + "label": "label-5423", + "height": 37, + "background": "yellow" + }, + { + "key": "62342c24-88f9-46a0-b721-6e06c8992f56", + "label": "label-5424", + "height": 126, + "background": "green" + }, + { + "key": "c1636af5-0f99-474b-b200-aa576889e0c4", + "label": "label-5425", + "height": 377, + "background": "red" + }, + { + "key": "9eee9833-bd50-4a9b-9681-e809a289e19b", + "label": "label-5426", + "height": 387, + "background": "yellow" + }, + { + "key": "9c9cbaee-9910-41b1-a479-181d8b4efe0e", + "label": "label-5427", + "height": 187, + "background": "blue" + }, + { + "key": "22b0d205-47f8-42ae-8720-049526cb1538", + "label": "label-5428", + "height": 365, + "background": "yellow" + }, + { + "key": "18b6a30b-4ba0-4529-8978-a3ad304739e6", + "label": "label-5429", + "height": 164, + "background": "yellow" + }, + { + "key": "8df2b212-a22d-453e-b667-dc57cbf02676", + "label": "label-5430", + "height": 173, + "background": "yellow" + }, + { + "key": "cb556eb5-b170-4608-872e-68b81c35fcec", + "label": "label-5431", + "height": 132, + "background": "red" + }, + { + "key": "cd580788-c2b0-4c5a-a3a0-65c4ea7b06e0", + "label": "label-5432", + "height": 310, + "background": "green" + }, + { + "key": "2d204459-1a30-41d0-8be8-68d15e8b8178", + "label": "label-5433", + "height": 362, + "background": "red" + }, + { + "key": "667479ce-3745-43d4-918c-2d230de9d338", + "label": "label-5434", + "height": 384, + "background": "yellow" + }, + { + "key": "d55455bc-a9d5-49fd-b92e-636c8a8875f4", + "label": "label-5435", + "height": 417, + "background": "yellow" + }, + { + "key": "5980a695-cbeb-4c7d-a737-4c9b58494f3b", + "label": "label-5436", + "height": 210, + "background": "blue" + }, + { + "key": "e7f065a6-edb7-4353-8d4c-6e7ea56945c0", + "label": "label-5437", + "height": 516, + "background": "yellow" + }, + { + "key": "40bc9881-416f-4930-ad97-e51cea1d3b4e", + "label": "label-5438", + "height": 155, + "background": "yellow" + }, + { + "key": "c468aad3-cbbe-4a89-87dd-616d18e14f33", + "label": "label-5439", + "height": 189, + "background": "red" + }, + { + "key": "4a872d0a-443b-4072-836e-f22064989a6e", + "label": "label-5440", + "height": 233, + "background": "green" + }, + { + "key": "16cb1ded-b4de-455f-bcab-36f8bfcf3355", + "label": "label-5441", + "height": 371, + "background": "blue" + }, + { + "key": "17cc3835-c4f0-4422-936c-1f07d0d2e263", + "label": "label-5442", + "height": 527, + "background": "blue" + }, + { + "key": "0212bb5a-c98f-4b8c-93bd-3a2915afb7b5", + "label": "label-5443", + "height": 469, + "background": "blue" + }, + { + "key": "84ac21db-c0e4-41b2-8599-2aa6f90f1aa1", + "label": "label-5444", + "height": 287, + "background": "yellow" + }, + { + "key": "64624d2e-0dd4-4d51-b289-49d57acd0f35", + "label": "label-5445", + "height": 378, + "background": "green" + }, + { + "key": "50d1998d-fee8-4e68-aa12-75c174ad6227", + "label": "label-5446", + "height": 457, + "background": "yellow" + }, + { + "key": "2f89e395-0488-47cb-b802-430702459b6c", + "label": "label-5447", + "height": 278, + "background": "yellow" + }, + { + "key": "5a15580d-5d37-4281-a91c-3b19d4a114fe", + "label": "label-5448", + "height": 361, + "background": "yellow" + }, + { + "key": "fbd6a943-2437-476c-8ca3-0a49f0564af1", + "label": "label-5449", + "height": 410, + "background": "green" + }, + { + "key": "1979c357-94ee-4b71-8d73-4f45baf66c43", + "label": "label-5450", + "height": 526, + "background": "green" + }, + { + "key": "f3486636-d484-4df2-993c-725837a8f03b", + "label": "label-5451", + "height": 283, + "background": "yellow" + }, + { + "key": "29d87325-6526-4910-9864-688fa9a9cd4f", + "label": "label-5452", + "height": 499, + "background": "red" + }, + { + "key": "4745fc9d-5e2d-441d-89ad-296b7fe0cca0", + "label": "label-5453", + "height": 206, + "background": "blue" + }, + { + "key": "788a6bc8-e328-4214-b72d-afa5f2f38a26", + "label": "label-5454", + "height": 511, + "background": "green" + }, + { + "key": "337ec070-b058-43fc-9495-dde24703b2d8", + "label": "label-5455", + "height": 520, + "background": "blue" + }, + { + "key": "58996b06-b2d8-46fa-a018-58fe81750b42", + "label": "label-5456", + "height": 206, + "background": "red" + }, + { + "key": "f950f468-be4f-4c6e-bb52-72e6d16c2076", + "label": "label-5457", + "height": 248, + "background": "yellow" + }, + { + "key": "87934f8f-fca8-4c9a-9050-9cb14ad90064", + "label": "label-5458", + "height": 289, + "background": "blue" + }, + { + "key": "8b992725-d8d9-4f9d-8b3b-bc150b81f818", + "label": "label-5459", + "height": 356, + "background": "red" + }, + { + "key": "343c39db-8b05-4b93-a4ef-cd283f55aba0", + "label": "label-5460", + "height": 525, + "background": "green" + }, + { + "key": "4a7456c7-b662-4345-b54f-b4c433719ede", + "label": "label-5461", + "height": 61, + "background": "green" + }, + { + "key": "3a153962-fa40-4898-9360-f329132c7670", + "label": "label-5462", + "height": 74, + "background": "red" + }, + { + "key": "b5d62857-6867-47a6-a953-af56e69bd2c3", + "label": "label-5463", + "height": 222, + "background": "red" + }, + { + "key": "c4cbacc2-f913-4530-bbb7-c88f4321fc1f", + "label": "label-5464", + "height": 418, + "background": "green" + }, + { + "key": "3709787b-9e33-4d02-8afb-696cb6c60be7", + "label": "label-5465", + "height": 376, + "background": "yellow" + }, + { + "key": "c566d528-7863-466c-a209-fadf0a239cab", + "label": "label-5466", + "height": 489, + "background": "green" + }, + { + "key": "3d8252d9-d3ea-4996-bc6d-63d7453ce121", + "label": "label-5467", + "height": 228, + "background": "yellow" + }, + { + "key": "0f62e32b-a1f5-44e9-b1d5-1dcfa4a3d0b5", + "label": "label-5468", + "height": 283, + "background": "yellow" + }, + { + "key": "6b1334fa-047b-4dce-8f10-e7baf8eaf269", + "label": "label-5469", + "height": 410, + "background": "green" + }, + { + "key": "530d3761-0706-4c19-9514-e2756b252395", + "label": "label-5470", + "height": 297, + "background": "red" + }, + { + "key": "637acbf9-1eb2-4853-8e21-6db942f4e8b1", + "label": "label-5471", + "height": 429, + "background": "blue" + }, + { + "key": "3e9bf36b-5399-440a-b75c-3ec9c850eb77", + "label": "label-5472", + "height": 312, + "background": "blue" + }, + { + "key": "c421bfca-697b-4845-8742-52b8734b229c", + "label": "label-5473", + "height": 310, + "background": "red" + }, + { + "key": "e9a09358-2980-4604-b6a4-ba2ff0ae93ae", + "label": "label-5474", + "height": 459, + "background": "yellow" + }, + { + "key": "ef3a5707-7c7b-430a-b2e2-67a2d23de064", + "label": "label-5475", + "height": 322, + "background": "yellow" + }, + { + "key": "af1aa2bb-7f35-44c7-8bc1-6c48944b5dc0", + "label": "label-5476", + "height": 271, + "background": "green" + }, + { + "key": "c0c951f8-8f0b-4448-8e95-f8b3ea150dc1", + "label": "label-5477", + "height": 109, + "background": "green" + }, + { + "key": "2729222c-9ebd-4384-b771-743fa018ada0", + "label": "label-5478", + "height": 144, + "background": "blue" + }, + { + "key": "ac1ca49f-7a2d-4b4e-aee9-03111f469ff0", + "label": "label-5479", + "height": 357, + "background": "red" + }, + { + "key": "4783ef43-f54d-4913-811a-72263846b5f0", + "label": "label-5480", + "height": 171, + "background": "red" + }, + { + "key": "316b8bb5-557f-43a2-bd78-70ab98c1160a", + "label": "label-5481", + "height": 168, + "background": "yellow" + }, + { + "key": "25c85444-ffd6-4a97-bc1d-0a293e13e98b", + "label": "label-5482", + "height": 432, + "background": "blue" + }, + { + "key": "7b8049a1-04aa-4426-95b8-eb01d9694223", + "label": "label-5483", + "height": 324, + "background": "green" + }, + { + "key": "126d44c4-2ede-4246-89ee-ac21b15d629a", + "label": "label-5484", + "height": 174, + "background": "yellow" + }, + { + "key": "d8d1635f-b34d-4ad2-9447-f1007b9e31e4", + "label": "label-5485", + "height": 66, + "background": "green" + }, + { + "key": "7e244762-e03b-44d3-99fa-7f85369a873d", + "label": "label-5486", + "height": 419, + "background": "blue" + }, + { + "key": "593728b4-9661-40d1-95a0-b805aaadc620", + "label": "label-5487", + "height": 32, + "background": "red" + }, + { + "key": "98306eae-1140-4dcb-81e7-4936863eaabb", + "label": "label-5488", + "height": 114, + "background": "green" + }, + { + "key": "77514d7a-3fb6-4b31-a1ba-d42ea8961ff6", + "label": "label-5489", + "height": 134, + "background": "green" + }, + { + "key": "a37d5e88-39b6-437f-a72b-52e8acdf38bf", + "label": "label-5490", + "height": 189, + "background": "green" + }, + { + "key": "017e3f55-eff7-4e54-a0f9-9aaf72abaf3e", + "label": "label-5491", + "height": 104, + "background": "red" + }, + { + "key": "c2968672-4100-4c8e-b980-af3e461cf093", + "label": "label-5492", + "height": 192, + "background": "red" + }, + { + "key": "4c612fb2-397a-41c7-a5a9-b3c6b2d7ca0e", + "label": "label-5493", + "height": 263, + "background": "green" + }, + { + "key": "8648d7e4-913b-4c09-b792-b2e827d5711e", + "label": "label-5494", + "height": 48, + "background": "yellow" + }, + { + "key": "827b82d4-66f7-4ce8-b8c7-3653b6ffc2db", + "label": "label-5495", + "height": 301, + "background": "green" + }, + { + "key": "d5783946-0336-4fd7-afb6-357679edc9fb", + "label": "label-5496", + "height": 499, + "background": "blue" + }, + { + "key": "55df7325-82d1-4dfe-93d6-d7b7ade8161a", + "label": "label-5497", + "height": 120, + "background": "green" + }, + { + "key": "0c8d569f-883f-4053-bfb2-eb2dd58a6680", + "label": "label-5498", + "height": 426, + "background": "yellow" + }, + { + "key": "8fd373c1-7bad-4426-8653-2604a9828292", + "label": "label-5499", + "height": 129, + "background": "green" + }, + { + "key": "2cad66e4-a1ef-456b-a490-170110ba1d65", + "label": "label-5500", + "height": 241, + "background": "yellow" + }, + { + "key": "30cdf330-bf3e-4280-8f3e-3c98a9716439", + "label": "label-5501", + "height": 509, + "background": "red" + }, + { + "key": "129e58a4-bee2-4050-83ce-f592be279b9c", + "label": "label-5502", + "height": 419, + "background": "green" + }, + { + "key": "151f492d-6388-44aa-a413-b5c1b56d3a7b", + "label": "label-5503", + "height": 240, + "background": "blue" + }, + { + "key": "a5f77366-36dc-47d1-8f02-87fda5238481", + "label": "label-5504", + "height": 49, + "background": "green" + }, + { + "key": "e5ed4d2c-7846-4417-9f67-7cd35009e735", + "label": "label-5505", + "height": 253, + "background": "green" + }, + { + "key": "404eb67d-6b6c-4914-afd2-a96e08fcdd32", + "label": "label-5506", + "height": 349, + "background": "yellow" + }, + { + "key": "99d64607-5fc6-4085-98d7-7af915ab173e", + "label": "label-5507", + "height": 78, + "background": "green" + }, + { + "key": "9646a888-974b-484f-b3d7-0b47dfd7257b", + "label": "label-5508", + "height": 86, + "background": "green" + }, + { + "key": "6f08fe16-b040-4c3c-aa67-bc16c43020a6", + "label": "label-5509", + "height": 263, + "background": "blue" + }, + { + "key": "7f7d299a-65ee-4574-ac31-61473767d214", + "label": "label-5510", + "height": 524, + "background": "red" + }, + { + "key": "28cbf630-b444-4b08-bda5-66911e7b2e0b", + "label": "label-5511", + "height": 221, + "background": "blue" + }, + { + "key": "ac72d163-9fff-44f9-a0a9-3a0c01d38aef", + "label": "label-5512", + "height": 494, + "background": "blue" + }, + { + "key": "e4252681-83a4-4e41-bb6d-4f7795095009", + "label": "label-5513", + "height": 467, + "background": "yellow" + }, + { + "key": "83385c12-a5d6-4075-ba4f-adee2f7932ef", + "label": "label-5514", + "height": 186, + "background": "green" + }, + { + "key": "0121b602-c247-493e-9195-cf75683b5bdd", + "label": "label-5515", + "height": 43, + "background": "yellow" + }, + { + "key": "8718d64f-9a5d-4f97-bfe0-6caa2f9777de", + "label": "label-5516", + "height": 347, + "background": "red" + }, + { + "key": "5ca9fe17-5d5e-4ae7-a593-776b966c6fb7", + "label": "label-5517", + "height": 439, + "background": "blue" + }, + { + "key": "b4fc24a8-79e7-4b14-bee4-03af561ddb69", + "label": "label-5518", + "height": 462, + "background": "green" + }, + { + "key": "8b2b942c-80af-4e83-b9c7-100c24de461a", + "label": "label-5519", + "height": 88, + "background": "red" + }, + { + "key": "7182f7ea-fa5c-4278-861c-1430a340fbcf", + "label": "label-5520", + "height": 439, + "background": "yellow" + }, + { + "key": "6dc585f2-9f88-4280-8c10-faf2b1891d86", + "label": "label-5521", + "height": 408, + "background": "green" + }, + { + "key": "91d4d022-ce6f-4740-9298-0f2965fd6d7a", + "label": "label-5522", + "height": 270, + "background": "green" + }, + { + "key": "32a2cee7-3d4b-4234-afff-6b9221bd350a", + "label": "label-5523", + "height": 138, + "background": "green" + }, + { + "key": "6704f37f-5dcc-492f-b90b-c430444f2797", + "label": "label-5524", + "height": 353, + "background": "yellow" + }, + { + "key": "aa702dd4-0a5c-4387-ac2b-30e6967714a9", + "label": "label-5525", + "height": 157, + "background": "yellow" + }, + { + "key": "2160417f-5bcb-4e90-9850-6348e7b341b8", + "label": "label-5526", + "height": 384, + "background": "red" + }, + { + "key": "cb319661-95e7-4922-9c27-079b54b48a1e", + "label": "label-5527", + "height": 295, + "background": "red" + }, + { + "key": "cd8cec50-5645-4aa8-95bd-edf9d64a94f9", + "label": "label-5528", + "height": 219, + "background": "green" + }, + { + "key": "8eccc2c5-41fd-4947-960d-a0538b5292ef", + "label": "label-5529", + "height": 175, + "background": "green" + }, + { + "key": "3b816d7c-a599-4e91-9734-b61619492cef", + "label": "label-5530", + "height": 473, + "background": "red" + }, + { + "key": "87016663-3787-4c2b-bf75-efaff945a8fb", + "label": "label-5531", + "height": 517, + "background": "red" + }, + { + "key": "1e8331a0-2909-4ada-a675-11f8c78f868c", + "label": "label-5532", + "height": 63, + "background": "yellow" + }, + { + "key": "d9a0b674-0139-4f60-b5e5-696f436bd248", + "label": "label-5533", + "height": 360, + "background": "red" + }, + { + "key": "8cb5b3ac-d441-43dd-8eef-5a80c897e870", + "label": "label-5534", + "height": 479, + "background": "red" + }, + { + "key": "684167db-6d87-4f66-aa92-f68aa7901c16", + "label": "label-5535", + "height": 90, + "background": "blue" + }, + { + "key": "9b8a2ef9-2f8d-4934-a07a-04fd638274e6", + "label": "label-5536", + "height": 278, + "background": "red" + }, + { + "key": "8ca0983d-99db-4ff9-a25f-fc3e1e9aea5d", + "label": "label-5537", + "height": 264, + "background": "red" + }, + { + "key": "e402ff94-f0ac-4e1f-bd8f-9484ff9b20e2", + "label": "label-5538", + "height": 263, + "background": "yellow" + }, + { + "key": "341d4453-7a45-413d-9025-aa09d2c183a0", + "label": "label-5539", + "height": 415, + "background": "blue" + }, + { + "key": "7e4dee5e-cb05-4deb-9f1c-ac57f1a94b68", + "label": "label-5540", + "height": 301, + "background": "yellow" + }, + { + "key": "a8252752-afc3-4630-9732-e935804f8db1", + "label": "label-5541", + "height": 147, + "background": "blue" + }, + { + "key": "a6c2bacc-fc81-438c-ba4a-a930ce22f30b", + "label": "label-5542", + "height": 419, + "background": "blue" + }, + { + "key": "626aa759-4945-4f50-a21f-2d7711311937", + "label": "label-5543", + "height": 72, + "background": "yellow" + }, + { + "key": "71e99293-e732-424a-ac37-6c69d479c74b", + "label": "label-5544", + "height": 341, + "background": "blue" + }, + { + "key": "7bccff69-b0ee-4c08-8504-3470afd6976a", + "label": "label-5545", + "height": 86, + "background": "yellow" + }, + { + "key": "d14cddd1-7825-4b85-afe8-d45cfd0e56d6", + "label": "label-5546", + "height": 117, + "background": "yellow" + }, + { + "key": "97482ec6-9428-4f23-8a91-731acad6cbae", + "label": "label-5547", + "height": 166, + "background": "green" + }, + { + "key": "1842750c-f19e-4678-b07f-f9ef0964f884", + "label": "label-5548", + "height": 250, + "background": "green" + }, + { + "key": "8785a35f-14d9-4866-8451-459b3a3a5bab", + "label": "label-5549", + "height": 125, + "background": "yellow" + }, + { + "key": "1592ce24-95d3-4312-984c-9dcfe8aa5b6c", + "label": "label-5550", + "height": 232, + "background": "yellow" + }, + { + "key": "e019c8f4-43aa-4d3b-911e-925caed6f780", + "label": "label-5551", + "height": 241, + "background": "green" + }, + { + "key": "e1348672-6e48-4b76-978a-ffff3c4b2657", + "label": "label-5552", + "height": 190, + "background": "red" + }, + { + "key": "e07373a3-e5d4-4262-9046-560d916e937f", + "label": "label-5553", + "height": 391, + "background": "blue" + }, + { + "key": "0fff7d53-6a4d-4482-b86d-e99438abd98a", + "label": "label-5554", + "height": 320, + "background": "yellow" + }, + { + "key": "5b7a8925-c393-4b4c-83c0-98cbb618c495", + "label": "label-5555", + "height": 165, + "background": "green" + }, + { + "key": "7f2dace1-0e1c-4a7e-ae71-841cb9a89d1f", + "label": "label-5556", + "height": 351, + "background": "yellow" + }, + { + "key": "7ac7ed38-9f63-4189-b41d-a85ff6eb1c43", + "label": "label-5557", + "height": 253, + "background": "yellow" + }, + { + "key": "138be719-8040-4d08-b250-824623878080", + "label": "label-5558", + "height": 344, + "background": "blue" + }, + { + "key": "eb8bf953-1b72-43fc-8514-2f4cd930f78c", + "label": "label-5559", + "height": 136, + "background": "red" + }, + { + "key": "a5e4ff85-bd02-4359-b9c1-a1e75bf980d4", + "label": "label-5560", + "height": 50, + "background": "yellow" + }, + { + "key": "a988b38f-b91c-4d10-8c88-32e15019db88", + "label": "label-5561", + "height": 121, + "background": "yellow" + }, + { + "key": "d238e825-fa13-4bcd-b0dc-acf0aa74b4e7", + "label": "label-5562", + "height": 204, + "background": "red" + }, + { + "key": "ba3e725c-c1a1-498a-bbfe-8e2f9a1f2762", + "label": "label-5563", + "height": 173, + "background": "blue" + }, + { + "key": "d076a158-9749-49dc-913d-cd2cabe47102", + "label": "label-5564", + "height": 36, + "background": "green" + }, + { + "key": "54e0af13-5427-4c46-a1d0-607746029cf8", + "label": "label-5565", + "height": 106, + "background": "green" + }, + { + "key": "3f930d0f-99b5-4189-98d9-1bc266bfa25c", + "label": "label-5566", + "height": 367, + "background": "red" + }, + { + "key": "e898139f-651d-4410-8d81-1302cfcede73", + "label": "label-5567", + "height": 376, + "background": "red" + }, + { + "key": "ea730010-818d-4c05-85c4-bfd27206f2b1", + "label": "label-5568", + "height": 116, + "background": "green" + }, + { + "key": "023dc137-9124-4b93-bade-c9038419705a", + "label": "label-5569", + "height": 453, + "background": "green" + }, + { + "key": "b0145a18-1c08-4a0d-8a5c-9713cb24e838", + "label": "label-5570", + "height": 303, + "background": "green" + }, + { + "key": "52f78aab-4362-4f05-95ce-1b71dcc13dbb", + "label": "label-5571", + "height": 185, + "background": "red" + }, + { + "key": "13afbbc1-5d24-4071-88bd-33a801f7b359", + "label": "label-5572", + "height": 290, + "background": "red" + }, + { + "key": "2598fb68-d295-4893-8e7d-c2c0f004bc28", + "label": "label-5573", + "height": 484, + "background": "yellow" + }, + { + "key": "114fee97-9c04-4643-a68d-1ba50143e69d", + "label": "label-5574", + "height": 66, + "background": "yellow" + }, + { + "key": "0da0d036-0713-4eb5-b1c5-be2c0eeff6ee", + "label": "label-5575", + "height": 113, + "background": "blue" + }, + { + "key": "afdfb326-054e-4eb0-935b-0ee153404edf", + "label": "label-5576", + "height": 153, + "background": "blue" + }, + { + "key": "2f537ee7-8f59-49e7-83d6-c19bb19a4893", + "label": "label-5577", + "height": 295, + "background": "blue" + }, + { + "key": "b40a2694-6345-428f-a406-891e2f5c1a79", + "label": "label-5578", + "height": 386, + "background": "yellow" + }, + { + "key": "7a122a7c-f3bc-4964-b325-c341f24e0dfc", + "label": "label-5579", + "height": 451, + "background": "blue" + }, + { + "key": "76cc6f79-3f06-4639-834e-d745b1cf85eb", + "label": "label-5580", + "height": 320, + "background": "green" + }, + { + "key": "3d98bda4-4aff-4637-92b0-342cb002b63d", + "label": "label-5581", + "height": 435, + "background": "yellow" + }, + { + "key": "6b31b037-0df3-4853-a13b-8e9c6cb63486", + "label": "label-5582", + "height": 367, + "background": "red" + }, + { + "key": "77153d6a-c797-4fd1-9e36-5851525f5c1a", + "label": "label-5583", + "height": 409, + "background": "yellow" + }, + { + "key": "26d04ff9-448b-4684-9a78-2480711b3506", + "label": "label-5584", + "height": 82, + "background": "green" + }, + { + "key": "80ab9a55-36e2-496a-a47b-5508517e1499", + "label": "label-5585", + "height": 510, + "background": "red" + }, + { + "key": "1e258c1b-5100-4db5-a736-c13cf5679b4a", + "label": "label-5586", + "height": 133, + "background": "red" + }, + { + "key": "463eab7d-308c-4f5e-a96a-560609e4fb05", + "label": "label-5587", + "height": 390, + "background": "red" + }, + { + "key": "ddcb049a-7b56-4ffc-8c48-54c3d15e0696", + "label": "label-5588", + "height": 496, + "background": "blue" + }, + { + "key": "9a007fa4-b24f-4a98-9800-c078d0fec29a", + "label": "label-5589", + "height": 243, + "background": "red" + }, + { + "key": "0b138a3a-cede-4391-8ee8-3747fe89665c", + "label": "label-5590", + "height": 455, + "background": "red" + }, + { + "key": "37afdaea-149b-4b35-814f-650f929008c3", + "label": "label-5591", + "height": 318, + "background": "green" + }, + { + "key": "fb785428-8a4c-41c2-ab96-113487fbfcdc", + "label": "label-5592", + "height": 297, + "background": "green" + }, + { + "key": "e0e30332-5dba-4abd-a6d0-4011f7edab27", + "label": "label-5593", + "height": 326, + "background": "green" + }, + { + "key": "17dc765e-ba9c-4cdc-a2b1-4972069c8e53", + "label": "label-5594", + "height": 344, + "background": "blue" + }, + { + "key": "eb62a34c-f2ff-4414-8126-96311e9c98cf", + "label": "label-5595", + "height": 382, + "background": "green" + }, + { + "key": "28d5dd4f-cfdf-4b7b-bf5c-8f71d212b258", + "label": "label-5596", + "height": 242, + "background": "yellow" + }, + { + "key": "bf6bfa0e-ed3b-418a-ad9c-a72d7f974957", + "label": "label-5597", + "height": 403, + "background": "blue" + }, + { + "key": "5190d76f-e408-4ec7-9e7f-56c88197a7ba", + "label": "label-5598", + "height": 397, + "background": "yellow" + }, + { + "key": "d2e12113-c758-4146-be9d-022995321ddc", + "label": "label-5599", + "height": 167, + "background": "yellow" + }, + { + "key": "ca06e6c6-d64d-4dc8-b1c2-6726b39da56c", + "label": "label-5600", + "height": 77, + "background": "green" + }, + { + "key": "93ee1919-4088-4de8-80be-25bc4d85e8dd", + "label": "label-5601", + "height": 261, + "background": "yellow" + }, + { + "key": "a626e235-5aca-47f1-96cf-241d47b88c85", + "label": "label-5602", + "height": 271, + "background": "blue" + }, + { + "key": "1f799d85-5dc0-4168-b5bc-931d523785d9", + "label": "label-5603", + "height": 36, + "background": "red" + }, + { + "key": "5c11c204-3451-4113-a527-59cd8ff57bee", + "label": "label-5604", + "height": 215, + "background": "yellow" + }, + { + "key": "3ed19c2b-8373-4eca-bf60-ff05dff029d9", + "label": "label-5605", + "height": 309, + "background": "yellow" + }, + { + "key": "40db9e73-511a-439a-97be-6de7464ebe79", + "label": "label-5606", + "height": 115, + "background": "blue" + }, + { + "key": "34f089fb-c820-4c02-8dae-5cc262e1f318", + "label": "label-5607", + "height": 250, + "background": "red" + }, + { + "key": "650ef72c-8c57-4df4-8a4a-d951822c3819", + "label": "label-5608", + "height": 108, + "background": "blue" + }, + { + "key": "d3e33128-b7ad-4a19-a7b5-3eae874870b8", + "label": "label-5609", + "height": 147, + "background": "blue" + }, + { + "key": "c7c1d0af-48ba-49c6-9345-7a44357e16c0", + "label": "label-5610", + "height": 516, + "background": "yellow" + }, + { + "key": "d633b986-4407-4c4b-835b-2daa41732ab1", + "label": "label-5611", + "height": 154, + "background": "green" + }, + { + "key": "14da7e98-86c2-41ab-85b0-b5d399e7097c", + "label": "label-5612", + "height": 445, + "background": "yellow" + }, + { + "key": "a8188ffc-a0aa-42a2-9de3-7aaccb8eb94a", + "label": "label-5613", + "height": 78, + "background": "green" + }, + { + "key": "f95cbd23-0921-4e62-8d71-8c42c52e9b3b", + "label": "label-5614", + "height": 188, + "background": "red" + }, + { + "key": "83905593-c3be-4521-9187-291080b0895b", + "label": "label-5615", + "height": 499, + "background": "yellow" + }, + { + "key": "090aa8f1-8ca9-49b9-aa5c-faa72f2e7ebf", + "label": "label-5616", + "height": 303, + "background": "blue" + }, + { + "key": "abacbeed-919f-4802-8b65-758964b13b0c", + "label": "label-5617", + "height": 356, + "background": "yellow" + }, + { + "key": "f87959fb-fbc6-4695-8851-2df5f1b0082c", + "label": "label-5618", + "height": 444, + "background": "red" + }, + { + "key": "b8e97d97-dcbe-427b-bc95-4600fdc3ba67", + "label": "label-5619", + "height": 461, + "background": "yellow" + }, + { + "key": "01715d99-3dd0-43f5-94a4-3bd302828dc4", + "label": "label-5620", + "height": 214, + "background": "red" + }, + { + "key": "89976eaa-226d-4793-82fb-e50a38b38375", + "label": "label-5621", + "height": 383, + "background": "red" + }, + { + "key": "dabf78aa-d655-420e-beff-0b4947f4ce02", + "label": "label-5622", + "height": 184, + "background": "green" + }, + { + "key": "f1abbc29-f153-44d7-b1c6-85cd203d5199", + "label": "label-5623", + "height": 37, + "background": "green" + }, + { + "key": "8621c589-d642-4445-9db7-112fda8858c4", + "label": "label-5624", + "height": 467, + "background": "red" + }, + { + "key": "85776da3-cdad-4ebe-897b-a612b86dc822", + "label": "label-5625", + "height": 112, + "background": "blue" + }, + { + "key": "5f2a2334-1f33-4b2b-bebf-44075cea729e", + "label": "label-5626", + "height": 338, + "background": "yellow" + }, + { + "key": "952381b5-77cb-400a-8238-36dc9f06d214", + "label": "label-5627", + "height": 416, + "background": "red" + }, + { + "key": "c6aabcc3-b961-49bf-91e6-a796e7d419f7", + "label": "label-5628", + "height": 143, + "background": "green" + }, + { + "key": "f0b5cd44-3437-435e-b525-996b8d958675", + "label": "label-5629", + "height": 74, + "background": "green" + }, + { + "key": "db453314-d5f3-47da-b8bf-1916fee6ed47", + "label": "label-5630", + "height": 109, + "background": "green" + }, + { + "key": "e282ebdb-6330-4508-b04b-5abd5b2a0083", + "label": "label-5631", + "height": 428, + "background": "green" + }, + { + "key": "eb32b970-d0d9-4d83-8ecd-14b9b4deb7e8", + "label": "label-5632", + "height": 330, + "background": "blue" + }, + { + "key": "e6cd349a-bbce-4e66-8841-8e619310b65b", + "label": "label-5633", + "height": 390, + "background": "yellow" + }, + { + "key": "43a46d5f-b8f0-470b-a80a-fe117f8293e0", + "label": "label-5634", + "height": 296, + "background": "blue" + }, + { + "key": "41dd6c60-b2e8-4b87-b932-59b67ef66cb6", + "label": "label-5635", + "height": 511, + "background": "red" + }, + { + "key": "e100211b-518c-4ea4-a6d0-9d0dde7a5dc4", + "label": "label-5636", + "height": 175, + "background": "blue" + }, + { + "key": "70b8b1f2-b458-4d8e-88e0-3d3ea9e4fcb0", + "label": "label-5637", + "height": 116, + "background": "green" + }, + { + "key": "81751794-cef5-408d-8072-6b7fc3c1a00a", + "label": "label-5638", + "height": 388, + "background": "blue" + }, + { + "key": "7d04f3c1-8708-47a1-8701-9256e6aea0af", + "label": "label-5639", + "height": 336, + "background": "yellow" + }, + { + "key": "81c5f903-17b3-4565-a849-4eab75173ee0", + "label": "label-5640", + "height": 198, + "background": "green" + }, + { + "key": "bd9e975a-f46b-4a00-a80c-7ab902d90424", + "label": "label-5641", + "height": 84, + "background": "yellow" + }, + { + "key": "296f6848-453f-4c63-b446-7bcd5a9ad170", + "label": "label-5642", + "height": 434, + "background": "red" + }, + { + "key": "7480e8e6-081d-455e-87de-1ef0d75010c3", + "label": "label-5643", + "height": 399, + "background": "blue" + }, + { + "key": "b7141511-4d50-4451-81de-08860ebdc562", + "label": "label-5644", + "height": 394, + "background": "yellow" + }, + { + "key": "c97fbb88-a9f3-4d49-93a9-29ac357d2780", + "label": "label-5645", + "height": 231, + "background": "blue" + }, + { + "key": "87f51fee-4e79-4f32-98df-54eedea9cc16", + "label": "label-5646", + "height": 270, + "background": "red" + }, + { + "key": "a1b82955-97f9-4b8c-9060-fef20f456c50", + "label": "label-5647", + "height": 324, + "background": "blue" + }, + { + "key": "cd913ee2-a6b9-46b2-9a48-177f52958475", + "label": "label-5648", + "height": 88, + "background": "green" + }, + { + "key": "f7045f70-370a-42f6-b9ca-3a1ee0f782b4", + "label": "label-5649", + "height": 173, + "background": "red" + }, + { + "key": "ee1b38e3-92b9-48be-a49e-5d8710925496", + "label": "label-5650", + "height": 350, + "background": "yellow" + }, + { + "key": "2bd6e45d-ac76-49e8-8486-d0ca6c0612ab", + "label": "label-5651", + "height": 178, + "background": "green" + }, + { + "key": "bb8eca4c-f8ff-4e15-97b0-a2f2686a4871", + "label": "label-5652", + "height": 218, + "background": "yellow" + }, + { + "key": "758caa1c-e5e8-4271-b153-cd6d6b3f643f", + "label": "label-5653", + "height": 34, + "background": "blue" + }, + { + "key": "8bab8d6b-d5cc-4e47-bbb5-4a1cb9a27307", + "label": "label-5654", + "height": 359, + "background": "blue" + }, + { + "key": "c2666845-7227-41ba-b091-1bd5bb28874c", + "label": "label-5655", + "height": 280, + "background": "yellow" + }, + { + "key": "f4addcff-07c2-45d5-97d5-ef5a68c4320b", + "label": "label-5656", + "height": 164, + "background": "blue" + }, + { + "key": "41346010-c6e9-4490-917a-57ff8da432d6", + "label": "label-5657", + "height": 483, + "background": "yellow" + }, + { + "key": "49dcba7a-bd05-4b0a-a471-57916ce1eba6", + "label": "label-5658", + "height": 199, + "background": "red" + }, + { + "key": "34e84611-8a74-4d63-94ea-129c2074d6d1", + "label": "label-5659", + "height": 312, + "background": "green" + }, + { + "key": "b8eb24c8-b302-4cbf-9046-66fe1778e0da", + "label": "label-5660", + "height": 166, + "background": "green" + }, + { + "key": "9f65b360-20e1-417b-b2be-68199e64a5af", + "label": "label-5661", + "height": 445, + "background": "yellow" + }, + { + "key": "01d1e7b6-2f19-4a80-85f0-6f099f7fc654", + "label": "label-5662", + "height": 56, + "background": "yellow" + }, + { + "key": "998fcb57-9baa-4f08-a6a5-56aec975749f", + "label": "label-5663", + "height": 324, + "background": "red" + }, + { + "key": "6a88a355-648a-4e02-aa6d-4252a031e079", + "label": "label-5664", + "height": 502, + "background": "green" + }, + { + "key": "34efe6c1-73df-4744-8398-8e64dc8ab530", + "label": "label-5665", + "height": 383, + "background": "blue" + }, + { + "key": "ad363134-ff04-4f5c-9508-4c821afe607d", + "label": "label-5666", + "height": 303, + "background": "red" + }, + { + "key": "c0f0eb75-b7f2-4e51-8d74-7db16d75bf1c", + "label": "label-5667", + "height": 383, + "background": "green" + }, + { + "key": "f039d326-d20f-4664-b305-9947d79ac694", + "label": "label-5668", + "height": 510, + "background": "green" + }, + { + "key": "d709b6ce-1db4-444a-b919-593ab6bdc91d", + "label": "label-5669", + "height": 304, + "background": "blue" + }, + { + "key": "08b22d50-5ee1-4f0b-9134-2a9b0b373807", + "label": "label-5670", + "height": 382, + "background": "green" + }, + { + "key": "eb8e75c5-54c6-44e6-b016-0708ff83c8a3", + "label": "label-5671", + "height": 331, + "background": "red" + }, + { + "key": "4f833537-bc00-487a-b00a-64df753ab239", + "label": "label-5672", + "height": 144, + "background": "green" + }, + { + "key": "1541e698-bcd7-4564-9342-8ab91460e102", + "label": "label-5673", + "height": 215, + "background": "red" + }, + { + "key": "9bf7acd5-5a4f-4d82-93ec-9f152d17c923", + "label": "label-5674", + "height": 138, + "background": "red" + }, + { + "key": "abbf6ab6-192e-4324-b5ff-a4898f35a538", + "label": "label-5675", + "height": 163, + "background": "red" + }, + { + "key": "7e4c6a57-676e-444a-b949-39ef08491201", + "label": "label-5676", + "height": 505, + "background": "red" + }, + { + "key": "60339c4a-7e9f-4a64-b911-cc5327a26dcc", + "label": "label-5677", + "height": 237, + "background": "yellow" + }, + { + "key": "83865651-43ff-4ef3-bb48-649d9b1e87d6", + "label": "label-5678", + "height": 156, + "background": "red" + }, + { + "key": "dac99d2a-81c6-4dd3-a04d-ec8c8d98eb2c", + "label": "label-5679", + "height": 187, + "background": "red" + }, + { + "key": "f2b57d57-cbc3-463e-a18e-2d294e295a4a", + "label": "label-5680", + "height": 255, + "background": "red" + }, + { + "key": "5808fdf6-c714-4f74-87bf-33f01bd2ba39", + "label": "label-5681", + "height": 249, + "background": "yellow" + }, + { + "key": "660bef24-d578-4b7c-baa3-340beaa6f95c", + "label": "label-5682", + "height": 484, + "background": "red" + }, + { + "key": "ff528847-1dde-4128-9383-dec7e3cfc513", + "label": "label-5683", + "height": 168, + "background": "red" + }, + { + "key": "f84aeff8-e18c-4e19-ab1e-82236c5dbdeb", + "label": "label-5684", + "height": 366, + "background": "blue" + }, + { + "key": "8c431916-bc55-4918-a4a9-80972d3a1ca8", + "label": "label-5685", + "height": 288, + "background": "green" + }, + { + "key": "fe3d2636-6217-4460-8d44-2e6684f91f55", + "label": "label-5686", + "height": 111, + "background": "green" + }, + { + "key": "70c0eb03-c147-4dcf-ab62-7b5b8efdf3d5", + "label": "label-5687", + "height": 342, + "background": "red" + }, + { + "key": "c0db5065-5c93-444c-b6c2-33bc416e41ca", + "label": "label-5688", + "height": 373, + "background": "red" + }, + { + "key": "2e22955b-f964-48cc-83c2-b7f177ed4261", + "label": "label-5689", + "height": 489, + "background": "green" + }, + { + "key": "e94176c9-6684-4820-adb3-c585bcda011b", + "label": "label-5690", + "height": 133, + "background": "red" + }, + { + "key": "b8a14876-2a10-4c8b-af30-3144299fef1a", + "label": "label-5691", + "height": 460, + "background": "yellow" + }, + { + "key": "c1bb3b75-76e9-47fe-b6fc-13c54663de77", + "label": "label-5692", + "height": 39, + "background": "red" + }, + { + "key": "aa389ace-d7ca-472a-bbeb-e9b692600fde", + "label": "label-5693", + "height": 207, + "background": "green" + }, + { + "key": "5b28e55e-3e24-4e08-9cc4-537b24c2610d", + "label": "label-5694", + "height": 94, + "background": "yellow" + }, + { + "key": "b84b523a-2dc5-4fef-b4b4-6dd73836c052", + "label": "label-5695", + "height": 59, + "background": "green" + }, + { + "key": "bcec115e-d1c7-4397-a240-fb2ba9c0a235", + "label": "label-5696", + "height": 66, + "background": "blue" + }, + { + "key": "0b919bbf-b0fb-4118-919c-a8ce1cdb20a7", + "label": "label-5697", + "height": 127, + "background": "red" + }, + { + "key": "e408756d-9cce-4088-8e0d-7fda7a2a699e", + "label": "label-5698", + "height": 299, + "background": "red" + }, + { + "key": "cc934f94-5746-4b0b-ac18-88b92ce02653", + "label": "label-5699", + "height": 446, + "background": "green" + }, + { + "key": "e4578908-5ac5-40a8-be68-ee9512ac4d00", + "label": "label-5700", + "height": 393, + "background": "green" + }, + { + "key": "2b751624-b140-4eca-866f-11eb123db3e8", + "label": "label-5701", + "height": 61, + "background": "red" + }, + { + "key": "8991ee97-8726-4310-96ee-f0b32a6bcd67", + "label": "label-5702", + "height": 277, + "background": "yellow" + }, + { + "key": "34378411-8b2f-4681-9804-87eb26cdf2f2", + "label": "label-5703", + "height": 498, + "background": "green" + }, + { + "key": "f0f2fba2-412c-4009-91d6-eec1cb78a039", + "label": "label-5704", + "height": 468, + "background": "yellow" + }, + { + "key": "693f5e4e-a11a-4039-8a65-5bbf492057bf", + "label": "label-5705", + "height": 239, + "background": "green" + }, + { + "key": "41f730c4-b65b-498b-90ae-d65a218cde96", + "label": "label-5706", + "height": 150, + "background": "yellow" + }, + { + "key": "785a11e9-dfd4-4e7d-85c8-225725115c0a", + "label": "label-5707", + "height": 395, + "background": "yellow" + }, + { + "key": "2ec90a88-4f10-41a6-b1cd-27e25df548ad", + "label": "label-5708", + "height": 253, + "background": "blue" + }, + { + "key": "0c7c1d31-1071-4ca0-b711-35a25492e8b4", + "label": "label-5709", + "height": 127, + "background": "green" + }, + { + "key": "8283dc17-4e0a-47e7-8dea-a87ea6eeb3c5", + "label": "label-5710", + "height": 279, + "background": "green" + }, + { + "key": "5b8e6db5-f8a8-4ca6-a2ba-e39a1c8b3b1a", + "label": "label-5711", + "height": 32, + "background": "yellow" + }, + { + "key": "7d979fe7-22da-4664-86c0-603cdc9fd990", + "label": "label-5712", + "height": 263, + "background": "yellow" + }, + { + "key": "fbb501d3-6a02-4c0e-96dd-fd2a0d8eb177", + "label": "label-5713", + "height": 57, + "background": "blue" + }, + { + "key": "4ddea8cc-02d5-475a-8b73-aeb8fc3cafef", + "label": "label-5714", + "height": 180, + "background": "yellow" + }, + { + "key": "8a511394-6517-4730-96d0-6dec1b084143", + "label": "label-5715", + "height": 118, + "background": "green" + }, + { + "key": "b9b55228-1cd4-4ab1-b6bf-3dbafebc749e", + "label": "label-5716", + "height": 214, + "background": "blue" + }, + { + "key": "041303c1-50f2-4f4a-a594-d77e10ce4d59", + "label": "label-5717", + "height": 329, + "background": "red" + }, + { + "key": "90e0fd16-98a3-47e8-9d26-05b5ed834242", + "label": "label-5718", + "height": 477, + "background": "yellow" + }, + { + "key": "dc532fc7-cb41-487c-bc5c-18b97200e8b2", + "label": "label-5719", + "height": 314, + "background": "yellow" + }, + { + "key": "a9e1379b-be97-4cbb-b05d-1d010bdec55a", + "label": "label-5720", + "height": 249, + "background": "blue" + }, + { + "key": "851af324-5538-4652-8f27-7f2dbfd2ded9", + "label": "label-5721", + "height": 73, + "background": "red" + }, + { + "key": "40a1be49-4b79-4768-a840-e7c9635c9236", + "label": "label-5722", + "height": 63, + "background": "green" + }, + { + "key": "31a1c980-5bf3-4c9f-b429-6efba24f0a4f", + "label": "label-5723", + "height": 157, + "background": "blue" + }, + { + "key": "d1a54643-5ae2-4fb6-8648-313d98d05f07", + "label": "label-5724", + "height": 498, + "background": "blue" + }, + { + "key": "bd4c4aa2-5eb7-41a7-bc33-a504e0f13230", + "label": "label-5725", + "height": 389, + "background": "red" + }, + { + "key": "3b4512c4-f4b6-49c0-9c0b-f953c5c1db70", + "label": "label-5726", + "height": 36, + "background": "red" + }, + { + "key": "8c1c441f-bb5a-422c-8da8-59c1217e6d1d", + "label": "label-5727", + "height": 166, + "background": "green" + }, + { + "key": "ecc6b5ad-a3e9-441f-9a8c-eeebb2832315", + "label": "label-5728", + "height": 121, + "background": "green" + }, + { + "key": "2e174519-dc13-4ce5-bc90-673800e0f098", + "label": "label-5729", + "height": 365, + "background": "green" + }, + { + "key": "321ff25b-86d1-4419-9893-79fda94eccbf", + "label": "label-5730", + "height": 358, + "background": "yellow" + }, + { + "key": "c39aff71-0088-4c4a-8d0d-8b1b39e95588", + "label": "label-5731", + "height": 420, + "background": "blue" + }, + { + "key": "699bd828-a8d9-49f8-9bc1-62dc8aa4361d", + "label": "label-5732", + "height": 242, + "background": "green" + }, + { + "key": "2341e88a-3956-4798-93d8-3b5ca811bb34", + "label": "label-5733", + "height": 475, + "background": "red" + }, + { + "key": "9c6b48f2-0e38-4466-98ff-5cba8bb893c2", + "label": "label-5734", + "height": 360, + "background": "green" + }, + { + "key": "dea4f5e9-4196-43af-8562-69a1de97aa1e", + "label": "label-5735", + "height": 474, + "background": "green" + }, + { + "key": "9816befe-056e-40da-b69f-d46c75790a2c", + "label": "label-5736", + "height": 366, + "background": "blue" + }, + { + "key": "23a1872c-3397-46b7-a599-59d1504b6932", + "label": "label-5737", + "height": 74, + "background": "yellow" + }, + { + "key": "a85c561c-480f-4e93-a16f-4a8df049270c", + "label": "label-5738", + "height": 529, + "background": "yellow" + }, + { + "key": "293781bc-8128-4a67-8601-15d75c223067", + "label": "label-5739", + "height": 409, + "background": "red" + }, + { + "key": "2a23022c-490e-477e-92d2-ee2a5b54edd2", + "label": "label-5740", + "height": 517, + "background": "green" + }, + { + "key": "0d67b569-bd94-4cab-a289-605f5d5b84a3", + "label": "label-5741", + "height": 67, + "background": "blue" + }, + { + "key": "62380e48-5f14-4314-a3b0-e618974e1884", + "label": "label-5742", + "height": 232, + "background": "blue" + }, + { + "key": "384534a4-0fd7-4999-b3dc-9273c6360643", + "label": "label-5743", + "height": 106, + "background": "red" + }, + { + "key": "947556dc-cec4-428c-acb9-7111618503ea", + "label": "label-5744", + "height": 205, + "background": "red" + }, + { + "key": "1e8e815e-efba-48da-87c7-06a1f621c458", + "label": "label-5745", + "height": 391, + "background": "blue" + }, + { + "key": "5075a07f-9f64-4153-a3ca-f1e9a70a4f3c", + "label": "label-5746", + "height": 143, + "background": "red" + }, + { + "key": "e6ff520d-4ec4-40c3-bd92-282f01fab84a", + "label": "label-5747", + "height": 109, + "background": "blue" + }, + { + "key": "e7c1f3a8-fd0f-4c69-a791-c48bcc23e4e7", + "label": "label-5748", + "height": 278, + "background": "blue" + }, + { + "key": "2c9d959f-98ac-470e-b81e-74743ca38e71", + "label": "label-5749", + "height": 309, + "background": "red" + }, + { + "key": "4ffc6815-1826-4205-9ba8-1c34a6d5ed35", + "label": "label-5750", + "height": 390, + "background": "yellow" + }, + { + "key": "801e6801-b660-43bf-a9dd-49c5291e06aa", + "label": "label-5751", + "height": 162, + "background": "green" + }, + { + "key": "56ebc472-8dc5-4fd7-8409-e30d01b09d11", + "label": "label-5752", + "height": 38, + "background": "green" + }, + { + "key": "576a047d-0635-4fa2-bf9e-5e97f038efde", + "label": "label-5753", + "height": 186, + "background": "blue" + }, + { + "key": "8c217c0d-8fa4-47f7-934e-e52549b13247", + "label": "label-5754", + "height": 335, + "background": "green" + }, + { + "key": "10b861b5-9678-4f2a-8bfb-0a91f266a49b", + "label": "label-5755", + "height": 58, + "background": "green" + }, + { + "key": "de055475-f6b8-4567-b270-d858c41d5993", + "label": "label-5756", + "height": 431, + "background": "yellow" + }, + { + "key": "0973b7b9-5c9a-4680-a4b9-1ca72edb4906", + "label": "label-5757", + "height": 416, + "background": "yellow" + }, + { + "key": "e2b174e2-522c-4bcc-a2e3-1985fe15e8f9", + "label": "label-5758", + "height": 318, + "background": "yellow" + }, + { + "key": "21f2d57d-6421-490b-8adc-0a4947819f35", + "label": "label-5759", + "height": 357, + "background": "green" + }, + { + "key": "67fd29b9-0034-4e27-a5bc-fc57925c94a2", + "label": "label-5760", + "height": 255, + "background": "blue" + }, + { + "key": "141a376f-ec72-4376-8cd3-913133e5d957", + "label": "label-5761", + "height": 203, + "background": "yellow" + }, + { + "key": "77b8fdf0-e599-464a-9bab-67463da9cfb0", + "label": "label-5762", + "height": 324, + "background": "red" + }, + { + "key": "de1be9d9-7a38-4416-ba1d-9319fa9f319c", + "label": "label-5763", + "height": 283, + "background": "green" + }, + { + "key": "5733d797-4c63-4fcd-9a69-5f6c743ef0ee", + "label": "label-5764", + "height": 138, + "background": "blue" + }, + { + "key": "977d3648-4ab5-497e-8543-a1ba6b1026e9", + "label": "label-5765", + "height": 362, + "background": "green" + }, + { + "key": "5bce8a09-fa49-41ed-be4e-b8a4a646bbeb", + "label": "label-5766", + "height": 348, + "background": "green" + }, + { + "key": "033e818f-bc0f-41bb-adad-c9be83c6310d", + "label": "label-5767", + "height": 275, + "background": "green" + }, + { + "key": "e9cd8f6a-c024-484b-9e93-702dacaee9cd", + "label": "label-5768", + "height": 78, + "background": "blue" + }, + { + "key": "2f01e306-0765-412b-971f-7d1977dd7d55", + "label": "label-5769", + "height": 221, + "background": "yellow" + }, + { + "key": "5d77bfa1-d3b6-4ba0-b901-986bcd831ebb", + "label": "label-5770", + "height": 166, + "background": "green" + }, + { + "key": "271b6491-49c8-458a-92ad-b11b08c1cd4c", + "label": "label-5771", + "height": 361, + "background": "yellow" + }, + { + "key": "0e42d3ff-828a-4f86-93a7-1b6a87fc5ee8", + "label": "label-5772", + "height": 427, + "background": "blue" + }, + { + "key": "b7f59e14-04ff-41c2-90e8-1844dfd1ea42", + "label": "label-5773", + "height": 126, + "background": "green" + }, + { + "key": "83b91db8-9cc0-48d2-af7f-2c184a91e9ec", + "label": "label-5774", + "height": 389, + "background": "blue" + }, + { + "key": "4a5b7e0a-c78c-4a6b-a6b4-89c83402b078", + "label": "label-5775", + "height": 452, + "background": "blue" + }, + { + "key": "012f3a5e-b71d-4706-8c63-12c46bb63bf9", + "label": "label-5776", + "height": 197, + "background": "yellow" + }, + { + "key": "09799c8e-ff4c-4577-9a05-22c2bdedeebc", + "label": "label-5777", + "height": 474, + "background": "yellow" + }, + { + "key": "5187e729-bac4-453a-b336-3d737782701d", + "label": "label-5778", + "height": 447, + "background": "green" + }, + { + "key": "fc610698-72bc-4eed-90a0-c6229d80ef30", + "label": "label-5779", + "height": 452, + "background": "red" + }, + { + "key": "ac7cd460-8184-403f-aae9-ff88dec9a723", + "label": "label-5780", + "height": 186, + "background": "yellow" + }, + { + "key": "9ff965eb-953f-4a4a-9f7e-956872115b2e", + "label": "label-5781", + "height": 428, + "background": "green" + }, + { + "key": "c433cae2-e3f7-4ec2-a0e7-32b06d9bc681", + "label": "label-5782", + "height": 152, + "background": "yellow" + }, + { + "key": "d07cfeed-3c40-41eb-9d2d-a6ac1e172c47", + "label": "label-5783", + "height": 189, + "background": "blue" + }, + { + "key": "05fe81d7-3421-49e7-a0dc-15864251952f", + "label": "label-5784", + "height": 307, + "background": "green" + }, + { + "key": "782460c9-6365-4615-8cea-8881ce889f81", + "label": "label-5785", + "height": 106, + "background": "blue" + }, + { + "key": "1fb48bec-170c-451f-b021-b71b1dbc5d9a", + "label": "label-5786", + "height": 435, + "background": "blue" + }, + { + "key": "9186726b-5b42-4884-ad28-9e01ba201a53", + "label": "label-5787", + "height": 523, + "background": "yellow" + }, + { + "key": "d066af22-8921-4f90-ae50-db8bbdc7028e", + "label": "label-5788", + "height": 188, + "background": "blue" + }, + { + "key": "61a2aab1-a9dc-46f4-86ff-2d22483d451a", + "label": "label-5789", + "height": 432, + "background": "green" + }, + { + "key": "3766eb5d-1e46-4851-864d-8e013509cdc8", + "label": "label-5790", + "height": 444, + "background": "yellow" + }, + { + "key": "f20da78b-cd64-493c-8075-1bc2a02d9a46", + "label": "label-5791", + "height": 504, + "background": "yellow" + }, + { + "key": "15642ae6-59df-4049-ba66-9f8beb05ebb6", + "label": "label-5792", + "height": 433, + "background": "yellow" + }, + { + "key": "7f98cd6d-b5f3-47e3-b9b5-46bcf51097a9", + "label": "label-5793", + "height": 314, + "background": "green" + }, + { + "key": "016115f8-6d1f-4b31-9996-a4c2ec939ea4", + "label": "label-5794", + "height": 149, + "background": "yellow" + }, + { + "key": "d6850d19-bc06-4bbb-b025-6e9ad7802dd9", + "label": "label-5795", + "height": 384, + "background": "yellow" + }, + { + "key": "f2d762f6-e9b7-4e4b-8fdd-82074096a8f2", + "label": "label-5796", + "height": 384, + "background": "green" + }, + { + "key": "6e80ed23-6502-400c-b7ea-aa2c332217d9", + "label": "label-5797", + "height": 99, + "background": "blue" + }, + { + "key": "465a5443-edf5-4266-adf0-47d355d09c98", + "label": "label-5798", + "height": 437, + "background": "blue" + }, + { + "key": "3dc733a1-48aa-45b0-b874-c774571d5f7d", + "label": "label-5799", + "height": 89, + "background": "green" + }, + { + "key": "b0393d81-16a3-48a0-82bd-bac1e14d176f", + "label": "label-5800", + "height": 338, + "background": "green" + }, + { + "key": "d5037c28-6993-4fd6-a714-ec6da03f21c6", + "label": "label-5801", + "height": 79, + "background": "yellow" + }, + { + "key": "15189589-4c19-4c3d-9c35-22342cb22fd2", + "label": "label-5802", + "height": 521, + "background": "blue" + }, + { + "key": "f53a680d-1737-46dd-9297-f8be9cce0c27", + "label": "label-5803", + "height": 307, + "background": "red" + }, + { + "key": "8ab16ed5-7629-4ddb-ad7e-50f6916d83d2", + "label": "label-5804", + "height": 189, + "background": "green" + }, + { + "key": "481a6519-be23-4b50-9e88-263a7b5395c0", + "label": "label-5805", + "height": 67, + "background": "green" + }, + { + "key": "402e9b77-14f3-4307-91bc-fd28bc8f3f38", + "label": "label-5806", + "height": 53, + "background": "red" + }, + { + "key": "05667b34-46d2-43bf-b6e4-61a767644d46", + "label": "label-5807", + "height": 283, + "background": "yellow" + }, + { + "key": "538f224c-2ca6-46b9-be76-dab41b62e147", + "label": "label-5808", + "height": 425, + "background": "red" + }, + { + "key": "a389b10b-e9be-4568-9cc6-d27a0c680651", + "label": "label-5809", + "height": 380, + "background": "blue" + }, + { + "key": "3e8dc5c1-fa9a-4ebf-a5a9-db19f387ae2f", + "label": "label-5810", + "height": 459, + "background": "blue" + }, + { + "key": "f154417d-a44d-4b0d-90ab-61bd7803d4e5", + "label": "label-5811", + "height": 292, + "background": "green" + }, + { + "key": "68c735d5-f51a-4e66-a938-69acef0ea21f", + "label": "label-5812", + "height": 447, + "background": "green" + }, + { + "key": "5dad1c59-874d-48cc-9fc3-ea7be712e4f9", + "label": "label-5813", + "height": 147, + "background": "green" + }, + { + "key": "ecd27d56-f0bb-469d-931c-4c562be25348", + "label": "label-5814", + "height": 424, + "background": "blue" + }, + { + "key": "cfee0991-65e3-4020-9a0d-be875767876f", + "label": "label-5815", + "height": 284, + "background": "blue" + }, + { + "key": "968a2c9f-3a4d-42ae-81fe-54df5f357613", + "label": "label-5816", + "height": 497, + "background": "red" + }, + { + "key": "35316d68-9d80-4395-a9d5-3832937fe7ae", + "label": "label-5817", + "height": 346, + "background": "green" + }, + { + "key": "0f3d1df5-f0b1-4d43-a0d9-6153afc48926", + "label": "label-5818", + "height": 410, + "background": "blue" + }, + { + "key": "5ef3a5bb-6f1f-47c7-9448-0afd099720e4", + "label": "label-5819", + "height": 168, + "background": "blue" + }, + { + "key": "282ebf12-9f17-467f-91cd-88f91c82a6f6", + "label": "label-5820", + "height": 186, + "background": "yellow" + }, + { + "key": "17341a87-3acc-4d7b-afbd-1fd2cf9e1950", + "label": "label-5821", + "height": 524, + "background": "yellow" + }, + { + "key": "0e84207f-f05d-428a-9b24-c69b95bbe23a", + "label": "label-5822", + "height": 162, + "background": "yellow" + }, + { + "key": "b6ec6c94-dc23-42d5-9e6d-1b0faa95b049", + "label": "label-5823", + "height": 271, + "background": "green" + }, + { + "key": "8d22a877-ee1b-430f-ba34-80069bdb8d8f", + "label": "label-5824", + "height": 525, + "background": "yellow" + }, + { + "key": "39a15674-f665-4fb8-8675-2fb0648148b5", + "label": "label-5825", + "height": 274, + "background": "yellow" + }, + { + "key": "22520fcd-e7d1-4639-8671-409dcb35ae07", + "label": "label-5826", + "height": 383, + "background": "green" + }, + { + "key": "c048c586-8cbf-4b30-a92c-29b4a97333e9", + "label": "label-5827", + "height": 359, + "background": "yellow" + }, + { + "key": "926072a6-6203-43c5-bfc9-2f25d111d2cd", + "label": "label-5828", + "height": 80, + "background": "yellow" + }, + { + "key": "84af3ec5-5c78-4f3f-ad29-7948f1d0afd4", + "label": "label-5829", + "height": 455, + "background": "blue" + }, + { + "key": "4af32951-5789-4ed7-ac24-5c4bfa54a891", + "label": "label-5830", + "height": 344, + "background": "red" + }, + { + "key": "7656539b-0505-4aaa-b2c8-29f3423a36b7", + "label": "label-5831", + "height": 92, + "background": "green" + }, + { + "key": "0dc07d91-e23a-4459-811d-acd5b93e527b", + "label": "label-5832", + "height": 141, + "background": "green" + }, + { + "key": "ad558c52-61ea-44a2-ac4a-9be4e5aff530", + "label": "label-5833", + "height": 508, + "background": "yellow" + }, + { + "key": "7595702a-8105-4de0-a33e-3144507a4bd0", + "label": "label-5834", + "height": 365, + "background": "red" + }, + { + "key": "67f5ee27-200b-4ba3-812c-d8870ffcc8f3", + "label": "label-5835", + "height": 256, + "background": "green" + }, + { + "key": "31a6347f-7d3d-408a-ae49-b3e45bdbbb16", + "label": "label-5836", + "height": 338, + "background": "blue" + }, + { + "key": "ad05e706-d156-4651-ae74-25f8e48c8d95", + "label": "label-5837", + "height": 225, + "background": "blue" + }, + { + "key": "67daae17-70a8-479a-8ee3-4ef21cdce110", + "label": "label-5838", + "height": 343, + "background": "yellow" + }, + { + "key": "d3fe1d5b-3545-4547-8f27-3e4cd726cffb", + "label": "label-5839", + "height": 69, + "background": "blue" + }, + { + "key": "5db47675-dce5-49dc-8855-fb4102b1cf5c", + "label": "label-5840", + "height": 217, + "background": "blue" + }, + { + "key": "a7cdc629-1ed1-41b6-901f-8f109590c92a", + "label": "label-5841", + "height": 163, + "background": "green" + }, + { + "key": "ef8c9971-5e41-4b82-8c48-55fb4e7e4163", + "label": "label-5842", + "height": 437, + "background": "red" + }, + { + "key": "2f62939a-7980-4733-ae66-2ee94b98f5c7", + "label": "label-5843", + "height": 353, + "background": "green" + }, + { + "key": "ee5284e2-8d13-45eb-a311-914c6d97769b", + "label": "label-5844", + "height": 447, + "background": "yellow" + }, + { + "key": "8f5a27ff-65af-45cf-87ef-19780a5d7d1e", + "label": "label-5845", + "height": 349, + "background": "green" + }, + { + "key": "f4506942-37b0-4fe6-8c94-f1c0e69333cd", + "label": "label-5846", + "height": 288, + "background": "yellow" + }, + { + "key": "ffd97e78-2e39-40df-a90c-530a40c31058", + "label": "label-5847", + "height": 190, + "background": "yellow" + }, + { + "key": "7ecc00b8-7a84-41d4-a12c-2861a9f57cf4", + "label": "label-5848", + "height": 298, + "background": "blue" + }, + { + "key": "dcca4877-62ad-4e58-b0c9-9806fa2e1bc8", + "label": "label-5849", + "height": 127, + "background": "red" + }, + { + "key": "055f67b8-9a5d-4ac6-b7f3-748cc44bb8fa", + "label": "label-5850", + "height": 92, + "background": "blue" + }, + { + "key": "6620c2e5-2110-41c3-ab0c-1ba5ec627a19", + "label": "label-5851", + "height": 185, + "background": "red" + }, + { + "key": "442d7732-9d5f-46ef-9e46-494f40ec5ccd", + "label": "label-5852", + "height": 470, + "background": "blue" + }, + { + "key": "bad58433-ed45-463b-b95c-470252cbc7a6", + "label": "label-5853", + "height": 340, + "background": "blue" + }, + { + "key": "161faa15-5805-4fd8-8136-e492f2e19b5b", + "label": "label-5854", + "height": 512, + "background": "green" + }, + { + "key": "87a35c87-6cc0-4e7c-83c6-fbfab8bf3d71", + "label": "label-5855", + "height": 146, + "background": "red" + }, + { + "key": "6cb42a40-39e0-4771-b067-808e3ddf8c0a", + "label": "label-5856", + "height": 130, + "background": "green" + }, + { + "key": "13268ae7-5bb3-4c3a-98d6-9b29e1020457", + "label": "label-5857", + "height": 366, + "background": "blue" + }, + { + "key": "9d806fd9-8e38-40c5-99be-11e9b76b3f59", + "label": "label-5858", + "height": 200, + "background": "blue" + }, + { + "key": "97d44978-074a-4c76-9d63-4125a85f5511", + "label": "label-5859", + "height": 380, + "background": "yellow" + }, + { + "key": "e1b8ade6-2f55-45d5-b5c3-06bbcf01360e", + "label": "label-5860", + "height": 228, + "background": "green" + }, + { + "key": "2cb3dfd3-d864-4bb0-a972-0d22c69586ea", + "label": "label-5861", + "height": 429, + "background": "yellow" + }, + { + "key": "f87bf825-c88a-444f-9e4e-79d8cbf74c01", + "label": "label-5862", + "height": 480, + "background": "yellow" + }, + { + "key": "8f6c74d2-6e1f-46c6-8b13-73db35bcdcfe", + "label": "label-5863", + "height": 296, + "background": "blue" + }, + { + "key": "d84f1b76-a6b7-478c-b147-80efedc8020b", + "label": "label-5864", + "height": 398, + "background": "blue" + }, + { + "key": "031757d1-c189-4336-8fa1-b6500ece9203", + "label": "label-5865", + "height": 333, + "background": "yellow" + }, + { + "key": "4240688b-763c-4b8c-a98c-7bfb2ef8ced3", + "label": "label-5866", + "height": 521, + "background": "blue" + }, + { + "key": "17553661-c8d7-406b-8fea-2f3df0792cf9", + "label": "label-5867", + "height": 165, + "background": "yellow" + }, + { + "key": "c55ed958-cd38-4c1d-982a-c790f59b5018", + "label": "label-5868", + "height": 355, + "background": "yellow" + }, + { + "key": "e2970240-d88e-47f7-8f18-e8768bba4dc8", + "label": "label-5869", + "height": 502, + "background": "green" + }, + { + "key": "5fb26355-2e17-471d-8cf2-70aff533c9a6", + "label": "label-5870", + "height": 199, + "background": "yellow" + }, + { + "key": "87c6ce9e-dfb4-4a7e-acbd-7ddd66406812", + "label": "label-5871", + "height": 491, + "background": "red" + }, + { + "key": "643c23ad-e08b-4862-a2a4-bc7d98a35b2f", + "label": "label-5872", + "height": 528, + "background": "green" + }, + { + "key": "dcb2ea95-6790-4bee-975c-7377891ee735", + "label": "label-5873", + "height": 317, + "background": "blue" + }, + { + "key": "6403728a-6354-423b-a041-3a7e7be19ad9", + "label": "label-5874", + "height": 70, + "background": "yellow" + }, + { + "key": "a27451d8-d863-44b0-8546-4ccca5f589e6", + "label": "label-5875", + "height": 104, + "background": "yellow" + }, + { + "key": "548a6d6d-6d77-40a0-9b66-733260f3553a", + "label": "label-5876", + "height": 237, + "background": "blue" + }, + { + "key": "fced7dfb-b75b-494c-955b-26394fbe28a8", + "label": "label-5877", + "height": 168, + "background": "green" + }, + { + "key": "199024b1-577a-4d4f-b61e-2d5133cfcff0", + "label": "label-5878", + "height": 137, + "background": "red" + }, + { + "key": "45d4a744-5ec0-4d54-82df-e7d9766ed6a8", + "label": "label-5879", + "height": 96, + "background": "red" + }, + { + "key": "9ec2ea66-2070-4f2e-813f-90ed20e319aa", + "label": "label-5880", + "height": 377, + "background": "red" + }, + { + "key": "94e943d7-0b59-4f50-add8-f79a8db2a5db", + "label": "label-5881", + "height": 176, + "background": "red" + }, + { + "key": "7062a6de-ad1e-4e4b-83fa-647c5528b2e7", + "label": "label-5882", + "height": 159, + "background": "blue" + }, + { + "key": "52548011-2142-429c-86cd-c9d3f7f47499", + "label": "label-5883", + "height": 180, + "background": "blue" + }, + { + "key": "44e012c1-9411-4a4c-900f-91c61f27e18e", + "label": "label-5884", + "height": 119, + "background": "green" + }, + { + "key": "f7d6952a-5492-4d15-9565-008d74f42952", + "label": "label-5885", + "height": 204, + "background": "red" + }, + { + "key": "b2dc78ae-373f-4fe1-9a2e-d095f89eea21", + "label": "label-5886", + "height": 57, + "background": "blue" + }, + { + "key": "02faa4df-a18d-4b24-b7e2-aa24e5448c7b", + "label": "label-5887", + "height": 484, + "background": "yellow" + }, + { + "key": "672c8b03-1be6-4ba4-b74c-491040eeda2e", + "label": "label-5888", + "height": 261, + "background": "blue" + }, + { + "key": "509a5076-a12f-4dc9-a5ce-7f0fc8576032", + "label": "label-5889", + "height": 87, + "background": "red" + }, + { + "key": "77752818-5968-49a6-a189-235ae7b031e1", + "label": "label-5890", + "height": 194, + "background": "green" + }, + { + "key": "6f6620d0-a73b-4cd1-9177-d4988a44525e", + "label": "label-5891", + "height": 522, + "background": "blue" + }, + { + "key": "9d2f5611-e944-4141-bbd1-8fe61f98bb92", + "label": "label-5892", + "height": 79, + "background": "blue" + }, + { + "key": "c2c96707-4ed7-48a4-8255-9e2db9bcd457", + "label": "label-5893", + "height": 522, + "background": "blue" + }, + { + "key": "7d9acca4-930a-4dd0-ae1a-38036f561c97", + "label": "label-5894", + "height": 467, + "background": "blue" + }, + { + "key": "762382f2-6939-403c-89ff-f2c2a85f4057", + "label": "label-5895", + "height": 133, + "background": "blue" + }, + { + "key": "3c9e5c79-e137-49c0-a7e3-b0b5bca0e286", + "label": "label-5896", + "height": 84, + "background": "blue" + }, + { + "key": "412192eb-fa80-44f7-aca7-8cda3cb2a939", + "label": "label-5897", + "height": 196, + "background": "blue" + }, + { + "key": "54c7d133-3c31-41b4-9d95-933a5ab7444e", + "label": "label-5898", + "height": 483, + "background": "blue" + }, + { + "key": "3c3f353f-a6ee-434b-85b7-858da6f13053", + "label": "label-5899", + "height": 317, + "background": "red" + }, + { + "key": "6a10eb2b-a70a-4b08-b0d0-f154b1b6733d", + "label": "label-5900", + "height": 481, + "background": "red" + }, + { + "key": "fb210f8b-5d1f-48b6-8369-25e2806d2cf5", + "label": "label-5901", + "height": 202, + "background": "yellow" + }, + { + "key": "703cdee0-9c54-48f3-98ce-b2d6f7064a23", + "label": "label-5902", + "height": 342, + "background": "yellow" + }, + { + "key": "f22a63c5-b6e1-404b-be1a-bd2b56cd75ae", + "label": "label-5903", + "height": 131, + "background": "green" + }, + { + "key": "f1559f87-9ced-45d2-a282-0f47777ec0ae", + "label": "label-5904", + "height": 110, + "background": "blue" + }, + { + "key": "d8e64e38-89ea-4b58-8391-d2862134ae25", + "label": "label-5905", + "height": 288, + "background": "green" + }, + { + "key": "d70f7d06-f501-4e07-b244-10bc6a42040a", + "label": "label-5906", + "height": 386, + "background": "red" + }, + { + "key": "e61fbaa8-a021-4acc-85e4-9aa0e5561de5", + "label": "label-5907", + "height": 350, + "background": "red" + }, + { + "key": "302ba7dd-1e46-44dd-97ec-2f5940a8f3f3", + "label": "label-5908", + "height": 190, + "background": "blue" + }, + { + "key": "c0e0038d-5567-4c8c-a600-a7ec91157a8a", + "label": "label-5909", + "height": 302, + "background": "green" + }, + { + "key": "05beeeee-955a-4867-9f92-07fca7e555bf", + "label": "label-5910", + "height": 294, + "background": "blue" + }, + { + "key": "54699650-ec3c-48f8-a1b1-8df2b171de52", + "label": "label-5911", + "height": 196, + "background": "blue" + }, + { + "key": "25cab014-0bc7-443e-ad5a-da2351443d9f", + "label": "label-5912", + "height": 205, + "background": "green" + }, + { + "key": "6ef67f3c-cd03-49a0-a9f4-b2aaf9350abc", + "label": "label-5913", + "height": 361, + "background": "yellow" + }, + { + "key": "bf7cbfc2-7b0f-4e6a-a503-c036cc8f2a8c", + "label": "label-5914", + "height": 140, + "background": "green" + }, + { + "key": "1d69642c-deca-484e-98e8-3faf2c0cb094", + "label": "label-5915", + "height": 523, + "background": "red" + }, + { + "key": "6e855042-35bd-495d-86dd-6c83ab1035ee", + "label": "label-5916", + "height": 172, + "background": "red" + }, + { + "key": "8e641777-498e-475e-8923-77ef5d68ae64", + "label": "label-5917", + "height": 356, + "background": "red" + }, + { + "key": "c8544e02-8cd7-42ce-9be8-9c9b31027339", + "label": "label-5918", + "height": 249, + "background": "red" + }, + { + "key": "70197eae-0414-4598-94e9-70e3968acc44", + "label": "label-5919", + "height": 326, + "background": "red" + }, + { + "key": "43cc3a23-b268-4ef6-b8cc-d73e11be8da9", + "label": "label-5920", + "height": 115, + "background": "green" + }, + { + "key": "8538e6cf-1834-4b2c-a73a-4a169e51fa17", + "label": "label-5921", + "height": 455, + "background": "blue" + }, + { + "key": "306a3ba2-14f8-4c06-ab46-fec30fd4a8f5", + "label": "label-5922", + "height": 39, + "background": "yellow" + }, + { + "key": "87c1a991-37ef-465f-9655-998b81049367", + "label": "label-5923", + "height": 41, + "background": "green" + }, + { + "key": "7b730676-e80d-49ef-9319-4f1c2c2277e0", + "label": "label-5924", + "height": 248, + "background": "green" + }, + { + "key": "49ab3024-8986-4976-bbcf-3244e43b3471", + "label": "label-5925", + "height": 174, + "background": "red" + }, + { + "key": "f133107e-ef7e-47d6-b0b4-a69ae3949b7b", + "label": "label-5926", + "height": 145, + "background": "yellow" + }, + { + "key": "bd1dbf14-9023-4b8b-9d20-64fd20334c1c", + "label": "label-5927", + "height": 433, + "background": "yellow" + }, + { + "key": "c4ad0699-90f7-4290-866d-7fab096754d5", + "label": "label-5928", + "height": 66, + "background": "green" + }, + { + "key": "d3559cf6-6942-439b-b9ed-f77d900efc71", + "label": "label-5929", + "height": 422, + "background": "yellow" + }, + { + "key": "63b40c2a-5b0f-44cc-bc6f-cae9ccd8edbd", + "label": "label-5930", + "height": 129, + "background": "yellow" + }, + { + "key": "1f964d47-bc4c-4016-a899-4f71692a015d", + "label": "label-5931", + "height": 163, + "background": "red" + }, + { + "key": "cc7dbb57-02d5-4de2-b31f-6b6cc3a8acfb", + "label": "label-5932", + "height": 412, + "background": "green" + }, + { + "key": "c8328dad-09e7-4315-af09-d178fc846b4a", + "label": "label-5933", + "height": 466, + "background": "red" + }, + { + "key": "1fc7a122-174a-48c1-9c61-43c5100408f1", + "label": "label-5934", + "height": 143, + "background": "blue" + }, + { + "key": "3ad1a5aa-fa28-49ab-961f-fc33aeea5bf1", + "label": "label-5935", + "height": 274, + "background": "green" + }, + { + "key": "3d090e74-a2a3-4b33-a175-d938369ac72a", + "label": "label-5936", + "height": 302, + "background": "yellow" + }, + { + "key": "07c63b26-2d67-4965-85a4-68ba97c7d9b4", + "label": "label-5937", + "height": 482, + "background": "green" + }, + { + "key": "fb9c5aca-825c-4537-8269-eb456ff8de25", + "label": "label-5938", + "height": 249, + "background": "yellow" + }, + { + "key": "427bbb49-0b66-4c8a-9b61-7ac554867ff2", + "label": "label-5939", + "height": 262, + "background": "yellow" + }, + { + "key": "2be94d8e-f862-458e-9fa1-5e751e4d7a52", + "label": "label-5940", + "height": 330, + "background": "yellow" + }, + { + "key": "5b4a2a1f-b854-4208-a6a3-c25b94087843", + "label": "label-5941", + "height": 474, + "background": "blue" + }, + { + "key": "8648b211-b5ce-49c1-b58e-2003dff35f0c", + "label": "label-5942", + "height": 135, + "background": "blue" + }, + { + "key": "bbf8efea-eadf-49f7-b95b-d65b0e6d10d7", + "label": "label-5943", + "height": 494, + "background": "green" + }, + { + "key": "deaa34ba-4083-41ed-8c45-5f74b09bd8c6", + "label": "label-5944", + "height": 332, + "background": "blue" + }, + { + "key": "0aebd34a-f34c-4b9c-88e9-7b2c18d34d9b", + "label": "label-5945", + "height": 50, + "background": "blue" + }, + { + "key": "1c3aebf3-ea65-48bc-80be-f3596c893f47", + "label": "label-5946", + "height": 103, + "background": "yellow" + }, + { + "key": "37f1f4be-9685-438f-8c5a-69272e8ac72c", + "label": "label-5947", + "height": 511, + "background": "green" + }, + { + "key": "3ff29d5d-63d4-48f0-8138-235fc7510099", + "label": "label-5948", + "height": 373, + "background": "blue" + }, + { + "key": "672f937d-22a5-4bba-b933-ef2f71ca959f", + "label": "label-5949", + "height": 401, + "background": "yellow" + }, + { + "key": "16b0fbe0-cd22-4cd6-bbf5-04459b7ece43", + "label": "label-5950", + "height": 325, + "background": "blue" + }, + { + "key": "8ae63437-32fc-4e04-aedc-5c44b510f9d2", + "label": "label-5951", + "height": 180, + "background": "green" + }, + { + "key": "76d4ec15-4e18-47af-9954-a66884973b82", + "label": "label-5952", + "height": 245, + "background": "red" + }, + { + "key": "e88c1170-9731-4d3c-b831-7c6e14c85aa5", + "label": "label-5953", + "height": 328, + "background": "green" + }, + { + "key": "9aa6aa72-200e-4ea3-bec0-f0f8b5692860", + "label": "label-5954", + "height": 362, + "background": "blue" + }, + { + "key": "2b3fc83a-5e67-4950-a3da-f0b20c280177", + "label": "label-5955", + "height": 93, + "background": "blue" + }, + { + "key": "ff58a064-9246-4d47-9e86-053b37083a0b", + "label": "label-5956", + "height": 232, + "background": "blue" + }, + { + "key": "e4ee31cd-d27d-4d45-9cd3-706297d03c0f", + "label": "label-5957", + "height": 523, + "background": "red" + }, + { + "key": "fb9cbcdf-05cd-409b-b357-817372e3ea63", + "label": "label-5958", + "height": 442, + "background": "red" + }, + { + "key": "cb3d1bd9-52e3-4060-b34e-33a6a93b7bcf", + "label": "label-5959", + "height": 215, + "background": "green" + }, + { + "key": "073b23b3-3a74-47ca-80cc-244669679192", + "label": "label-5960", + "height": 59, + "background": "red" + }, + { + "key": "52909899-24a0-4103-846a-4b25107e605e", + "label": "label-5961", + "height": 126, + "background": "yellow" + }, + { + "key": "6628d45b-1163-46a9-8f64-356d703e1947", + "label": "label-5962", + "height": 452, + "background": "blue" + }, + { + "key": "83d4007f-287d-4d5e-9fdf-749449188a30", + "label": "label-5963", + "height": 149, + "background": "green" + }, + { + "key": "bd1e70a1-2440-41f6-82c5-1bad0b59a780", + "label": "label-5964", + "height": 490, + "background": "red" + }, + { + "key": "ea43180b-d81a-44be-a311-bfb05576a201", + "label": "label-5965", + "height": 386, + "background": "yellow" + }, + { + "key": "8492b598-d039-4b15-b411-42814225a28b", + "label": "label-5966", + "height": 171, + "background": "red" + }, + { + "key": "0389bca7-156e-4863-9d6e-411a97a3afb4", + "label": "label-5967", + "height": 193, + "background": "red" + }, + { + "key": "5bd9eb54-1baa-4e49-ba34-32bee5dde33e", + "label": "label-5968", + "height": 193, + "background": "red" + }, + { + "key": "1bc02b1c-844e-4479-a220-955c424ad28f", + "label": "label-5969", + "height": 255, + "background": "yellow" + }, + { + "key": "0e00a4af-16fd-49f4-bac1-f966ddb947f7", + "label": "label-5970", + "height": 77, + "background": "yellow" + }, + { + "key": "d66a73fd-375a-4732-b7b3-c7476ec9e8ba", + "label": "label-5971", + "height": 317, + "background": "blue" + }, + { + "key": "241b7f6c-1c47-4678-8196-2aa2c11d9978", + "label": "label-5972", + "height": 227, + "background": "blue" + }, + { + "key": "e459f4f0-87ca-4604-bf4c-d290baf0ed7d", + "label": "label-5973", + "height": 412, + "background": "green" + }, + { + "key": "740f6ef4-ccd7-4b6f-aa5b-078207d69e57", + "label": "label-5974", + "height": 87, + "background": "yellow" + }, + { + "key": "3a4a3b48-05bb-4ea4-8351-c66aded86c04", + "label": "label-5975", + "height": 41, + "background": "yellow" + }, + { + "key": "5d4ade36-78b9-4afd-a65e-16472613c041", + "label": "label-5976", + "height": 274, + "background": "red" + }, + { + "key": "4142b1bb-65d6-456f-a6d2-8414c082e675", + "label": "label-5977", + "height": 507, + "background": "yellow" + }, + { + "key": "a0a6b751-c46c-41f5-b478-3e73c814355d", + "label": "label-5978", + "height": 461, + "background": "yellow" + }, + { + "key": "df47dca5-b326-4033-a05d-e96f8e927c26", + "label": "label-5979", + "height": 493, + "background": "red" + }, + { + "key": "a9d1bdbf-97d1-42a4-99a7-631ab0496de6", + "label": "label-5980", + "height": 129, + "background": "yellow" + }, + { + "key": "a56bdf8c-3e7d-4152-81e2-b27606761be4", + "label": "label-5981", + "height": 68, + "background": "blue" + }, + { + "key": "87328d65-11f6-4136-8883-ee21ae5fd559", + "label": "label-5982", + "height": 131, + "background": "green" + }, + { + "key": "d8d62c8b-d83f-4cbc-b66f-6bc19bfc057c", + "label": "label-5983", + "height": 126, + "background": "red" + }, + { + "key": "03e3d4b3-1e3b-4647-a3d5-ddcad91bb35d", + "label": "label-5984", + "height": 487, + "background": "yellow" + }, + { + "key": "45574747-596e-4007-9831-b0708b0985b0", + "label": "label-5985", + "height": 372, + "background": "yellow" + }, + { + "key": "e41e3395-af87-45a7-bc44-4fff2713e06b", + "label": "label-5986", + "height": 229, + "background": "green" + }, + { + "key": "f597b94f-6321-44e8-abea-7f26ff02273c", + "label": "label-5987", + "height": 342, + "background": "blue" + }, + { + "key": "d6f7ddd2-0d4e-4a4b-acba-463d211a4126", + "label": "label-5988", + "height": 469, + "background": "red" + }, + { + "key": "a2645b4b-f24d-4da7-9563-111a00bcc882", + "label": "label-5989", + "height": 371, + "background": "yellow" + }, + { + "key": "4e13155a-bfed-4799-b625-f780e53d1512", + "label": "label-5990", + "height": 234, + "background": "red" + }, + { + "key": "181788bd-e267-4274-9992-f16643c2c83e", + "label": "label-5991", + "height": 456, + "background": "green" + }, + { + "key": "6ef74334-2269-448f-ad5d-479eb65c4316", + "label": "label-5992", + "height": 47, + "background": "yellow" + }, + { + "key": "e0ff8265-3060-43f0-b49b-b524d41c466c", + "label": "label-5993", + "height": 266, + "background": "green" + }, + { + "key": "69c1e0f6-9673-4451-bd6b-ccccf0dd08c5", + "label": "label-5994", + "height": 483, + "background": "green" + }, + { + "key": "97cdbc13-c4d0-495d-98c3-04ce4d173c56", + "label": "label-5995", + "height": 391, + "background": "green" + }, + { + "key": "dff41a8c-2dc1-4a5e-a0c3-c318c9af9cf9", + "label": "label-5996", + "height": 102, + "background": "green" + }, + { + "key": "942d2c75-34d3-42cd-b7a4-9b46fdf868cc", + "label": "label-5997", + "height": 307, + "background": "blue" + }, + { + "key": "6eb31ec4-4e21-4f2d-abde-895c100a5f61", + "label": "label-5998", + "height": 495, + "background": "blue" + }, + { + "key": "5bfdb78f-4a88-4863-a974-12c9e239ae79", + "label": "label-5999", + "height": 522, + "background": "blue" + }, + { + "key": "b75a06c4-8b46-4692-a3c7-685e596b09ef", + "label": "label-6000", + "height": 150, + "background": "blue" + }, + { + "key": "e70101ae-47ee-4138-bbde-0fe370ad3d22", + "label": "label-6001", + "height": 326, + "background": "yellow" + }, + { + "key": "fc7ca152-a638-4cf2-9e95-d40bda1d712c", + "label": "label-6002", + "height": 312, + "background": "blue" + }, + { + "key": "86e5b038-57ea-46a5-afc8-32a0ac95d975", + "label": "label-6003", + "height": 351, + "background": "yellow" + }, + { + "key": "cd5499fe-86eb-43a3-9992-8da5e314b73f", + "label": "label-6004", + "height": 227, + "background": "green" + }, + { + "key": "9cedcfc3-b958-4824-8e58-f49ec09b1572", + "label": "label-6005", + "height": 434, + "background": "green" + }, + { + "key": "d70da89a-4b37-40b7-9dc9-eb5d18bc9170", + "label": "label-6006", + "height": 208, + "background": "red" + }, + { + "key": "44a9543b-624e-4530-9e82-7b7531192849", + "label": "label-6007", + "height": 112, + "background": "red" + }, + { + "key": "cbe8dc01-0cf3-48e6-8900-c99d8845b207", + "label": "label-6008", + "height": 249, + "background": "blue" + }, + { + "key": "f834fdee-a199-4cf6-bda8-759cc54884c7", + "label": "label-6009", + "height": 261, + "background": "blue" + }, + { + "key": "a8e421ac-ed0a-4217-b4c3-13ac4d554d31", + "label": "label-6010", + "height": 338, + "background": "green" + }, + { + "key": "ba8d4056-f104-4dc0-a8de-33f49e21feb5", + "label": "label-6011", + "height": 270, + "background": "red" + }, + { + "key": "e2b40bdb-fe40-46de-9a18-0f2c32a97a0b", + "label": "label-6012", + "height": 441, + "background": "red" + }, + { + "key": "4a3d68db-4390-4764-a130-d674dfb79392", + "label": "label-6013", + "height": 204, + "background": "red" + }, + { + "key": "011070c9-9503-4025-a0bb-8ae17890978a", + "label": "label-6014", + "height": 237, + "background": "blue" + }, + { + "key": "fb90f1fe-9915-4401-9545-81ee4ded473d", + "label": "label-6015", + "height": 54, + "background": "yellow" + }, + { + "key": "e886d22b-1320-4c77-a823-094640381745", + "label": "label-6016", + "height": 447, + "background": "green" + }, + { + "key": "459f2f75-ca5d-4e54-9b74-264b232a1044", + "label": "label-6017", + "height": 474, + "background": "green" + }, + { + "key": "e2fa501b-f6cf-4d2e-a5a8-39c28580847a", + "label": "label-6018", + "height": 58, + "background": "green" + }, + { + "key": "36a2a881-d05b-44cc-bc5f-e1c214bd3bb4", + "label": "label-6019", + "height": 283, + "background": "blue" + }, + { + "key": "abe2253e-1abb-459a-86a6-e4738d6f13f4", + "label": "label-6020", + "height": 511, + "background": "green" + }, + { + "key": "cea745c4-ea18-46bd-ae35-90ffbabaff22", + "label": "label-6021", + "height": 512, + "background": "red" + }, + { + "key": "0bee55c0-bfe6-4d1d-94ec-214ede6fb464", + "label": "label-6022", + "height": 242, + "background": "yellow" + }, + { + "key": "847f5ee1-8c44-4645-ac31-3483ad4eb60e", + "label": "label-6023", + "height": 323, + "background": "blue" + }, + { + "key": "3b1b938f-e7bd-4b6e-8255-666e9fa16e5d", + "label": "label-6024", + "height": 411, + "background": "blue" + }, + { + "key": "c08c8f8b-fc15-4748-96ea-d9da38bb1223", + "label": "label-6025", + "height": 279, + "background": "green" + }, + { + "key": "99c5c6fa-ab03-4f4d-aed7-a22a042adfa0", + "label": "label-6026", + "height": 236, + "background": "blue" + }, + { + "key": "e7f79a5f-94de-405e-9021-94a8f6caa3e2", + "label": "label-6027", + "height": 185, + "background": "red" + }, + { + "key": "edfb7d7b-c5c7-4f4a-abea-83bef850c5cb", + "label": "label-6028", + "height": 371, + "background": "yellow" + }, + { + "key": "ee19912e-c158-4eef-9afc-349d5e2d94ae", + "label": "label-6029", + "height": 429, + "background": "red" + }, + { + "key": "08e4169c-bcfc-4e11-8190-0b76940809e2", + "label": "label-6030", + "height": 387, + "background": "yellow" + }, + { + "key": "b1a6be9c-b537-42e7-bae3-d742f1770f70", + "label": "label-6031", + "height": 147, + "background": "red" + }, + { + "key": "46baba91-7b6d-4783-b2ad-ef5f1c670b4c", + "label": "label-6032", + "height": 260, + "background": "blue" + }, + { + "key": "39e8be15-5fe4-4de1-af75-c8e3335f573f", + "label": "label-6033", + "height": 447, + "background": "yellow" + }, + { + "key": "c003cbf2-0f5b-4c1b-b873-17d3fe2dbe3c", + "label": "label-6034", + "height": 481, + "background": "red" + }, + { + "key": "324b2014-b6ce-4d40-812f-6d42e4361e5e", + "label": "label-6035", + "height": 210, + "background": "yellow" + }, + { + "key": "0edc1407-a1c4-4263-96ba-c722133d8b11", + "label": "label-6036", + "height": 269, + "background": "red" + }, + { + "key": "977f21a7-f6fb-48c0-88bb-93319b47aa93", + "label": "label-6037", + "height": 139, + "background": "red" + }, + { + "key": "a7f0ff2a-2b56-40a8-a20d-c7faf84c12b3", + "label": "label-6038", + "height": 320, + "background": "yellow" + }, + { + "key": "e50d289f-53ec-4bd2-9d85-4cb92e77913c", + "label": "label-6039", + "height": 93, + "background": "red" + }, + { + "key": "1cd8434a-4adb-4a20-8e7f-079e1319a628", + "label": "label-6040", + "height": 354, + "background": "blue" + }, + { + "key": "8c35e9a9-5a2a-47e9-858d-3762cb099976", + "label": "label-6041", + "height": 192, + "background": "red" + }, + { + "key": "77dae1fa-3d41-4e70-9c1a-fd0fb70ab1c6", + "label": "label-6042", + "height": 456, + "background": "red" + }, + { + "key": "bd3173f6-c23c-4c5f-a89a-3fc0be8a9634", + "label": "label-6043", + "height": 310, + "background": "green" + }, + { + "key": "083da5d8-887d-46a8-a42b-7397a7cb5979", + "label": "label-6044", + "height": 137, + "background": "yellow" + }, + { + "key": "ee7faa6c-d4b7-4b02-a869-68f0ad510a58", + "label": "label-6045", + "height": 318, + "background": "green" + }, + { + "key": "ee36ff28-9da1-45e7-842a-c4123f5c6c40", + "label": "label-6046", + "height": 250, + "background": "blue" + }, + { + "key": "2af3537b-2538-4a05-9443-d334ceaba501", + "label": "label-6047", + "height": 59, + "background": "yellow" + }, + { + "key": "13a9e1c2-addb-4ffe-8cfe-960836b325d5", + "label": "label-6048", + "height": 413, + "background": "blue" + }, + { + "key": "a4bfd6ef-d97d-4b0c-a53e-6a48d3726a17", + "label": "label-6049", + "height": 424, + "background": "blue" + }, + { + "key": "29e3583c-71b2-46f4-911f-945b4988ba96", + "label": "label-6050", + "height": 364, + "background": "yellow" + }, + { + "key": "0311e67e-05d2-4a32-8dc9-2ab5b386b594", + "label": "label-6051", + "height": 453, + "background": "yellow" + }, + { + "key": "a0b1bc0d-95e5-491a-ba9a-bac02b76d47c", + "label": "label-6052", + "height": 140, + "background": "yellow" + }, + { + "key": "f80fbe37-4def-4437-ba18-16f42351a6b7", + "label": "label-6053", + "height": 335, + "background": "red" + }, + { + "key": "4fcc0567-6050-4e55-ae2b-ba3617a5bc20", + "label": "label-6054", + "height": 285, + "background": "green" + }, + { + "key": "5eab8daf-89c8-47b1-8961-b0281735f46f", + "label": "label-6055", + "height": 212, + "background": "yellow" + }, + { + "key": "9d1f000a-4013-4160-84a3-fc2f9b8da8c7", + "label": "label-6056", + "height": 85, + "background": "red" + }, + { + "key": "6f5e4df9-4ba1-4191-9fb6-c1b5e3e08f65", + "label": "label-6057", + "height": 283, + "background": "blue" + }, + { + "key": "712cd01f-30bd-4454-af74-81cea69ac1f1", + "label": "label-6058", + "height": 408, + "background": "yellow" + }, + { + "key": "e24b0bc6-aa5f-4eff-8d62-28a08edf1bdd", + "label": "label-6059", + "height": 102, + "background": "blue" + }, + { + "key": "c91cf609-b392-4a67-b149-23f7cbd839d7", + "label": "label-6060", + "height": 38, + "background": "red" + }, + { + "key": "b1dddcd5-4ad4-4e74-bd2f-8066738d9e8f", + "label": "label-6061", + "height": 225, + "background": "blue" + }, + { + "key": "93d8e167-2269-4ae4-9241-c8771f524716", + "label": "label-6062", + "height": 228, + "background": "yellow" + }, + { + "key": "bdaf3ff3-9053-4c12-bcfb-ec4663c80cc5", + "label": "label-6063", + "height": 211, + "background": "yellow" + }, + { + "key": "d66a13d9-89a9-411c-a638-b3234d5afb82", + "label": "label-6064", + "height": 259, + "background": "green" + }, + { + "key": "bd4f7a4b-eafd-47ad-8f1c-1448811be40c", + "label": "label-6065", + "height": 152, + "background": "yellow" + }, + { + "key": "16ab9a96-1985-44d4-bd55-a43aa3194d6a", + "label": "label-6066", + "height": 261, + "background": "blue" + }, + { + "key": "31d58d2b-7914-4877-a663-55f04bd76c36", + "label": "label-6067", + "height": 452, + "background": "red" + }, + { + "key": "d99e4ace-6d1d-42a5-80fc-f30eb66aa3af", + "label": "label-6068", + "height": 298, + "background": "green" + }, + { + "key": "1acb0706-6a75-4aa1-ba1d-97b081c055d2", + "label": "label-6069", + "height": 163, + "background": "blue" + }, + { + "key": "0e6a5d93-f82b-4e8c-bd8e-b961c1c6b793", + "label": "label-6070", + "height": 207, + "background": "yellow" + }, + { + "key": "90371f7f-7668-4ccf-9fca-9b4c4d476c2e", + "label": "label-6071", + "height": 531, + "background": "blue" + }, + { + "key": "f3660eaa-9cbf-468d-afad-779926b6ee6d", + "label": "label-6072", + "height": 80, + "background": "yellow" + }, + { + "key": "38bfea40-daae-4d48-9f15-7d913afcdc89", + "label": "label-6073", + "height": 477, + "background": "blue" + }, + { + "key": "f303642c-bc4b-4427-927e-e03b648cb983", + "label": "label-6074", + "height": 273, + "background": "blue" + }, + { + "key": "a5e0acfd-f4eb-4cbe-b4bc-4f9703d64bb1", + "label": "label-6075", + "height": 517, + "background": "green" + }, + { + "key": "449a2744-a802-4546-90ab-43a3dbe42a89", + "label": "label-6076", + "height": 479, + "background": "blue" + }, + { + "key": "b893a4de-9e76-4706-99e6-6a9fb8a19fdd", + "label": "label-6077", + "height": 272, + "background": "red" + }, + { + "key": "03e50ee1-4163-4ae6-9ec2-f4db921023df", + "label": "label-6078", + "height": 117, + "background": "green" + }, + { + "key": "45ecaf73-f4bf-48d5-b791-eb77ba41eb29", + "label": "label-6079", + "height": 244, + "background": "red" + }, + { + "key": "7a0e2813-dd36-4ed1-afb1-19d5076b634d", + "label": "label-6080", + "height": 33, + "background": "yellow" + }, + { + "key": "02221f05-0f76-49a8-8542-f07c977f2a1f", + "label": "label-6081", + "height": 36, + "background": "yellow" + }, + { + "key": "dffcef29-8063-4c7b-bb15-daa6e81c406d", + "label": "label-6082", + "height": 456, + "background": "yellow" + }, + { + "key": "cea42dca-7f93-4456-812a-e6c40a19c0c0", + "label": "label-6083", + "height": 75, + "background": "green" + }, + { + "key": "83700f6c-6cb1-4ad4-abdb-e2c1337efcba", + "label": "label-6084", + "height": 365, + "background": "green" + }, + { + "key": "47ec41c9-2b7b-4d4c-aca3-ca387a05fb9c", + "label": "label-6085", + "height": 514, + "background": "red" + }, + { + "key": "1af3bfcd-d244-4601-9287-3744be85d4d4", + "label": "label-6086", + "height": 71, + "background": "yellow" + }, + { + "key": "5e90cd91-46c5-4e4e-b31f-13b94626697e", + "label": "label-6087", + "height": 518, + "background": "blue" + }, + { + "key": "b3105681-e0f8-44fd-9457-5d217fcc491e", + "label": "label-6088", + "height": 103, + "background": "blue" + }, + { + "key": "69497ed9-50c3-474a-b600-d7052de31522", + "label": "label-6089", + "height": 464, + "background": "green" + }, + { + "key": "b32c35bd-19a2-411e-a082-2a8434bb78f8", + "label": "label-6090", + "height": 150, + "background": "blue" + }, + { + "key": "8fa36214-e354-4ec8-8c46-5f5b4862940d", + "label": "label-6091", + "height": 509, + "background": "yellow" + }, + { + "key": "19ab7f5c-cf61-423a-8c9d-a9b4f1b5bbfd", + "label": "label-6092", + "height": 508, + "background": "green" + }, + { + "key": "7e0938e0-32a9-45b4-9199-b23afa862da8", + "label": "label-6093", + "height": 330, + "background": "red" + }, + { + "key": "0223c922-6a18-4e55-949d-054dd12797bd", + "label": "label-6094", + "height": 287, + "background": "yellow" + }, + { + "key": "eb81afb4-63e5-4452-8bb8-c0ffcab403ca", + "label": "label-6095", + "height": 352, + "background": "yellow" + }, + { + "key": "a5112103-99e6-4e6e-bc56-68029df91933", + "label": "label-6096", + "height": 183, + "background": "green" + }, + { + "key": "5c371d64-cae2-4af8-82c2-3f8a4717158b", + "label": "label-6097", + "height": 518, + "background": "blue" + }, + { + "key": "68635c6d-6333-472a-b5de-00f4249ebf94", + "label": "label-6098", + "height": 83, + "background": "blue" + }, + { + "key": "65e30213-e088-4623-9a89-6249d8353f92", + "label": "label-6099", + "height": 433, + "background": "red" + }, + { + "key": "28ff1b1a-bd52-48bd-82de-0e17753a484d", + "label": "label-6100", + "height": 331, + "background": "blue" + }, + { + "key": "b29d27fa-01fb-4a04-9640-f2d2670398f1", + "label": "label-6101", + "height": 524, + "background": "green" + }, + { + "key": "ea151928-f3be-416b-9c1f-15806dcb0d77", + "label": "label-6102", + "height": 211, + "background": "green" + }, + { + "key": "31bc9184-53f0-4dda-aa8a-4aa0f9440852", + "label": "label-6103", + "height": 379, + "background": "green" + }, + { + "key": "a14386df-44e1-4447-9560-652684a0380d", + "label": "label-6104", + "height": 233, + "background": "blue" + }, + { + "key": "3f6a3e96-e092-4af9-aa39-c2ffeec2b8a7", + "label": "label-6105", + "height": 98, + "background": "yellow" + }, + { + "key": "1b681518-f075-4044-832e-fab80e70b0f4", + "label": "label-6106", + "height": 482, + "background": "red" + }, + { + "key": "810b274d-12c1-403e-b91f-804052579b9e", + "label": "label-6107", + "height": 430, + "background": "red" + }, + { + "key": "a7236ce0-d218-4793-ab5f-08981dd10669", + "label": "label-6108", + "height": 55, + "background": "red" + }, + { + "key": "76376501-b992-47d7-90e9-a3189913fa77", + "label": "label-6109", + "height": 304, + "background": "yellow" + }, + { + "key": "daf2161e-e9eb-4b8e-8065-56c0d5118aac", + "label": "label-6110", + "height": 390, + "background": "red" + }, + { + "key": "1d84a142-741c-4673-be8a-11cd93d480fe", + "label": "label-6111", + "height": 68, + "background": "yellow" + }, + { + "key": "f6310069-1575-4c97-9369-67d65f78a56f", + "label": "label-6112", + "height": 245, + "background": "blue" + }, + { + "key": "a4366699-553c-4e41-9d89-53c86095d0be", + "label": "label-6113", + "height": 426, + "background": "green" + }, + { + "key": "cfabbfc0-d78b-46f2-863c-b7df4926d937", + "label": "label-6114", + "height": 161, + "background": "yellow" + }, + { + "key": "83c4468a-a578-4a29-8667-007ad39ec113", + "label": "label-6115", + "height": 328, + "background": "green" + }, + { + "key": "05c14f70-f7fe-488a-80ee-5e6f28a2098d", + "label": "label-6116", + "height": 521, + "background": "yellow" + }, + { + "key": "c3857af2-0455-457e-9992-643c2901d02a", + "label": "label-6117", + "height": 486, + "background": "yellow" + }, + { + "key": "12a1d80a-2610-4831-873c-f86abab19184", + "label": "label-6118", + "height": 240, + "background": "blue" + }, + { + "key": "05fb4d28-8064-4a7d-a3da-8da01048aae9", + "label": "label-6119", + "height": 116, + "background": "yellow" + }, + { + "key": "56c1a839-c6b7-4fd9-82fe-4aada50abfb4", + "label": "label-6120", + "height": 485, + "background": "green" + }, + { + "key": "d4ef686e-7557-476a-87fa-617ce45f2a92", + "label": "label-6121", + "height": 350, + "background": "blue" + }, + { + "key": "173c9a32-74d6-459c-b04b-60a05226615c", + "label": "label-6122", + "height": 56, + "background": "red" + }, + { + "key": "396f91e4-4bc4-4770-ab1d-9503d6388684", + "label": "label-6123", + "height": 226, + "background": "yellow" + }, + { + "key": "9a07c058-2318-4e49-9bda-ac0ca03dfb96", + "label": "label-6124", + "height": 498, + "background": "blue" + }, + { + "key": "0be6b99b-8bb1-446f-9d4b-5c6e8d4d867b", + "label": "label-6125", + "height": 405, + "background": "yellow" + }, + { + "key": "31fcecb6-d7bb-458b-b6fc-ccc91d4d407a", + "label": "label-6126", + "height": 58, + "background": "green" + }, + { + "key": "4f4234f2-4aaf-4b7e-8600-b4350d5f9bfc", + "label": "label-6127", + "height": 262, + "background": "blue" + }, + { + "key": "892f82f5-ab84-467a-8dc5-62cdd3a5b25c", + "label": "label-6128", + "height": 243, + "background": "red" + }, + { + "key": "8dfe7f7f-51b8-45bb-8ac2-a612a55adae7", + "label": "label-6129", + "height": 353, + "background": "blue" + }, + { + "key": "d32d1342-1228-4515-8bf0-7e8b79f03740", + "label": "label-6130", + "height": 144, + "background": "green" + }, + { + "key": "85dcc2ac-2600-4f9c-90a1-f424151b9ead", + "label": "label-6131", + "height": 57, + "background": "yellow" + }, + { + "key": "7d2b5819-af94-4fe5-86dc-d219a6b11fa4", + "label": "label-6132", + "height": 88, + "background": "yellow" + }, + { + "key": "73bc4dcd-e7ff-4ea1-bdf8-46c9318ffbab", + "label": "label-6133", + "height": 434, + "background": "yellow" + }, + { + "key": "4d3c20f2-fde2-4d54-b305-7e44998395ca", + "label": "label-6134", + "height": 216, + "background": "green" + }, + { + "key": "b2672b81-2aa9-4ec0-a15b-ac43a1dd87e7", + "label": "label-6135", + "height": 33, + "background": "green" + }, + { + "key": "493ae385-d96e-4e5f-86f7-3e60716db8cc", + "label": "label-6136", + "height": 79, + "background": "red" + }, + { + "key": "2d1dcfbd-443a-4ef3-993a-3a5432cda702", + "label": "label-6137", + "height": 294, + "background": "yellow" + }, + { + "key": "4a345a5c-f796-444d-a3eb-fde3fc47cb8e", + "label": "label-6138", + "height": 143, + "background": "red" + }, + { + "key": "0b5bafdf-43de-4024-a117-8537a0f3b28b", + "label": "label-6139", + "height": 296, + "background": "green" + }, + { + "key": "3816a54e-25a0-4c1e-8b8d-2cf5e51a3ae3", + "label": "label-6140", + "height": 379, + "background": "yellow" + }, + { + "key": "cfb845fd-7fb7-4371-850d-e09ba3379a4d", + "label": "label-6141", + "height": 109, + "background": "blue" + }, + { + "key": "e9694188-d256-420f-8ceb-96d0cac39add", + "label": "label-6142", + "height": 272, + "background": "red" + }, + { + "key": "e26f9a2b-59e9-4ea8-af35-ceb32b098752", + "label": "label-6143", + "height": 353, + "background": "yellow" + }, + { + "key": "aef15dcb-6224-4ba4-97eb-1f25bb2d8419", + "label": "label-6144", + "height": 457, + "background": "yellow" + }, + { + "key": "9800c4cb-9b76-47f5-bd91-b0c8c64121b3", + "label": "label-6145", + "height": 319, + "background": "green" + }, + { + "key": "e274c626-0900-4805-ad2a-a21a0bddaf76", + "label": "label-6146", + "height": 388, + "background": "red" + }, + { + "key": "bcbaffcf-7b8b-4cae-836d-b39115885356", + "label": "label-6147", + "height": 101, + "background": "blue" + }, + { + "key": "deface05-3f3e-4dab-8698-27e37b4e4e72", + "label": "label-6148", + "height": 323, + "background": "green" + }, + { + "key": "ecdd22b0-a4fb-4563-b0d9-f8234210ddf9", + "label": "label-6149", + "height": 121, + "background": "yellow" + }, + { + "key": "8d24a5c6-5366-4068-89c0-4cc9f893fe9a", + "label": "label-6150", + "height": 369, + "background": "yellow" + }, + { + "key": "148e1e4b-2802-4de0-9930-a49291b8784f", + "label": "label-6151", + "height": 434, + "background": "red" + }, + { + "key": "3e776bbe-8abb-414a-b55c-91d276f67438", + "label": "label-6152", + "height": 358, + "background": "green" + }, + { + "key": "b9866a3d-3dc0-4e92-9cc8-b26b80a1c635", + "label": "label-6153", + "height": 206, + "background": "red" + }, + { + "key": "db7e2da8-dd4a-49f5-ad61-28dc43527110", + "label": "label-6154", + "height": 188, + "background": "blue" + }, + { + "key": "7f4120bb-ae3a-4696-9c07-8c106d681caf", + "label": "label-6155", + "height": 211, + "background": "red" + }, + { + "key": "79503cf1-162e-4dc2-beb2-86d64a81ff59", + "label": "label-6156", + "height": 437, + "background": "blue" + }, + { + "key": "60554ec7-24ab-4621-88b1-3c46b3d51dc3", + "label": "label-6157", + "height": 98, + "background": "red" + }, + { + "key": "2e06e1b2-2c10-4ca6-8fdf-5a641eeb483c", + "label": "label-6158", + "height": 329, + "background": "red" + }, + { + "key": "203ce0a3-9111-4114-b50a-a94b0b827f8d", + "label": "label-6159", + "height": 409, + "background": "red" + }, + { + "key": "afdad92d-d36d-4904-a8f2-30da34993b79", + "label": "label-6160", + "height": 167, + "background": "blue" + }, + { + "key": "7edfb200-79ae-4e30-a412-3e4eb2bcdbc8", + "label": "label-6161", + "height": 480, + "background": "yellow" + }, + { + "key": "5d023304-78e1-4caf-962a-7198563032e4", + "label": "label-6162", + "height": 273, + "background": "blue" + }, + { + "key": "975b9c81-9f45-4ab9-aaa0-4248decd4a0c", + "label": "label-6163", + "height": 261, + "background": "red" + }, + { + "key": "0f271964-4874-4d8e-9487-1a0cbf897210", + "label": "label-6164", + "height": 473, + "background": "red" + }, + { + "key": "077bbff3-4539-4943-8cec-449e176c685d", + "label": "label-6165", + "height": 45, + "background": "blue" + }, + { + "key": "d9716e35-955e-478c-a0a3-43e71efb096e", + "label": "label-6166", + "height": 393, + "background": "yellow" + }, + { + "key": "a7074bd5-c0c8-44f1-8156-2dbe2a14d2b0", + "label": "label-6167", + "height": 529, + "background": "yellow" + }, + { + "key": "935fac93-174b-4353-b091-df78770d3384", + "label": "label-6168", + "height": 217, + "background": "blue" + }, + { + "key": "84b434ee-3c01-484b-90a7-605a996ce77a", + "label": "label-6169", + "height": 257, + "background": "blue" + }, + { + "key": "91905585-fae3-419c-895c-03e5f7787f77", + "label": "label-6170", + "height": 97, + "background": "blue" + }, + { + "key": "cba60f9b-0533-484a-bc99-0673c8a04bfc", + "label": "label-6171", + "height": 95, + "background": "yellow" + }, + { + "key": "d38d6035-7c51-46cc-964c-3d2a9c38e254", + "label": "label-6172", + "height": 441, + "background": "red" + }, + { + "key": "baf44d6c-f0c6-437c-a701-548dbcb5d580", + "label": "label-6173", + "height": 213, + "background": "green" + }, + { + "key": "29c8364f-e50d-409c-9583-2ba0e0319acf", + "label": "label-6174", + "height": 36, + "background": "red" + }, + { + "key": "b939ce3c-f3cb-4299-8bdd-899f779c6966", + "label": "label-6175", + "height": 281, + "background": "blue" + }, + { + "key": "8565fc7a-0325-46c5-a1db-6dcd3f57d500", + "label": "label-6176", + "height": 375, + "background": "yellow" + }, + { + "key": "685de69c-5991-4201-9a25-37b806240013", + "label": "label-6177", + "height": 275, + "background": "yellow" + }, + { + "key": "19d88da6-866d-4cdd-b69f-231216e75f87", + "label": "label-6178", + "height": 345, + "background": "red" + }, + { + "key": "173ebb8f-afd2-4cf9-8e09-7e3a9dd17599", + "label": "label-6179", + "height": 466, + "background": "yellow" + }, + { + "key": "ecc09f62-db63-4578-a92c-5c1213b219d4", + "label": "label-6180", + "height": 132, + "background": "yellow" + }, + { + "key": "78226d3f-a51e-41b8-a367-1c4b947dec08", + "label": "label-6181", + "height": 347, + "background": "blue" + }, + { + "key": "9b78ec2e-c820-4970-8dd0-c09274584440", + "label": "label-6182", + "height": 517, + "background": "yellow" + }, + { + "key": "17c38c1e-97f7-4694-bb83-181dbe58e861", + "label": "label-6183", + "height": 36, + "background": "blue" + }, + { + "key": "9d176db5-c1f6-43fa-b04e-456ef9079e10", + "label": "label-6184", + "height": 105, + "background": "red" + }, + { + "key": "ee9d3aea-f6d4-42fc-b4e6-8d99adb904aa", + "label": "label-6185", + "height": 276, + "background": "red" + }, + { + "key": "0a90a9ec-cfce-4b62-bc74-7fea20dff289", + "label": "label-6186", + "height": 159, + "background": "blue" + }, + { + "key": "0acbd7b1-8655-40e2-a343-3f22cd52f86e", + "label": "label-6187", + "height": 276, + "background": "yellow" + }, + { + "key": "6860ac36-c54f-4a69-b9ef-6fbe369d481e", + "label": "label-6188", + "height": 282, + "background": "blue" + }, + { + "key": "a9a06816-6f51-4a5c-aedb-ea574bba0aa5", + "label": "label-6189", + "height": 154, + "background": "blue" + }, + { + "key": "60c43c24-9ccf-43d5-bed6-728e5f04b8da", + "label": "label-6190", + "height": 148, + "background": "red" + }, + { + "key": "8f708388-79e8-4fe0-9aab-4cc39076331d", + "label": "label-6191", + "height": 51, + "background": "green" + }, + { + "key": "1beec431-8f86-4a09-a1b9-fd4d5001e0d7", + "label": "label-6192", + "height": 40, + "background": "red" + }, + { + "key": "46af1779-842b-46ee-8e22-b715a0462d12", + "label": "label-6193", + "height": 83, + "background": "blue" + }, + { + "key": "9001b8a7-e4c3-4847-b121-c543a2208801", + "label": "label-6194", + "height": 450, + "background": "red" + }, + { + "key": "b1846011-cc26-4205-af81-ec29e5355a92", + "label": "label-6195", + "height": 516, + "background": "red" + }, + { + "key": "becc162a-e915-4798-b24f-b15eab89a825", + "label": "label-6196", + "height": 310, + "background": "blue" + }, + { + "key": "3bc2254c-afa0-4549-a26e-b60050d94fc0", + "label": "label-6197", + "height": 253, + "background": "green" + }, + { + "key": "e73d68c2-3dc7-40c4-9bfc-61ea592273b6", + "label": "label-6198", + "height": 78, + "background": "blue" + }, + { + "key": "d5220ed8-132d-4f8b-8df3-ac0416816311", + "label": "label-6199", + "height": 455, + "background": "green" + }, + { + "key": "d25f9d1c-815d-4199-bbb6-f473977eb0f8", + "label": "label-6200", + "height": 77, + "background": "blue" + }, + { + "key": "1fd20b66-6f59-4730-888a-95f0ff73720d", + "label": "label-6201", + "height": 502, + "background": "green" + }, + { + "key": "1bdc1923-cde4-4822-b2f2-4bbfb2d189a7", + "label": "label-6202", + "height": 281, + "background": "red" + }, + { + "key": "7ceb8b50-c575-4f65-bc6c-93cb3ff0a598", + "label": "label-6203", + "height": 86, + "background": "yellow" + }, + { + "key": "c2683de8-0dcf-449d-9011-f2988c4c1599", + "label": "label-6204", + "height": 248, + "background": "red" + }, + { + "key": "30e54c58-83bd-4b18-ae01-acb086f71a22", + "label": "label-6205", + "height": 277, + "background": "blue" + }, + { + "key": "31496504-b104-4308-a4b0-45799019c4b8", + "label": "label-6206", + "height": 136, + "background": "red" + }, + { + "key": "7303ee97-3705-47fd-861f-c0aea1f383cc", + "label": "label-6207", + "height": 240, + "background": "blue" + }, + { + "key": "c452bd27-a24a-48b0-9dde-fe05a000119d", + "label": "label-6208", + "height": 432, + "background": "yellow" + }, + { + "key": "d4728474-5c6d-4676-b111-bf3577baee7d", + "label": "label-6209", + "height": 263, + "background": "green" + }, + { + "key": "3c1b377a-a9bb-4bf0-8e33-a375c60dc29f", + "label": "label-6210", + "height": 43, + "background": "yellow" + }, + { + "key": "e4153a8e-5603-4f09-9659-e20b35419a7b", + "label": "label-6211", + "height": 288, + "background": "green" + }, + { + "key": "12aa3b46-b570-4832-b2fa-4e9f44d97efd", + "label": "label-6212", + "height": 342, + "background": "green" + }, + { + "key": "11a3bf93-9b01-43ac-a732-e3d3473f5708", + "label": "label-6213", + "height": 252, + "background": "blue" + }, + { + "key": "9bfc09e9-55ce-478d-81a3-f6b33ac740bd", + "label": "label-6214", + "height": 236, + "background": "green" + }, + { + "key": "7feb8a2a-daeb-45be-a8e5-07f026a5bf30", + "label": "label-6215", + "height": 236, + "background": "blue" + }, + { + "key": "b8927cc4-f26a-4f40-a543-6fe2abae3a36", + "label": "label-6216", + "height": 75, + "background": "yellow" + }, + { + "key": "9819633c-5006-4c83-8fa8-f49c2c0a8f20", + "label": "label-6217", + "height": 154, + "background": "yellow" + }, + { + "key": "bd2fd35d-8d44-4854-b7fd-d920fa79d61a", + "label": "label-6218", + "height": 54, + "background": "yellow" + }, + { + "key": "fef572f3-ea2c-41c9-ac3f-e428410b9db8", + "label": "label-6219", + "height": 282, + "background": "blue" + }, + { + "key": "d3d49be5-24c5-4746-826e-12e142cea467", + "label": "label-6220", + "height": 483, + "background": "red" + }, + { + "key": "23eb55ca-eb20-4049-944a-3a71c5452f4f", + "label": "label-6221", + "height": 49, + "background": "yellow" + }, + { + "key": "4ba6b5f0-184f-4594-b10e-a24c927bdb48", + "label": "label-6222", + "height": 403, + "background": "blue" + }, + { + "key": "98dff516-75c3-4f16-884c-64a1e87dbddd", + "label": "label-6223", + "height": 241, + "background": "blue" + }, + { + "key": "4b3bb2c0-17e3-40d9-9282-7b9e42412f9e", + "label": "label-6224", + "height": 144, + "background": "green" + }, + { + "key": "8194ce65-bb89-466c-b50c-5ff71e25f9b7", + "label": "label-6225", + "height": 437, + "background": "red" + }, + { + "key": "3a98e63f-07cf-4d4d-a71a-ec8da043ff2b", + "label": "label-6226", + "height": 281, + "background": "yellow" + }, + { + "key": "aace98bc-43f4-4d54-8489-5b669da0e699", + "label": "label-6227", + "height": 92, + "background": "blue" + }, + { + "key": "6cdf4310-dfed-4d56-805a-3572200044e5", + "label": "label-6228", + "height": 404, + "background": "red" + }, + { + "key": "72381fd9-f5fe-416e-b044-8f3137555483", + "label": "label-6229", + "height": 111, + "background": "blue" + }, + { + "key": "b60c552e-565b-4d84-a6d6-1aec5d6ee864", + "label": "label-6230", + "height": 78, + "background": "yellow" + }, + { + "key": "a11f67f9-460a-429b-911b-c0dd0307e961", + "label": "label-6231", + "height": 67, + "background": "green" + }, + { + "key": "2b371169-cf65-4633-8e36-a301f8b72236", + "label": "label-6232", + "height": 344, + "background": "red" + }, + { + "key": "b6c0e4d1-06f1-4c64-b397-b2c1568577a7", + "label": "label-6233", + "height": 494, + "background": "blue" + }, + { + "key": "c05f3a4a-5bf6-42b3-9adb-d1593337b887", + "label": "label-6234", + "height": 134, + "background": "yellow" + }, + { + "key": "f4415620-2c54-4914-abe9-c21ef3291115", + "label": "label-6235", + "height": 505, + "background": "green" + }, + { + "key": "6e68a729-4a73-4073-b7ce-bcad895ffd95", + "label": "label-6236", + "height": 316, + "background": "red" + }, + { + "key": "3f536ba5-d6de-469e-a616-c31ed56ebba8", + "label": "label-6237", + "height": 255, + "background": "green" + }, + { + "key": "45504d88-6339-4a01-8f36-9493423c3107", + "label": "label-6238", + "height": 368, + "background": "red" + }, + { + "key": "f70f24cf-4ac7-4acb-9704-4371f07cb830", + "label": "label-6239", + "height": 65, + "background": "yellow" + }, + { + "key": "cc203831-eee8-4454-b072-ce13ee2078fb", + "label": "label-6240", + "height": 92, + "background": "green" + }, + { + "key": "10a86c9f-0827-43cd-b54b-765945db2b88", + "label": "label-6241", + "height": 477, + "background": "yellow" + }, + { + "key": "56f083c0-71df-455c-9e41-31080c9e0e3e", + "label": "label-6242", + "height": 225, + "background": "red" + }, + { + "key": "107e601a-fc3f-469f-9ce2-3169d0e63111", + "label": "label-6243", + "height": 127, + "background": "red" + }, + { + "key": "aec760fb-69d8-492c-a5c4-afd6efbca1f0", + "label": "label-6244", + "height": 351, + "background": "green" + }, + { + "key": "c6ece9ba-7aeb-4cdd-850e-f165aab15a7b", + "label": "label-6245", + "height": 237, + "background": "blue" + }, + { + "key": "df178984-a50d-4e9a-bed0-be401deced67", + "label": "label-6246", + "height": 142, + "background": "blue" + }, + { + "key": "72dad759-a353-4e3d-abfd-ea63b7c29b83", + "label": "label-6247", + "height": 524, + "background": "blue" + }, + { + "key": "4ca50346-8770-43a2-aea9-fa9a77dfff57", + "label": "label-6248", + "height": 484, + "background": "red" + }, + { + "key": "c01dfa67-156b-4aad-a3bc-41d8545f2b45", + "label": "label-6249", + "height": 437, + "background": "red" + }, + { + "key": "40bf4374-35ce-49e3-bd6b-437300f05c41", + "label": "label-6250", + "height": 229, + "background": "blue" + }, + { + "key": "301da5d3-481b-4147-b093-68cd290341f3", + "label": "label-6251", + "height": 258, + "background": "yellow" + }, + { + "key": "ff527556-4947-4073-901c-691d829c0a6c", + "label": "label-6252", + "height": 203, + "background": "yellow" + }, + { + "key": "8e35c984-b5fa-4465-8bcb-addd03ec75f1", + "label": "label-6253", + "height": 314, + "background": "red" + }, + { + "key": "1ab02ac9-0bd7-4b31-a5c7-d009b5361b56", + "label": "label-6254", + "height": 394, + "background": "red" + }, + { + "key": "7836384e-97f1-422a-9db2-4ec0b1ba8b92", + "label": "label-6255", + "height": 515, + "background": "red" + }, + { + "key": "96406b37-78f1-4e9e-97fa-d55a529314c2", + "label": "label-6256", + "height": 350, + "background": "blue" + }, + { + "key": "ef34bc44-1a7c-4c63-9028-f6f5817443c0", + "label": "label-6257", + "height": 464, + "background": "green" + }, + { + "key": "a0580bbf-77c6-47ae-8146-409fbf3d5b4b", + "label": "label-6258", + "height": 126, + "background": "yellow" + }, + { + "key": "157e40b5-d070-4b38-adc8-f818de58ed6e", + "label": "label-6259", + "height": 70, + "background": "blue" + }, + { + "key": "a43e4141-e3cf-401e-ac9f-b8dd05be19cf", + "label": "label-6260", + "height": 358, + "background": "yellow" + }, + { + "key": "9d3e379d-3ffd-4c45-a6c5-06be5342e94e", + "label": "label-6261", + "height": 218, + "background": "yellow" + }, + { + "key": "54f40a7a-a448-4e29-b6d4-ea81983f5369", + "label": "label-6262", + "height": 365, + "background": "red" + }, + { + "key": "617aa811-a80e-4747-83b9-9067a5dea7dd", + "label": "label-6263", + "height": 173, + "background": "yellow" + }, + { + "key": "bb4741a9-b40a-4c0e-8e77-9eed9535b364", + "label": "label-6264", + "height": 472, + "background": "green" + }, + { + "key": "ce42990a-2387-4991-9ae2-907f60ff264f", + "label": "label-6265", + "height": 361, + "background": "yellow" + }, + { + "key": "82f1ad04-fb47-430a-82b2-e2b5bf8c2128", + "label": "label-6266", + "height": 333, + "background": "red" + }, + { + "key": "2eb9698a-8f49-4617-8155-e6508f3b5cdc", + "label": "label-6267", + "height": 108, + "background": "green" + }, + { + "key": "78c203b6-25d7-4e94-a0cf-c2546efd32ae", + "label": "label-6268", + "height": 348, + "background": "blue" + }, + { + "key": "b587157b-39be-49ab-9362-16956d0ec37c", + "label": "label-6269", + "height": 251, + "background": "red" + }, + { + "key": "e7c9d8c4-deed-4b97-b7c9-b9f4d51bc2a7", + "label": "label-6270", + "height": 432, + "background": "red" + }, + { + "key": "5a853c35-2246-4f13-afbf-21b9bf6a4e4d", + "label": "label-6271", + "height": 528, + "background": "red" + }, + { + "key": "0dd478b4-5edb-4028-bb86-e6d51c8b0c55", + "label": "label-6272", + "height": 227, + "background": "red" + }, + { + "key": "b1328003-4fa5-452c-adcd-d17a9555f41d", + "label": "label-6273", + "height": 435, + "background": "blue" + }, + { + "key": "3e73ad33-c137-4ab1-a76e-9983129d6a28", + "label": "label-6274", + "height": 309, + "background": "green" + }, + { + "key": "dff4bdfa-9fe9-4873-8217-5a0aa4a8701a", + "label": "label-6275", + "height": 75, + "background": "green" + }, + { + "key": "174cee82-bcdd-406b-808d-6c6868004aa7", + "label": "label-6276", + "height": 529, + "background": "red" + }, + { + "key": "147ceabe-6a74-4cd5-98fc-53b82add0241", + "label": "label-6277", + "height": 499, + "background": "green" + }, + { + "key": "2d238a95-1978-4838-b450-5a0392d73024", + "label": "label-6278", + "height": 73, + "background": "red" + }, + { + "key": "16059390-9748-4127-9c25-eb9eefc3f497", + "label": "label-6279", + "height": 429, + "background": "red" + }, + { + "key": "764aa6f5-b357-4cf8-ae62-eb59052951fd", + "label": "label-6280", + "height": 98, + "background": "yellow" + }, + { + "key": "1b12fc5e-3f4d-4cbf-b654-a87bae163352", + "label": "label-6281", + "height": 59, + "background": "blue" + }, + { + "key": "d3acb7e7-c229-48d9-b701-613a45d740c3", + "label": "label-6282", + "height": 300, + "background": "red" + }, + { + "key": "ef16c83e-1c53-4364-ac8d-1f939fa3a1b8", + "label": "label-6283", + "height": 360, + "background": "yellow" + }, + { + "key": "363e4aac-537c-46e3-b8bf-27fe6bdf3ebd", + "label": "label-6284", + "height": 319, + "background": "green" + }, + { + "key": "d783ac28-1d46-4245-9735-0d0849e232e9", + "label": "label-6285", + "height": 72, + "background": "red" + }, + { + "key": "8b918259-9713-4324-b5cc-34c6b20bef46", + "label": "label-6286", + "height": 70, + "background": "red" + }, + { + "key": "f5f06191-26b5-4f5d-be45-a2a2b5766eea", + "label": "label-6287", + "height": 286, + "background": "blue" + }, + { + "key": "19a928a0-6936-4a26-98a9-c9e4db554069", + "label": "label-6288", + "height": 314, + "background": "blue" + }, + { + "key": "5c44236d-c306-46f4-a1e8-2583c0843226", + "label": "label-6289", + "height": 269, + "background": "yellow" + }, + { + "key": "745ab1bd-e351-430e-9d0f-d9be0186e803", + "label": "label-6290", + "height": 408, + "background": "green" + }, + { + "key": "1867a286-faea-4624-b680-28a6fa616328", + "label": "label-6291", + "height": 374, + "background": "red" + }, + { + "key": "0b3bd2d2-41de-44e9-8674-1b0ca2e2a0db", + "label": "label-6292", + "height": 520, + "background": "blue" + }, + { + "key": "b9050ae0-5b7f-48b1-8bdf-1671d0076d59", + "label": "label-6293", + "height": 254, + "background": "green" + }, + { + "key": "c9af8a0c-0f6d-48c0-aad4-dedc39042a5f", + "label": "label-6294", + "height": 298, + "background": "red" + }, + { + "key": "6b517985-6cd6-4616-9ee7-747c80e41365", + "label": "label-6295", + "height": 466, + "background": "yellow" + }, + { + "key": "88a18d44-4080-4542-b926-9f68b8df804a", + "label": "label-6296", + "height": 408, + "background": "green" + }, + { + "key": "0d91d82a-dc8d-4215-a27c-df80d6ac8092", + "label": "label-6297", + "height": 490, + "background": "green" + }, + { + "key": "74ac0f23-236f-4b10-9998-9788948d52f6", + "label": "label-6298", + "height": 496, + "background": "blue" + }, + { + "key": "ab306444-33e1-4685-9a33-914711f201f9", + "label": "label-6299", + "height": 66, + "background": "blue" + }, + { + "key": "b6838cef-9b1f-43b2-abfa-79023d76c777", + "label": "label-6300", + "height": 292, + "background": "green" + }, + { + "key": "5bcb276c-190c-43a0-8d11-b6d4dcbbd58e", + "label": "label-6301", + "height": 412, + "background": "green" + }, + { + "key": "d6abee5e-384a-4f0c-a717-dc93f99806ba", + "label": "label-6302", + "height": 468, + "background": "yellow" + }, + { + "key": "bbfcb67d-8333-4a59-953f-64b857e3caad", + "label": "label-6303", + "height": 433, + "background": "red" + }, + { + "key": "8c200425-952d-4fe3-8b71-86871cf230d1", + "label": "label-6304", + "height": 231, + "background": "yellow" + }, + { + "key": "18f2b6c3-405f-4f1b-a391-7c7f60f08e67", + "label": "label-6305", + "height": 89, + "background": "green" + }, + { + "key": "252710b2-955c-4be7-9b87-78b84954de89", + "label": "label-6306", + "height": 308, + "background": "red" + }, + { + "key": "1d727d5e-06bc-4f93-9536-db362d363391", + "label": "label-6307", + "height": 449, + "background": "green" + }, + { + "key": "8f872aa4-610a-45fd-b726-99f1b84949d0", + "label": "label-6308", + "height": 363, + "background": "yellow" + }, + { + "key": "da28acb4-ba9c-4573-af60-80031a5558be", + "label": "label-6309", + "height": 455, + "background": "red" + }, + { + "key": "ae996fd7-6747-40b8-a6c2-79af302b4f66", + "label": "label-6310", + "height": 135, + "background": "yellow" + }, + { + "key": "1ec53f2c-a7c3-44f0-bb1b-79534c6441b8", + "label": "label-6311", + "height": 74, + "background": "green" + }, + { + "key": "36a549e3-2fee-4fac-94cf-0f40ab6dd11a", + "label": "label-6312", + "height": 254, + "background": "red" + }, + { + "key": "5ced4b97-bd34-401a-867f-7c480e67bc5a", + "label": "label-6313", + "height": 250, + "background": "red" + }, + { + "key": "0c5501b6-9f46-4ecf-ac82-707655558585", + "label": "label-6314", + "height": 441, + "background": "blue" + }, + { + "key": "51d006f8-0d3a-4199-a300-8dee431b3d88", + "label": "label-6315", + "height": 418, + "background": "green" + }, + { + "key": "8b69e3b8-f507-4a4b-8db3-bb387e152a97", + "label": "label-6316", + "height": 522, + "background": "green" + }, + { + "key": "992a153d-a293-40fd-b2e9-ad1c9ae7ed12", + "label": "label-6317", + "height": 92, + "background": "red" + }, + { + "key": "db8e5608-b51b-4b55-a5eb-2397d643ee31", + "label": "label-6318", + "height": 452, + "background": "green" + }, + { + "key": "52319169-6eae-44b7-a9d1-e9d5a6f3af9e", + "label": "label-6319", + "height": 200, + "background": "yellow" + }, + { + "key": "3e4fbeed-d889-4fe0-ba18-854b89ea0b52", + "label": "label-6320", + "height": 95, + "background": "green" + }, + { + "key": "cd67b47d-daf0-4f57-980e-4e89f04e60e9", + "label": "label-6321", + "height": 365, + "background": "green" + }, + { + "key": "e5295d32-a510-4971-8888-85eda40efc8e", + "label": "label-6322", + "height": 487, + "background": "red" + }, + { + "key": "6bcdfc1d-8fef-49b7-94de-1c5936f718fe", + "label": "label-6323", + "height": 221, + "background": "yellow" + }, + { + "key": "dedd8759-37dc-4d41-a0ca-1bb19034487f", + "label": "label-6324", + "height": 344, + "background": "yellow" + }, + { + "key": "edb0b125-5741-45db-a38d-c923627b6fc9", + "label": "label-6325", + "height": 312, + "background": "green" + }, + { + "key": "a51990f5-4eee-449a-9a98-871d9ea5e9cb", + "label": "label-6326", + "height": 444, + "background": "red" + }, + { + "key": "2f4cc8e6-3ab1-4b1b-93a4-b5ee27501648", + "label": "label-6327", + "height": 431, + "background": "yellow" + }, + { + "key": "48865649-d72a-44be-b79e-f53ec9f0de21", + "label": "label-6328", + "height": 290, + "background": "green" + }, + { + "key": "8aa211ed-fca6-4759-8391-37d2ba3efceb", + "label": "label-6329", + "height": 95, + "background": "blue" + }, + { + "key": "b02f7c4d-dc1e-443e-ab0c-903d6b61ca1e", + "label": "label-6330", + "height": 189, + "background": "yellow" + }, + { + "key": "dca54d1b-df78-49fe-9a85-dc05ff91d457", + "label": "label-6331", + "height": 403, + "background": "green" + }, + { + "key": "d1eb9cb6-e5d3-4546-a138-3087a20c9236", + "label": "label-6332", + "height": 338, + "background": "red" + }, + { + "key": "09e48154-dc07-4588-9776-b486629b769d", + "label": "label-6333", + "height": 319, + "background": "red" + }, + { + "key": "a6f6712f-facb-43ec-9554-ea687707010e", + "label": "label-6334", + "height": 104, + "background": "green" + }, + { + "key": "81d979bd-a5cd-43dd-b96a-c1feb3eb7138", + "label": "label-6335", + "height": 256, + "background": "blue" + }, + { + "key": "055f2a34-014c-4c18-9c3c-af9fd71de477", + "label": "label-6336", + "height": 479, + "background": "green" + }, + { + "key": "81c0d7f1-09b6-43e2-8e2e-9f312228de6b", + "label": "label-6337", + "height": 405, + "background": "yellow" + }, + { + "key": "ec1ffe57-4329-445b-9cd5-a08fc0a56c62", + "label": "label-6338", + "height": 159, + "background": "red" + }, + { + "key": "4de838ff-8fcf-4715-a557-0efd45c718bd", + "label": "label-6339", + "height": 370, + "background": "yellow" + }, + { + "key": "f555d7cf-dc85-49f1-a203-bb796064a348", + "label": "label-6340", + "height": 443, + "background": "blue" + }, + { + "key": "de07269c-a380-4776-ab33-8b234c7cb7db", + "label": "label-6341", + "height": 273, + "background": "green" + }, + { + "key": "50c0ae23-fb20-46c4-9b04-c19ce782f570", + "label": "label-6342", + "height": 389, + "background": "green" + }, + { + "key": "b429833f-7631-412d-8ec3-6450aab342f5", + "label": "label-6343", + "height": 463, + "background": "green" + }, + { + "key": "f6c91731-def4-448a-9b47-30bfe38da67f", + "label": "label-6344", + "height": 397, + "background": "yellow" + }, + { + "key": "742afc71-6e58-4724-8068-d575985766ac", + "label": "label-6345", + "height": 277, + "background": "blue" + }, + { + "key": "276e1afd-6cb2-4a87-9d02-114a58b0cdd3", + "label": "label-6346", + "height": 183, + "background": "red" + }, + { + "key": "9d8e8c05-b3c2-4ea9-aeb9-a624afc2d1cd", + "label": "label-6347", + "height": 199, + "background": "green" + }, + { + "key": "db263aee-6618-4cdc-8daa-0903b1b6c9ba", + "label": "label-6348", + "height": 364, + "background": "yellow" + }, + { + "key": "696f3b2e-abd1-4997-8968-b49d3c9301bd", + "label": "label-6349", + "height": 426, + "background": "blue" + }, + { + "key": "183e71ba-3498-4da2-a96f-f0fd0f2f2576", + "label": "label-6350", + "height": 295, + "background": "yellow" + }, + { + "key": "546e4f4d-3a2b-41ea-999c-d75b55276ce4", + "label": "label-6351", + "height": 176, + "background": "red" + }, + { + "key": "1e820bbc-5f9a-4e2d-aba1-8bcd35a7d9af", + "label": "label-6352", + "height": 195, + "background": "red" + }, + { + "key": "99116747-dd4c-4f9b-8956-d7739c6a0725", + "label": "label-6353", + "height": 171, + "background": "blue" + }, + { + "key": "2eeb4993-dbb8-4cf6-aa0f-319a4c20ee82", + "label": "label-6354", + "height": 508, + "background": "red" + }, + { + "key": "caaf1a74-0b4d-4f96-bdb1-e5d6aaf68b48", + "label": "label-6355", + "height": 311, + "background": "yellow" + }, + { + "key": "189aec10-e46b-486e-836e-357947e0290a", + "label": "label-6356", + "height": 227, + "background": "blue" + }, + { + "key": "88656266-980f-475f-a94d-ff2ac694dcb9", + "label": "label-6357", + "height": 144, + "background": "blue" + }, + { + "key": "1cd33e6b-40f9-4492-b671-bde711a7b9f9", + "label": "label-6358", + "height": 179, + "background": "yellow" + }, + { + "key": "0e630a92-3166-4d9a-b1d1-4be1dd3f6bc5", + "label": "label-6359", + "height": 416, + "background": "yellow" + }, + { + "key": "d8bb3d34-e8c1-402d-83be-ea166b40a3f1", + "label": "label-6360", + "height": 133, + "background": "yellow" + }, + { + "key": "3285237e-0eb6-41bb-a64b-76d2c12d0c18", + "label": "label-6361", + "height": 249, + "background": "red" + }, + { + "key": "72d2fd2c-0dc9-41ca-aac0-7f189b039769", + "label": "label-6362", + "height": 273, + "background": "blue" + }, + { + "key": "3c1d0fcb-6ea5-45d8-9920-293ffea20236", + "label": "label-6363", + "height": 441, + "background": "blue" + }, + { + "key": "644b7a39-9df8-446b-b452-dcd2f3f80148", + "label": "label-6364", + "height": 46, + "background": "green" + }, + { + "key": "2ebfc32b-44e6-4e12-88dd-c9aa66f68858", + "label": "label-6365", + "height": 457, + "background": "red" + }, + { + "key": "f72e8825-fc04-4545-8821-c54a0bbb48e4", + "label": "label-6366", + "height": 118, + "background": "yellow" + }, + { + "key": "3f3de2d6-e2a8-4967-8249-da91b00ca5d5", + "label": "label-6367", + "height": 382, + "background": "red" + }, + { + "key": "415d2568-4404-49c3-9fb9-12307794e41a", + "label": "label-6368", + "height": 174, + "background": "red" + }, + { + "key": "23850903-1ae7-4871-8dbe-98e2a7f8b704", + "label": "label-6369", + "height": 160, + "background": "blue" + }, + { + "key": "5c253a52-fed5-44c3-adba-259677e53561", + "label": "label-6370", + "height": 149, + "background": "blue" + }, + { + "key": "5e932387-e118-456c-bf51-c97055809290", + "label": "label-6371", + "height": 436, + "background": "blue" + }, + { + "key": "f74e2b8a-8969-4fc1-90f5-ce123110ee47", + "label": "label-6372", + "height": 388, + "background": "red" + }, + { + "key": "4e044169-96d1-4d87-9216-105d55764a3b", + "label": "label-6373", + "height": 458, + "background": "green" + }, + { + "key": "f56a2e88-48e4-4aa4-9d28-519872d3ae2a", + "label": "label-6374", + "height": 227, + "background": "green" + }, + { + "key": "c6f025f0-f6ba-4169-b41b-c1f37f876fc0", + "label": "label-6375", + "height": 430, + "background": "blue" + }, + { + "key": "1c21f96b-f2ab-4d30-a265-57e2f60d61ca", + "label": "label-6376", + "height": 526, + "background": "blue" + }, + { + "key": "9e5e9185-f41a-4584-8ad7-7602a54d9c66", + "label": "label-6377", + "height": 175, + "background": "blue" + }, + { + "key": "ee184c77-3ed7-4068-9fec-5e3243768d41", + "label": "label-6378", + "height": 495, + "background": "red" + }, + { + "key": "e584a316-2eb5-4bf5-8e50-ce0254062ba7", + "label": "label-6379", + "height": 486, + "background": "red" + }, + { + "key": "27115269-e3de-433f-a8c9-9d10b3fcc953", + "label": "label-6380", + "height": 339, + "background": "red" + }, + { + "key": "29916c32-f0ac-4620-9db4-dce611987b2d", + "label": "label-6381", + "height": 145, + "background": "red" + }, + { + "key": "795d75aa-1a06-4b91-8228-6704eba478c6", + "label": "label-6382", + "height": 66, + "background": "red" + }, + { + "key": "9b71ed21-4d3b-47ff-85e1-8a1462794c01", + "label": "label-6383", + "height": 290, + "background": "red" + }, + { + "key": "4d1f668a-fc0a-4740-bfb7-176d18ca1f94", + "label": "label-6384", + "height": 129, + "background": "yellow" + }, + { + "key": "aa930826-908e-4087-9696-10f854c61159", + "label": "label-6385", + "height": 49, + "background": "green" + }, + { + "key": "901bdb3f-20ca-4b11-8a19-9292e0f66708", + "label": "label-6386", + "height": 404, + "background": "green" + }, + { + "key": "f52fdcbd-63e6-48c4-96b5-5d364c4e50cd", + "label": "label-6387", + "height": 381, + "background": "red" + }, + { + "key": "a91e65da-33da-4b02-81f4-d680913c5f46", + "label": "label-6388", + "height": 459, + "background": "red" + }, + { + "key": "be546450-1e02-44d8-a055-e619945f939a", + "label": "label-6389", + "height": 432, + "background": "blue" + }, + { + "key": "2511cb90-8e76-4d5b-958e-7086f7d59790", + "label": "label-6390", + "height": 132, + "background": "yellow" + }, + { + "key": "f522dc3a-2d76-4bd8-a504-55bf4662a807", + "label": "label-6391", + "height": 86, + "background": "green" + }, + { + "key": "674b2fab-82ad-463c-9e29-0cbbc5452d86", + "label": "label-6392", + "height": 257, + "background": "blue" + }, + { + "key": "251e67ee-2988-4a4e-94e3-1a68d863ddfa", + "label": "label-6393", + "height": 73, + "background": "green" + }, + { + "key": "54ad2a90-118c-4019-9e20-539e85df3ed7", + "label": "label-6394", + "height": 114, + "background": "yellow" + }, + { + "key": "17561042-f2e5-454b-b6f1-2645be1d1138", + "label": "label-6395", + "height": 504, + "background": "blue" + }, + { + "key": "c1edf86d-000b-4221-900c-990cbf7591b2", + "label": "label-6396", + "height": 242, + "background": "blue" + }, + { + "key": "008ebb82-514d-4956-8bc0-4fa1f26948dd", + "label": "label-6397", + "height": 58, + "background": "yellow" + }, + { + "key": "67bc01d6-5162-4494-9cfc-220a200a6132", + "label": "label-6398", + "height": 289, + "background": "blue" + }, + { + "key": "93b2aad1-38e1-40db-9176-7c1a50f11ee5", + "label": "label-6399", + "height": 371, + "background": "red" + }, + { + "key": "99c7f8d9-9cae-4a8a-a377-f0b0434abce7", + "label": "label-6400", + "height": 490, + "background": "green" + }, + { + "key": "9cf1849d-fbe8-4a94-bb39-f18749b523cd", + "label": "label-6401", + "height": 494, + "background": "red" + }, + { + "key": "5a374da5-3aea-4ea8-8025-009a13afd3fa", + "label": "label-6402", + "height": 356, + "background": "green" + }, + { + "key": "4545eaec-e7e1-40b9-9f93-8c1dcdf44bb9", + "label": "label-6403", + "height": 413, + "background": "red" + }, + { + "key": "9c0acaf7-53da-4a5e-8839-2ac33cb8d922", + "label": "label-6404", + "height": 324, + "background": "blue" + }, + { + "key": "8216f4f4-8b46-4d6a-a42d-10fa338add80", + "label": "label-6405", + "height": 498, + "background": "red" + }, + { + "key": "682c6663-cb1d-46c1-810c-4eb9bb5d3371", + "label": "label-6406", + "height": 344, + "background": "yellow" + }, + { + "key": "5b9dd1bf-83d5-46d5-8235-2d9a769c7547", + "label": "label-6407", + "height": 175, + "background": "green" + }, + { + "key": "7f64b83e-d9e6-4e4c-9bc8-b6b53f9c0324", + "label": "label-6408", + "height": 110, + "background": "green" + }, + { + "key": "b82141a4-5b36-4516-96bf-8f45fe7f5121", + "label": "label-6409", + "height": 502, + "background": "yellow" + }, + { + "key": "94955375-58f3-48bf-9b74-c471a6432301", + "label": "label-6410", + "height": 196, + "background": "green" + }, + { + "key": "7c4798b8-58e9-4e71-aae6-fb06448a5a24", + "label": "label-6411", + "height": 190, + "background": "green" + }, + { + "key": "63fe6125-05ff-45bf-9842-94c8878d2dc2", + "label": "label-6412", + "height": 453, + "background": "yellow" + }, + { + "key": "1768476c-47ff-4956-b3c9-cbe0b1488f95", + "label": "label-6413", + "height": 156, + "background": "green" + }, + { + "key": "bcc34487-1112-412c-a334-fb4517eabffd", + "label": "label-6414", + "height": 421, + "background": "green" + }, + { + "key": "e306aee3-b7e7-4c28-baf7-f1cc21850979", + "label": "label-6415", + "height": 352, + "background": "red" + }, + { + "key": "0433681a-696e-45b5-b2a5-468d04ead20a", + "label": "label-6416", + "height": 264, + "background": "yellow" + }, + { + "key": "fbfde299-301f-4837-a3a0-2d9535bdf447", + "label": "label-6417", + "height": 495, + "background": "yellow" + }, + { + "key": "ee9d5e0a-4017-4c74-a396-03993c92e928", + "label": "label-6418", + "height": 224, + "background": "yellow" + }, + { + "key": "018bc252-80b6-468d-b77c-e54ba22d7f8f", + "label": "label-6419", + "height": 126, + "background": "red" + }, + { + "key": "844b07fa-3519-41c4-b64f-8517d39f7ab3", + "label": "label-6420", + "height": 450, + "background": "blue" + }, + { + "key": "72f51b48-db74-4e15-9396-7c3579d9d677", + "label": "label-6421", + "height": 469, + "background": "green" + }, + { + "key": "76c386cc-b8e0-4714-8e73-2a5b77733e9f", + "label": "label-6422", + "height": 102, + "background": "blue" + }, + { + "key": "2b785fa4-19cc-4404-a9a9-df850c403f66", + "label": "label-6423", + "height": 107, + "background": "red" + }, + { + "key": "f6f28e48-725e-4337-9dc2-c1a114fa8fcb", + "label": "label-6424", + "height": 61, + "background": "blue" + }, + { + "key": "1e6647ad-39a7-422d-995f-bd8b080a28ed", + "label": "label-6425", + "height": 355, + "background": "red" + }, + { + "key": "92a32b89-d36f-47bb-88d3-3d4aeefea9bd", + "label": "label-6426", + "height": 446, + "background": "green" + }, + { + "key": "20821045-fb39-4bef-b98b-bf72363b84e9", + "label": "label-6427", + "height": 469, + "background": "blue" + }, + { + "key": "59c4f2d8-11e5-4561-b882-40c8cc3d7796", + "label": "label-6428", + "height": 224, + "background": "blue" + }, + { + "key": "bce8fe79-5030-44a8-9884-64d0dc3ccfe6", + "label": "label-6429", + "height": 43, + "background": "red" + }, + { + "key": "4f7d7ac0-ccb9-40e4-930b-ee12b8a77f3b", + "label": "label-6430", + "height": 306, + "background": "red" + }, + { + "key": "3e5f75d1-e441-4958-b675-fbb68ca76dbe", + "label": "label-6431", + "height": 106, + "background": "blue" + }, + { + "key": "eadd3fff-2f4f-4393-ba3e-ea71ed3feb46", + "label": "label-6432", + "height": 385, + "background": "green" + }, + { + "key": "91b01bf5-3312-43a9-8c3e-5c8b2b2966b0", + "label": "label-6433", + "height": 150, + "background": "yellow" + }, + { + "key": "c7c000da-33d1-4b9d-b331-eb625ef04ce8", + "label": "label-6434", + "height": 438, + "background": "green" + }, + { + "key": "86f8ba55-8f22-46dd-ba66-e6837b08d4e5", + "label": "label-6435", + "height": 330, + "background": "blue" + }, + { + "key": "e92270ee-d0df-49b0-b1d2-1d374a77f2be", + "label": "label-6436", + "height": 46, + "background": "green" + }, + { + "key": "456bc8a4-23a0-4ea5-be2b-8ed182f454ee", + "label": "label-6437", + "height": 161, + "background": "green" + }, + { + "key": "184bf722-c7d2-4558-9b0d-fdee522b1c13", + "label": "label-6438", + "height": 159, + "background": "blue" + }, + { + "key": "7e7dc7e1-5382-4a2c-a923-da397de30b51", + "label": "label-6439", + "height": 358, + "background": "red" + }, + { + "key": "a2c13eba-434c-41b0-b516-09bd61915a4a", + "label": "label-6440", + "height": 218, + "background": "blue" + }, + { + "key": "b141af3c-cb06-4f1d-b8bf-637d5d6d3add", + "label": "label-6441", + "height": 496, + "background": "green" + }, + { + "key": "746e711e-cac3-4350-950d-18dee844cb48", + "label": "label-6442", + "height": 380, + "background": "green" + }, + { + "key": "f1084145-b4e9-48d4-ae1b-0339401d0e25", + "label": "label-6443", + "height": 71, + "background": "red" + }, + { + "key": "5af81089-ba87-4bd9-b626-c49826b42537", + "label": "label-6444", + "height": 521, + "background": "yellow" + }, + { + "key": "e812157a-68ae-49e1-b80d-4a72bc5a8334", + "label": "label-6445", + "height": 296, + "background": "blue" + }, + { + "key": "91ce0fa2-c2e4-448b-a648-33df6bc06a05", + "label": "label-6446", + "height": 100, + "background": "blue" + }, + { + "key": "699c89e4-c48d-4848-ab6c-4107d8a70553", + "label": "label-6447", + "height": 174, + "background": "yellow" + }, + { + "key": "a9c77068-44b0-4cde-a38e-18c698202764", + "label": "label-6448", + "height": 402, + "background": "red" + }, + { + "key": "4d33ff5c-a8e3-433c-808a-4401388eca7b", + "label": "label-6449", + "height": 474, + "background": "blue" + }, + { + "key": "aec9506c-201c-4c08-a74d-a1247505fd83", + "label": "label-6450", + "height": 462, + "background": "green" + }, + { + "key": "7b35eb09-3f52-4547-9037-0cf65671db8e", + "label": "label-6451", + "height": 239, + "background": "yellow" + }, + { + "key": "9e41314f-5b9e-4f66-9673-6d9635c836ac", + "label": "label-6452", + "height": 479, + "background": "blue" + }, + { + "key": "4e93d119-6182-47b8-a55c-4d3758a7e12e", + "label": "label-6453", + "height": 232, + "background": "yellow" + }, + { + "key": "2a1d7740-a25b-485e-be78-0a8b88f43ee6", + "label": "label-6454", + "height": 345, + "background": "blue" + }, + { + "key": "68a65d83-ffe7-497a-bdd0-eda132e337e5", + "label": "label-6455", + "height": 317, + "background": "blue" + }, + { + "key": "d98d0c73-444d-40a4-80ce-46ee4be0492e", + "label": "label-6456", + "height": 103, + "background": "blue" + }, + { + "key": "21956d40-856a-4a4a-b77e-5adf7c7bfac9", + "label": "label-6457", + "height": 270, + "background": "blue" + }, + { + "key": "c9a432b9-7866-4a3f-a52d-72017c9ef6a2", + "label": "label-6458", + "height": 431, + "background": "yellow" + }, + { + "key": "c0db67b9-9b9e-4d68-8ab9-8d7a16b8b472", + "label": "label-6459", + "height": 362, + "background": "blue" + }, + { + "key": "2399bf37-2074-48a2-9e05-d49e6ba1d2af", + "label": "label-6460", + "height": 124, + "background": "blue" + }, + { + "key": "3e87ddcd-dd09-4b4b-aff0-367aa3095a34", + "label": "label-6461", + "height": 498, + "background": "green" + }, + { + "key": "93b3e6a0-b4a6-4081-aaaa-b9aaec991dd0", + "label": "label-6462", + "height": 175, + "background": "red" + }, + { + "key": "bbd3908a-647a-4372-bd82-3c5225ec0934", + "label": "label-6463", + "height": 393, + "background": "green" + }, + { + "key": "bea47636-632b-4055-931c-1dfcec5a8eda", + "label": "label-6464", + "height": 413, + "background": "yellow" + }, + { + "key": "9420a399-8c29-48e1-9ccd-a8c0c2d32e6d", + "label": "label-6465", + "height": 322, + "background": "green" + }, + { + "key": "fd308c5a-14fa-47cd-9822-7b8a4e22e10e", + "label": "label-6466", + "height": 469, + "background": "red" + }, + { + "key": "2d25953f-fd33-4c84-90e3-74e7ef48e3c5", + "label": "label-6467", + "height": 425, + "background": "red" + }, + { + "key": "9706ca5e-d789-4f85-b018-398eddf8e71a", + "label": "label-6468", + "height": 261, + "background": "yellow" + }, + { + "key": "c327c5a6-e6c4-48eb-9808-434c7ed53077", + "label": "label-6469", + "height": 508, + "background": "red" + }, + { + "key": "18577faf-38a3-4ef0-8808-3589c007f925", + "label": "label-6470", + "height": 420, + "background": "blue" + }, + { + "key": "91f4499d-f112-420a-aaaf-ef8e27bc9d78", + "label": "label-6471", + "height": 320, + "background": "blue" + }, + { + "key": "53f5c919-7d4c-404d-b8de-dcb226e9a82f", + "label": "label-6472", + "height": 390, + "background": "blue" + }, + { + "key": "6b6bf741-4450-4466-84fc-18be240a1012", + "label": "label-6473", + "height": 353, + "background": "green" + }, + { + "key": "93743f5b-9e66-4f10-8c9c-0df74bf3e2e3", + "label": "label-6474", + "height": 156, + "background": "green" + }, + { + "key": "85de3060-aad0-420b-8d17-018ea82692e2", + "label": "label-6475", + "height": 426, + "background": "yellow" + }, + { + "key": "db09c319-1a32-4df1-bbe0-e905a24823e5", + "label": "label-6476", + "height": 156, + "background": "yellow" + }, + { + "key": "68fb0ab8-2f6d-46ed-9553-816780d20420", + "label": "label-6477", + "height": 396, + "background": "red" + }, + { + "key": "1b888a40-035b-4752-842f-a8214f206de0", + "label": "label-6478", + "height": 196, + "background": "red" + }, + { + "key": "11cd2e5f-ed10-4721-8589-8af5bb8e46ba", + "label": "label-6479", + "height": 357, + "background": "yellow" + }, + { + "key": "972fdf07-745a-455e-8dc5-0e1dff1464a5", + "label": "label-6480", + "height": 261, + "background": "red" + }, + { + "key": "839682b4-cf27-4305-90d8-1ec76d67415c", + "label": "label-6481", + "height": 275, + "background": "yellow" + }, + { + "key": "114a5bb0-6349-480e-84b0-3ef86afae5db", + "label": "label-6482", + "height": 41, + "background": "green" + }, + { + "key": "cc7fe51d-94a2-4d62-b662-4201a605fd72", + "label": "label-6483", + "height": 425, + "background": "green" + }, + { + "key": "f4a51d90-99cb-4515-bf17-3b8ff9eb7a73", + "label": "label-6484", + "height": 325, + "background": "yellow" + }, + { + "key": "c6000357-0087-4d73-8bee-58206f8353b6", + "label": "label-6485", + "height": 145, + "background": "green" + }, + { + "key": "3c35d1b8-eb63-4d92-8ee6-92ea9c9a1309", + "label": "label-6486", + "height": 320, + "background": "green" + }, + { + "key": "44bb7c0e-929d-466f-bccb-5e6a2884ad7e", + "label": "label-6487", + "height": 380, + "background": "red" + }, + { + "key": "67c59802-4a17-48ea-9bcb-5555c305920d", + "label": "label-6488", + "height": 174, + "background": "red" + }, + { + "key": "2393c709-e17e-4fb6-97fa-929b9228650f", + "label": "label-6489", + "height": 87, + "background": "green" + }, + { + "key": "b1f512c2-2281-4841-9758-7934c6bc75a6", + "label": "label-6490", + "height": 255, + "background": "yellow" + }, + { + "key": "c7e3534a-96ef-425d-bdb6-1809857def33", + "label": "label-6491", + "height": 351, + "background": "green" + }, + { + "key": "ffe73362-4a7e-471a-b9d8-666ff33e491a", + "label": "label-6492", + "height": 50, + "background": "green" + }, + { + "key": "5d6ba4a9-69b3-4af8-b75f-36585bcd5d4a", + "label": "label-6493", + "height": 406, + "background": "yellow" + }, + { + "key": "a11fbcfb-75f0-4234-ba01-e169cbcf70ce", + "label": "label-6494", + "height": 518, + "background": "yellow" + }, + { + "key": "37abcee7-c724-4801-98fb-e80b6c95102d", + "label": "label-6495", + "height": 185, + "background": "yellow" + }, + { + "key": "cb9696dd-f5f6-4e20-974d-64d215b3263a", + "label": "label-6496", + "height": 148, + "background": "yellow" + }, + { + "key": "bd95abfa-b833-49fd-b3a7-c04073aff760", + "label": "label-6497", + "height": 292, + "background": "green" + }, + { + "key": "3985924d-8f59-4986-93c8-e55380c5ed4b", + "label": "label-6498", + "height": 47, + "background": "blue" + }, + { + "key": "09e852bc-34a9-4824-9af6-90c0690d645d", + "label": "label-6499", + "height": 103, + "background": "red" + }, + { + "key": "0bc1dbef-a366-4173-a0d0-95aafce2a110", + "label": "label-6500", + "height": 408, + "background": "green" + }, + { + "key": "f990746e-4ce3-4b36-9eac-930502e2bf08", + "label": "label-6501", + "height": 451, + "background": "green" + }, + { + "key": "b622db10-ce91-47c0-ace8-c2a3f4f7d61e", + "label": "label-6502", + "height": 239, + "background": "yellow" + }, + { + "key": "0b6e0ad5-34ab-4e20-b6b9-86fb69bf6fc8", + "label": "label-6503", + "height": 43, + "background": "green" + }, + { + "key": "b2903f2d-fdb7-4bef-b208-2ff339f31b4c", + "label": "label-6504", + "height": 52, + "background": "blue" + }, + { + "key": "2edf7c89-89c6-45ed-adba-71066e7441b0", + "label": "label-6505", + "height": 308, + "background": "green" + }, + { + "key": "2a82b75f-14a4-4588-9e66-de3af19a9b68", + "label": "label-6506", + "height": 46, + "background": "green" + }, + { + "key": "8b1b133f-7df0-4ede-8fc1-609737e9f3e8", + "label": "label-6507", + "height": 296, + "background": "green" + }, + { + "key": "744ef4b9-baeb-4e0b-bd17-8cc414a20aed", + "label": "label-6508", + "height": 377, + "background": "green" + }, + { + "key": "ce15a939-0fa2-4f16-b270-f7cd68838e34", + "label": "label-6509", + "height": 174, + "background": "blue" + }, + { + "key": "84340a43-4002-4ad9-b211-edbd9466910f", + "label": "label-6510", + "height": 325, + "background": "green" + }, + { + "key": "099beeda-492f-43f1-a09c-bc6a89f81f43", + "label": "label-6511", + "height": 57, + "background": "yellow" + }, + { + "key": "fe69550f-da7f-4c27-a156-7455b81e2b6a", + "label": "label-6512", + "height": 98, + "background": "red" + }, + { + "key": "850427a4-5815-45e2-9473-e3fdff025e7e", + "label": "label-6513", + "height": 363, + "background": "red" + }, + { + "key": "aedd1230-1c0b-4ec8-8cfd-398cf8f20162", + "label": "label-6514", + "height": 509, + "background": "yellow" + }, + { + "key": "e317d84c-60a0-4b12-bd68-00a5285c8b8a", + "label": "label-6515", + "height": 215, + "background": "green" + }, + { + "key": "46a904e0-277d-4f06-be19-eb988a63be34", + "label": "label-6516", + "height": 162, + "background": "green" + }, + { + "key": "e5333356-e41e-4601-9602-ed2abd02e878", + "label": "label-6517", + "height": 218, + "background": "yellow" + }, + { + "key": "d0154f24-fe24-45f7-b4d2-efc1621e16ca", + "label": "label-6518", + "height": 438, + "background": "red" + }, + { + "key": "3a82d9ca-fc0b-4350-974e-5c005e9c2c89", + "label": "label-6519", + "height": 281, + "background": "yellow" + }, + { + "key": "0ad90166-8137-4ed8-9470-70f107f01e4d", + "label": "label-6520", + "height": 308, + "background": "yellow" + }, + { + "key": "ba8e5e97-1e42-411a-89bc-da31ff4717ae", + "label": "label-6521", + "height": 94, + "background": "red" + }, + { + "key": "0c08c4b9-f1d4-4435-b18c-31a2bbf2d6e5", + "label": "label-6522", + "height": 93, + "background": "red" + }, + { + "key": "9db1136d-0d41-4854-b0da-c5be272bd9cf", + "label": "label-6523", + "height": 472, + "background": "yellow" + }, + { + "key": "6b66d7ba-c85b-478b-bb6f-fd3f3ab12e61", + "label": "label-6524", + "height": 212, + "background": "blue" + }, + { + "key": "b76105d7-48dd-41d8-8364-67b946322895", + "label": "label-6525", + "height": 316, + "background": "blue" + }, + { + "key": "7ef751bf-ee77-4730-bbad-183eaa66cd06", + "label": "label-6526", + "height": 213, + "background": "green" + }, + { + "key": "23ddc870-0c44-419d-b427-31fbf34d7a91", + "label": "label-6527", + "height": 368, + "background": "yellow" + }, + { + "key": "8d112f8a-e886-46c5-bf38-6ab90c57390b", + "label": "label-6528", + "height": 221, + "background": "green" + }, + { + "key": "99857c2d-f068-4245-b5e4-303602e2fe0b", + "label": "label-6529", + "height": 174, + "background": "green" + }, + { + "key": "5c241564-0358-438c-ba1f-54b3f774d3ef", + "label": "label-6530", + "height": 235, + "background": "red" + }, + { + "key": "fae9752a-fca2-441f-96ae-b1e0340778cc", + "label": "label-6531", + "height": 338, + "background": "green" + }, + { + "key": "ecff9b93-b3d1-43a9-8634-60654493fc35", + "label": "label-6532", + "height": 99, + "background": "blue" + }, + { + "key": "43eb2e35-6c9b-4882-bf0c-845ba88e510c", + "label": "label-6533", + "height": 230, + "background": "blue" + }, + { + "key": "49fe1b19-f3d8-4ca6-8c83-7f117e5ab6a6", + "label": "label-6534", + "height": 319, + "background": "red" + }, + { + "key": "9509f8f5-5c20-4d47-802d-c348239af1ac", + "label": "label-6535", + "height": 379, + "background": "yellow" + }, + { + "key": "ce3d82a8-437c-4bef-b073-86813911b7ee", + "label": "label-6536", + "height": 87, + "background": "red" + }, + { + "key": "8d5b50be-0b1e-430b-b394-78e72895db36", + "label": "label-6537", + "height": 522, + "background": "yellow" + }, + { + "key": "cc071e6a-26ff-472e-9da8-4846bdc277e0", + "label": "label-6538", + "height": 248, + "background": "red" + }, + { + "key": "8559088b-0955-40f7-8694-10a8da99a388", + "label": "label-6539", + "height": 108, + "background": "red" + }, + { + "key": "765a05b5-944c-4bfe-85c7-038a4bd47764", + "label": "label-6540", + "height": 278, + "background": "blue" + }, + { + "key": "c7cb1766-35af-42c4-ac1f-c6f3c5d8063a", + "label": "label-6541", + "height": 152, + "background": "green" + }, + { + "key": "9545e198-905e-4cec-9f4b-9fb189366034", + "label": "label-6542", + "height": 133, + "background": "red" + }, + { + "key": "a29ccb6a-65ac-483f-b168-0fd218fc053c", + "label": "label-6543", + "height": 170, + "background": "green" + }, + { + "key": "1d029c83-2dfa-4e97-b5ac-c68de5ac2633", + "label": "label-6544", + "height": 190, + "background": "yellow" + }, + { + "key": "a426b1e8-0742-4f64-afcb-813f4ef78bf4", + "label": "label-6545", + "height": 524, + "background": "yellow" + }, + { + "key": "cb75f231-1a3d-4737-b24c-e08ec174f986", + "label": "label-6546", + "height": 487, + "background": "blue" + }, + { + "key": "b6dcee52-436e-4942-9a3d-e709826d7675", + "label": "label-6547", + "height": 422, + "background": "green" + }, + { + "key": "b257cd1a-eaf3-480a-be22-3733e77d84d7", + "label": "label-6548", + "height": 42, + "background": "red" + }, + { + "key": "fe3bdcda-db1f-433d-8d19-ba4f09daf0eb", + "label": "label-6549", + "height": 256, + "background": "yellow" + }, + { + "key": "f85dcaa6-ceec-4062-a17b-5b84b66591cf", + "label": "label-6550", + "height": 96, + "background": "yellow" + }, + { + "key": "65c63f8b-3d1d-4a56-b0f9-ccdd99e37d1b", + "label": "label-6551", + "height": 57, + "background": "yellow" + }, + { + "key": "3c4a861b-a783-4e00-8976-8ac892f41128", + "label": "label-6552", + "height": 433, + "background": "green" + }, + { + "key": "dac86522-57e9-4235-a437-15b51b93cb17", + "label": "label-6553", + "height": 345, + "background": "blue" + }, + { + "key": "e1fb1221-4ea4-45c0-ad5d-fe229a255eb4", + "label": "label-6554", + "height": 59, + "background": "green" + }, + { + "key": "5f7c4bc4-650e-44fb-a9ec-6c74cda95ef4", + "label": "label-6555", + "height": 468, + "background": "blue" + }, + { + "key": "57b69c80-5afe-4aa1-b26b-811edc4709c4", + "label": "label-6556", + "height": 460, + "background": "red" + }, + { + "key": "24befd26-b584-45ec-91ad-592aaf9913ea", + "label": "label-6557", + "height": 358, + "background": "green" + }, + { + "key": "d57c698d-74a8-4ede-a33c-4f9127d3810e", + "label": "label-6558", + "height": 75, + "background": "red" + }, + { + "key": "43903c67-2d64-4d65-8691-4c2ae3d9bf9e", + "label": "label-6559", + "height": 215, + "background": "blue" + }, + { + "key": "6f08d372-5996-4d42-923d-c831a87e59c6", + "label": "label-6560", + "height": 233, + "background": "yellow" + }, + { + "key": "528186be-84ba-42fc-b05e-fc6fa503d2b2", + "label": "label-6561", + "height": 348, + "background": "red" + }, + { + "key": "2010af2b-1bfb-4b13-8a0e-d8dbca45779c", + "label": "label-6562", + "height": 148, + "background": "yellow" + }, + { + "key": "5184936b-e39d-4d26-90d8-ebb242d6b055", + "label": "label-6563", + "height": 467, + "background": "yellow" + }, + { + "key": "194cf587-376a-4281-94b9-ddddd28907b6", + "label": "label-6564", + "height": 241, + "background": "blue" + }, + { + "key": "fdc91119-670f-499b-9324-c5b49566d837", + "label": "label-6565", + "height": 312, + "background": "yellow" + }, + { + "key": "2a700282-5737-4fc3-b85e-307bab767fc9", + "label": "label-6566", + "height": 388, + "background": "red" + }, + { + "key": "fd1f822e-55cf-4a59-acbe-67c8da0a2051", + "label": "label-6567", + "height": 271, + "background": "green" + }, + { + "key": "c94c61c7-9c34-40dc-9849-c2258abf6e16", + "label": "label-6568", + "height": 347, + "background": "red" + }, + { + "key": "38198fcd-b166-44dc-be5c-9e868a9eed9d", + "label": "label-6569", + "height": 341, + "background": "green" + }, + { + "key": "b506dd71-16a4-425b-aecb-b1bcb169d7f5", + "label": "label-6570", + "height": 334, + "background": "yellow" + }, + { + "key": "f36ccd86-011c-4767-a172-67099776977e", + "label": "label-6571", + "height": 68, + "background": "red" + }, + { + "key": "571dc926-3e67-42d3-b7a9-bbeaa90289d0", + "label": "label-6572", + "height": 310, + "background": "blue" + }, + { + "key": "8974d2e4-1c32-4cc4-93ce-bbef29c75098", + "label": "label-6573", + "height": 376, + "background": "red" + }, + { + "key": "caf21c61-9699-4898-8f76-2e7501c7d4b8", + "label": "label-6574", + "height": 134, + "background": "red" + }, + { + "key": "62255224-4e7d-4094-b909-6ff876ee77b5", + "label": "label-6575", + "height": 266, + "background": "blue" + }, + { + "key": "eb0e51a6-7b1e-451b-9494-08fe5ee2ed7c", + "label": "label-6576", + "height": 364, + "background": "red" + }, + { + "key": "5eeabf8b-0162-4d73-96e7-222e1e5d8966", + "label": "label-6577", + "height": 410, + "background": "blue" + }, + { + "key": "4df1a4f0-452a-4717-a0d8-dfe21e5d1b8e", + "label": "label-6578", + "height": 404, + "background": "blue" + }, + { + "key": "414d9883-5ae1-4d57-80bc-7398600a507e", + "label": "label-6579", + "height": 474, + "background": "blue" + }, + { + "key": "78eccf3a-8f6e-408a-b96b-443bf3b7d0c8", + "label": "label-6580", + "height": 496, + "background": "green" + }, + { + "key": "30a36da1-ded0-4d6f-9601-04f0b5ff0253", + "label": "label-6581", + "height": 94, + "background": "red" + }, + { + "key": "bfd4dab9-6f81-42a9-a19e-c7439f2a1ceb", + "label": "label-6582", + "height": 375, + "background": "yellow" + }, + { + "key": "8e53e162-c0a9-4399-b4f0-a7ef3b02b5d8", + "label": "label-6583", + "height": 266, + "background": "yellow" + }, + { + "key": "28b36b8e-4632-446f-8560-54938c2e8ae9", + "label": "label-6584", + "height": 337, + "background": "red" + }, + { + "key": "8d18a325-26c3-40ce-aac3-5200c9cbb08e", + "label": "label-6585", + "height": 119, + "background": "green" + }, + { + "key": "84735fe7-d19f-4c77-94cd-34591a4a4d98", + "label": "label-6586", + "height": 73, + "background": "green" + }, + { + "key": "6c88fb72-fac0-4c7d-b3fb-9987daeeeb88", + "label": "label-6587", + "height": 128, + "background": "green" + }, + { + "key": "6404e6ec-2ddb-48d5-9168-b0f902e02c30", + "label": "label-6588", + "height": 511, + "background": "green" + }, + { + "key": "f5fa336b-9f01-4ffc-8651-dab2f828a4d7", + "label": "label-6589", + "height": 530, + "background": "blue" + }, + { + "key": "767e4909-4db2-4963-b883-52aaa7606dba", + "label": "label-6590", + "height": 460, + "background": "blue" + }, + { + "key": "440ba8ab-dd7a-44a2-a473-c8472802e98d", + "label": "label-6591", + "height": 470, + "background": "red" + }, + { + "key": "5c28475d-e691-4a03-8321-a7c7111607e9", + "label": "label-6592", + "height": 375, + "background": "green" + }, + { + "key": "712caaa5-cfe9-4640-b793-e874b3fa754e", + "label": "label-6593", + "height": 379, + "background": "yellow" + }, + { + "key": "60550969-c6e5-4c2f-a23d-6c58d35e3e4d", + "label": "label-6594", + "height": 310, + "background": "green" + }, + { + "key": "3c8d6691-b837-4885-a1d3-3a44880d0384", + "label": "label-6595", + "height": 215, + "background": "green" + }, + { + "key": "128b85d8-db12-4ef0-af56-c3fefad1cf0a", + "label": "label-6596", + "height": 74, + "background": "blue" + }, + { + "key": "d5b109f0-82e5-42e7-90fa-ca3824bc1ed5", + "label": "label-6597", + "height": 134, + "background": "yellow" + }, + { + "key": "7bc05b54-fba1-43a4-91ba-45a044467b68", + "label": "label-6598", + "height": 320, + "background": "yellow" + }, + { + "key": "669f5a4a-6411-4112-b757-26721e9fcba1", + "label": "label-6599", + "height": 325, + "background": "red" + }, + { + "key": "e9d3c985-431e-44dd-976f-b0f37d122e7e", + "label": "label-6600", + "height": 485, + "background": "red" + }, + { + "key": "70e198da-ca8b-4002-ae53-4420a85fc11d", + "label": "label-6601", + "height": 374, + "background": "blue" + }, + { + "key": "bc56ca4e-0703-4a73-9978-83686eaa2749", + "label": "label-6602", + "height": 507, + "background": "yellow" + }, + { + "key": "7d167e47-224d-4415-83f2-180d3dedf9c0", + "label": "label-6603", + "height": 407, + "background": "green" + }, + { + "key": "65e1541e-47ac-47d3-85f6-8adefdf9810a", + "label": "label-6604", + "height": 285, + "background": "red" + }, + { + "key": "1a83072d-489c-418d-9255-461dfb7afa6c", + "label": "label-6605", + "height": 135, + "background": "blue" + }, + { + "key": "728a450e-417f-4fd0-a53e-ddb09cd49be0", + "label": "label-6606", + "height": 418, + "background": "yellow" + }, + { + "key": "501602d1-3b3d-4e58-a2dc-e42c785e6c1f", + "label": "label-6607", + "height": 152, + "background": "blue" + }, + { + "key": "1474aaaf-6c2a-4292-8246-5b61f3ad2da2", + "label": "label-6608", + "height": 528, + "background": "green" + }, + { + "key": "a805c3ef-113d-485d-9dfa-5274cfd9e31e", + "label": "label-6609", + "height": 113, + "background": "yellow" + }, + { + "key": "1e0872b6-5448-4d8f-99d5-597731724ba9", + "label": "label-6610", + "height": 133, + "background": "red" + }, + { + "key": "614eeda9-684f-4882-acdb-c4fbcaa17250", + "label": "label-6611", + "height": 472, + "background": "yellow" + }, + { + "key": "85399934-6245-41e7-b6a7-fda44102801f", + "label": "label-6612", + "height": 140, + "background": "blue" + }, + { + "key": "9239bdfa-c769-4b54-88e4-bccf2d66b8b9", + "label": "label-6613", + "height": 394, + "background": "blue" + }, + { + "key": "7d7e667d-11c2-4b4a-ae65-fec9b76d6e1a", + "label": "label-6614", + "height": 336, + "background": "blue" + }, + { + "key": "435f0899-26e4-4819-b47d-6fd5c41f3e4e", + "label": "label-6615", + "height": 496, + "background": "yellow" + }, + { + "key": "027fe45a-73e1-4a8f-9f24-05c55bb4915e", + "label": "label-6616", + "height": 213, + "background": "yellow" + }, + { + "key": "8314f691-f48b-4615-a492-edc91615aa12", + "label": "label-6617", + "height": 531, + "background": "yellow" + }, + { + "key": "87f54eb5-efff-4e71-bdf6-07be2b6530e7", + "label": "label-6618", + "height": 88, + "background": "green" + }, + { + "key": "d133a42a-9665-4dcf-b2c2-e212664232cb", + "label": "label-6619", + "height": 398, + "background": "green" + }, + { + "key": "265f7777-9c13-4113-b6aa-848898fbefe8", + "label": "label-6620", + "height": 421, + "background": "green" + }, + { + "key": "015f9d07-d89a-4395-b788-7fac9b1ace3d", + "label": "label-6621", + "height": 509, + "background": "red" + }, + { + "key": "0a012b18-70e7-4b6f-b24e-d71aed0abda6", + "label": "label-6622", + "height": 227, + "background": "green" + }, + { + "key": "80ec874f-0bce-4fea-a5bb-201b6438622b", + "label": "label-6623", + "height": 417, + "background": "yellow" + }, + { + "key": "c4fdfde9-110d-4ad9-9268-31b3a447e628", + "label": "label-6624", + "height": 40, + "background": "red" + }, + { + "key": "9ba97781-214c-492e-b274-53f30ad6f5ae", + "label": "label-6625", + "height": 268, + "background": "blue" + }, + { + "key": "16ed6e9a-a267-46d1-a389-96ab4da76fd7", + "label": "label-6626", + "height": 344, + "background": "yellow" + }, + { + "key": "a131f0dd-e139-45b4-a7cf-da254c5b53cf", + "label": "label-6627", + "height": 485, + "background": "red" + }, + { + "key": "48913249-b067-4869-b89f-e4d03ac9b2b4", + "label": "label-6628", + "height": 511, + "background": "yellow" + }, + { + "key": "e02f6381-3d5c-42b9-a9af-e99c9a0753fa", + "label": "label-6629", + "height": 32, + "background": "green" + }, + { + "key": "97996857-1e3a-424d-8876-f098730f570e", + "label": "label-6630", + "height": 158, + "background": "green" + }, + { + "key": "d382375d-96d8-4b83-bc11-55c6f9acc700", + "label": "label-6631", + "height": 209, + "background": "red" + }, + { + "key": "651824ef-fb82-498d-a314-31b67cb3f9ac", + "label": "label-6632", + "height": 396, + "background": "green" + }, + { + "key": "93996116-10f9-4517-8c08-14b751c7c398", + "label": "label-6633", + "height": 308, + "background": "red" + }, + { + "key": "a5a47e71-bfd8-4433-908f-176a50839060", + "label": "label-6634", + "height": 463, + "background": "blue" + }, + { + "key": "a2a7bed1-c67d-4b82-82c7-5ebb18efa9b2", + "label": "label-6635", + "height": 186, + "background": "blue" + }, + { + "key": "7ec84776-b301-4072-bac9-52c916597684", + "label": "label-6636", + "height": 244, + "background": "blue" + }, + { + "key": "3dae7b2a-5191-47ab-a9c3-54ca0ca405e1", + "label": "label-6637", + "height": 516, + "background": "yellow" + }, + { + "key": "e4398bdb-182e-4baa-81c6-a65f8b68b651", + "label": "label-6638", + "height": 46, + "background": "yellow" + }, + { + "key": "81a5b10d-6bf6-4aef-b38f-a39d12e31c34", + "label": "label-6639", + "height": 105, + "background": "red" + }, + { + "key": "1d5758e4-0d02-40b5-81ad-8001abc84705", + "label": "label-6640", + "height": 261, + "background": "green" + }, + { + "key": "0b87479a-2165-432b-92bb-214f7c2fd6e5", + "label": "label-6641", + "height": 220, + "background": "red" + }, + { + "key": "9342fb26-030f-4e47-b9f5-5ff2c25fd821", + "label": "label-6642", + "height": 54, + "background": "red" + }, + { + "key": "b90994de-d47b-4a18-b0ec-ae7751d0b10c", + "label": "label-6643", + "height": 228, + "background": "green" + }, + { + "key": "2469e653-0699-496f-ae2e-d3132e8a95f0", + "label": "label-6644", + "height": 299, + "background": "blue" + }, + { + "key": "6569b0af-b6e1-4587-b0e9-ad8272685af9", + "label": "label-6645", + "height": 447, + "background": "yellow" + }, + { + "key": "4ee9ea95-9946-464d-a989-431ddbfd1b5a", + "label": "label-6646", + "height": 355, + "background": "green" + }, + { + "key": "f977670d-18d6-4b70-8659-b6b0ee969ac5", + "label": "label-6647", + "height": 485, + "background": "blue" + }, + { + "key": "ddfbc3d9-0820-49ad-8d60-fdc232880090", + "label": "label-6648", + "height": 141, + "background": "green" + }, + { + "key": "d44dad10-ca43-4a8e-afef-2e223f083bd1", + "label": "label-6649", + "height": 337, + "background": "green" + }, + { + "key": "91298e2e-462f-46a9-ad6f-40891a8a00f9", + "label": "label-6650", + "height": 425, + "background": "green" + }, + { + "key": "515fb765-c608-4cbb-952b-bd6bfc5e8c6d", + "label": "label-6651", + "height": 336, + "background": "red" + }, + { + "key": "8c389445-18d4-4c38-ade3-f8dc3e55e137", + "label": "label-6652", + "height": 206, + "background": "yellow" + }, + { + "key": "3a939f97-73fd-4212-a418-92363edc3e36", + "label": "label-6653", + "height": 530, + "background": "yellow" + }, + { + "key": "acde174c-72f5-4dd9-af5a-10f5bac772a7", + "label": "label-6654", + "height": 345, + "background": "red" + }, + { + "key": "37f49453-c097-49cf-a443-a66809d3b871", + "label": "label-6655", + "height": 340, + "background": "green" + }, + { + "key": "27b312ab-e23f-4cc2-97e6-5c19da9dcd67", + "label": "label-6656", + "height": 166, + "background": "blue" + }, + { + "key": "9550d620-09a8-43a3-a9e7-a5bc01361172", + "label": "label-6657", + "height": 286, + "background": "blue" + }, + { + "key": "00cb0a2b-55d8-4785-8d7b-75388eed140b", + "label": "label-6658", + "height": 86, + "background": "red" + }, + { + "key": "f415da4d-cdd6-4e07-a6d7-db921c6e9e46", + "label": "label-6659", + "height": 165, + "background": "green" + }, + { + "key": "a708fb8d-9f27-45c1-a63a-1617314632d6", + "label": "label-6660", + "height": 118, + "background": "blue" + }, + { + "key": "7e4932ea-970f-4ead-b5c5-d186c38833e5", + "label": "label-6661", + "height": 41, + "background": "red" + }, + { + "key": "54c7ba07-69fe-4411-a2e1-11d0f58199ac", + "label": "label-6662", + "height": 524, + "background": "green" + }, + { + "key": "a17322b9-6922-4969-aa86-f79ad1aa4195", + "label": "label-6663", + "height": 100, + "background": "blue" + }, + { + "key": "210e8ded-fe8e-4caf-8ea9-2c2b13913853", + "label": "label-6664", + "height": 339, + "background": "green" + }, + { + "key": "68dc985b-3d6e-4da4-9dc3-6baf1488d587", + "label": "label-6665", + "height": 316, + "background": "green" + }, + { + "key": "854e609a-afd9-4801-b96c-2e06107a2b46", + "label": "label-6666", + "height": 133, + "background": "blue" + }, + { + "key": "6195bb42-3f9b-44ed-8394-aeac93105c86", + "label": "label-6667", + "height": 311, + "background": "green" + }, + { + "key": "e113c76a-88b9-40e8-b4ec-f0c0858afbb5", + "label": "label-6668", + "height": 413, + "background": "green" + }, + { + "key": "7f7e136d-cbd2-4bed-9cdb-d150429a157a", + "label": "label-6669", + "height": 245, + "background": "yellow" + }, + { + "key": "0e26e520-92c1-40cb-88ff-6b1c6bab9001", + "label": "label-6670", + "height": 471, + "background": "red" + }, + { + "key": "9139d47f-1fdd-488e-a640-2612f426ff01", + "label": "label-6671", + "height": 417, + "background": "blue" + }, + { + "key": "f19ccfc0-c230-4bb1-a99c-e1db413213c6", + "label": "label-6672", + "height": 267, + "background": "red" + }, + { + "key": "2c0a33f3-3584-4551-8c29-9110e0cfeabc", + "label": "label-6673", + "height": 256, + "background": "green" + }, + { + "key": "367c846f-7c9b-4845-b273-b3a50aff724d", + "label": "label-6674", + "height": 481, + "background": "red" + }, + { + "key": "1b463e6d-8f22-4852-b7ba-68208693da05", + "label": "label-6675", + "height": 194, + "background": "yellow" + }, + { + "key": "63951778-4247-46e8-a415-6aeaf67c799b", + "label": "label-6676", + "height": 165, + "background": "blue" + }, + { + "key": "81329eb4-3a46-49f5-8c69-7d1afcc4ca71", + "label": "label-6677", + "height": 150, + "background": "green" + }, + { + "key": "c824b74b-68e1-4974-a0ca-cc09e2d8d314", + "label": "label-6678", + "height": 247, + "background": "blue" + }, + { + "key": "5bc1cc2f-dc5b-41ec-a246-7e77d737e61f", + "label": "label-6679", + "height": 132, + "background": "yellow" + }, + { + "key": "1e9c11a1-fbfd-448e-8c0b-23bdb354afcb", + "label": "label-6680", + "height": 93, + "background": "yellow" + }, + { + "key": "ba1cb5c3-7387-4eb8-b022-f241881f970a", + "label": "label-6681", + "height": 460, + "background": "red" + }, + { + "key": "abbdfe83-ed01-4688-a610-b85182a370a2", + "label": "label-6682", + "height": 275, + "background": "blue" + }, + { + "key": "f0062c38-e01e-4a94-9bff-8b5c37363107", + "label": "label-6683", + "height": 291, + "background": "yellow" + }, + { + "key": "60a3d858-dd7d-44db-8273-a3a50cbc0de2", + "label": "label-6684", + "height": 245, + "background": "yellow" + }, + { + "key": "a6f32931-a838-4882-a5d1-7276481e3f99", + "label": "label-6685", + "height": 431, + "background": "green" + }, + { + "key": "f13b3eda-f10c-4afa-b7f9-8320d1c2d408", + "label": "label-6686", + "height": 352, + "background": "red" + }, + { + "key": "d1493932-2200-420f-9794-c8bcc31dc2d0", + "label": "label-6687", + "height": 490, + "background": "red" + }, + { + "key": "dbf35e7b-14b1-4ca6-ad87-1f89894ed069", + "label": "label-6688", + "height": 240, + "background": "red" + }, + { + "key": "255e0348-c9e8-4bcd-ae28-48d7417dd42d", + "label": "label-6689", + "height": 318, + "background": "blue" + }, + { + "key": "6732c986-b415-470d-be0f-ec5dbde7576b", + "label": "label-6690", + "height": 418, + "background": "red" + }, + { + "key": "5c9540a8-9e54-4223-b87f-b09fd3afb9c2", + "label": "label-6691", + "height": 282, + "background": "red" + }, + { + "key": "520aa91d-35ba-44c5-b7f2-86f4c3ef25cf", + "label": "label-6692", + "height": 490, + "background": "blue" + }, + { + "key": "433af0ee-3f46-42f4-bee9-ee0e3027012a", + "label": "label-6693", + "height": 466, + "background": "yellow" + }, + { + "key": "55e6f581-9d6f-45a3-ad69-92537cadd0be", + "label": "label-6694", + "height": 157, + "background": "green" + }, + { + "key": "4b066caa-14bb-4717-b599-44a9a966594c", + "label": "label-6695", + "height": 351, + "background": "yellow" + }, + { + "key": "bacd3e9c-12e0-4faa-9012-4807186831e1", + "label": "label-6696", + "height": 68, + "background": "red" + }, + { + "key": "186e9a31-98e6-4d8e-823b-99702a532f9b", + "label": "label-6697", + "height": 270, + "background": "blue" + }, + { + "key": "f720fb46-54d2-411f-8e4c-999cf19b47f1", + "label": "label-6698", + "height": 327, + "background": "red" + }, + { + "key": "0d4ad52b-7a76-4820-8458-ddd65ec46060", + "label": "label-6699", + "height": 443, + "background": "blue" + }, + { + "key": "17992f7d-a8e6-4761-8c4c-4a17a78582c5", + "label": "label-6700", + "height": 423, + "background": "blue" + }, + { + "key": "836e072a-ca5a-423a-af0b-949d16818fa5", + "label": "label-6701", + "height": 485, + "background": "green" + }, + { + "key": "e02e9bd0-32ba-486c-a17a-7fab5cdc740a", + "label": "label-6702", + "height": 159, + "background": "red" + }, + { + "key": "08a12a75-cec3-430b-a1a9-96d4439beede", + "label": "label-6703", + "height": 437, + "background": "blue" + }, + { + "key": "feecad49-0d63-4f0f-9c60-83422cd6461a", + "label": "label-6704", + "height": 219, + "background": "green" + }, + { + "key": "55b4d735-a3f6-4e17-83e6-c6d20d1c335c", + "label": "label-6705", + "height": 527, + "background": "blue" + }, + { + "key": "41d02c8f-0900-4e60-90d1-ae8aba722abe", + "label": "label-6706", + "height": 148, + "background": "red" + }, + { + "key": "97c2b556-23a5-4080-ae08-12ce19791925", + "label": "label-6707", + "height": 480, + "background": "red" + }, + { + "key": "c5a7aad5-f76b-4682-b8c5-5a2804e00632", + "label": "label-6708", + "height": 140, + "background": "yellow" + }, + { + "key": "25fe1be5-f0a8-4afd-bff5-9d6e971b0274", + "label": "label-6709", + "height": 182, + "background": "yellow" + }, + { + "key": "e5eb7790-9f1e-4db0-9416-7272c9ee13c4", + "label": "label-6710", + "height": 271, + "background": "yellow" + }, + { + "key": "3989c170-ba3b-4162-ae6f-af05e40d13f2", + "label": "label-6711", + "height": 206, + "background": "blue" + }, + { + "key": "3ca8820c-8118-4103-8bcf-765a1bcfde29", + "label": "label-6712", + "height": 75, + "background": "red" + }, + { + "key": "2e1eb644-01b6-41cd-a868-470ab2a3548e", + "label": "label-6713", + "height": 429, + "background": "green" + }, + { + "key": "900b8bfa-a5be-42d0-a7c2-11aa74c7b14a", + "label": "label-6714", + "height": 85, + "background": "blue" + }, + { + "key": "3a4c5dbb-b020-4476-9d2a-a6533cdab218", + "label": "label-6715", + "height": 75, + "background": "red" + }, + { + "key": "8f8e53fa-cfe5-4142-ab54-0a6d79c412f8", + "label": "label-6716", + "height": 103, + "background": "green" + }, + { + "key": "66485d48-bbd0-410b-a89f-1c921b0ec317", + "label": "label-6717", + "height": 82, + "background": "red" + }, + { + "key": "9047ced6-8800-4aa6-a2af-399da175fdf8", + "label": "label-6718", + "height": 191, + "background": "green" + }, + { + "key": "568b7df4-a5c6-42e2-ad03-facfa6429efb", + "label": "label-6719", + "height": 102, + "background": "yellow" + }, + { + "key": "e9cea0a7-4a89-4629-9c56-0afdd54969da", + "label": "label-6720", + "height": 281, + "background": "blue" + }, + { + "key": "4a1a715a-1a07-4b9a-a180-6f754d59a638", + "label": "label-6721", + "height": 411, + "background": "yellow" + }, + { + "key": "5aaa2c73-8fbd-4724-ae71-5d99746cc896", + "label": "label-6722", + "height": 476, + "background": "blue" + }, + { + "key": "5942cb49-ac19-4a2e-a998-dbbb0931a671", + "label": "label-6723", + "height": 342, + "background": "blue" + }, + { + "key": "06b345f2-0ac8-4224-a41d-167b622dcf9a", + "label": "label-6724", + "height": 209, + "background": "red" + }, + { + "key": "d659980e-4e59-472a-90a1-8914f4386a6e", + "label": "label-6725", + "height": 336, + "background": "red" + }, + { + "key": "56b0860a-bbd0-438d-a177-650b0b6cddc8", + "label": "label-6726", + "height": 301, + "background": "blue" + }, + { + "key": "e8733d66-ad13-451f-994c-93f5bc114e13", + "label": "label-6727", + "height": 391, + "background": "red" + }, + { + "key": "71bb98ec-c859-4040-bad5-ed6239d71cbd", + "label": "label-6728", + "height": 127, + "background": "red" + }, + { + "key": "cb2a4eb6-781b-44d7-bc4a-0d5e41e949e2", + "label": "label-6729", + "height": 376, + "background": "blue" + }, + { + "key": "d4bc777b-a955-49da-95e4-88c51984df1d", + "label": "label-6730", + "height": 182, + "background": "green" + }, + { + "key": "c4dbf93a-4989-4199-af05-55dcf7ee8252", + "label": "label-6731", + "height": 260, + "background": "red" + }, + { + "key": "668364e4-132e-4c97-9cea-666837dc7fe1", + "label": "label-6732", + "height": 112, + "background": "red" + }, + { + "key": "f87855b8-347d-46f2-aef4-330f8c60aafd", + "label": "label-6733", + "height": 512, + "background": "yellow" + }, + { + "key": "b47f75ff-008e-4993-b70f-50ed9d272d61", + "label": "label-6734", + "height": 366, + "background": "green" + }, + { + "key": "2f42ebfd-6ffe-45c6-b0be-641d145cdeb2", + "label": "label-6735", + "height": 275, + "background": "red" + }, + { + "key": "a16365a8-9748-4c5e-90fa-04c0e5738828", + "label": "label-6736", + "height": 64, + "background": "blue" + }, + { + "key": "0bdf5f18-491f-4ee3-b86d-db2aaa3ccc1a", + "label": "label-6737", + "height": 345, + "background": "green" + }, + { + "key": "7a90b994-e769-4114-8833-bc2cbe724f98", + "label": "label-6738", + "height": 478, + "background": "green" + }, + { + "key": "f9ec004a-f794-4acc-a70e-4de1f30915fb", + "label": "label-6739", + "height": 474, + "background": "green" + }, + { + "key": "a8b7f12a-e23e-49ae-9b74-30e87c7e3aae", + "label": "label-6740", + "height": 476, + "background": "yellow" + }, + { + "key": "3ca87978-e795-4d80-9910-d7506064ee4f", + "label": "label-6741", + "height": 34, + "background": "green" + }, + { + "key": "5619dc16-f244-470d-8de4-4e9a0ef2f002", + "label": "label-6742", + "height": 309, + "background": "blue" + }, + { + "key": "ca0a6964-6c1c-4b21-b0c5-d2757e364185", + "label": "label-6743", + "height": 323, + "background": "yellow" + }, + { + "key": "72b87f12-6491-4a74-9311-1f35d2fc2ab6", + "label": "label-6744", + "height": 211, + "background": "green" + }, + { + "key": "8363520f-8b41-40a0-96b7-2d6bdf1f0aa7", + "label": "label-6745", + "height": 118, + "background": "blue" + }, + { + "key": "5594a555-42b2-47a6-8b36-9efef405216a", + "label": "label-6746", + "height": 175, + "background": "red" + }, + { + "key": "c707a6fa-0785-4343-b57a-63d928421607", + "label": "label-6747", + "height": 502, + "background": "yellow" + }, + { + "key": "30eadbe8-99a0-465e-9ef5-5ec2dc643514", + "label": "label-6748", + "height": 366, + "background": "red" + }, + { + "key": "24cefaee-dffb-4474-bd8c-1ef28bc7598a", + "label": "label-6749", + "height": 331, + "background": "red" + }, + { + "key": "c25f96ba-3738-40db-a06e-6bf22b1ff014", + "label": "label-6750", + "height": 307, + "background": "yellow" + }, + { + "key": "3676a0fd-6a43-4e4f-a771-18ee242a1145", + "label": "label-6751", + "height": 174, + "background": "red" + }, + { + "key": "d486b2c3-21ed-4414-af5f-fd6b12ae73aa", + "label": "label-6752", + "height": 118, + "background": "yellow" + }, + { + "key": "4a2c48ff-b046-4fa4-8e74-e2fa052b62ef", + "label": "label-6753", + "height": 195, + "background": "green" + }, + { + "key": "118d908d-1948-4bba-a589-e76634cced76", + "label": "label-6754", + "height": 398, + "background": "blue" + }, + { + "key": "9ab9e7c9-41f2-4f10-855c-69739b07c22b", + "label": "label-6755", + "height": 397, + "background": "blue" + }, + { + "key": "f2d6d466-bd12-4998-8b72-03a21a0314d0", + "label": "label-6756", + "height": 147, + "background": "yellow" + }, + { + "key": "ce7f54b5-7db3-4961-9232-ac8d5e35e9f8", + "label": "label-6757", + "height": 137, + "background": "yellow" + }, + { + "key": "ff6f023b-4131-4369-98a1-479f6358f435", + "label": "label-6758", + "height": 270, + "background": "blue" + }, + { + "key": "bbd628e0-8ef0-43f3-b5dc-0b65d1a79dd8", + "label": "label-6759", + "height": 338, + "background": "blue" + }, + { + "key": "9c264e74-41a8-42c5-ab70-7bb93078f92c", + "label": "label-6760", + "height": 108, + "background": "yellow" + }, + { + "key": "a415b419-7f7a-4d46-b579-fb8b9ae4c30c", + "label": "label-6761", + "height": 92, + "background": "red" + }, + { + "key": "726c47b2-870e-4af6-8458-6a32b603dc93", + "label": "label-6762", + "height": 527, + "background": "blue" + }, + { + "key": "a878ec26-f9f3-471d-af40-ad46dd3e4945", + "label": "label-6763", + "height": 87, + "background": "yellow" + }, + { + "key": "c16647e4-c49b-454a-a7aa-1c0955f8a4af", + "label": "label-6764", + "height": 273, + "background": "red" + }, + { + "key": "40b7a4e7-886e-4151-8474-6b6e5ffcb6ae", + "label": "label-6765", + "height": 426, + "background": "red" + }, + { + "key": "2666471b-4712-47b2-9ae0-0d5d3f577c12", + "label": "label-6766", + "height": 42, + "background": "green" + }, + { + "key": "ac621a0a-90f1-42af-af9e-96f48b01533d", + "label": "label-6767", + "height": 404, + "background": "blue" + }, + { + "key": "ef19b557-22b8-4c0d-8bb7-56e6b294c94e", + "label": "label-6768", + "height": 94, + "background": "red" + }, + { + "key": "d1dd1fdc-b1fb-467e-baa9-34ed4ab362b6", + "label": "label-6769", + "height": 450, + "background": "blue" + }, + { + "key": "9f33287a-d855-4099-8a38-52667276be06", + "label": "label-6770", + "height": 261, + "background": "red" + }, + { + "key": "d728d317-ae36-406c-9b8d-f410633e8c34", + "label": "label-6771", + "height": 230, + "background": "blue" + }, + { + "key": "809f29f7-caeb-4fd3-b62e-043ea90828b5", + "label": "label-6772", + "height": 194, + "background": "green" + }, + { + "key": "d17b0183-e1dd-44d2-ad2a-64e940dd5467", + "label": "label-6773", + "height": 86, + "background": "blue" + }, + { + "key": "22cea188-3756-4d55-aa1d-f9847b1297f9", + "label": "label-6774", + "height": 231, + "background": "red" + }, + { + "key": "d6e8654a-e7ca-4dd5-b987-da63c92dabdd", + "label": "label-6775", + "height": 496, + "background": "blue" + }, + { + "key": "30ee2cb7-b7dc-4e7f-b4b5-a67a8740e295", + "label": "label-6776", + "height": 155, + "background": "blue" + }, + { + "key": "5a663bca-55e2-42d4-8fec-cb1083822e69", + "label": "label-6777", + "height": 410, + "background": "yellow" + }, + { + "key": "606188a9-6d77-4361-bb65-d7f7be40be38", + "label": "label-6778", + "height": 142, + "background": "yellow" + }, + { + "key": "ae21d23b-f3d3-4339-bace-eb543a15ad59", + "label": "label-6779", + "height": 498, + "background": "yellow" + }, + { + "key": "26f0711f-6d93-46ae-acb6-8efaa8f75156", + "label": "label-6780", + "height": 278, + "background": "green" + }, + { + "key": "fed44c7c-5268-4d75-a4ff-4928f87dd8de", + "label": "label-6781", + "height": 101, + "background": "yellow" + }, + { + "key": "7c6a96f6-0d55-4fe5-a211-1e0e3ba76221", + "label": "label-6782", + "height": 461, + "background": "red" + }, + { + "key": "0a8053ae-d540-40c3-9432-86d5e77d1cad", + "label": "label-6783", + "height": 399, + "background": "blue" + }, + { + "key": "7f682220-dedc-428e-8045-704fa684361b", + "label": "label-6784", + "height": 456, + "background": "red" + }, + { + "key": "67ef0413-5afd-4458-89a3-e4936ec31acd", + "label": "label-6785", + "height": 322, + "background": "red" + }, + { + "key": "a4f68e90-8235-448d-8c14-78975abcd039", + "label": "label-6786", + "height": 298, + "background": "red" + }, + { + "key": "04289dbb-b5c9-4fc1-9888-44511b30718b", + "label": "label-6787", + "height": 306, + "background": "yellow" + }, + { + "key": "4a9246bd-554b-47ca-896f-105ee8f245fc", + "label": "label-6788", + "height": 283, + "background": "green" + }, + { + "key": "c8bade63-4cc7-4bed-9b37-de64165b50e6", + "label": "label-6789", + "height": 455, + "background": "blue" + }, + { + "key": "d88c2495-46cd-4240-813e-4657eb12e1c4", + "label": "label-6790", + "height": 198, + "background": "blue" + }, + { + "key": "e7ff86d0-875b-4aa5-811c-3d24f33a1f99", + "label": "label-6791", + "height": 368, + "background": "red" + }, + { + "key": "e7287d97-054b-4268-815b-4861157aafb1", + "label": "label-6792", + "height": 321, + "background": "red" + }, + { + "key": "cc0ba1e5-65a9-4566-9257-49633c23adf0", + "label": "label-6793", + "height": 480, + "background": "red" + }, + { + "key": "21d95891-b8c0-496c-bd29-c25ed210750f", + "label": "label-6794", + "height": 296, + "background": "blue" + }, + { + "key": "5eb81b9b-ad23-4f19-a941-ff4f0b1a441d", + "label": "label-6795", + "height": 44, + "background": "green" + }, + { + "key": "4457786f-528a-490c-af99-2c339aabbf33", + "label": "label-6796", + "height": 273, + "background": "yellow" + }, + { + "key": "3b46e1a4-d4dc-45ba-9bdc-68447881092f", + "label": "label-6797", + "height": 386, + "background": "red" + }, + { + "key": "fe1a3236-acd9-4360-b5da-43d3cae60aef", + "label": "label-6798", + "height": 83, + "background": "green" + }, + { + "key": "efe7b359-4150-48e1-bb48-e1632613f66f", + "label": "label-6799", + "height": 373, + "background": "yellow" + }, + { + "key": "f3191cea-02ee-407d-89e2-8e62a0c7b8f2", + "label": "label-6800", + "height": 338, + "background": "yellow" + }, + { + "key": "351b1525-7d29-4da4-88ed-e9d5068c511d", + "label": "label-6801", + "height": 131, + "background": "red" + }, + { + "key": "ebb40324-8756-496e-88a4-4e9ea9000af1", + "label": "label-6802", + "height": 146, + "background": "blue" + }, + { + "key": "7b96fb52-26df-45d5-9500-0536a7e324cb", + "label": "label-6803", + "height": 409, + "background": "blue" + }, + { + "key": "ccbcfad0-96d4-47a2-966a-0c445fec6030", + "label": "label-6804", + "height": 507, + "background": "red" + }, + { + "key": "ac214438-c3f7-48b6-b42b-e4eb2182b017", + "label": "label-6805", + "height": 223, + "background": "blue" + }, + { + "key": "676f614e-1dfe-4564-8ff1-f4c91da483b8", + "label": "label-6806", + "height": 266, + "background": "yellow" + }, + { + "key": "1a37b45a-2b42-4c10-86c1-23e3e6011602", + "label": "label-6807", + "height": 437, + "background": "red" + }, + { + "key": "af6084ff-07f5-48dc-91e4-d93adb64f470", + "label": "label-6808", + "height": 492, + "background": "yellow" + }, + { + "key": "e9fedf50-2f73-402b-af1e-c9bf1dcb85e2", + "label": "label-6809", + "height": 482, + "background": "green" + }, + { + "key": "12e7a4b3-e130-4327-aba5-3fc9ad7de2c1", + "label": "label-6810", + "height": 450, + "background": "yellow" + }, + { + "key": "3688c6f4-53a6-439f-9c60-617c9d01d13e", + "label": "label-6811", + "height": 364, + "background": "red" + }, + { + "key": "cd61ea23-032d-4c4b-abb8-1a9d9abcd957", + "label": "label-6812", + "height": 75, + "background": "green" + }, + { + "key": "ba06c3b1-4f4d-47b1-ba58-b3226ee1844a", + "label": "label-6813", + "height": 129, + "background": "green" + }, + { + "key": "4b38fdf1-3a8e-4b38-b8f0-7959405f1958", + "label": "label-6814", + "height": 69, + "background": "green" + }, + { + "key": "34334037-0ac0-42a3-a573-564003b02c26", + "label": "label-6815", + "height": 170, + "background": "green" + }, + { + "key": "2692f75a-ea09-4af1-b42d-bbc6cc3e9f4b", + "label": "label-6816", + "height": 478, + "background": "red" + }, + { + "key": "252e05b4-5217-4206-a581-5abe58cc2a89", + "label": "label-6817", + "height": 295, + "background": "red" + }, + { + "key": "fed1d7cd-06f5-4427-906c-accbb42f6049", + "label": "label-6818", + "height": 275, + "background": "blue" + }, + { + "key": "4b2e6749-22f1-4bd7-a614-41036871ef19", + "label": "label-6819", + "height": 477, + "background": "green" + }, + { + "key": "c29af7a7-bf42-42b5-9902-f22cf5ce665d", + "label": "label-6820", + "height": 151, + "background": "red" + }, + { + "key": "b2c86460-f56c-4cad-9fc3-1327685458af", + "label": "label-6821", + "height": 184, + "background": "yellow" + }, + { + "key": "784ce6e1-26f4-497c-afa5-afa776c7e662", + "label": "label-6822", + "height": 136, + "background": "yellow" + }, + { + "key": "88a5718d-327f-46e4-a6a4-3414c1b3d1b6", + "label": "label-6823", + "height": 497, + "background": "red" + }, + { + "key": "c2672646-f49b-4205-b076-eb13f965bd3a", + "label": "label-6824", + "height": 110, + "background": "green" + }, + { + "key": "16e96968-51c8-4f7c-abe8-166eb78c9210", + "label": "label-6825", + "height": 222, + "background": "yellow" + }, + { + "key": "7706998b-9fd0-4f9f-86a5-3d4a1fafb0e9", + "label": "label-6826", + "height": 449, + "background": "blue" + }, + { + "key": "7c912e88-0cc5-4547-a450-27d1da7fb36a", + "label": "label-6827", + "height": 337, + "background": "green" + }, + { + "key": "c112f18c-2945-40cc-a1e9-7735eb89559e", + "label": "label-6828", + "height": 337, + "background": "blue" + }, + { + "key": "b57ca98c-7dd1-41e9-9388-7351cdfb4221", + "label": "label-6829", + "height": 146, + "background": "yellow" + }, + { + "key": "008a19db-132f-42c5-9d03-90caa9b788e2", + "label": "label-6830", + "height": 360, + "background": "green" + }, + { + "key": "79193c9a-548f-4961-802e-fe65c269f9fb", + "label": "label-6831", + "height": 240, + "background": "green" + }, + { + "key": "af4f56b8-0a33-46d9-8159-650fe706aeb3", + "label": "label-6832", + "height": 409, + "background": "blue" + }, + { + "key": "b23692c8-49d9-467d-9edd-7f53f3103ab6", + "label": "label-6833", + "height": 125, + "background": "red" + }, + { + "key": "482c5085-94b0-4a23-8bd2-862a53b92704", + "label": "label-6834", + "height": 455, + "background": "green" + }, + { + "key": "c3741052-f13a-40ab-9c92-42117b4c9051", + "label": "label-6835", + "height": 483, + "background": "red" + }, + { + "key": "998cf811-f0b7-4fcd-9908-dc4ad11cb279", + "label": "label-6836", + "height": 148, + "background": "red" + }, + { + "key": "7c150e2b-230e-4ea3-b782-ac8d56947704", + "label": "label-6837", + "height": 436, + "background": "blue" + }, + { + "key": "6a81f5cb-1c5a-49eb-80a9-85621ddf923c", + "label": "label-6838", + "height": 210, + "background": "red" + }, + { + "key": "7a8d9d99-331d-4260-a6bc-fe81fcb68d72", + "label": "label-6839", + "height": 57, + "background": "red" + }, + { + "key": "fe6e69f4-2f97-45c2-89ad-21df6e27faed", + "label": "label-6840", + "height": 275, + "background": "green" + }, + { + "key": "556fd2d1-6468-4344-baa3-50fa4ae0dc45", + "label": "label-6841", + "height": 499, + "background": "blue" + }, + { + "key": "4a56a72c-551e-4e66-9745-e774fefd3f75", + "label": "label-6842", + "height": 525, + "background": "yellow" + }, + { + "key": "397f2e33-09af-47a8-a238-2793f360863e", + "label": "label-6843", + "height": 56, + "background": "yellow" + }, + { + "key": "7ee448f6-c550-44f9-b34b-24640796e3ac", + "label": "label-6844", + "height": 445, + "background": "red" + }, + { + "key": "2e0e52bb-0cf5-454f-9fac-f27f9f0d950a", + "label": "label-6845", + "height": 439, + "background": "red" + }, + { + "key": "9579ef67-2902-4ff5-8e7d-06fc10f6378c", + "label": "label-6846", + "height": 190, + "background": "yellow" + }, + { + "key": "9e1e9f4b-b3c7-4f1b-bb1f-7a11dd37b753", + "label": "label-6847", + "height": 303, + "background": "blue" + }, + { + "key": "f2805186-b3f6-42f0-a4ed-7f1d6ed7ed90", + "label": "label-6848", + "height": 147, + "background": "yellow" + }, + { + "key": "6ddb4e3f-9429-460c-a062-ea1197eb3044", + "label": "label-6849", + "height": 210, + "background": "yellow" + }, + { + "key": "cd94f5cb-d2dc-4169-9f65-4fa7cc5a8e5a", + "label": "label-6850", + "height": 308, + "background": "yellow" + }, + { + "key": "4052065f-f374-42f7-9b7f-60636686c2b1", + "label": "label-6851", + "height": 225, + "background": "blue" + }, + { + "key": "97327a28-6613-40d8-a153-f5081fe7765d", + "label": "label-6852", + "height": 461, + "background": "red" + }, + { + "key": "e703e442-43c5-4c1a-941e-e3648b290c75", + "label": "label-6853", + "height": 488, + "background": "red" + }, + { + "key": "6d7484c1-d2e3-43ba-9bc2-d3468ff9398e", + "label": "label-6854", + "height": 393, + "background": "blue" + }, + { + "key": "c2b55b15-0808-4712-a33c-2dfcdf565a34", + "label": "label-6855", + "height": 239, + "background": "yellow" + }, + { + "key": "7fd8c589-0f31-4004-a03c-e0a6ebd86824", + "label": "label-6856", + "height": 408, + "background": "green" + }, + { + "key": "df59b869-6659-4ff0-a1ed-df80e50b36bd", + "label": "label-6857", + "height": 64, + "background": "red" + }, + { + "key": "b49661fe-6353-4171-a7cc-ffe53419cf94", + "label": "label-6858", + "height": 252, + "background": "green" + }, + { + "key": "3cec33ca-530d-4c3b-9215-4bb98078ba4a", + "label": "label-6859", + "height": 223, + "background": "blue" + }, + { + "key": "2991291a-85fc-4287-9a2a-ab73add76958", + "label": "label-6860", + "height": 452, + "background": "red" + }, + { + "key": "469f550f-d5dc-4a4e-a6e6-2f000a2f61e9", + "label": "label-6861", + "height": 62, + "background": "red" + }, + { + "key": "9e35babb-6f88-4b61-9ed1-91a6535b525f", + "label": "label-6862", + "height": 166, + "background": "blue" + }, + { + "key": "6eec15f7-8f18-4993-b8e3-7594c4a72467", + "label": "label-6863", + "height": 365, + "background": "blue" + }, + { + "key": "d9d84866-7449-473f-af90-1df8462912eb", + "label": "label-6864", + "height": 320, + "background": "green" + }, + { + "key": "52484ffb-a78f-44fb-986f-7b951ae669a8", + "label": "label-6865", + "height": 252, + "background": "blue" + }, + { + "key": "e02d0405-822e-48d7-a1b1-9a086c60bcb1", + "label": "label-6866", + "height": 99, + "background": "red" + }, + { + "key": "d05cdaa9-7dfa-41bf-bb81-ece8ce3e36bd", + "label": "label-6867", + "height": 430, + "background": "yellow" + }, + { + "key": "73b25df4-91a0-4606-a465-bb0d610f7c19", + "label": "label-6868", + "height": 190, + "background": "blue" + }, + { + "key": "00aef7d2-7581-4a87-ba7a-c5ab786ac149", + "label": "label-6869", + "height": 444, + "background": "blue" + }, + { + "key": "b37bc69d-3b4f-4a57-be83-af6c5b2e0eae", + "label": "label-6870", + "height": 229, + "background": "green" + }, + { + "key": "7b956d6c-6824-4cac-b933-188ce57888e3", + "label": "label-6871", + "height": 371, + "background": "blue" + }, + { + "key": "06fd4c85-69d8-46ff-a217-d135a0ca6e8c", + "label": "label-6872", + "height": 356, + "background": "red" + }, + { + "key": "521100f7-62ae-459d-9da3-278523675e5c", + "label": "label-6873", + "height": 450, + "background": "yellow" + }, + { + "key": "35fe5b8b-415f-4fb6-aceb-9a7576e06872", + "label": "label-6874", + "height": 67, + "background": "red" + }, + { + "key": "957b2159-3991-4e51-89d0-fd0581dc3c4e", + "label": "label-6875", + "height": 292, + "background": "yellow" + }, + { + "key": "b68647cf-3458-4696-b269-c44b51e2ce92", + "label": "label-6876", + "height": 382, + "background": "red" + }, + { + "key": "87857168-fdbf-4bbf-b07b-3c173a1ffe43", + "label": "label-6877", + "height": 50, + "background": "yellow" + }, + { + "key": "84fecf8d-730a-4821-80cc-e11e489f5da3", + "label": "label-6878", + "height": 94, + "background": "blue" + }, + { + "key": "ebf4995c-334f-40e4-bd25-ce6cb893bee6", + "label": "label-6879", + "height": 527, + "background": "blue" + }, + { + "key": "069b25a9-176d-4aa5-abd4-1ed5c0760f2e", + "label": "label-6880", + "height": 429, + "background": "yellow" + }, + { + "key": "97a6cd7d-9402-498a-84cb-aca69d12c865", + "label": "label-6881", + "height": 157, + "background": "yellow" + }, + { + "key": "2d7ae3e9-b764-49c2-8411-cca60147256d", + "label": "label-6882", + "height": 423, + "background": "red" + }, + { + "key": "ea15728e-b1cb-4212-9113-a6de02a15af3", + "label": "label-6883", + "height": 261, + "background": "yellow" + }, + { + "key": "3a8c02ea-6bbf-4d9d-8f40-c59da2c797f6", + "label": "label-6884", + "height": 235, + "background": "blue" + }, + { + "key": "b96f5b6e-3e17-4a3a-9e3c-6f31225c9ee9", + "label": "label-6885", + "height": 279, + "background": "blue" + }, + { + "key": "3d7cfa11-eaac-4bd5-9b4b-bee4c80b3369", + "label": "label-6886", + "height": 347, + "background": "red" + }, + { + "key": "2f624468-6d3e-4906-a5c2-97624e958385", + "label": "label-6887", + "height": 82, + "background": "green" + }, + { + "key": "a89ba083-4db3-4848-83f2-37960e021836", + "label": "label-6888", + "height": 383, + "background": "green" + }, + { + "key": "8704d02f-09aa-452b-af42-f04d4fdc3242", + "label": "label-6889", + "height": 285, + "background": "blue" + }, + { + "key": "651657f4-cb58-4a0a-9c5b-cfa370bbcd97", + "label": "label-6890", + "height": 387, + "background": "green" + }, + { + "key": "53bb06c7-24cc-48ec-a1eb-84ba300f6c82", + "label": "label-6891", + "height": 512, + "background": "yellow" + }, + { + "key": "ae4f0ad6-06c9-404c-9fd3-d227c03b559a", + "label": "label-6892", + "height": 44, + "background": "yellow" + }, + { + "key": "a3c3600c-5358-46a3-8a33-4c135b3a7dc9", + "label": "label-6893", + "height": 515, + "background": "green" + }, + { + "key": "755fbc80-63aa-42dc-8109-6bbbecd67a8f", + "label": "label-6894", + "height": 441, + "background": "green" + }, + { + "key": "456af661-98fe-4078-9627-baf625c0e6b8", + "label": "label-6895", + "height": 256, + "background": "blue" + }, + { + "key": "afcf3e8b-56bd-4f95-841b-5738d02fb0ca", + "label": "label-6896", + "height": 391, + "background": "green" + }, + { + "key": "16236ee3-3f6e-48aa-ba2e-c1e9fd2cc494", + "label": "label-6897", + "height": 488, + "background": "yellow" + }, + { + "key": "9e414ec0-b63a-43b8-98aa-f8c18a1b59a1", + "label": "label-6898", + "height": 418, + "background": "blue" + }, + { + "key": "ee4be3cf-3738-4aab-aeae-52d321e72049", + "label": "label-6899", + "height": 67, + "background": "green" + }, + { + "key": "ea0e8025-b28c-4795-ae2b-733622eb5815", + "label": "label-6900", + "height": 86, + "background": "red" + }, + { + "key": "106ba915-9091-46ee-a915-34216a5fe854", + "label": "label-6901", + "height": 104, + "background": "yellow" + }, + { + "key": "956672df-2d93-4488-bade-911caca6750f", + "label": "label-6902", + "height": 133, + "background": "blue" + }, + { + "key": "a0d90504-435e-4abc-82e1-79b4da7a5cdf", + "label": "label-6903", + "height": 141, + "background": "yellow" + }, + { + "key": "aa7ae91f-a29e-46de-86d4-adb5531ebecc", + "label": "label-6904", + "height": 282, + "background": "red" + }, + { + "key": "f1c5d27e-3965-4b65-8471-44a264890406", + "label": "label-6905", + "height": 339, + "background": "blue" + }, + { + "key": "3db33044-0f65-432e-bec3-a0716310cbfb", + "label": "label-6906", + "height": 311, + "background": "yellow" + }, + { + "key": "a457684b-db64-494a-ba71-f3f5f64697c1", + "label": "label-6907", + "height": 495, + "background": "green" + }, + { + "key": "609be47b-5bfd-4267-8765-6a9458c351f8", + "label": "label-6908", + "height": 373, + "background": "red" + }, + { + "key": "522cc273-299f-4155-be31-3c4f8c1ab9e0", + "label": "label-6909", + "height": 305, + "background": "blue" + }, + { + "key": "12f496da-c67e-44d4-b236-6b6be5231f42", + "label": "label-6910", + "height": 416, + "background": "red" + }, + { + "key": "d4803b13-7402-48fb-9b68-fb6f78c58c88", + "label": "label-6911", + "height": 188, + "background": "red" + }, + { + "key": "ecb6b94e-4fb3-4e3e-b5af-9275b03416ac", + "label": "label-6912", + "height": 168, + "background": "blue" + }, + { + "key": "f2d8f855-4ea6-43f3-8670-c513ad07fbfe", + "label": "label-6913", + "height": 240, + "background": "green" + }, + { + "key": "7bc0c531-fa91-443d-b372-b54c1f52ce81", + "label": "label-6914", + "height": 193, + "background": "yellow" + }, + { + "key": "4adc93dd-ae6d-425b-9f1b-0a957370e55c", + "label": "label-6915", + "height": 373, + "background": "yellow" + }, + { + "key": "3a2c9946-9cd5-4e00-a372-7395c53acf04", + "label": "label-6916", + "height": 68, + "background": "green" + }, + { + "key": "048e9a37-c362-4f90-befb-d3b2a8e5c5b9", + "label": "label-6917", + "height": 501, + "background": "blue" + }, + { + "key": "ccbe4508-407c-4cff-ad36-2e710ee067e2", + "label": "label-6918", + "height": 460, + "background": "green" + }, + { + "key": "6fbb29dc-5e23-4575-9284-5c99d77c1ba9", + "label": "label-6919", + "height": 115, + "background": "red" + }, + { + "key": "5152d196-e54e-4d6c-ba8b-1d9df046e3d2", + "label": "label-6920", + "height": 287, + "background": "green" + }, + { + "key": "e58de348-f3f3-41bd-a563-317c620dd946", + "label": "label-6921", + "height": 327, + "background": "blue" + }, + { + "key": "67ffb023-02f7-40bb-8ded-99dd1792de1c", + "label": "label-6922", + "height": 500, + "background": "red" + }, + { + "key": "9f07da79-6253-4803-80db-282f267c1dbe", + "label": "label-6923", + "height": 320, + "background": "green" + }, + { + "key": "293ca623-782f-45d6-bafc-a232c81bfd35", + "label": "label-6924", + "height": 278, + "background": "green" + }, + { + "key": "d7f9dacb-3570-4ad2-af68-7bceac15f12c", + "label": "label-6925", + "height": 39, + "background": "green" + }, + { + "key": "e8bcc2ea-6f51-480f-826e-8aa4b1ba4909", + "label": "label-6926", + "height": 84, + "background": "blue" + }, + { + "key": "acdc75e7-7c59-4e78-a4ba-921d4d3b3b73", + "label": "label-6927", + "height": 205, + "background": "red" + }, + { + "key": "0c78899b-77d9-4b85-a768-403cabc97447", + "label": "label-6928", + "height": 67, + "background": "blue" + }, + { + "key": "a9b9348a-add6-4001-83a0-081403a1651d", + "label": "label-6929", + "height": 236, + "background": "blue" + }, + { + "key": "91473f93-fe91-41e4-939e-9136f5fe048c", + "label": "label-6930", + "height": 116, + "background": "blue" + }, + { + "key": "5356daaf-be01-40fb-b00c-0d61c24fedbb", + "label": "label-6931", + "height": 517, + "background": "red" + }, + { + "key": "eea5965e-f122-459e-9d15-677a670fae07", + "label": "label-6932", + "height": 272, + "background": "green" + }, + { + "key": "c7f71f03-48d4-4282-a6eb-7148010f4e27", + "label": "label-6933", + "height": 79, + "background": "red" + }, + { + "key": "e5b6d6b0-add6-460a-adac-a9043e20dbf3", + "label": "label-6934", + "height": 502, + "background": "blue" + }, + { + "key": "a3345dab-4466-4085-bbe9-bee1eb411b73", + "label": "label-6935", + "height": 57, + "background": "green" + }, + { + "key": "5b886d25-18e7-4433-8b08-aef45eb13ad7", + "label": "label-6936", + "height": 213, + "background": "yellow" + }, + { + "key": "cbe99f61-1a1d-41e7-ac1c-13eba5dab7a8", + "label": "label-6937", + "height": 300, + "background": "blue" + }, + { + "key": "fc2c1e4b-8c34-4bb4-8305-eca4a05e4412", + "label": "label-6938", + "height": 130, + "background": "red" + }, + { + "key": "311a5b57-8be0-45e9-a611-51510e3d931f", + "label": "label-6939", + "height": 96, + "background": "blue" + }, + { + "key": "41f26763-52db-48b2-b0d0-bb0e1a228b33", + "label": "label-6940", + "height": 71, + "background": "red" + }, + { + "key": "b6bd719a-bb90-40fd-baa8-1baba2802947", + "label": "label-6941", + "height": 455, + "background": "red" + }, + { + "key": "f5347c2b-22c6-4281-965f-0a8016a6723b", + "label": "label-6942", + "height": 288, + "background": "green" + }, + { + "key": "61fe1f40-17a7-4cd8-835a-dadce48bfbf6", + "label": "label-6943", + "height": 392, + "background": "green" + }, + { + "key": "e0a2c3fd-9646-419e-9330-32298a8b9cdf", + "label": "label-6944", + "height": 454, + "background": "blue" + }, + { + "key": "0c9398d0-5b9c-4b73-90d3-78cae4b441a4", + "label": "label-6945", + "height": 113, + "background": "blue" + }, + { + "key": "d6b3d491-927b-4edf-9713-1587cbd93f6b", + "label": "label-6946", + "height": 275, + "background": "red" + }, + { + "key": "6bb13ea0-4068-41b6-b06a-5e6033779d4e", + "label": "label-6947", + "height": 395, + "background": "red" + }, + { + "key": "ae2642a9-0689-4990-bd73-3a04bd348831", + "label": "label-6948", + "height": 343, + "background": "red" + }, + { + "key": "8f1efc7a-8ed9-409d-b4b5-4537d13580f6", + "label": "label-6949", + "height": 63, + "background": "red" + }, + { + "key": "c5aaac67-acfe-44bd-aeb1-d2ae1c0a9000", + "label": "label-6950", + "height": 227, + "background": "red" + }, + { + "key": "4e842fdd-dfe1-48ca-bda0-24e696c7cd90", + "label": "label-6951", + "height": 146, + "background": "yellow" + }, + { + "key": "83c13dda-6065-4ae0-9b45-a76b9b61732c", + "label": "label-6952", + "height": 46, + "background": "green" + }, + { + "key": "0993e539-41be-4bbf-be4f-48e3460bddbb", + "label": "label-6953", + "height": 171, + "background": "blue" + }, + { + "key": "f1d20495-6784-4c58-b04c-f077f41a81db", + "label": "label-6954", + "height": 101, + "background": "yellow" + }, + { + "key": "520b3923-2b17-4acc-a5d7-901202735fb7", + "label": "label-6955", + "height": 414, + "background": "yellow" + }, + { + "key": "663cbe09-d59b-4c0c-bff9-458d98aa361a", + "label": "label-6956", + "height": 94, + "background": "blue" + }, + { + "key": "c58578fb-872c-4226-8a12-1600cf935e6b", + "label": "label-6957", + "height": 251, + "background": "green" + }, + { + "key": "7232d6e6-2caa-4693-8501-ae170848eefe", + "label": "label-6958", + "height": 188, + "background": "red" + }, + { + "key": "87ad5df2-ca9c-475d-b8b0-ab3e9f493c0d", + "label": "label-6959", + "height": 138, + "background": "yellow" + }, + { + "key": "4e57ed0c-8dce-4b6f-9c46-1d1a6619093c", + "label": "label-6960", + "height": 279, + "background": "blue" + }, + { + "key": "e4d2cd11-bef9-4c31-9846-e91176e54dbb", + "label": "label-6961", + "height": 125, + "background": "red" + }, + { + "key": "becdbb5e-1985-4be7-bfe9-be68e40129e6", + "label": "label-6962", + "height": 208, + "background": "green" + }, + { + "key": "1abf9bbe-b772-4985-add0-76736cc9a347", + "label": "label-6963", + "height": 508, + "background": "blue" + }, + { + "key": "163b8be0-f8c1-4deb-ac07-1cc3c96a1449", + "label": "label-6964", + "height": 204, + "background": "blue" + }, + { + "key": "5d6f8d5b-635c-41a6-a2d1-2838a3a8b0d5", + "label": "label-6965", + "height": 464, + "background": "yellow" + }, + { + "key": "d23e0e5c-d5b4-4d7e-aa47-010aa0a25841", + "label": "label-6966", + "height": 489, + "background": "red" + }, + { + "key": "9a1542db-e297-4a61-9666-2bc65b3b35f7", + "label": "label-6967", + "height": 194, + "background": "blue" + }, + { + "key": "002c4f46-bbcb-4f25-9578-198e371aa59d", + "label": "label-6968", + "height": 416, + "background": "blue" + }, + { + "key": "a109366d-1a6b-4eec-9f6f-0b54e7f4e412", + "label": "label-6969", + "height": 179, + "background": "green" + }, + { + "key": "748985dd-3e13-408e-9641-0439937cc48d", + "label": "label-6970", + "height": 272, + "background": "green" + }, + { + "key": "662e9b66-60d1-4c59-a545-10b731ea4369", + "label": "label-6971", + "height": 49, + "background": "red" + }, + { + "key": "0f4cf413-bbe6-4ba1-8f65-6ad8c713af1a", + "label": "label-6972", + "height": 115, + "background": "green" + }, + { + "key": "2a65a631-26df-4bda-a968-3a58733732b6", + "label": "label-6973", + "height": 254, + "background": "yellow" + }, + { + "key": "6264583b-9af0-452c-b138-663c94f43461", + "label": "label-6974", + "height": 244, + "background": "blue" + }, + { + "key": "9f895be3-b672-4e3d-a507-13fa82b30ad9", + "label": "label-6975", + "height": 459, + "background": "yellow" + }, + { + "key": "eb69f94c-eeb9-449a-bc04-6355ea8144eb", + "label": "label-6976", + "height": 281, + "background": "yellow" + }, + { + "key": "b7d5bfcc-4743-4571-bde9-6ad8189b3be7", + "label": "label-6977", + "height": 166, + "background": "green" + }, + { + "key": "6995f67a-15b6-474c-85a4-d97ea1f247d8", + "label": "label-6978", + "height": 419, + "background": "red" + }, + { + "key": "2bdaeb8e-5f5d-4677-9aef-0f11c19c1a57", + "label": "label-6979", + "height": 503, + "background": "yellow" + }, + { + "key": "2c80de13-b260-43dc-a2b7-516f6500e87a", + "label": "label-6980", + "height": 373, + "background": "green" + }, + { + "key": "b35d82ef-1b68-4109-a09f-a3c2695a1006", + "label": "label-6981", + "height": 396, + "background": "yellow" + }, + { + "key": "240a8b61-b254-4082-acec-b5b3ae56c13a", + "label": "label-6982", + "height": 82, + "background": "red" + }, + { + "key": "6bd71420-8ec6-4708-9ae4-4ecb97e39813", + "label": "label-6983", + "height": 433, + "background": "yellow" + }, + { + "key": "c5ded923-ba14-4ad9-9fd2-6476b17e3ace", + "label": "label-6984", + "height": 323, + "background": "blue" + }, + { + "key": "925990a3-8791-4a62-bba4-817e1e51119e", + "label": "label-6985", + "height": 449, + "background": "red" + }, + { + "key": "fdb38f13-dfa9-463f-81b5-341bf65d3eaf", + "label": "label-6986", + "height": 197, + "background": "red" + }, + { + "key": "0116c070-27dd-4a8a-80b9-9b70439401a7", + "label": "label-6987", + "height": 459, + "background": "red" + }, + { + "key": "d342bf1d-67ed-4e7e-890f-fd27383dda8b", + "label": "label-6988", + "height": 58, + "background": "blue" + }, + { + "key": "3a1605bf-837e-435d-8fba-08dea5f5caf6", + "label": "label-6989", + "height": 457, + "background": "red" + }, + { + "key": "cda568a8-7369-4a7c-8e9c-81c80f6d36ff", + "label": "label-6990", + "height": 124, + "background": "red" + }, + { + "key": "2ea836ed-2fa1-44c5-8398-7c2539c4d483", + "label": "label-6991", + "height": 182, + "background": "blue" + }, + { + "key": "4827e3bc-5ea9-4ed3-8cb0-fcb3a1d40727", + "label": "label-6992", + "height": 260, + "background": "green" + }, + { + "key": "3b0837d1-ee0a-4c0a-999c-1ddf7c42e20e", + "label": "label-6993", + "height": 498, + "background": "red" + }, + { + "key": "02723835-1840-43fa-8c9b-c276f1265335", + "label": "label-6994", + "height": 370, + "background": "yellow" + }, + { + "key": "fc1eae3e-6fcc-4328-bd8e-a66ef819469a", + "label": "label-6995", + "height": 467, + "background": "yellow" + }, + { + "key": "74617808-0c35-4936-9df4-5c5eb6e7039e", + "label": "label-6996", + "height": 481, + "background": "green" + }, + { + "key": "34fb2c9b-3735-4edc-b856-e6e8848cec3e", + "label": "label-6997", + "height": 114, + "background": "red" + }, + { + "key": "35e1f7cb-8437-411f-a54e-8396da2aa1d0", + "label": "label-6998", + "height": 39, + "background": "blue" + }, + { + "key": "5d171653-3222-460c-b11e-cd942a659d5a", + "label": "label-6999", + "height": 104, + "background": "blue" + }, + { + "key": "60af1846-eb40-4d94-9445-bd4797726d17", + "label": "label-7000", + "height": 428, + "background": "green" + }, + { + "key": "04e17bca-a651-4840-b4a1-4eb45a59489a", + "label": "label-7001", + "height": 247, + "background": "green" + }, + { + "key": "7bbc4cde-e852-4347-9fe2-339f5f853f8a", + "label": "label-7002", + "height": 429, + "background": "green" + }, + { + "key": "f3e5ceff-3a46-40d5-951e-429865e27ff2", + "label": "label-7003", + "height": 379, + "background": "green" + }, + { + "key": "e51d6591-37c5-4d9d-9901-5c3091bb8c30", + "label": "label-7004", + "height": 466, + "background": "yellow" + }, + { + "key": "f0feef9a-560d-4f96-9b7c-3eb2162937fb", + "label": "label-7005", + "height": 67, + "background": "blue" + }, + { + "key": "bd865baa-b0ca-452b-82a8-f790c56d9fb5", + "label": "label-7006", + "height": 387, + "background": "yellow" + }, + { + "key": "22164f5f-8768-49af-a9c6-d031e699c347", + "label": "label-7007", + "height": 64, + "background": "green" + }, + { + "key": "657c77cd-6ede-481b-aa26-5f975667138d", + "label": "label-7008", + "height": 489, + "background": "green" + }, + { + "key": "bc1d160f-776b-41ab-8b38-9f70e8654800", + "label": "label-7009", + "height": 340, + "background": "green" + }, + { + "key": "913357d1-bf2a-4de4-ac6f-472c32fee92f", + "label": "label-7010", + "height": 50, + "background": "red" + }, + { + "key": "02d7346d-6e9e-450d-b83b-f15eb6b2eceb", + "label": "label-7011", + "height": 419, + "background": "green" + }, + { + "key": "30f09cb5-9b23-4384-b66f-88ae30001bf1", + "label": "label-7012", + "height": 105, + "background": "red" + }, + { + "key": "51917df8-193b-4c0b-93b3-7686fc728140", + "label": "label-7013", + "height": 195, + "background": "red" + }, + { + "key": "48f63653-f407-47b7-874b-378e7dfc9751", + "label": "label-7014", + "height": 377, + "background": "red" + }, + { + "key": "4ad3086a-15cc-44b9-a7c1-a8253bc608f5", + "label": "label-7015", + "height": 427, + "background": "red" + }, + { + "key": "e0627702-7453-4654-a800-53e112e140e7", + "label": "label-7016", + "height": 369, + "background": "green" + }, + { + "key": "758a0e13-18fb-4af5-b2a2-b2172051bd35", + "label": "label-7017", + "height": 71, + "background": "blue" + }, + { + "key": "5528172f-5ab2-442b-9525-0e3fd637268f", + "label": "label-7018", + "height": 404, + "background": "green" + }, + { + "key": "8209baab-38f5-4a13-9157-44b332857db1", + "label": "label-7019", + "height": 449, + "background": "blue" + }, + { + "key": "52c98ca9-751b-4a92-807c-95b6277708d4", + "label": "label-7020", + "height": 261, + "background": "blue" + }, + { + "key": "eb1c2132-ec76-4786-9aeb-0dbd7370de06", + "label": "label-7021", + "height": 418, + "background": "red" + }, + { + "key": "c51bc941-b8da-4a09-a2ca-f6c72038c176", + "label": "label-7022", + "height": 142, + "background": "blue" + }, + { + "key": "9842fe96-c6c9-487f-adab-91945b4066dd", + "label": "label-7023", + "height": 286, + "background": "blue" + }, + { + "key": "9062c89d-8aa1-40ae-bf63-86603c57b931", + "label": "label-7024", + "height": 388, + "background": "blue" + }, + { + "key": "2b561e59-e6ad-42be-b8a7-f33317119ee3", + "label": "label-7025", + "height": 187, + "background": "yellow" + }, + { + "key": "578ea896-db7d-42e2-a279-17161ffb3f13", + "label": "label-7026", + "height": 321, + "background": "yellow" + }, + { + "key": "934f96ad-4d15-4343-a100-7d5eb0642024", + "label": "label-7027", + "height": 250, + "background": "red" + }, + { + "key": "35c67b21-5045-4ab4-a748-e6a4be74d2f0", + "label": "label-7028", + "height": 268, + "background": "yellow" + }, + { + "key": "fa34d6a7-95cd-4a40-84ba-59cd655337f5", + "label": "label-7029", + "height": 419, + "background": "red" + }, + { + "key": "330d263f-62f0-44a2-929a-df59118ea4ef", + "label": "label-7030", + "height": 46, + "background": "green" + }, + { + "key": "d3853bd6-371b-4909-82a8-d22c7d32beb3", + "label": "label-7031", + "height": 320, + "background": "green" + }, + { + "key": "29cfb960-e19a-4471-a6d0-9517e14cc62b", + "label": "label-7032", + "height": 491, + "background": "yellow" + }, + { + "key": "f5b2f0f1-f4ac-4da3-8e6c-b75a8d3fe35e", + "label": "label-7033", + "height": 357, + "background": "blue" + }, + { + "key": "64841e6b-34b5-4e63-a657-101660e3a4fc", + "label": "label-7034", + "height": 242, + "background": "blue" + }, + { + "key": "00ea73fd-b65a-40fb-b7aa-6f0b027ba85c", + "label": "label-7035", + "height": 504, + "background": "yellow" + }, + { + "key": "e2753fdf-272d-4275-8e58-d28de4f7b73c", + "label": "label-7036", + "height": 418, + "background": "blue" + }, + { + "key": "5f563db3-aa9d-4c16-aa6c-ef522befd812", + "label": "label-7037", + "height": 130, + "background": "red" + }, + { + "key": "e9e5345f-5e6a-4e69-94dc-2959fc769dac", + "label": "label-7038", + "height": 471, + "background": "yellow" + }, + { + "key": "7c141b75-0bc6-46f6-91bc-4922fda37ab1", + "label": "label-7039", + "height": 74, + "background": "yellow" + }, + { + "key": "058a7682-de17-4948-975a-80146407b377", + "label": "label-7040", + "height": 288, + "background": "red" + }, + { + "key": "bd8eae43-c3c5-47f8-bd24-93d8bb9cedb6", + "label": "label-7041", + "height": 44, + "background": "green" + }, + { + "key": "89c42193-72d8-4efa-a4a3-82667620cdca", + "label": "label-7042", + "height": 204, + "background": "yellow" + }, + { + "key": "ee20837d-f957-4bcf-8fd3-bd2ef69a3df2", + "label": "label-7043", + "height": 302, + "background": "red" + }, + { + "key": "97d0f282-c99b-4b81-b071-fe76967076b0", + "label": "label-7044", + "height": 194, + "background": "green" + }, + { + "key": "4f5de898-f15c-44b4-90d1-af5deaeabfb9", + "label": "label-7045", + "height": 401, + "background": "blue" + }, + { + "key": "4e6e8266-38ba-4bd1-911c-43710eaa2198", + "label": "label-7046", + "height": 122, + "background": "yellow" + }, + { + "key": "5f564154-bb6d-4ac8-93a5-61f91060f931", + "label": "label-7047", + "height": 46, + "background": "yellow" + }, + { + "key": "f20dfb3d-98bd-42fd-87c6-56abf2fd66b7", + "label": "label-7048", + "height": 379, + "background": "yellow" + }, + { + "key": "66e8b945-a456-49ef-bb69-3ad48a2bb520", + "label": "label-7049", + "height": 249, + "background": "green" + }, + { + "key": "489e4974-7572-4e9b-b05d-d4d7d14b3fb0", + "label": "label-7050", + "height": 305, + "background": "yellow" + }, + { + "key": "f5f7f8cc-25c2-4197-aec1-76199a08e902", + "label": "label-7051", + "height": 184, + "background": "blue" + }, + { + "key": "daf68563-1488-4f79-95a8-ef2fd5557b49", + "label": "label-7052", + "height": 56, + "background": "yellow" + }, + { + "key": "4f46a251-3534-46e0-9d65-ab789df2e27f", + "label": "label-7053", + "height": 210, + "background": "green" + }, + { + "key": "8a12bcaa-588d-4971-94c8-feb0dd95040b", + "label": "label-7054", + "height": 413, + "background": "green" + }, + { + "key": "5b4fdbcf-6035-41f3-b3a4-4814062a1b21", + "label": "label-7055", + "height": 206, + "background": "yellow" + }, + { + "key": "08e6b907-bae7-4f50-b241-825815d0254f", + "label": "label-7056", + "height": 411, + "background": "blue" + }, + { + "key": "6f66db8a-71e0-4dfb-b1a9-c0bca65e9af5", + "label": "label-7057", + "height": 336, + "background": "blue" + }, + { + "key": "919f9538-5448-47cd-a1fd-a12f4c067240", + "label": "label-7058", + "height": 488, + "background": "yellow" + }, + { + "key": "3e0277c1-3d05-4ea3-9f1c-de31c3fdf8d7", + "label": "label-7059", + "height": 246, + "background": "red" + }, + { + "key": "6314bf98-94ed-48b5-b5b3-0a91708f740d", + "label": "label-7060", + "height": 219, + "background": "yellow" + }, + { + "key": "7842bc1f-37ff-4902-ad43-e9699e5c8b29", + "label": "label-7061", + "height": 477, + "background": "yellow" + }, + { + "key": "a1fefbf9-3d76-4c97-a913-f07f5b7eab55", + "label": "label-7062", + "height": 239, + "background": "green" + }, + { + "key": "d63b0ee7-dfc2-4f10-86bf-27bdc67af49e", + "label": "label-7063", + "height": 47, + "background": "blue" + }, + { + "key": "5185d8b1-3122-4ba3-9fe7-92c010a9540e", + "label": "label-7064", + "height": 135, + "background": "green" + }, + { + "key": "a9613e79-3fe9-4b6a-93c5-caff430d4553", + "label": "label-7065", + "height": 281, + "background": "red" + }, + { + "key": "a1681364-1a5d-46ef-97c8-3d86f68fc805", + "label": "label-7066", + "height": 165, + "background": "yellow" + }, + { + "key": "817ec37c-cee4-4079-bf93-db3f49b9e30f", + "label": "label-7067", + "height": 260, + "background": "yellow" + }, + { + "key": "e2ef844d-3e4c-44d3-8a43-2ce639166d5c", + "label": "label-7068", + "height": 177, + "background": "yellow" + }, + { + "key": "3a8a22d2-4022-42f3-a515-a655dfd2f21b", + "label": "label-7069", + "height": 457, + "background": "blue" + }, + { + "key": "fd20f334-f06b-4d7f-91ad-bec7cf1d20ca", + "label": "label-7070", + "height": 293, + "background": "blue" + }, + { + "key": "6cbf9adc-2daf-454a-bb07-5ee1e72bb69a", + "label": "label-7071", + "height": 53, + "background": "red" + }, + { + "key": "46331e78-4cb3-4e81-b46d-29d5b807e4c0", + "label": "label-7072", + "height": 387, + "background": "blue" + }, + { + "key": "037b8980-dac0-4dcf-85c9-1925e5e75645", + "label": "label-7073", + "height": 70, + "background": "blue" + }, + { + "key": "090b0447-bbd4-4b29-92b9-9cd4a5e73817", + "label": "label-7074", + "height": 421, + "background": "yellow" + }, + { + "key": "e7c06854-05da-47e7-a67c-26efafd891ce", + "label": "label-7075", + "height": 309, + "background": "green" + }, + { + "key": "25c09bb5-9358-45c0-9419-d5a0b02ebb5d", + "label": "label-7076", + "height": 133, + "background": "green" + }, + { + "key": "1438bac9-8de0-4c1f-b286-83549357a2cb", + "label": "label-7077", + "height": 136, + "background": "yellow" + }, + { + "key": "33f6a63c-36f8-42dd-bcfc-bb51a93b3c7f", + "label": "label-7078", + "height": 424, + "background": "yellow" + }, + { + "key": "90165d12-1caa-43b0-8e82-3f06eee38241", + "label": "label-7079", + "height": 309, + "background": "green" + }, + { + "key": "8188dccd-e3e5-4915-9d23-cb044383319f", + "label": "label-7080", + "height": 89, + "background": "red" + }, + { + "key": "534a7217-fe78-463f-a27e-8809ea3d10c4", + "label": "label-7081", + "height": 157, + "background": "green" + }, + { + "key": "24ac31a4-d6f5-420d-943b-586c3361a5bb", + "label": "label-7082", + "height": 189, + "background": "blue" + }, + { + "key": "d511322e-6ab9-4f24-a52e-e1acb5f814c7", + "label": "label-7083", + "height": 243, + "background": "red" + }, + { + "key": "56dcc282-0020-4c1a-ac22-0a4491a4e1c0", + "label": "label-7084", + "height": 506, + "background": "green" + }, + { + "key": "1205c02a-9837-4650-b927-d029618fdc97", + "label": "label-7085", + "height": 138, + "background": "red" + }, + { + "key": "604313c6-93b5-4478-9514-763199575499", + "label": "label-7086", + "height": 526, + "background": "blue" + }, + { + "key": "7e6ab1e0-e8b6-4a0f-a66c-e5b25db330b1", + "label": "label-7087", + "height": 235, + "background": "yellow" + }, + { + "key": "58ca880b-9f42-4404-96ae-d6a01a1983c9", + "label": "label-7088", + "height": 323, + "background": "yellow" + }, + { + "key": "2b631a40-e1e4-4472-92b2-814968df6da7", + "label": "label-7089", + "height": 502, + "background": "yellow" + }, + { + "key": "52c6d986-bf1f-4f0b-a13d-b5d50bdb967e", + "label": "label-7090", + "height": 93, + "background": "blue" + }, + { + "key": "46899f1d-9393-48e7-9401-62a38a576b9a", + "label": "label-7091", + "height": 230, + "background": "blue" + }, + { + "key": "983350ad-1deb-4f2a-b816-57410b32b0ed", + "label": "label-7092", + "height": 42, + "background": "red" + }, + { + "key": "61440bbf-77cb-4a76-a49c-8efd736bba6d", + "label": "label-7093", + "height": 37, + "background": "green" + }, + { + "key": "896c48ee-acb3-4b1d-bed2-372da5449539", + "label": "label-7094", + "height": 78, + "background": "blue" + }, + { + "key": "2d36ba61-3070-4ee5-b2c7-83677d75d5a4", + "label": "label-7095", + "height": 324, + "background": "green" + }, + { + "key": "15700233-f837-4972-88a5-254ddebe9602", + "label": "label-7096", + "height": 75, + "background": "red" + }, + { + "key": "461854fe-57be-4503-a42b-eb557233eda8", + "label": "label-7097", + "height": 417, + "background": "red" + }, + { + "key": "b6962e7d-cdac-490e-90c7-65be4294ef7a", + "label": "label-7098", + "height": 423, + "background": "red" + }, + { + "key": "6bbdf4c4-200b-4163-980d-23c4e8a66ce4", + "label": "label-7099", + "height": 190, + "background": "blue" + }, + { + "key": "80ca94a7-054c-424b-8f3f-1186bcb33cd5", + "label": "label-7100", + "height": 264, + "background": "blue" + }, + { + "key": "d5fcc3a6-b0ae-43ff-aafa-f06daeb95d2e", + "label": "label-7101", + "height": 219, + "background": "blue" + }, + { + "key": "f308dd09-26b9-45ae-85e7-f84b56dd7f0b", + "label": "label-7102", + "height": 399, + "background": "blue" + }, + { + "key": "c056b4d1-dc20-403d-9b84-5d4bf0698bba", + "label": "label-7103", + "height": 274, + "background": "red" + }, + { + "key": "84de6bee-9825-4844-b63f-9a2dc311f84e", + "label": "label-7104", + "height": 451, + "background": "yellow" + }, + { + "key": "8d608491-24d9-4131-8986-0cfa8e69d45f", + "label": "label-7105", + "height": 518, + "background": "green" + }, + { + "key": "19e8d7f7-14f9-4577-9c13-e3151f66d1c1", + "label": "label-7106", + "height": 360, + "background": "yellow" + }, + { + "key": "13966b50-a12f-4b38-bd95-fdb1b0c8875e", + "label": "label-7107", + "height": 341, + "background": "yellow" + }, + { + "key": "5d2469ea-1832-4899-bbaa-02a875a4d834", + "label": "label-7108", + "height": 215, + "background": "yellow" + }, + { + "key": "5767af77-0870-489d-bd84-b732d1d7a5dc", + "label": "label-7109", + "height": 510, + "background": "yellow" + }, + { + "key": "341bed7f-35bf-4d3c-a887-226a406cdf26", + "label": "label-7110", + "height": 415, + "background": "blue" + }, + { + "key": "95ee33a4-4987-4b5e-8b62-4743d0f20f8e", + "label": "label-7111", + "height": 129, + "background": "red" + }, + { + "key": "e9ee2c9c-c9d9-4d60-870c-e5933fb70a65", + "label": "label-7112", + "height": 308, + "background": "yellow" + }, + { + "key": "a8cf1c27-318f-4e82-9d0a-dc689a94f269", + "label": "label-7113", + "height": 286, + "background": "green" + }, + { + "key": "a00810de-7541-45d6-84da-2bd9c7f58fc5", + "label": "label-7114", + "height": 286, + "background": "green" + }, + { + "key": "68419930-ee4e-49e4-a279-b7c69c4d0c99", + "label": "label-7115", + "height": 256, + "background": "red" + }, + { + "key": "159c3019-7e5d-4ba3-ad84-cfe98d842e38", + "label": "label-7116", + "height": 151, + "background": "red" + }, + { + "key": "5e1ba40a-87d4-4f6a-a8b6-2af4af72f018", + "label": "label-7117", + "height": 254, + "background": "blue" + }, + { + "key": "22972d93-ebbd-4c25-a442-cb39dd479683", + "label": "label-7118", + "height": 329, + "background": "red" + }, + { + "key": "475c63e9-bf11-4748-b19d-21121230a687", + "label": "label-7119", + "height": 317, + "background": "yellow" + }, + { + "key": "43bf8ece-c1a4-45e2-a072-92aa9261d972", + "label": "label-7120", + "height": 63, + "background": "yellow" + }, + { + "key": "a561deb0-4c02-4e1a-b3c9-2ec87c5fcef9", + "label": "label-7121", + "height": 384, + "background": "yellow" + }, + { + "key": "2adeb2c2-acf6-43fd-b6e1-1cb2a6870375", + "label": "label-7122", + "height": 143, + "background": "green" + }, + { + "key": "b2d8eb7e-c38f-4494-a7ef-9466ffcbacb7", + "label": "label-7123", + "height": 299, + "background": "green" + }, + { + "key": "8e820e03-bcea-4ee8-a0bc-437c870188ff", + "label": "label-7124", + "height": 129, + "background": "green" + }, + { + "key": "ee90155f-cf53-4068-898c-5a1245cd9f67", + "label": "label-7125", + "height": 420, + "background": "blue" + }, + { + "key": "5b79f619-7887-4e9c-b9e2-3c7b77866599", + "label": "label-7126", + "height": 296, + "background": "green" + }, + { + "key": "177fc7ee-4f56-48c0-8eb3-e2cb08d052d5", + "label": "label-7127", + "height": 394, + "background": "blue" + }, + { + "key": "5d04a72b-3159-4af2-b2e2-7f1357e304b0", + "label": "label-7128", + "height": 424, + "background": "red" + }, + { + "key": "dc1f9c34-f4bc-40f0-adb9-93d50e91eee4", + "label": "label-7129", + "height": 116, + "background": "red" + }, + { + "key": "3af90038-e136-4441-a370-d6cbee0a7cbd", + "label": "label-7130", + "height": 187, + "background": "red" + }, + { + "key": "8fe3a99a-6297-4d68-975a-f16b517d9921", + "label": "label-7131", + "height": 358, + "background": "red" + }, + { + "key": "20fba1a9-4507-4edc-938d-8452a0195b96", + "label": "label-7132", + "height": 33, + "background": "blue" + }, + { + "key": "493d4377-a5b8-43aa-a6cd-61445a723cbf", + "label": "label-7133", + "height": 266, + "background": "yellow" + }, + { + "key": "694ccc14-3f30-43b9-9ebd-d072c7080952", + "label": "label-7134", + "height": 469, + "background": "red" + }, + { + "key": "4d1bbf6c-dab8-49f0-860b-1045b743dedf", + "label": "label-7135", + "height": 152, + "background": "red" + }, + { + "key": "c995df79-859b-4f2b-8edf-02d68fd7ddd1", + "label": "label-7136", + "height": 338, + "background": "red" + }, + { + "key": "8f1aa67a-fda3-47fb-8f27-03bc57949e8d", + "label": "label-7137", + "height": 362, + "background": "yellow" + }, + { + "key": "3ec6aff5-a1a7-4854-bf25-465bac0a1e4b", + "label": "label-7138", + "height": 260, + "background": "green" + }, + { + "key": "36516b3f-e189-408f-afc7-c0bbf974853d", + "label": "label-7139", + "height": 63, + "background": "red" + }, + { + "key": "fe625760-61ef-4fb1-be08-47010577276d", + "label": "label-7140", + "height": 320, + "background": "green" + }, + { + "key": "1e481f20-11a2-47f7-af55-70dcb3746e4c", + "label": "label-7141", + "height": 301, + "background": "blue" + }, + { + "key": "5da09dd7-280b-4ec7-a57e-4df8225fdb23", + "label": "label-7142", + "height": 269, + "background": "blue" + }, + { + "key": "dddcf6d1-bc1c-4278-949e-c9f497ccc07b", + "label": "label-7143", + "height": 215, + "background": "green" + }, + { + "key": "799b7d84-cc65-4416-9885-97c761324ad5", + "label": "label-7144", + "height": 513, + "background": "yellow" + }, + { + "key": "24cdc24e-3b91-4ddc-8cc2-98f9b3defad0", + "label": "label-7145", + "height": 39, + "background": "green" + }, + { + "key": "aaf87aa8-5cd6-4d9a-ab3c-855d21fb06ab", + "label": "label-7146", + "height": 334, + "background": "yellow" + }, + { + "key": "6cc6da61-b8c2-451d-b2af-5e521a76ff54", + "label": "label-7147", + "height": 401, + "background": "blue" + }, + { + "key": "0dfa3d33-6c03-43a8-b337-d8311dabecba", + "label": "label-7148", + "height": 504, + "background": "blue" + }, + { + "key": "36c11b70-25a8-46df-b4dd-1c331405f75e", + "label": "label-7149", + "height": 223, + "background": "red" + }, + { + "key": "633ed96c-303f-4d68-94cb-f4e7a397cfc8", + "label": "label-7150", + "height": 495, + "background": "yellow" + }, + { + "key": "4a5b9038-41f5-4a3b-9a35-0cdf5a25ab92", + "label": "label-7151", + "height": 76, + "background": "blue" + }, + { + "key": "05507737-85a7-4632-8ee2-4c11e53285c1", + "label": "label-7152", + "height": 453, + "background": "green" + }, + { + "key": "53e4e98e-3a69-4755-bd99-7fb01f9837a5", + "label": "label-7153", + "height": 281, + "background": "green" + }, + { + "key": "da77124a-f454-4ab2-94dc-9e8917320716", + "label": "label-7154", + "height": 260, + "background": "red" + }, + { + "key": "f5c810db-1d00-47b7-8c27-c3d360af2b6d", + "label": "label-7155", + "height": 442, + "background": "blue" + }, + { + "key": "046191ba-cb5b-403b-987b-e8f9b09abb3e", + "label": "label-7156", + "height": 527, + "background": "blue" + }, + { + "key": "e930e19b-029b-4a59-865f-b03934c249a7", + "label": "label-7157", + "height": 346, + "background": "blue" + }, + { + "key": "25d02c35-c74d-4a9d-8cac-927821151192", + "label": "label-7158", + "height": 37, + "background": "yellow" + }, + { + "key": "bbc6d1fa-155d-4c81-adf4-c3d12729de7a", + "label": "label-7159", + "height": 203, + "background": "yellow" + }, + { + "key": "98234f19-a4b9-4bb9-aea1-63d46f88a6d0", + "label": "label-7160", + "height": 229, + "background": "red" + }, + { + "key": "df963e3c-c797-4dd3-a5ce-a47d1581947d", + "label": "label-7161", + "height": 216, + "background": "blue" + }, + { + "key": "2b4c5e50-915a-4438-9787-3eebaa0fcd56", + "label": "label-7162", + "height": 304, + "background": "green" + }, + { + "key": "32da3810-7f13-4e0b-839d-6aed5904e7f1", + "label": "label-7163", + "height": 517, + "background": "blue" + }, + { + "key": "f5e7d355-813c-423a-87a2-ea7bd33a69ac", + "label": "label-7164", + "height": 234, + "background": "green" + }, + { + "key": "ad166a52-1682-4498-aba5-2faadd52274b", + "label": "label-7165", + "height": 420, + "background": "red" + }, + { + "key": "811e6b21-48a0-424d-8e56-a79ceb01d2d0", + "label": "label-7166", + "height": 352, + "background": "yellow" + }, + { + "key": "b8040c08-d315-4be9-9802-d8c1dc3c1b14", + "label": "label-7167", + "height": 268, + "background": "blue" + }, + { + "key": "0e72bc86-1985-4b06-907b-4259cfca3e00", + "label": "label-7168", + "height": 310, + "background": "yellow" + }, + { + "key": "b208f433-a4e6-4a9a-95d4-0ff14bf039de", + "label": "label-7169", + "height": 371, + "background": "yellow" + }, + { + "key": "c2f4560d-03aa-4beb-be36-f305fc7b26c9", + "label": "label-7170", + "height": 177, + "background": "yellow" + }, + { + "key": "e13df791-0605-4cec-a59c-e4980547538e", + "label": "label-7171", + "height": 442, + "background": "red" + }, + { + "key": "62f42a43-0694-4721-b16d-f9a4c961094c", + "label": "label-7172", + "height": 253, + "background": "red" + }, + { + "key": "1db8dff8-cb00-4853-ac6b-155d4a0cf28a", + "label": "label-7173", + "height": 187, + "background": "blue" + }, + { + "key": "a534353a-c346-4e7d-a5dc-1570869b3d7d", + "label": "label-7174", + "height": 319, + "background": "blue" + }, + { + "key": "894fb942-c5da-440c-ad82-03143c80f46f", + "label": "label-7175", + "height": 258, + "background": "blue" + }, + { + "key": "f5440b1b-b013-4639-a9fb-9694e73f67e5", + "label": "label-7176", + "height": 162, + "background": "yellow" + }, + { + "key": "a73428cd-6d17-4aab-8fae-caad5f185ae3", + "label": "label-7177", + "height": 378, + "background": "blue" + }, + { + "key": "5371b488-8a6e-46b6-b549-f704d9af2752", + "label": "label-7178", + "height": 99, + "background": "red" + }, + { + "key": "d07dad1e-ed7e-4ba9-913e-ac22b2092ceb", + "label": "label-7179", + "height": 505, + "background": "green" + }, + { + "key": "5de06a4a-1dec-4138-9d60-c92cf6e2a263", + "label": "label-7180", + "height": 173, + "background": "red" + }, + { + "key": "3f1228d8-ec6c-479f-a84b-abc95899cbe9", + "label": "label-7181", + "height": 206, + "background": "red" + }, + { + "key": "7f87da7f-33a3-4314-832a-493939b1201b", + "label": "label-7182", + "height": 511, + "background": "blue" + }, + { + "key": "8b3b4aa1-cf33-4086-ac23-31e739586010", + "label": "label-7183", + "height": 212, + "background": "green" + }, + { + "key": "5b094ac3-44b2-4643-9ed8-b06536f14f53", + "label": "label-7184", + "height": 333, + "background": "green" + }, + { + "key": "37a66806-f9d3-4754-9c18-9c2c6d00119a", + "label": "label-7185", + "height": 71, + "background": "blue" + }, + { + "key": "c1121f36-8d2c-4123-892b-631409b917ca", + "label": "label-7186", + "height": 402, + "background": "red" + }, + { + "key": "cd07afd4-ff36-4df6-ae6a-d8c0215441e6", + "label": "label-7187", + "height": 423, + "background": "green" + }, + { + "key": "6454d9fe-2296-4daf-94cf-0657d21b8393", + "label": "label-7188", + "height": 258, + "background": "green" + }, + { + "key": "05660100-85c9-40b3-809e-9a4b50bdadc8", + "label": "label-7189", + "height": 505, + "background": "green" + }, + { + "key": "e3ecd597-2308-419c-974e-9bed227482b4", + "label": "label-7190", + "height": 187, + "background": "yellow" + }, + { + "key": "7883d8cd-84db-4a12-a9f1-899173896a94", + "label": "label-7191", + "height": 127, + "background": "yellow" + }, + { + "key": "60994a59-b144-4cda-8420-6ece459dcefe", + "label": "label-7192", + "height": 296, + "background": "green" + }, + { + "key": "87f731a6-7f92-45eb-a526-d136a59c5a6c", + "label": "label-7193", + "height": 57, + "background": "yellow" + }, + { + "key": "6364ea03-1ce1-46e4-87a1-496abd61586d", + "label": "label-7194", + "height": 47, + "background": "red" + }, + { + "key": "e4814996-b3dd-4538-82a1-9f319ffed632", + "label": "label-7195", + "height": 383, + "background": "blue" + }, + { + "key": "de5386aa-7d09-49dd-962f-db4cdaf145fb", + "label": "label-7196", + "height": 262, + "background": "green" + }, + { + "key": "b668797c-4618-451b-b32e-2d3c8e5635ad", + "label": "label-7197", + "height": 126, + "background": "blue" + }, + { + "key": "25f3c3d3-5822-4bcd-bcf6-6cdfc09700a9", + "label": "label-7198", + "height": 442, + "background": "yellow" + }, + { + "key": "b7015a36-03da-4327-844e-11d18aef50a4", + "label": "label-7199", + "height": 269, + "background": "red" + }, + { + "key": "dd3c509b-3881-45bb-af38-f62a4feb3a70", + "label": "label-7200", + "height": 129, + "background": "red" + }, + { + "key": "0fe1dcc9-98e6-4c9d-90a0-03aaf57dd946", + "label": "label-7201", + "height": 388, + "background": "green" + }, + { + "key": "3f965621-f567-48d0-ba09-81acd785b6ee", + "label": "label-7202", + "height": 496, + "background": "yellow" + }, + { + "key": "7cd46f54-4a07-4cf9-83b8-42e54d46f990", + "label": "label-7203", + "height": 462, + "background": "red" + }, + { + "key": "cc27ecaf-0b76-481a-bd53-a7e97bd6386d", + "label": "label-7204", + "height": 101, + "background": "yellow" + }, + { + "key": "05a39d8e-ded2-4d66-9d30-7a2d5531b20f", + "label": "label-7205", + "height": 307, + "background": "yellow" + }, + { + "key": "e4de9b73-b825-4643-ad9f-22f7b21e155b", + "label": "label-7206", + "height": 261, + "background": "blue" + }, + { + "key": "358e5472-1997-477d-af89-ce53318bfbde", + "label": "label-7207", + "height": 486, + "background": "blue" + }, + { + "key": "91671924-ef15-4a84-bb53-15dcd9fd4e56", + "label": "label-7208", + "height": 491, + "background": "red" + }, + { + "key": "ca6862f3-a0bb-418b-ac9d-5317fcce30ab", + "label": "label-7209", + "height": 210, + "background": "green" + }, + { + "key": "91c9d4f9-9bf5-4c6b-a1d1-c9f77376e847", + "label": "label-7210", + "height": 270, + "background": "red" + }, + { + "key": "3ee64f71-cbd9-469c-a628-b87fdd38a0f2", + "label": "label-7211", + "height": 389, + "background": "yellow" + }, + { + "key": "2c6eafc0-8dca-44d1-b3ae-f872e3c9a117", + "label": "label-7212", + "height": 41, + "background": "yellow" + }, + { + "key": "ec3e63c8-440f-4a5c-8062-e72080013fab", + "label": "label-7213", + "height": 314, + "background": "green" + }, + { + "key": "845758cb-167c-4ec1-b44c-804a894d99c1", + "label": "label-7214", + "height": 70, + "background": "green" + }, + { + "key": "df675fd8-dc23-4b0a-a95f-eba2c9f41f88", + "label": "label-7215", + "height": 249, + "background": "yellow" + }, + { + "key": "0bbf0f88-44f6-4cef-b6c1-c22c8eabdc4b", + "label": "label-7216", + "height": 376, + "background": "yellow" + }, + { + "key": "42ea1cbc-a7cc-4c19-b9a1-b33b1af0917e", + "label": "label-7217", + "height": 343, + "background": "yellow" + }, + { + "key": "3d92287b-0728-469a-bb65-aabc638a526d", + "label": "label-7218", + "height": 221, + "background": "blue" + }, + { + "key": "8038f954-889e-4ba9-b85d-4df4a3aee29d", + "label": "label-7219", + "height": 385, + "background": "green" + }, + { + "key": "1a60011f-8be4-4c42-a356-8da5fbf5cf26", + "label": "label-7220", + "height": 437, + "background": "blue" + }, + { + "key": "3f7f89d8-fdeb-4945-820c-199827fe0d40", + "label": "label-7221", + "height": 141, + "background": "red" + }, + { + "key": "723cc5ac-5fa6-469d-85ae-66047219d598", + "label": "label-7222", + "height": 207, + "background": "blue" + }, + { + "key": "6093b1ae-3f44-476e-880a-cc5eb3405e67", + "label": "label-7223", + "height": 51, + "background": "red" + }, + { + "key": "623a5f20-ce79-4567-9cc5-9d734d974451", + "label": "label-7224", + "height": 102, + "background": "yellow" + }, + { + "key": "d0c75aab-1165-4f89-b418-250fb588f3c4", + "label": "label-7225", + "height": 449, + "background": "green" + }, + { + "key": "cb70bf15-ec8c-4319-8634-26116c922cb1", + "label": "label-7226", + "height": 308, + "background": "yellow" + }, + { + "key": "a2c1169a-a0a7-438f-bd2d-6fe9450eeaa5", + "label": "label-7227", + "height": 522, + "background": "blue" + }, + { + "key": "d669434a-6d82-461d-aee9-06897295b9e7", + "label": "label-7228", + "height": 289, + "background": "green" + }, + { + "key": "2c4fc248-c8af-4c7a-82d1-676b74dd7411", + "label": "label-7229", + "height": 386, + "background": "green" + }, + { + "key": "3555c817-845a-45a2-95ee-828fec6d470a", + "label": "label-7230", + "height": 184, + "background": "yellow" + }, + { + "key": "a548b142-4873-422d-937c-9c4b156266cc", + "label": "label-7231", + "height": 231, + "background": "red" + }, + { + "key": "9d856c0d-d06d-4473-8f7f-c27ee5148162", + "label": "label-7232", + "height": 272, + "background": "red" + }, + { + "key": "94f2e695-558a-40d6-a9d2-e8612cd6d132", + "label": "label-7233", + "height": 335, + "background": "blue" + }, + { + "key": "bfa88437-074a-4fea-999d-be07b43d0abc", + "label": "label-7234", + "height": 218, + "background": "blue" + }, + { + "key": "79b1aa40-afa4-4b8f-92be-b8b9041bc95f", + "label": "label-7235", + "height": 410, + "background": "blue" + }, + { + "key": "d6d2711d-a980-438e-8c93-018cdfae4daf", + "label": "label-7236", + "height": 342, + "background": "blue" + }, + { + "key": "b7cd7b40-586e-46b6-8549-fa240438b001", + "label": "label-7237", + "height": 111, + "background": "yellow" + }, + { + "key": "1c16473f-05aa-4d8b-8a2c-8170546e964a", + "label": "label-7238", + "height": 441, + "background": "red" + }, + { + "key": "dd71f87b-a2f1-4ed0-a3ea-0882df50a625", + "label": "label-7239", + "height": 314, + "background": "blue" + }, + { + "key": "5cbfdba4-850f-4e52-8db9-3d308b55db24", + "label": "label-7240", + "height": 134, + "background": "red" + }, + { + "key": "9ccabeaa-26d7-448a-a32f-7f51a84c0685", + "label": "label-7241", + "height": 297, + "background": "blue" + }, + { + "key": "8ee798fa-49d0-46fd-aaf0-12971f24bb80", + "label": "label-7242", + "height": 524, + "background": "blue" + }, + { + "key": "f171c271-6d1d-420e-b9d3-76f2f4a994ce", + "label": "label-7243", + "height": 262, + "background": "green" + }, + { + "key": "bad8fb0f-1c8d-4a0f-a7a9-e81c8af98ad8", + "label": "label-7244", + "height": 135, + "background": "blue" + }, + { + "key": "b22f28a9-de5b-453a-b8ec-ee70152a9c13", + "label": "label-7245", + "height": 411, + "background": "yellow" + }, + { + "key": "252d14d4-fb00-44ad-adcb-5b2421f21cf6", + "label": "label-7246", + "height": 469, + "background": "yellow" + }, + { + "key": "b741e6fb-a03c-44a7-a147-69942d5eea62", + "label": "label-7247", + "height": 207, + "background": "red" + }, + { + "key": "6e9fab5c-906e-44e7-9959-a873974dc3e0", + "label": "label-7248", + "height": 109, + "background": "green" + }, + { + "key": "b5210575-7937-495c-85fd-df088eee8069", + "label": "label-7249", + "height": 39, + "background": "blue" + }, + { + "key": "e231b746-356f-4caf-9eba-77fbc0448735", + "label": "label-7250", + "height": 459, + "background": "red" + }, + { + "key": "df281993-3046-40bf-8cad-6c4ca5680508", + "label": "label-7251", + "height": 380, + "background": "green" + }, + { + "key": "87177cfe-446d-4818-8a30-c1438d6edca1", + "label": "label-7252", + "height": 44, + "background": "yellow" + }, + { + "key": "84522883-1c22-454a-9ff7-316f0ecc6b98", + "label": "label-7253", + "height": 462, + "background": "yellow" + }, + { + "key": "90df330f-1e3c-435a-86c4-8e0614ab0892", + "label": "label-7254", + "height": 149, + "background": "red" + }, + { + "key": "e1db6b10-4a36-4dba-911d-1edc7c0651ff", + "label": "label-7255", + "height": 319, + "background": "blue" + }, + { + "key": "18d5e620-f13e-42c5-8aaa-6e16f2802587", + "label": "label-7256", + "height": 248, + "background": "green" + }, + { + "key": "5ba1a107-9a7f-4d06-99d4-5cbcf3dbbf86", + "label": "label-7257", + "height": 526, + "background": "blue" + }, + { + "key": "d6716812-3538-4d56-8893-39cc9c023304", + "label": "label-7258", + "height": 381, + "background": "green" + }, + { + "key": "51f59f0c-0631-469d-9c05-824cb64007ce", + "label": "label-7259", + "height": 518, + "background": "yellow" + }, + { + "key": "03a903d0-89e6-47bb-a89e-1d6f3940717a", + "label": "label-7260", + "height": 69, + "background": "yellow" + }, + { + "key": "1cce7411-56cf-45cf-bb08-9a4737265fac", + "label": "label-7261", + "height": 33, + "background": "green" + }, + { + "key": "310db3a8-afc0-4fe6-85de-cabda1617698", + "label": "label-7262", + "height": 221, + "background": "red" + }, + { + "key": "355d03cc-ab7a-4f14-bf3c-1dfe43aac173", + "label": "label-7263", + "height": 126, + "background": "red" + }, + { + "key": "2f01454f-5dec-4d1a-88e8-db54bfe5cb30", + "label": "label-7264", + "height": 434, + "background": "blue" + }, + { + "key": "70a95b9c-92e9-47c6-b552-c673f22610bd", + "label": "label-7265", + "height": 189, + "background": "red" + }, + { + "key": "fcbdb9ac-af92-4505-9a04-0e3b7be0fea6", + "label": "label-7266", + "height": 532, + "background": "green" + }, + { + "key": "bd2d225e-3a6b-4d29-ab4c-649224946d74", + "label": "label-7267", + "height": 36, + "background": "red" + }, + { + "key": "d46f2a1a-d41b-40ed-9d32-70631c4117c6", + "label": "label-7268", + "height": 390, + "background": "red" + }, + { + "key": "237eca3f-368f-4732-9595-3f8ead272737", + "label": "label-7269", + "height": 247, + "background": "blue" + }, + { + "key": "ad52f2db-b2aa-4c6d-9a7a-e2958dc31fad", + "label": "label-7270", + "height": 506, + "background": "red" + }, + { + "key": "e5df00fb-f399-4242-9a5d-2caa613c8840", + "label": "label-7271", + "height": 242, + "background": "yellow" + }, + { + "key": "5499d197-129e-4ab7-8af4-928d3ff982ee", + "label": "label-7272", + "height": 288, + "background": "red" + }, + { + "key": "73575d6d-1ea9-4b7e-9790-fd38ffa48cfc", + "label": "label-7273", + "height": 317, + "background": "green" + }, + { + "key": "91e646fb-830c-49a2-aff5-ab67a6c94ff9", + "label": "label-7274", + "height": 387, + "background": "blue" + }, + { + "key": "ce891ab2-5d7c-4be0-9aa2-ee36d1b77780", + "label": "label-7275", + "height": 171, + "background": "blue" + }, + { + "key": "10c7c905-aca7-4f51-8207-01921f1c6c1e", + "label": "label-7276", + "height": 140, + "background": "green" + }, + { + "key": "a9be871f-b7e9-476b-ab02-0563e15b3cdb", + "label": "label-7277", + "height": 193, + "background": "green" + }, + { + "key": "b6e51903-0da4-4d2f-bd9b-3d70faab1116", + "label": "label-7278", + "height": 491, + "background": "blue" + }, + { + "key": "5d0e589d-2731-4398-be34-b338a5d069fa", + "label": "label-7279", + "height": 350, + "background": "green" + }, + { + "key": "4be30b8c-4631-42cb-bba6-d9b2657c37be", + "label": "label-7280", + "height": 104, + "background": "green" + }, + { + "key": "38ca528b-b855-4573-8eef-474902bfcf30", + "label": "label-7281", + "height": 91, + "background": "red" + }, + { + "key": "d5a49e52-def4-42bf-aa1c-a67c31caa0a1", + "label": "label-7282", + "height": 120, + "background": "blue" + }, + { + "key": "d1942fc3-9af5-47be-a603-f5014d43a04c", + "label": "label-7283", + "height": 182, + "background": "yellow" + }, + { + "key": "37be3195-767b-49f0-88ff-9816ffe3c144", + "label": "label-7284", + "height": 459, + "background": "blue" + }, + { + "key": "39322035-cb40-4cd3-9886-d83a05f576f7", + "label": "label-7285", + "height": 35, + "background": "blue" + }, + { + "key": "aebc6db5-e951-4f67-9dd2-40da50af4dbc", + "label": "label-7286", + "height": 217, + "background": "yellow" + }, + { + "key": "3879ca13-b977-43e3-9979-ccdd46aef5b1", + "label": "label-7287", + "height": 116, + "background": "yellow" + }, + { + "key": "84c3d540-9eaf-4e7e-bde7-7ce7aa91238f", + "label": "label-7288", + "height": 232, + "background": "red" + }, + { + "key": "dc3bec76-5f58-4a88-b484-2189b5557854", + "label": "label-7289", + "height": 99, + "background": "red" + }, + { + "key": "293524c4-0cde-4b88-9391-0f45264a2a21", + "label": "label-7290", + "height": 482, + "background": "green" + }, + { + "key": "6db61d1a-9a3f-407e-8b93-5be1782db3cb", + "label": "label-7291", + "height": 137, + "background": "red" + }, + { + "key": "b06e2cbd-0708-4b0d-b295-1dc41db7fe24", + "label": "label-7292", + "height": 143, + "background": "yellow" + }, + { + "key": "d5962bdc-446b-4fd2-87b9-de7cdfe84365", + "label": "label-7293", + "height": 475, + "background": "blue" + }, + { + "key": "e6fb8022-9a1d-4b25-882e-626f09bf1fdb", + "label": "label-7294", + "height": 396, + "background": "red" + }, + { + "key": "e8c06259-f83c-464b-aeb0-60620e1e18f0", + "label": "label-7295", + "height": 246, + "background": "green" + }, + { + "key": "9515aa6f-4338-4abd-bd4d-315cfee03d1f", + "label": "label-7296", + "height": 227, + "background": "yellow" + }, + { + "key": "f63b62de-07b4-4df3-8a80-6d0b5a4bdbcb", + "label": "label-7297", + "height": 228, + "background": "yellow" + }, + { + "key": "eac05a2a-4fdd-4c49-ad1b-e0b2b05c05c5", + "label": "label-7298", + "height": 395, + "background": "green" + }, + { + "key": "e035c05e-7e45-4275-ae20-07b704d17b61", + "label": "label-7299", + "height": 47, + "background": "yellow" + }, + { + "key": "83049039-855e-4ae2-a11e-4a3107aef846", + "label": "label-7300", + "height": 423, + "background": "green" + }, + { + "key": "f0932b7a-6eea-42f4-a4ed-af354fa0e370", + "label": "label-7301", + "height": 48, + "background": "green" + }, + { + "key": "6a9cbf1e-62db-48be-8bac-29b204fed0c3", + "label": "label-7302", + "height": 405, + "background": "red" + }, + { + "key": "e3fe2267-a209-436a-9cc3-c48cbd682818", + "label": "label-7303", + "height": 282, + "background": "red" + }, + { + "key": "25768f09-aa14-457a-92ac-b3ce77a12242", + "label": "label-7304", + "height": 45, + "background": "red" + }, + { + "key": "99ecfbea-0c41-4c26-94e2-90124260494a", + "label": "label-7305", + "height": 390, + "background": "green" + }, + { + "key": "40ff0f7d-8b5e-4967-8671-d68211fb9340", + "label": "label-7306", + "height": 322, + "background": "blue" + }, + { + "key": "fca14e4c-9586-4a31-8c45-c6435058691f", + "label": "label-7307", + "height": 128, + "background": "yellow" + }, + { + "key": "e12efbd4-831e-417b-89f5-85b1be3a5861", + "label": "label-7308", + "height": 232, + "background": "red" + }, + { + "key": "934f6fc7-1856-4567-a586-51de5372af68", + "label": "label-7309", + "height": 292, + "background": "green" + }, + { + "key": "3cbb0736-ea0d-44cf-9b9c-ca6aaf2a6ca1", + "label": "label-7310", + "height": 313, + "background": "yellow" + }, + { + "key": "21220108-891a-4413-a5ba-d410042465f8", + "label": "label-7311", + "height": 140, + "background": "red" + }, + { + "key": "348dfb62-4364-446d-925d-d2241773b12d", + "label": "label-7312", + "height": 282, + "background": "yellow" + }, + { + "key": "393c3adc-beb2-4824-b20a-e60500f4a010", + "label": "label-7313", + "height": 140, + "background": "blue" + }, + { + "key": "73476e0f-59db-45a0-a72d-047dd825bb23", + "label": "label-7314", + "height": 432, + "background": "yellow" + }, + { + "key": "b01fb94c-f338-46ff-96fc-ee34577b4e7a", + "label": "label-7315", + "height": 319, + "background": "green" + }, + { + "key": "34eb0845-bd1e-41c8-89e1-2c5aa69d9173", + "label": "label-7316", + "height": 338, + "background": "red" + }, + { + "key": "1e98fef9-3abc-4969-9da4-a1119efb6d28", + "label": "label-7317", + "height": 489, + "background": "red" + }, + { + "key": "e47e966a-176c-464f-9882-2266f193508c", + "label": "label-7318", + "height": 188, + "background": "red" + }, + { + "key": "6c8b4495-3f47-45ab-9e6c-6a2015ed35e9", + "label": "label-7319", + "height": 258, + "background": "yellow" + }, + { + "key": "7070ff26-f9b8-4858-a58f-a520cc995f96", + "label": "label-7320", + "height": 280, + "background": "green" + }, + { + "key": "c763e96f-c0ec-40dc-9222-cd3776b7e7b1", + "label": "label-7321", + "height": 150, + "background": "green" + }, + { + "key": "71738222-b0eb-4733-9cbb-b214170136b0", + "label": "label-7322", + "height": 236, + "background": "green" + }, + { + "key": "b6baeff0-58e5-4235-ba08-bb67932584aa", + "label": "label-7323", + "height": 283, + "background": "yellow" + }, + { + "key": "2c74e4bc-5b2f-4fd7-b8e0-b796aec37488", + "label": "label-7324", + "height": 207, + "background": "green" + }, + { + "key": "bb33e0db-972e-42fd-bf9a-49c9b4b421d2", + "label": "label-7325", + "height": 383, + "background": "green" + }, + { + "key": "58a25b4d-47c8-49c0-b988-5a017c842864", + "label": "label-7326", + "height": 171, + "background": "red" + }, + { + "key": "86904a3d-8a93-4c39-b13d-50d0618fa9d2", + "label": "label-7327", + "height": 295, + "background": "red" + }, + { + "key": "f43d481f-9db6-460c-9a6d-7b0726ec9600", + "label": "label-7328", + "height": 113, + "background": "yellow" + }, + { + "key": "1c7675c9-60b7-4348-8442-449c7ee73c92", + "label": "label-7329", + "height": 277, + "background": "yellow" + }, + { + "key": "9c879e9c-de38-44c2-9e2e-d0229c184eb9", + "label": "label-7330", + "height": 99, + "background": "yellow" + }, + { + "key": "5adbf65f-0d3b-4aee-bd44-8bea7bdfb624", + "label": "label-7331", + "height": 411, + "background": "red" + }, + { + "key": "6a4d211d-1b46-48b5-b205-1975c0c5340e", + "label": "label-7332", + "height": 495, + "background": "red" + }, + { + "key": "426bef16-e4d2-4218-a5f6-3189be028db4", + "label": "label-7333", + "height": 277, + "background": "green" + }, + { + "key": "b7a8f2d9-cd07-46f7-825d-be612a9f4ffa", + "label": "label-7334", + "height": 386, + "background": "green" + }, + { + "key": "c1212af9-1a01-4fc2-8754-8e10bae48694", + "label": "label-7335", + "height": 207, + "background": "yellow" + }, + { + "key": "54673146-12d0-45a4-957f-55c6b0f9aa4c", + "label": "label-7336", + "height": 157, + "background": "red" + }, + { + "key": "6757e3bd-9b66-44dc-89b8-16e3394e6f00", + "label": "label-7337", + "height": 260, + "background": "yellow" + }, + { + "key": "5529fd91-daf4-4af8-8d26-6b9666b60541", + "label": "label-7338", + "height": 460, + "background": "yellow" + }, + { + "key": "ff90d53a-aa19-42ea-9848-5390bae34ce0", + "label": "label-7339", + "height": 310, + "background": "yellow" + }, + { + "key": "f4250811-e576-40b1-924a-a237d5629bb7", + "label": "label-7340", + "height": 205, + "background": "red" + }, + { + "key": "a799dc2a-860d-4844-a9e3-12c31f3d76c0", + "label": "label-7341", + "height": 176, + "background": "green" + }, + { + "key": "00fde36a-f8b0-45f4-9886-0d4eed760e3d", + "label": "label-7342", + "height": 186, + "background": "red" + }, + { + "key": "a5797dca-eb37-4088-9e4a-af0cbf2060c6", + "label": "label-7343", + "height": 254, + "background": "red" + }, + { + "key": "d102a93f-3549-4287-8418-ae99bad694da", + "label": "label-7344", + "height": 234, + "background": "yellow" + }, + { + "key": "4dccd6d8-c479-467d-982a-7c2c92cd76b0", + "label": "label-7345", + "height": 406, + "background": "yellow" + }, + { + "key": "a6db0c91-ea64-4e91-93f8-bf1ccbf539ca", + "label": "label-7346", + "height": 438, + "background": "green" + }, + { + "key": "fcdb4443-0c6d-40e9-9461-b7278b06608d", + "label": "label-7347", + "height": 388, + "background": "blue" + }, + { + "key": "e809162f-21b7-4020-af74-b6ccf8a599fd", + "label": "label-7348", + "height": 302, + "background": "yellow" + }, + { + "key": "4aa98903-c022-4111-8873-5035fa5623b8", + "label": "label-7349", + "height": 41, + "background": "yellow" + }, + { + "key": "91fb193e-c7fa-46fa-b54a-dfb5268bc5ce", + "label": "label-7350", + "height": 512, + "background": "red" + }, + { + "key": "52bf69ad-8893-47ee-a9d8-5eb8e6cca1c1", + "label": "label-7351", + "height": 277, + "background": "yellow" + }, + { + "key": "b3cfb239-3da5-4289-a8d5-96bfea67e5c8", + "label": "label-7352", + "height": 305, + "background": "blue" + }, + { + "key": "9ea1e8af-d935-4ce5-90cb-c692c804bc21", + "label": "label-7353", + "height": 180, + "background": "blue" + }, + { + "key": "fc13857b-64ec-4dc9-b7d1-c8481bfe56bb", + "label": "label-7354", + "height": 96, + "background": "yellow" + }, + { + "key": "887b0781-a4c2-4d90-9f88-aca274275652", + "label": "label-7355", + "height": 467, + "background": "green" + }, + { + "key": "d0240dd9-a077-409c-922d-7f13125d55ec", + "label": "label-7356", + "height": 348, + "background": "blue" + }, + { + "key": "aec96293-b458-4dfa-b2ea-e39beaaa4b7d", + "label": "label-7357", + "height": 99, + "background": "yellow" + }, + { + "key": "c9e315c1-3d53-4d2b-9d3e-b5c4d4b8c683", + "label": "label-7358", + "height": 527, + "background": "green" + }, + { + "key": "178d2f91-f03b-48e3-9a14-73b7d5161c4d", + "label": "label-7359", + "height": 181, + "background": "red" + }, + { + "key": "b471d55b-0828-4173-a403-b3db228c49f8", + "label": "label-7360", + "height": 233, + "background": "green" + }, + { + "key": "1231fbeb-2e41-40a8-b3e1-3387307b5192", + "label": "label-7361", + "height": 184, + "background": "yellow" + }, + { + "key": "eeb9c606-9267-4f80-b671-81cab3133159", + "label": "label-7362", + "height": 318, + "background": "yellow" + }, + { + "key": "9cfa1d1f-8de5-411f-bb15-74303c8761b7", + "label": "label-7363", + "height": 164, + "background": "red" + }, + { + "key": "dc1d1730-f717-4e97-a544-1ecd4b13c6ef", + "label": "label-7364", + "height": 219, + "background": "green" + }, + { + "key": "8ee7d420-2957-4cb9-865a-4811c626ca69", + "label": "label-7365", + "height": 404, + "background": "red" + }, + { + "key": "ff00c792-713c-41c1-827a-ea211a60bb5d", + "label": "label-7366", + "height": 63, + "background": "red" + }, + { + "key": "47d044f0-90bf-4469-b612-0178686b61cf", + "label": "label-7367", + "height": 433, + "background": "red" + }, + { + "key": "35510b8f-4942-45ad-be3b-8bd961a9494d", + "label": "label-7368", + "height": 92, + "background": "blue" + }, + { + "key": "0623630a-1415-49b1-87a5-aea080c1115e", + "label": "label-7369", + "height": 409, + "background": "green" + }, + { + "key": "06a608d5-4f19-4aed-82d6-c22887f46178", + "label": "label-7370", + "height": 103, + "background": "green" + }, + { + "key": "420aeaa8-9b51-4fd8-bb8e-b909a98cead9", + "label": "label-7371", + "height": 247, + "background": "yellow" + }, + { + "key": "f30bc789-bdac-40e6-8df4-0bbf5524fdb4", + "label": "label-7372", + "height": 161, + "background": "red" + }, + { + "key": "58bd04d6-8772-40cd-be00-a69a19524969", + "label": "label-7373", + "height": 105, + "background": "green" + }, + { + "key": "e1ee2149-05c2-49fb-bae9-cc354e5648d9", + "label": "label-7374", + "height": 489, + "background": "blue" + }, + { + "key": "2a434728-7f67-40cc-b536-60085e2a2558", + "label": "label-7375", + "height": 248, + "background": "green" + }, + { + "key": "01ebe760-b2b8-4bc6-b516-abc02e915191", + "label": "label-7376", + "height": 211, + "background": "blue" + }, + { + "key": "d80e07c1-2514-4c9b-aba0-765b818feb66", + "label": "label-7377", + "height": 310, + "background": "blue" + }, + { + "key": "8c7945a6-84c3-4f64-9f39-415fcf0ba711", + "label": "label-7378", + "height": 522, + "background": "yellow" + }, + { + "key": "83d5264f-88aa-4211-a5a7-a6780e4d9145", + "label": "label-7379", + "height": 272, + "background": "red" + }, + { + "key": "06d47297-6ee6-42a1-8de4-b31cdbd63bd7", + "label": "label-7380", + "height": 278, + "background": "green" + }, + { + "key": "5b9a5b06-61bd-43fb-a27f-f0068d91f90f", + "label": "label-7381", + "height": 325, + "background": "green" + }, + { + "key": "149e75f5-1fe6-486a-9416-c162adabaa1e", + "label": "label-7382", + "height": 521, + "background": "yellow" + }, + { + "key": "6da3872d-87ba-4a7e-8cc6-d482d6921e19", + "label": "label-7383", + "height": 408, + "background": "blue" + }, + { + "key": "6e097793-fdbe-4ee5-9a52-1b3790b22c8e", + "label": "label-7384", + "height": 121, + "background": "yellow" + }, + { + "key": "9d723f96-6005-44db-a15f-79d46376643b", + "label": "label-7385", + "height": 447, + "background": "yellow" + }, + { + "key": "0a244071-9417-4d3a-9eef-1dc8c54904d3", + "label": "label-7386", + "height": 455, + "background": "yellow" + }, + { + "key": "9d0560bb-37ba-4911-a565-b47c2699e44d", + "label": "label-7387", + "height": 101, + "background": "yellow" + }, + { + "key": "d28611d6-0abc-42d5-9a73-72dff47d557c", + "label": "label-7388", + "height": 152, + "background": "blue" + }, + { + "key": "09983cca-f109-470b-9169-c99f6975cbf1", + "label": "label-7389", + "height": 204, + "background": "yellow" + }, + { + "key": "5267dada-e44f-4fc0-a901-8d47cd029589", + "label": "label-7390", + "height": 522, + "background": "blue" + }, + { + "key": "53553072-cc66-4616-8eac-bbe4ccf78c5b", + "label": "label-7391", + "height": 136, + "background": "red" + }, + { + "key": "4968f17d-665a-4954-a0a9-d0fe365227cd", + "label": "label-7392", + "height": 274, + "background": "yellow" + }, + { + "key": "9fb57843-1702-478a-8126-c153697aab36", + "label": "label-7393", + "height": 144, + "background": "yellow" + }, + { + "key": "a4e317e3-42fb-41aa-bf18-88d6115455d1", + "label": "label-7394", + "height": 349, + "background": "blue" + }, + { + "key": "226673e2-df37-47ef-b7d5-d17f02d0cb72", + "label": "label-7395", + "height": 459, + "background": "red" + }, + { + "key": "e667d3d6-02e2-47d1-b77b-3ca00f2ddf99", + "label": "label-7396", + "height": 356, + "background": "yellow" + }, + { + "key": "4dd726ae-e453-45a8-9e03-3e8b492f6b21", + "label": "label-7397", + "height": 178, + "background": "blue" + }, + { + "key": "a5f38efe-946e-4094-b123-7cf021862dd9", + "label": "label-7398", + "height": 528, + "background": "yellow" + }, + { + "key": "ab222221-a374-4aea-9c96-39efae1d2ca6", + "label": "label-7399", + "height": 219, + "background": "green" + }, + { + "key": "1c983381-4107-44ad-a780-4e08710287ab", + "label": "label-7400", + "height": 489, + "background": "red" + }, + { + "key": "a6d48321-55ba-4b85-945a-2eda33e4ab08", + "label": "label-7401", + "height": 239, + "background": "red" + }, + { + "key": "17b7e07d-ef81-429c-a14d-11ed202fcfc8", + "label": "label-7402", + "height": 283, + "background": "green" + }, + { + "key": "d4473827-f515-43c1-bc8c-fbde1f851624", + "label": "label-7403", + "height": 306, + "background": "green" + }, + { + "key": "b0a98bc1-0fc1-48a0-b0d1-ad7d74fafc09", + "label": "label-7404", + "height": 525, + "background": "blue" + }, + { + "key": "b386484a-bad3-411d-9ef8-bed56e919db8", + "label": "label-7405", + "height": 296, + "background": "blue" + }, + { + "key": "2cfa4b43-7437-412f-ae82-b5b2299f3fa0", + "label": "label-7406", + "height": 203, + "background": "red" + }, + { + "key": "c339f5b4-10c2-4a95-b3a5-47cb7bb1ff29", + "label": "label-7407", + "height": 185, + "background": "blue" + }, + { + "key": "8f4fad8d-6d40-44e9-bfab-482306015b82", + "label": "label-7408", + "height": 90, + "background": "red" + }, + { + "key": "93b852c5-266a-4fde-a678-26cbbbd0d2cb", + "label": "label-7409", + "height": 399, + "background": "yellow" + }, + { + "key": "3f0d078c-58df-4855-acfa-fb5ce148454c", + "label": "label-7410", + "height": 382, + "background": "red" + }, + { + "key": "304daa70-3974-4db3-910d-34dfbd5c8722", + "label": "label-7411", + "height": 150, + "background": "green" + }, + { + "key": "057a7ba6-a7e6-41fb-a474-9df7fc9783ea", + "label": "label-7412", + "height": 43, + "background": "blue" + }, + { + "key": "b4deb67b-5fb1-4127-bf65-725af52d0116", + "label": "label-7413", + "height": 157, + "background": "blue" + }, + { + "key": "ee50bc0d-cab8-47da-9c9c-7b63dbabbbae", + "label": "label-7414", + "height": 401, + "background": "red" + }, + { + "key": "eba473ab-3eaf-486a-8420-a4ef24999ed8", + "label": "label-7415", + "height": 92, + "background": "blue" + }, + { + "key": "eef44077-ad3a-4599-8c07-9fdc409cbfa3", + "label": "label-7416", + "height": 289, + "background": "red" + }, + { + "key": "fd62d1d4-f6ff-434e-a9a3-ca98d3ec8f48", + "label": "label-7417", + "height": 125, + "background": "blue" + }, + { + "key": "9a49549d-46fb-4e37-a398-b50d2c0e79e8", + "label": "label-7418", + "height": 512, + "background": "blue" + }, + { + "key": "f8969380-aaa8-423c-b44a-93d5173165d0", + "label": "label-7419", + "height": 238, + "background": "red" + }, + { + "key": "2a7e89e1-ed60-4a4b-8df4-ef3bcda9a0af", + "label": "label-7420", + "height": 59, + "background": "yellow" + }, + { + "key": "a6b5c3ad-37a6-413b-a4f8-f278dcd2aa6f", + "label": "label-7421", + "height": 423, + "background": "red" + }, + { + "key": "d3391ecb-9faa-4fd0-8310-1d83c66b3b6b", + "label": "label-7422", + "height": 93, + "background": "yellow" + }, + { + "key": "39a5b964-b731-4863-8a7f-c36f63875c1e", + "label": "label-7423", + "height": 139, + "background": "green" + }, + { + "key": "202de1ca-ced0-44b5-a7c8-2bac319caf73", + "label": "label-7424", + "height": 278, + "background": "blue" + }, + { + "key": "32a6dbfd-aa5d-4b9a-a9b0-e20a84b976d5", + "label": "label-7425", + "height": 502, + "background": "yellow" + }, + { + "key": "d7f57e49-4dcb-44a3-b30e-f31fecd8fbe1", + "label": "label-7426", + "height": 39, + "background": "red" + }, + { + "key": "e098eb3f-e280-403b-ab28-f137d1d640a9", + "label": "label-7427", + "height": 188, + "background": "blue" + }, + { + "key": "8e5bd0d1-f6ac-4844-a413-8c4a9f6b364d", + "label": "label-7428", + "height": 182, + "background": "blue" + }, + { + "key": "4b829647-85f2-4907-a823-2051218accec", + "label": "label-7429", + "height": 210, + "background": "green" + }, + { + "key": "ce4d49b1-09fb-4532-8643-9c53c7282e06", + "label": "label-7430", + "height": 478, + "background": "green" + }, + { + "key": "163a1c1c-bd4b-478c-805b-cac91997fade", + "label": "label-7431", + "height": 504, + "background": "green" + }, + { + "key": "cb7004ca-cc10-4d77-bacc-77faf47ffe17", + "label": "label-7432", + "height": 176, + "background": "green" + }, + { + "key": "ed452250-3be5-48d2-8059-c4acc47807cf", + "label": "label-7433", + "height": 489, + "background": "green" + }, + { + "key": "1d1e1170-a235-4ad2-86a4-ced9411bbfca", + "label": "label-7434", + "height": 178, + "background": "green" + }, + { + "key": "a1cf749c-57ed-4970-bea5-63587bb20db2", + "label": "label-7435", + "height": 406, + "background": "green" + }, + { + "key": "8677ad7c-d973-4e5d-8966-45939a5a99dd", + "label": "label-7436", + "height": 240, + "background": "green" + }, + { + "key": "c6b5cd4a-8a7c-4091-a917-dc2dccf7bfcf", + "label": "label-7437", + "height": 430, + "background": "yellow" + }, + { + "key": "f883c7ea-1e42-4c3b-9c65-0cdba07a5d0e", + "label": "label-7438", + "height": 127, + "background": "yellow" + }, + { + "key": "820b1c35-3da6-48a3-a6f2-c4a77215154d", + "label": "label-7439", + "height": 317, + "background": "yellow" + }, + { + "key": "337f48d2-d2eb-4bb2-8b35-a415c0f46062", + "label": "label-7440", + "height": 76, + "background": "green" + }, + { + "key": "fb0901e2-04f1-40f8-a045-034f6e8f990f", + "label": "label-7441", + "height": 471, + "background": "red" + }, + { + "key": "c6c0645d-5816-4ae2-aefd-ed10ec2225f3", + "label": "label-7442", + "height": 139, + "background": "blue" + }, + { + "key": "c759abf0-1b6e-4523-9121-60859c9cef73", + "label": "label-7443", + "height": 49, + "background": "blue" + }, + { + "key": "3120f32a-58fb-4466-bf85-cc06c089c6b0", + "label": "label-7444", + "height": 129, + "background": "red" + }, + { + "key": "ee7e4a03-da78-4c21-8303-db39694b96f0", + "label": "label-7445", + "height": 107, + "background": "green" + }, + { + "key": "0c75cf8c-b4b6-4066-8953-6f5f02d83085", + "label": "label-7446", + "height": 68, + "background": "yellow" + }, + { + "key": "21bc7162-671c-402d-ba4d-8b3ee88c23c2", + "label": "label-7447", + "height": 486, + "background": "red" + }, + { + "key": "787a59bc-a980-40c1-aa5b-2b600764d102", + "label": "label-7448", + "height": 518, + "background": "yellow" + }, + { + "key": "7e9cd0c4-2be9-4693-8880-d9d36d5d9747", + "label": "label-7449", + "height": 413, + "background": "red" + }, + { + "key": "7448abc3-f137-4ce3-8ac0-20cc1253710a", + "label": "label-7450", + "height": 477, + "background": "red" + }, + { + "key": "b3867e66-d359-447a-b709-2f5cce78d0cb", + "label": "label-7451", + "height": 472, + "background": "yellow" + }, + { + "key": "55735996-f621-4fd6-befc-62ecc01b15e3", + "label": "label-7452", + "height": 99, + "background": "green" + }, + { + "key": "2bed4aea-7353-4ab9-875d-c0f00541b5d3", + "label": "label-7453", + "height": 444, + "background": "blue" + }, + { + "key": "98fd6c48-4a88-4f60-bf3f-ac01de4152d1", + "label": "label-7454", + "height": 144, + "background": "yellow" + }, + { + "key": "ed769d45-758c-4f95-95e1-0adc83ff2591", + "label": "label-7455", + "height": 236, + "background": "yellow" + }, + { + "key": "fd2ee4cd-b184-40d2-bd56-9191f479335b", + "label": "label-7456", + "height": 305, + "background": "red" + }, + { + "key": "e02a75e4-6d6f-4c18-98e9-9de7394323b0", + "label": "label-7457", + "height": 427, + "background": "red" + }, + { + "key": "53343d66-ac84-4ae8-8fc5-1763501d7913", + "label": "label-7458", + "height": 488, + "background": "red" + }, + { + "key": "f7566da7-af68-4959-8ffc-70e7fbf837dd", + "label": "label-7459", + "height": 289, + "background": "green" + }, + { + "key": "4cec372f-8893-4dd2-835d-9aaf59a68cbe", + "label": "label-7460", + "height": 484, + "background": "yellow" + }, + { + "key": "d0a72079-b8bd-46b7-8e6a-71867e081743", + "label": "label-7461", + "height": 359, + "background": "blue" + }, + { + "key": "21a45cb2-6cbe-4f5e-a5fc-fdc20e496b5d", + "label": "label-7462", + "height": 519, + "background": "blue" + }, + { + "key": "eb799c75-fb14-4576-8f65-c721c0515004", + "label": "label-7463", + "height": 509, + "background": "yellow" + }, + { + "key": "0224c876-7f32-49a0-a93a-1ed0588453b4", + "label": "label-7464", + "height": 98, + "background": "blue" + }, + { + "key": "1831996d-68b8-4e1d-9403-8039cec88479", + "label": "label-7465", + "height": 367, + "background": "blue" + }, + { + "key": "5f7e4a52-8ecc-4ead-911b-09f2b33a8479", + "label": "label-7466", + "height": 257, + "background": "blue" + }, + { + "key": "481fe1cd-0cde-493d-93f5-4073fd9e0355", + "label": "label-7467", + "height": 401, + "background": "blue" + }, + { + "key": "f0b97626-ea0b-4768-8c36-8c67bffd9f43", + "label": "label-7468", + "height": 521, + "background": "red" + }, + { + "key": "8222a7a2-6d48-40ef-890c-a1cebfb791fa", + "label": "label-7469", + "height": 338, + "background": "green" + }, + { + "key": "446213b6-c3c2-4fe1-ad57-f8e54365e008", + "label": "label-7470", + "height": 509, + "background": "green" + }, + { + "key": "87ddba2e-f8b4-44ab-86af-45045823c739", + "label": "label-7471", + "height": 292, + "background": "green" + }, + { + "key": "76dc9ad9-d7f0-47ef-93f8-1b7df0944798", + "label": "label-7472", + "height": 139, + "background": "red" + }, + { + "key": "d9d36c1b-76d3-4a19-a11c-0fffa57875fa", + "label": "label-7473", + "height": 181, + "background": "blue" + }, + { + "key": "1673ff3f-a687-4a0a-af5c-2c5e40686a9e", + "label": "label-7474", + "height": 252, + "background": "yellow" + }, + { + "key": "c7c057c3-a57b-4836-9d1b-5f41bd50959a", + "label": "label-7475", + "height": 448, + "background": "green" + }, + { + "key": "62a4192e-29f8-4d0d-b4b5-bcaea79f6bec", + "label": "label-7476", + "height": 331, + "background": "red" + }, + { + "key": "623f4151-6449-4c27-831d-049a82c4c765", + "label": "label-7477", + "height": 346, + "background": "red" + }, + { + "key": "aa75a359-fc97-426d-8522-4f5851010c32", + "label": "label-7478", + "height": 403, + "background": "blue" + }, + { + "key": "709c75f1-4458-41df-98aa-516555e4079f", + "label": "label-7479", + "height": 450, + "background": "red" + }, + { + "key": "e25070a5-9ad6-43f0-b5b9-fdad78be573b", + "label": "label-7480", + "height": 147, + "background": "green" + }, + { + "key": "7dfabb8d-414f-4a49-9607-3f46a2ca4f33", + "label": "label-7481", + "height": 231, + "background": "blue" + }, + { + "key": "d0bec709-73b4-4ad3-bb92-6f4d094b2d3d", + "label": "label-7482", + "height": 44, + "background": "blue" + }, + { + "key": "93c7e166-94f5-402a-873a-86a34df8877e", + "label": "label-7483", + "height": 357, + "background": "yellow" + }, + { + "key": "a41a5ab1-4635-414b-ba8b-08c3b207e5f7", + "label": "label-7484", + "height": 52, + "background": "blue" + }, + { + "key": "7385561f-b524-4623-b367-9b37a962569b", + "label": "label-7485", + "height": 440, + "background": "green" + }, + { + "key": "997dd01b-f9c8-4500-a554-af3f5cca8ca1", + "label": "label-7486", + "height": 167, + "background": "blue" + }, + { + "key": "eafd067e-c9cd-4429-91bb-6b6efdbe686a", + "label": "label-7487", + "height": 130, + "background": "blue" + }, + { + "key": "863d5342-d2ef-45e8-bd93-ec7ed20d3171", + "label": "label-7488", + "height": 282, + "background": "yellow" + }, + { + "key": "a8757323-4350-4858-8c39-435a5d2cebb4", + "label": "label-7489", + "height": 410, + "background": "blue" + }, + { + "key": "e8af9231-3d2e-48cb-9f0d-33bb3eca399d", + "label": "label-7490", + "height": 379, + "background": "green" + }, + { + "key": "e220dbf3-faf2-4564-8f7e-37c359101647", + "label": "label-7491", + "height": 37, + "background": "green" + }, + { + "key": "0f37f658-bafb-4a50-8147-158ce6677620", + "label": "label-7492", + "height": 376, + "background": "red" + }, + { + "key": "5d2c5d12-ebb7-453a-b9d2-2fd389fdd973", + "label": "label-7493", + "height": 484, + "background": "blue" + }, + { + "key": "d7a93697-50e4-4f18-b3cd-fae28b2f93a2", + "label": "label-7494", + "height": 338, + "background": "red" + }, + { + "key": "55e1df97-805b-4eba-a672-f1cc539774ce", + "label": "label-7495", + "height": 345, + "background": "yellow" + }, + { + "key": "52200001-038d-48de-a148-6dc56d83b98e", + "label": "label-7496", + "height": 398, + "background": "green" + }, + { + "key": "6e9e11c1-9d6f-48eb-8de7-0e3f8a9cfe00", + "label": "label-7497", + "height": 458, + "background": "blue" + }, + { + "key": "a58574db-0ac8-40a1-9d16-7d88548db602", + "label": "label-7498", + "height": 413, + "background": "red" + }, + { + "key": "726f971d-4337-41e3-bbe0-d72cd7b6738d", + "label": "label-7499", + "height": 496, + "background": "red" + }, + { + "key": "0324484b-9d2f-47ee-ae60-6a289b2e3e7f", + "label": "label-7500", + "height": 447, + "background": "blue" + }, + { + "key": "f22d342b-2cab-4f02-af90-1381a525fbf8", + "label": "label-7501", + "height": 42, + "background": "yellow" + }, + { + "key": "4760df98-8e4e-4182-b41b-5b701a7ca1a9", + "label": "label-7502", + "height": 508, + "background": "blue" + }, + { + "key": "3636c8cd-8398-42ce-8ab5-9f9cf95959aa", + "label": "label-7503", + "height": 311, + "background": "red" + }, + { + "key": "c9c0551c-d5e7-4a37-89db-b010fb60bb42", + "label": "label-7504", + "height": 328, + "background": "red" + }, + { + "key": "c01500ec-003c-4d96-9da5-b54f6ccf7a4a", + "label": "label-7505", + "height": 205, + "background": "yellow" + }, + { + "key": "7314064b-2715-4ef8-93b3-3d0d836507b5", + "label": "label-7506", + "height": 212, + "background": "yellow" + }, + { + "key": "21056dd1-e948-4827-b2eb-d049e3bf1fe1", + "label": "label-7507", + "height": 250, + "background": "yellow" + }, + { + "key": "0a007766-b14c-4c12-b9c7-583c666538e7", + "label": "label-7508", + "height": 503, + "background": "red" + }, + { + "key": "cf15c546-d314-4e36-8a98-7b384ae8b5df", + "label": "label-7509", + "height": 471, + "background": "red" + }, + { + "key": "5c9cd3ec-b9ed-41cb-83d5-acd099607516", + "label": "label-7510", + "height": 523, + "background": "red" + }, + { + "key": "76b7b1a0-8735-4adc-bbd4-7d293043539c", + "label": "label-7511", + "height": 402, + "background": "red" + }, + { + "key": "eb6f2799-eed6-450b-9f3b-0673b8b454ae", + "label": "label-7512", + "height": 300, + "background": "blue" + }, + { + "key": "e4d19810-18cb-49ec-9b35-cc5f9006bbfe", + "label": "label-7513", + "height": 514, + "background": "red" + }, + { + "key": "8e6231ba-081e-4ade-b119-c15b942fac9e", + "label": "label-7514", + "height": 138, + "background": "yellow" + }, + { + "key": "d3c5a1c9-a89f-40d8-bb9b-7116e5e6dec1", + "label": "label-7515", + "height": 35, + "background": "blue" + }, + { + "key": "02c32af2-177f-4e1d-9eba-e45489d99a8f", + "label": "label-7516", + "height": 282, + "background": "blue" + }, + { + "key": "7ffd8cfb-56c5-422d-960e-fa36b46e26f5", + "label": "label-7517", + "height": 448, + "background": "blue" + }, + { + "key": "a8080878-f9c8-4d18-8949-ec2c0c08dc5c", + "label": "label-7518", + "height": 93, + "background": "blue" + }, + { + "key": "aa187b9c-8e37-408a-8879-6b6aec66d602", + "label": "label-7519", + "height": 212, + "background": "green" + }, + { + "key": "678c4e8a-4c2e-4754-afe6-b75b3f24aa8b", + "label": "label-7520", + "height": 106, + "background": "yellow" + }, + { + "key": "817d6fe5-1efe-4800-9231-e49e89d53f95", + "label": "label-7521", + "height": 93, + "background": "red" + }, + { + "key": "72af9de0-b96a-439e-a443-7903eba1e3ac", + "label": "label-7522", + "height": 149, + "background": "green" + }, + { + "key": "0b1d94e0-f1fc-4600-bc94-a7c63c3ec9e3", + "label": "label-7523", + "height": 104, + "background": "yellow" + }, + { + "key": "c696597c-7b60-4ca0-94c8-dfb29df3e087", + "label": "label-7524", + "height": 404, + "background": "green" + }, + { + "key": "e5d7473b-5eae-459f-a7db-efd0ab3f7d56", + "label": "label-7525", + "height": 89, + "background": "red" + }, + { + "key": "b6028f0c-fe3a-415a-86b7-641c65494e62", + "label": "label-7526", + "height": 407, + "background": "red" + }, + { + "key": "77853ce8-b3b1-467b-b4b6-38e5ba899f0e", + "label": "label-7527", + "height": 157, + "background": "green" + }, + { + "key": "5b2c1396-e1d5-4e8a-83ec-1eeb4df03244", + "label": "label-7528", + "height": 507, + "background": "green" + }, + { + "key": "4d2c0561-4afb-4537-9cdb-f0fca359ce33", + "label": "label-7529", + "height": 127, + "background": "yellow" + }, + { + "key": "937b706e-946b-4217-92c2-99b0bba28192", + "label": "label-7530", + "height": 169, + "background": "yellow" + }, + { + "key": "5d5a9b9c-0487-4342-a0f5-89d5d57664a6", + "label": "label-7531", + "height": 107, + "background": "yellow" + }, + { + "key": "b463034f-3eed-4d7e-a93e-f2ce838cc7f7", + "label": "label-7532", + "height": 382, + "background": "green" + }, + { + "key": "33924785-6fef-4a7f-9cd9-a373296a9c0d", + "label": "label-7533", + "height": 476, + "background": "green" + }, + { + "key": "1275b503-7c13-4b59-9a60-3bd9df51c806", + "label": "label-7534", + "height": 346, + "background": "yellow" + }, + { + "key": "aac4fbd3-0520-4046-b2a6-7afdd518e063", + "label": "label-7535", + "height": 136, + "background": "blue" + }, + { + "key": "1e1cc9fb-cb02-4947-85a6-e4bedfa2f8b6", + "label": "label-7536", + "height": 237, + "background": "blue" + }, + { + "key": "547d335c-8166-4354-a5e4-492aa4706de4", + "label": "label-7537", + "height": 67, + "background": "red" + }, + { + "key": "727a4c54-7e1f-41c2-be59-c84eaa18e029", + "label": "label-7538", + "height": 468, + "background": "red" + }, + { + "key": "a71d005c-7fc4-4ab7-873b-6b67a9658e91", + "label": "label-7539", + "height": 460, + "background": "red" + }, + { + "key": "8c556ab7-37ad-45b7-9c03-706240d78fab", + "label": "label-7540", + "height": 251, + "background": "blue" + }, + { + "key": "8519a0f8-52f3-41e3-b409-ff15519dfb73", + "label": "label-7541", + "height": 297, + "background": "blue" + }, + { + "key": "6e6b098a-0dd0-4b00-86df-027553724434", + "label": "label-7542", + "height": 76, + "background": "red" + }, + { + "key": "6bcdc3c7-df3e-46ed-a40c-97bd824e58d0", + "label": "label-7543", + "height": 106, + "background": "yellow" + }, + { + "key": "3e0b94c5-aaac-4525-aa54-985d80e3344e", + "label": "label-7544", + "height": 160, + "background": "yellow" + }, + { + "key": "ef9ecb6d-ae05-401a-9361-d3ec3edd8cfa", + "label": "label-7545", + "height": 164, + "background": "blue" + }, + { + "key": "968f939b-b9fd-44cf-ac1e-927513bd700d", + "label": "label-7546", + "height": 432, + "background": "yellow" + }, + { + "key": "22451e98-0cbd-481e-b020-1907f749e419", + "label": "label-7547", + "height": 487, + "background": "blue" + }, + { + "key": "bcd1e9e0-a087-4639-89b1-ec96fcfd40c3", + "label": "label-7548", + "height": 51, + "background": "yellow" + }, + { + "key": "68ca3ffe-ca5f-4eac-bff8-bb73654fc7b2", + "label": "label-7549", + "height": 231, + "background": "green" + }, + { + "key": "016ad389-edd8-4ae8-a5d3-3070e0b2a11e", + "label": "label-7550", + "height": 213, + "background": "blue" + }, + { + "key": "100d13a7-3e92-4f74-a584-7fde5bd936a5", + "label": "label-7551", + "height": 230, + "background": "red" + }, + { + "key": "5a74afc9-324c-4c4e-8d10-44a42ff2e1b7", + "label": "label-7552", + "height": 464, + "background": "yellow" + }, + { + "key": "b3590d36-1cd7-4803-92bd-c8c85a78876f", + "label": "label-7553", + "height": 129, + "background": "yellow" + }, + { + "key": "88b943e1-3faa-41c6-a3bb-07b8ecc35306", + "label": "label-7554", + "height": 63, + "background": "blue" + }, + { + "key": "afbb7c21-18ca-41b7-bacd-6ee3e83cc4f2", + "label": "label-7555", + "height": 249, + "background": "red" + }, + { + "key": "38a71c8b-2dee-4969-bf2c-ee6c3e3083f2", + "label": "label-7556", + "height": 79, + "background": "blue" + }, + { + "key": "f2c0a6c7-93e8-4ba1-893e-961ac95a1b72", + "label": "label-7557", + "height": 318, + "background": "red" + }, + { + "key": "67afef37-d59a-478a-bde1-af8bdffb3848", + "label": "label-7558", + "height": 362, + "background": "yellow" + }, + { + "key": "1832ef0e-5160-49a6-96fd-a446d09ba594", + "label": "label-7559", + "height": 95, + "background": "blue" + }, + { + "key": "7fec84af-2214-41fc-bb97-ae26c2e37167", + "label": "label-7560", + "height": 107, + "background": "blue" + }, + { + "key": "a7b84fc5-8a02-41a2-b394-d0bb858a7fd8", + "label": "label-7561", + "height": 459, + "background": "green" + }, + { + "key": "904fa2e1-2eaf-43dc-b6ff-fa79d31876d6", + "label": "label-7562", + "height": 226, + "background": "yellow" + }, + { + "key": "3cf4c1fb-ae0b-4c67-ac98-1d74c63e8df0", + "label": "label-7563", + "height": 76, + "background": "green" + }, + { + "key": "039689be-9339-4551-8b07-c29e173c26a0", + "label": "label-7564", + "height": 434, + "background": "green" + }, + { + "key": "0dc3da99-9e48-494e-8e0e-1b5dd59facc3", + "label": "label-7565", + "height": 52, + "background": "red" + }, + { + "key": "9072c224-96ec-45d3-bbb0-9ac6ed58c737", + "label": "label-7566", + "height": 400, + "background": "green" + }, + { + "key": "4ffcfef4-05ac-4b1b-87cf-110379e8641d", + "label": "label-7567", + "height": 420, + "background": "green" + }, + { + "key": "6f4bf024-e8da-4712-b911-92878f06db9b", + "label": "label-7568", + "height": 141, + "background": "green" + }, + { + "key": "236ff102-2ffa-4800-80f7-d1fcacaf7c70", + "label": "label-7569", + "height": 184, + "background": "red" + }, + { + "key": "43b0ff3f-a1d9-4ec7-8308-f17816675a46", + "label": "label-7570", + "height": 380, + "background": "red" + }, + { + "key": "125c929d-79bc-45d9-81dc-7d8ac4598f92", + "label": "label-7571", + "height": 239, + "background": "yellow" + }, + { + "key": "e9f80735-6524-40bb-9364-2202b3b6f76a", + "label": "label-7572", + "height": 488, + "background": "red" + }, + { + "key": "c45fa567-bb02-442d-bac8-56fafd180b5e", + "label": "label-7573", + "height": 445, + "background": "blue" + }, + { + "key": "a1775acd-65a3-47d9-89e1-a3705e88cef1", + "label": "label-7574", + "height": 432, + "background": "red" + }, + { + "key": "6502e334-8b0e-413d-9efd-d6a1c5f9d865", + "label": "label-7575", + "height": 248, + "background": "yellow" + }, + { + "key": "fad59be0-1642-4189-b51a-484a96602d19", + "label": "label-7576", + "height": 110, + "background": "yellow" + }, + { + "key": "4548eda2-254b-4fae-877e-3f8ef7000e29", + "label": "label-7577", + "height": 452, + "background": "yellow" + }, + { + "key": "c38f6b96-d8e3-4946-9043-5571d8bfd482", + "label": "label-7578", + "height": 259, + "background": "red" + }, + { + "key": "b2f2c8d3-e55f-42bb-a8b9-c34f2a75d219", + "label": "label-7579", + "height": 180, + "background": "green" + }, + { + "key": "081a4dab-b012-47e6-841b-afe921f1f2cb", + "label": "label-7580", + "height": 136, + "background": "yellow" + }, + { + "key": "a9278901-e7db-427f-9fc2-3c589c0ee478", + "label": "label-7581", + "height": 72, + "background": "blue" + }, + { + "key": "f00f813e-4f44-4773-932e-08c4cc131fa1", + "label": "label-7582", + "height": 104, + "background": "red" + }, + { + "key": "1a4e596a-e1a7-4678-b4a4-ff189fed6885", + "label": "label-7583", + "height": 320, + "background": "red" + }, + { + "key": "0fb98f2d-efb7-44cd-82b3-3081f6c57a8d", + "label": "label-7584", + "height": 462, + "background": "blue" + }, + { + "key": "f87e99b6-fa88-40a5-9e6d-e6aed9f1f284", + "label": "label-7585", + "height": 254, + "background": "blue" + }, + { + "key": "a6b6bde8-8477-48ed-8cfd-1dbe55931cfd", + "label": "label-7586", + "height": 516, + "background": "green" + }, + { + "key": "2a6911e9-f336-44ab-950b-259bfcedea34", + "label": "label-7587", + "height": 420, + "background": "green" + }, + { + "key": "4964d907-1c23-47f4-b464-687d5eb138c2", + "label": "label-7588", + "height": 444, + "background": "green" + }, + { + "key": "34c7f254-6371-458e-abef-0a5f8762a731", + "label": "label-7589", + "height": 316, + "background": "red" + }, + { + "key": "8741da1e-2fb5-4fb5-9009-fef2b3ced4a0", + "label": "label-7590", + "height": 404, + "background": "green" + }, + { + "key": "3a020b11-1491-4802-8648-d7c811e50065", + "label": "label-7591", + "height": 128, + "background": "red" + }, + { + "key": "f02a5ab6-84ae-4a30-8cf8-e3c305f588ff", + "label": "label-7592", + "height": 469, + "background": "green" + }, + { + "key": "97cf9950-3b03-4cc4-8fb0-079c28b56af4", + "label": "label-7593", + "height": 208, + "background": "yellow" + }, + { + "key": "375cc5bf-e6ff-46d0-86d8-54b24a280595", + "label": "label-7594", + "height": 519, + "background": "green" + }, + { + "key": "33653e3a-a29a-4a44-8607-216e4a7fd257", + "label": "label-7595", + "height": 471, + "background": "yellow" + }, + { + "key": "38207026-9536-4856-8d57-31d749b39947", + "label": "label-7596", + "height": 482, + "background": "green" + }, + { + "key": "584ffd10-a6a8-4e34-96bc-efe9cb66c4d2", + "label": "label-7597", + "height": 473, + "background": "yellow" + }, + { + "key": "6acfc3e0-13d9-4204-a825-0039f8af56fe", + "label": "label-7598", + "height": 188, + "background": "yellow" + }, + { + "key": "684cd04f-3e1c-45a5-93e8-255a8e1b0013", + "label": "label-7599", + "height": 212, + "background": "green" + }, + { + "key": "6e943125-d877-42fe-b1ff-ea9cafb0f1e6", + "label": "label-7600", + "height": 482, + "background": "blue" + }, + { + "key": "2e1e97af-adb6-4551-9f3b-793c1fdab596", + "label": "label-7601", + "height": 380, + "background": "red" + }, + { + "key": "4e3ca188-2f3e-4e06-8625-4d1d1ef46740", + "label": "label-7602", + "height": 267, + "background": "yellow" + }, + { + "key": "6c0ea992-c5ec-494b-ac45-f8d7b132372c", + "label": "label-7603", + "height": 275, + "background": "green" + }, + { + "key": "3bd58ab7-7c6e-4855-b138-6c2a996b6268", + "label": "label-7604", + "height": 420, + "background": "red" + }, + { + "key": "39ae5a7b-08b6-4330-bb15-bd6c7fdaa3ee", + "label": "label-7605", + "height": 197, + "background": "green" + }, + { + "key": "bbfd1282-349f-4448-aa4c-07017cd9c02b", + "label": "label-7606", + "height": 281, + "background": "red" + }, + { + "key": "db554a19-29ab-4b7f-a551-e60c37363af8", + "label": "label-7607", + "height": 406, + "background": "red" + }, + { + "key": "c0239e53-bbdc-42ba-8fe9-3e99d8747b38", + "label": "label-7608", + "height": 40, + "background": "blue" + }, + { + "key": "8777fdcd-d5f9-4258-9394-ea8b0f547d15", + "label": "label-7609", + "height": 67, + "background": "green" + }, + { + "key": "03ce402d-5a01-4d7f-83ef-b30c5dc9c8aa", + "label": "label-7610", + "height": 353, + "background": "blue" + }, + { + "key": "d0982c60-6865-47c8-b92b-b5ca8f38442d", + "label": "label-7611", + "height": 429, + "background": "blue" + }, + { + "key": "2b47b5ad-2986-49f0-bfe6-9d403f44eb45", + "label": "label-7612", + "height": 448, + "background": "blue" + }, + { + "key": "fcfa184d-6a7b-4714-889a-d8cc4284e903", + "label": "label-7613", + "height": 469, + "background": "blue" + }, + { + "key": "3bc88ce8-970b-4531-8a6a-0de5e641eeba", + "label": "label-7614", + "height": 333, + "background": "red" + }, + { + "key": "85e23122-162f-412e-a24f-7d7b9b32b22c", + "label": "label-7615", + "height": 52, + "background": "blue" + }, + { + "key": "afcf6962-21e5-4d28-87a4-53eb97caa82d", + "label": "label-7616", + "height": 377, + "background": "yellow" + }, + { + "key": "72872196-c389-46f1-bdbc-d51ca510670c", + "label": "label-7617", + "height": 318, + "background": "yellow" + }, + { + "key": "042ef2b6-0b4d-48fb-bf1f-9d74d9ccbdf8", + "label": "label-7618", + "height": 399, + "background": "green" + }, + { + "key": "40c93d0e-c232-4d10-9919-e3f430d047b8", + "label": "label-7619", + "height": 309, + "background": "yellow" + }, + { + "key": "43d9d229-602a-4167-989a-7cb7b567c68f", + "label": "label-7620", + "height": 265, + "background": "green" + }, + { + "key": "6f0ba13a-0359-467c-b78f-648307a86ca1", + "label": "label-7621", + "height": 471, + "background": "blue" + }, + { + "key": "dca3b754-e442-4d7e-b1a0-878c83507e99", + "label": "label-7622", + "height": 382, + "background": "green" + }, + { + "key": "b15f8466-5924-41a0-90cc-db7bb9150c71", + "label": "label-7623", + "height": 433, + "background": "red" + }, + { + "key": "8f04b8ff-b272-4aeb-a85f-3da7dcbb857c", + "label": "label-7624", + "height": 51, + "background": "blue" + }, + { + "key": "5b1882d2-95a3-4ae8-8406-cb54fb16a828", + "label": "label-7625", + "height": 49, + "background": "blue" + }, + { + "key": "7894ffad-0d7d-419d-aa5c-b6f7f0cee7c1", + "label": "label-7626", + "height": 214, + "background": "red" + }, + { + "key": "dc671ec1-d3c5-4ea0-8fae-4807d6cc76bb", + "label": "label-7627", + "height": 126, + "background": "green" + }, + { + "key": "05ed55b2-afb7-4dcf-8a59-3196687d3740", + "label": "label-7628", + "height": 182, + "background": "green" + }, + { + "key": "e18035ab-414b-45f7-94a9-39b8cefc8965", + "label": "label-7629", + "height": 405, + "background": "blue" + }, + { + "key": "402e1c87-4d0f-4261-9841-022c579c7244", + "label": "label-7630", + "height": 228, + "background": "blue" + }, + { + "key": "3c9842de-6e9c-4ff9-af48-1052b5c1eb7d", + "label": "label-7631", + "height": 67, + "background": "red" + }, + { + "key": "0209f57a-5694-45ef-b6a2-495c59b0b55f", + "label": "label-7632", + "height": 97, + "background": "blue" + }, + { + "key": "d239c526-2243-4a1c-9f11-4684442d0528", + "label": "label-7633", + "height": 222, + "background": "red" + }, + { + "key": "bce8d4fb-965e-4b90-a00a-8e7573af9ac8", + "label": "label-7634", + "height": 257, + "background": "red" + }, + { + "key": "17f694e0-32f7-48b5-a926-0c63213c1392", + "label": "label-7635", + "height": 166, + "background": "green" + }, + { + "key": "ad6d7477-6171-44f1-8add-6a6adb2d8f90", + "label": "label-7636", + "height": 239, + "background": "red" + }, + { + "key": "8eb1f589-5bd0-4bfd-9415-1dac2e9fe807", + "label": "label-7637", + "height": 404, + "background": "blue" + }, + { + "key": "77b0ad8a-445d-4cb5-a46f-f9046230f36e", + "label": "label-7638", + "height": 438, + "background": "yellow" + }, + { + "key": "87001009-c972-4168-b682-b10104c03da0", + "label": "label-7639", + "height": 460, + "background": "blue" + }, + { + "key": "e787dd99-075b-48b5-9558-bfaaaee8bc6d", + "label": "label-7640", + "height": 457, + "background": "blue" + }, + { + "key": "e2290865-5cad-4adb-b1ca-157e4339f4d2", + "label": "label-7641", + "height": 459, + "background": "red" + }, + { + "key": "8baed6f0-dbd2-4400-bb6f-7271106e1a44", + "label": "label-7642", + "height": 432, + "background": "red" + }, + { + "key": "f01ba461-27f8-40bf-8916-f93b4cc7db03", + "label": "label-7643", + "height": 190, + "background": "green" + }, + { + "key": "dfffbf34-3e71-4002-b55a-999b06b239cb", + "label": "label-7644", + "height": 80, + "background": "blue" + }, + { + "key": "b800f39e-6989-4019-b4f3-17d243d6f441", + "label": "label-7645", + "height": 311, + "background": "green" + }, + { + "key": "e690d608-063b-4661-848b-1f6e2eb17061", + "label": "label-7646", + "height": 301, + "background": "yellow" + }, + { + "key": "71bdeb98-a02b-438c-9b73-c8f426788b58", + "label": "label-7647", + "height": 471, + "background": "yellow" + }, + { + "key": "fd521830-bf61-4daa-8d06-e1bb61a300b2", + "label": "label-7648", + "height": 134, + "background": "green" + }, + { + "key": "1b90e35a-1d77-41d6-8664-ab88789561fa", + "label": "label-7649", + "height": 137, + "background": "blue" + }, + { + "key": "6993bcae-9760-4b04-8f55-65596115db29", + "label": "label-7650", + "height": 474, + "background": "green" + }, + { + "key": "c94325bc-15f1-4e56-800b-4ff90b1f0812", + "label": "label-7651", + "height": 345, + "background": "green" + }, + { + "key": "b71b2d15-3826-44a4-b376-59689e92d7fb", + "label": "label-7652", + "height": 521, + "background": "blue" + }, + { + "key": "20c6bd07-5e63-4298-964b-6e3a64ce8008", + "label": "label-7653", + "height": 44, + "background": "blue" + }, + { + "key": "43034745-696a-41ec-8124-f41bf6a6ee9c", + "label": "label-7654", + "height": 488, + "background": "red" + }, + { + "key": "8e5b054e-559b-4dd0-a0c7-36f05ab29260", + "label": "label-7655", + "height": 136, + "background": "yellow" + }, + { + "key": "73feb289-dd45-4e72-871a-df5a09697721", + "label": "label-7656", + "height": 156, + "background": "green" + }, + { + "key": "bc4504e1-d01a-4d7a-a0bc-98d993243032", + "label": "label-7657", + "height": 213, + "background": "blue" + }, + { + "key": "70a95342-ba38-403a-9d17-9da98583623c", + "label": "label-7658", + "height": 209, + "background": "red" + }, + { + "key": "c153577e-9c5e-4a2f-a0d7-65da9214ead9", + "label": "label-7659", + "height": 100, + "background": "yellow" + }, + { + "key": "110a87fc-4622-452f-b87e-67dad96021a1", + "label": "label-7660", + "height": 38, + "background": "green" + }, + { + "key": "72f47f09-30c2-41f2-9e19-cceb0ef30ed6", + "label": "label-7661", + "height": 383, + "background": "blue" + }, + { + "key": "659dcf7f-7894-4a2b-8912-dacfe3af1deb", + "label": "label-7662", + "height": 38, + "background": "red" + }, + { + "key": "4f20a2c5-1f42-4dc0-9bda-d1521566b1f6", + "label": "label-7663", + "height": 140, + "background": "yellow" + }, + { + "key": "dd26c823-83c5-4adf-93d5-9088237d36e6", + "label": "label-7664", + "height": 291, + "background": "red" + }, + { + "key": "ace829c6-208d-4a72-bf4d-d51b15bd0344", + "label": "label-7665", + "height": 486, + "background": "red" + }, + { + "key": "fe6681fd-57a4-4fe1-b59e-ab9fa450a856", + "label": "label-7666", + "height": 391, + "background": "blue" + }, + { + "key": "37d49d60-043c-44cc-a243-43d5536141eb", + "label": "label-7667", + "height": 464, + "background": "blue" + }, + { + "key": "9ab9cf32-dac5-4c29-b985-c54529d57b56", + "label": "label-7668", + "height": 445, + "background": "yellow" + }, + { + "key": "12b35460-e92e-4241-ad19-f66ec1c24930", + "label": "label-7669", + "height": 365, + "background": "green" + }, + { + "key": "ea7f604b-43cb-43cf-80d4-d238b82b4903", + "label": "label-7670", + "height": 51, + "background": "yellow" + }, + { + "key": "760f7b07-ca37-47ed-97a5-867000786436", + "label": "label-7671", + "height": 469, + "background": "yellow" + }, + { + "key": "c10dc239-7de6-45b5-8711-afd8c88201b9", + "label": "label-7672", + "height": 340, + "background": "yellow" + }, + { + "key": "160380e5-ea32-4871-8dfd-c97f61d80a2f", + "label": "label-7673", + "height": 372, + "background": "yellow" + }, + { + "key": "455527e8-4522-43ad-8850-5017cfd5351d", + "label": "label-7674", + "height": 261, + "background": "red" + }, + { + "key": "6062b68d-3cc8-45c3-9495-a8bf0e747cf1", + "label": "label-7675", + "height": 287, + "background": "red" + }, + { + "key": "e259109d-381d-45a2-ab0f-da68a2b1b3e9", + "label": "label-7676", + "height": 500, + "background": "red" + }, + { + "key": "dc20c955-c1b0-4e8d-9266-13f24c874bd7", + "label": "label-7677", + "height": 441, + "background": "blue" + }, + { + "key": "2866074d-ce37-4a23-a987-5d3932dc11cf", + "label": "label-7678", + "height": 323, + "background": "red" + }, + { + "key": "f5aefd7f-962f-4508-91e8-659f14fdbb41", + "label": "label-7679", + "height": 406, + "background": "green" + }, + { + "key": "392ed772-c483-42d4-985a-1e1120fd23b5", + "label": "label-7680", + "height": 177, + "background": "red" + }, + { + "key": "1e037f18-55d8-4bf0-94eb-101f76a054ef", + "label": "label-7681", + "height": 355, + "background": "blue" + }, + { + "key": "47d63cc9-58a3-4518-a17d-44e4375b024e", + "label": "label-7682", + "height": 381, + "background": "red" + }, + { + "key": "4adda24b-a44f-418f-a2d6-0a729e912071", + "label": "label-7683", + "height": 239, + "background": "red" + }, + { + "key": "dcb8835f-c710-4183-afd7-c4d41d312d5b", + "label": "label-7684", + "height": 285, + "background": "red" + }, + { + "key": "1e4f56bc-d0c7-4122-a39f-a91b4c2b0ed1", + "label": "label-7685", + "height": 138, + "background": "yellow" + }, + { + "key": "b08bb686-41e0-4447-8afb-ab2187b899b3", + "label": "label-7686", + "height": 415, + "background": "blue" + }, + { + "key": "f08a7685-5117-4852-91da-c295752cc348", + "label": "label-7687", + "height": 166, + "background": "blue" + }, + { + "key": "ce792f38-ea4d-4b43-b773-8e6c92a7e98a", + "label": "label-7688", + "height": 435, + "background": "yellow" + }, + { + "key": "10a058a9-a1dd-48af-83bc-ce55b8b528ba", + "label": "label-7689", + "height": 391, + "background": "yellow" + }, + { + "key": "f7e3d47b-3027-4ce7-a422-c142d0571c24", + "label": "label-7690", + "height": 467, + "background": "yellow" + }, + { + "key": "a01c8aee-0b79-4e19-acf3-56ca308dab18", + "label": "label-7691", + "height": 387, + "background": "green" + }, + { + "key": "91904e55-54f1-42d4-8376-5d74eb6540f5", + "label": "label-7692", + "height": 271, + "background": "green" + }, + { + "key": "dbde8895-fb0d-4754-a794-5baeb9daaeda", + "label": "label-7693", + "height": 355, + "background": "green" + }, + { + "key": "70bc433c-2576-4c63-bb4d-17ef0b235a06", + "label": "label-7694", + "height": 186, + "background": "blue" + }, + { + "key": "db601cd4-df51-4abd-b7e7-f7f4d33b3dfe", + "label": "label-7695", + "height": 489, + "background": "green" + }, + { + "key": "75c268d4-5719-4869-a07f-ac599f8aaf07", + "label": "label-7696", + "height": 38, + "background": "blue" + }, + { + "key": "e44663cd-12fc-4a50-bd2a-188e3b1ea615", + "label": "label-7697", + "height": 287, + "background": "yellow" + }, + { + "key": "3d65bd08-0c30-422f-b880-cf5e28fdf21f", + "label": "label-7698", + "height": 399, + "background": "red" + }, + { + "key": "d40d2a41-001a-437b-9765-255b1fdf302f", + "label": "label-7699", + "height": 245, + "background": "green" + }, + { + "key": "ecc078d4-a94b-48c9-9712-cb409fe27933", + "label": "label-7700", + "height": 370, + "background": "green" + }, + { + "key": "e62d617a-70b7-408b-907d-759c49c4cb29", + "label": "label-7701", + "height": 373, + "background": "red" + }, + { + "key": "c3ff761d-8a5d-4f93-a7ba-268a2be9bb34", + "label": "label-7702", + "height": 399, + "background": "red" + }, + { + "key": "3e67108a-9b8c-455b-aef4-a977c83aaf4d", + "label": "label-7703", + "height": 67, + "background": "blue" + }, + { + "key": "a22d2903-e045-4cb3-af0d-4ad6556eec76", + "label": "label-7704", + "height": 466, + "background": "green" + }, + { + "key": "cdee4481-cfda-4832-b763-5351b519b865", + "label": "label-7705", + "height": 423, + "background": "red" + }, + { + "key": "e8eaacc3-4619-42be-bfb7-21620dd2572b", + "label": "label-7706", + "height": 266, + "background": "yellow" + }, + { + "key": "7c6691af-ac21-458d-8c27-f9e62b5766de", + "label": "label-7707", + "height": 278, + "background": "red" + }, + { + "key": "ff1800fc-57d2-4163-8405-4a995e252a95", + "label": "label-7708", + "height": 311, + "background": "green" + }, + { + "key": "c2976e89-bd50-42d0-85cd-f850c724b297", + "label": "label-7709", + "height": 419, + "background": "blue" + }, + { + "key": "2dba8741-b3b9-4b0c-98ac-366536f642bb", + "label": "label-7710", + "height": 439, + "background": "blue" + }, + { + "key": "6b0f39fe-e681-401c-822b-585b3a418dda", + "label": "label-7711", + "height": 328, + "background": "red" + }, + { + "key": "8e3e516a-9032-42ce-8901-512a4ce56ba5", + "label": "label-7712", + "height": 488, + "background": "yellow" + }, + { + "key": "e916ee13-e44a-4a9c-8737-6453f035d20f", + "label": "label-7713", + "height": 367, + "background": "blue" + }, + { + "key": "cf192882-b9c0-4a24-a0f9-aa3920263289", + "label": "label-7714", + "height": 406, + "background": "red" + }, + { + "key": "ace87872-32b8-4b60-9ff4-e6cd21db68b0", + "label": "label-7715", + "height": 301, + "background": "yellow" + }, + { + "key": "8a7fa9c5-57c6-435b-939c-9e3bb57dac51", + "label": "label-7716", + "height": 441, + "background": "green" + }, + { + "key": "29b1517b-bbe2-4cb2-9601-bb3726de4573", + "label": "label-7717", + "height": 56, + "background": "red" + }, + { + "key": "200dbcd0-71c8-40af-ab20-9b16ce187528", + "label": "label-7718", + "height": 469, + "background": "blue" + }, + { + "key": "496bda7e-bf0e-4efd-8bcf-7d2cfc84f13c", + "label": "label-7719", + "height": 256, + "background": "red" + }, + { + "key": "eb39fbb7-b2f7-4cfa-bd55-8d61ea9bcf45", + "label": "label-7720", + "height": 256, + "background": "green" + }, + { + "key": "00c2314a-815f-49d0-a874-fe1abf2d7b71", + "label": "label-7721", + "height": 210, + "background": "blue" + }, + { + "key": "94a2f4c4-9f83-4d0d-863c-0c4a9c1d47c0", + "label": "label-7722", + "height": 505, + "background": "green" + }, + { + "key": "f4e491ea-b362-43ed-bcff-c68a86572201", + "label": "label-7723", + "height": 96, + "background": "green" + }, + { + "key": "5f344889-47eb-47b3-8255-50ac4d8b9afe", + "label": "label-7724", + "height": 92, + "background": "yellow" + }, + { + "key": "f4818506-8e17-4a6e-a25f-55a091c0c039", + "label": "label-7725", + "height": 392, + "background": "red" + }, + { + "key": "749534e2-d4da-4da1-9025-a7c4eaed5622", + "label": "label-7726", + "height": 517, + "background": "yellow" + }, + { + "key": "c39a7fef-4744-4d7c-bdc7-9b5e7409c6e3", + "label": "label-7727", + "height": 365, + "background": "yellow" + }, + { + "key": "300ffba1-93d3-4321-8725-e91b4f07097b", + "label": "label-7728", + "height": 397, + "background": "red" + }, + { + "key": "ac8615fb-2a7e-4d5c-a77f-99b8592f1077", + "label": "label-7729", + "height": 137, + "background": "red" + }, + { + "key": "67380d02-eeee-4f4d-875c-6e07c9011e53", + "label": "label-7730", + "height": 519, + "background": "blue" + }, + { + "key": "18aced41-db85-469b-a8b7-e3eb59b24142", + "label": "label-7731", + "height": 220, + "background": "yellow" + }, + { + "key": "4363ea6b-c254-416c-b7fe-a27867d0b3ca", + "label": "label-7732", + "height": 255, + "background": "blue" + }, + { + "key": "710de6bd-6b8f-430d-a6b0-41a3b968a595", + "label": "label-7733", + "height": 163, + "background": "red" + }, + { + "key": "8db2321e-d85d-4ac5-be5f-3496cdd292b4", + "label": "label-7734", + "height": 491, + "background": "green" + }, + { + "key": "1dca3eae-31dd-4c1c-b888-b06f943c0476", + "label": "label-7735", + "height": 157, + "background": "blue" + }, + { + "key": "2f862922-7c60-4246-8d89-878502e908e4", + "label": "label-7736", + "height": 269, + "background": "green" + }, + { + "key": "4bdd6cc1-1b25-4b49-814d-96d7c47ada76", + "label": "label-7737", + "height": 323, + "background": "red" + }, + { + "key": "d7834338-494f-4514-801a-6e759d5fa5fc", + "label": "label-7738", + "height": 343, + "background": "green" + }, + { + "key": "81ad5129-b855-45ad-b56d-40ee32631ed5", + "label": "label-7739", + "height": 409, + "background": "yellow" + }, + { + "key": "4c198649-a287-4d88-bcf8-eb854d7216e4", + "label": "label-7740", + "height": 308, + "background": "red" + }, + { + "key": "baa71e04-42c8-43da-850c-42d81a569ad6", + "label": "label-7741", + "height": 73, + "background": "yellow" + }, + { + "key": "2180eaeb-0677-401b-b767-61ea1e8ba8ae", + "label": "label-7742", + "height": 495, + "background": "red" + }, + { + "key": "461e639a-642c-478f-83b4-dbfc54b00f5c", + "label": "label-7743", + "height": 489, + "background": "yellow" + }, + { + "key": "93738005-f987-4515-99d9-c9c88fffad70", + "label": "label-7744", + "height": 484, + "background": "yellow" + }, + { + "key": "9b59ced0-67e9-4a5f-8618-260b8c8fe4ce", + "label": "label-7745", + "height": 93, + "background": "blue" + }, + { + "key": "e8feeb94-9766-4b32-96c1-15a125d7ce0e", + "label": "label-7746", + "height": 43, + "background": "green" + }, + { + "key": "f0f1e676-f750-4e1e-979a-5392b56c345c", + "label": "label-7747", + "height": 410, + "background": "green" + }, + { + "key": "62ba18f9-d2ea-4476-b20d-263a6fc5e29e", + "label": "label-7748", + "height": 168, + "background": "green" + }, + { + "key": "3004359f-756e-49a1-9127-ddf2a363df0a", + "label": "label-7749", + "height": 202, + "background": "blue" + }, + { + "key": "f758c5ce-0ba4-4b1a-995f-91ac42e1bb65", + "label": "label-7750", + "height": 182, + "background": "green" + }, + { + "key": "5eb2dac0-1cf8-452d-991f-792c13cb7352", + "label": "label-7751", + "height": 331, + "background": "blue" + }, + { + "key": "fad0057e-5b33-4bcf-a851-48fc03b0ff2b", + "label": "label-7752", + "height": 394, + "background": "red" + }, + { + "key": "30153426-720c-4d9c-832c-d44654ab83b2", + "label": "label-7753", + "height": 159, + "background": "green" + }, + { + "key": "966affd3-e296-449a-881e-4fb987c15259", + "label": "label-7754", + "height": 118, + "background": "green" + }, + { + "key": "636df6d7-ca69-493d-9c38-7c09fe93e096", + "label": "label-7755", + "height": 272, + "background": "green" + }, + { + "key": "646f3a71-b9b5-4675-8349-ca78a8527731", + "label": "label-7756", + "height": 315, + "background": "green" + }, + { + "key": "897cbb7f-9543-45a9-9e29-2003e5e70aaf", + "label": "label-7757", + "height": 176, + "background": "yellow" + }, + { + "key": "2ad12140-6376-4cce-b7b4-44beed5669e7", + "label": "label-7758", + "height": 131, + "background": "red" + }, + { + "key": "421dd439-e161-4aa9-8464-730f1199389f", + "label": "label-7759", + "height": 259, + "background": "blue" + }, + { + "key": "2138b739-6b1e-4a69-9c3e-301e879de531", + "label": "label-7760", + "height": 201, + "background": "green" + }, + { + "key": "26dae438-8319-49e6-984f-7dca7927429a", + "label": "label-7761", + "height": 171, + "background": "green" + }, + { + "key": "e5fbf029-9481-4410-9e5e-b24cf159d3c6", + "label": "label-7762", + "height": 335, + "background": "green" + }, + { + "key": "99a2fc65-ae10-4a79-b7bd-2cdbb6e9698d", + "label": "label-7763", + "height": 491, + "background": "red" + }, + { + "key": "46cc1a36-a255-4b71-9b60-a83f773fee45", + "label": "label-7764", + "height": 181, + "background": "yellow" + }, + { + "key": "9183855f-4fc2-41d3-a33a-dfac876c4103", + "label": "label-7765", + "height": 163, + "background": "green" + }, + { + "key": "b4237731-a758-48ef-bbcd-d9429a4b8847", + "label": "label-7766", + "height": 402, + "background": "red" + }, + { + "key": "f61c5126-349e-48e7-8334-05d74f3fb18c", + "label": "label-7767", + "height": 305, + "background": "green" + }, + { + "key": "91f4ed91-2079-4cbb-a17f-3105085b6714", + "label": "label-7768", + "height": 491, + "background": "blue" + }, + { + "key": "8732f1a7-fb9e-4f87-8969-4556969fed6f", + "label": "label-7769", + "height": 485, + "background": "red" + }, + { + "key": "d7ae7336-55d7-4414-af28-e7218ae41658", + "label": "label-7770", + "height": 320, + "background": "blue" + }, + { + "key": "8f9fd8ac-f01c-4943-a46a-611444c13ff6", + "label": "label-7771", + "height": 502, + "background": "green" + }, + { + "key": "71548822-8d0f-4bdd-8c41-55e566894922", + "label": "label-7772", + "height": 292, + "background": "blue" + }, + { + "key": "10eb7bfd-70e5-4a33-9caa-a9f6ad20b642", + "label": "label-7773", + "height": 50, + "background": "green" + }, + { + "key": "503056b0-884e-47ad-a611-a870e5f11ee4", + "label": "label-7774", + "height": 493, + "background": "yellow" + }, + { + "key": "85f744b6-40a1-4a36-bdd6-9c13a1b93643", + "label": "label-7775", + "height": 256, + "background": "green" + }, + { + "key": "3c2705de-5409-4b1e-9af1-67f1397fee12", + "label": "label-7776", + "height": 127, + "background": "green" + }, + { + "key": "d111f9df-ad06-429b-adc9-3e8bd555effa", + "label": "label-7777", + "height": 51, + "background": "blue" + }, + { + "key": "bb14e9a4-1b5b-4c8a-be7a-06e9bfdc9510", + "label": "label-7778", + "height": 195, + "background": "blue" + }, + { + "key": "99cc15c6-03af-4633-8de1-1d0f52e87c40", + "label": "label-7779", + "height": 416, + "background": "blue" + }, + { + "key": "62c73d3c-09a9-405a-adf9-f077b0261760", + "label": "label-7780", + "height": 143, + "background": "red" + }, + { + "key": "047bf80d-24b2-46c3-9257-06336be02837", + "label": "label-7781", + "height": 41, + "background": "green" + }, + { + "key": "27b4cd00-a97a-4e0b-9eb8-4e11d98a7cf8", + "label": "label-7782", + "height": 373, + "background": "red" + }, + { + "key": "fb211371-f645-42ed-af26-e30ececfe5f3", + "label": "label-7783", + "height": 281, + "background": "yellow" + }, + { + "key": "3486d617-894e-4fae-8e5d-53667ada0a03", + "label": "label-7784", + "height": 327, + "background": "green" + }, + { + "key": "e50f620a-b644-4c51-9305-d51f72fae6eb", + "label": "label-7785", + "height": 90, + "background": "yellow" + }, + { + "key": "0b3f6cb2-b7e6-4397-9b78-fc0e6e8a62fd", + "label": "label-7786", + "height": 307, + "background": "yellow" + }, + { + "key": "2c3a88b2-2189-47a3-92aa-ad6530980eae", + "label": "label-7787", + "height": 169, + "background": "blue" + }, + { + "key": "c2f3da8b-1ca0-4fff-a740-a676f55930de", + "label": "label-7788", + "height": 273, + "background": "green" + }, + { + "key": "2a26553b-937e-4567-8294-077104f10637", + "label": "label-7789", + "height": 377, + "background": "yellow" + }, + { + "key": "0939a36e-2c13-4edc-83f4-72e99a7f5cda", + "label": "label-7790", + "height": 197, + "background": "yellow" + }, + { + "key": "499bc699-e7a2-4a51-a39c-365d5befbd6c", + "label": "label-7791", + "height": 483, + "background": "yellow" + }, + { + "key": "3729a41e-52ce-43db-8b34-3d5a11cb4fce", + "label": "label-7792", + "height": 430, + "background": "blue" + }, + { + "key": "7106c24d-f206-49ad-ae9c-67261e28e4cf", + "label": "label-7793", + "height": 86, + "background": "yellow" + }, + { + "key": "6f0c6ca4-7cff-4514-8b0a-ea5d4f16bd48", + "label": "label-7794", + "height": 73, + "background": "yellow" + }, + { + "key": "6d84aac3-3d1c-4eb5-b79c-a41166018524", + "label": "label-7795", + "height": 491, + "background": "green" + }, + { + "key": "d64cc24c-3f42-4249-9b78-8f593214f1ca", + "label": "label-7796", + "height": 456, + "background": "red" + }, + { + "key": "4ee16894-9ae6-482c-9f1c-788c7aca7f52", + "label": "label-7797", + "height": 454, + "background": "red" + }, + { + "key": "721750b0-7ee6-4def-aac8-ac62b31bdbcd", + "label": "label-7798", + "height": 96, + "background": "yellow" + }, + { + "key": "3eebfd04-c064-41e3-8b88-20d031d97b27", + "label": "label-7799", + "height": 103, + "background": "blue" + }, + { + "key": "451818e9-7e0d-4ce6-a74a-83ce41bf2f20", + "label": "label-7800", + "height": 210, + "background": "red" + }, + { + "key": "de86a84a-4c8c-446a-9411-4430cfb1e071", + "label": "label-7801", + "height": 264, + "background": "yellow" + }, + { + "key": "e42a5c01-c6ca-41bd-ae93-84ab4bf3c0c4", + "label": "label-7802", + "height": 82, + "background": "green" + }, + { + "key": "56a7c6ea-ea09-4de9-a482-b2c3c7e8602f", + "label": "label-7803", + "height": 180, + "background": "blue" + }, + { + "key": "0a33af30-f4d2-4e61-a396-95b3bb9a060e", + "label": "label-7804", + "height": 496, + "background": "red" + }, + { + "key": "b6a08cc6-9f10-4f62-a721-88ccff5de390", + "label": "label-7805", + "height": 304, + "background": "blue" + }, + { + "key": "d741e4eb-8785-48e5-8951-bacb3e1d5609", + "label": "label-7806", + "height": 508, + "background": "yellow" + }, + { + "key": "6a216263-5f34-49b4-affe-326ed0af6407", + "label": "label-7807", + "height": 294, + "background": "yellow" + }, + { + "key": "ae809f27-c1c9-4a1a-b1b5-b9dea19cdfc7", + "label": "label-7808", + "height": 461, + "background": "yellow" + }, + { + "key": "71a71494-28e1-4e4d-b4b7-7fbbbbe3c02e", + "label": "label-7809", + "height": 272, + "background": "red" + }, + { + "key": "3ab47390-f42d-4e4a-a8f4-1c388aeb3482", + "label": "label-7810", + "height": 529, + "background": "red" + }, + { + "key": "28827a8c-c49b-43d2-b099-ae9228645ad9", + "label": "label-7811", + "height": 457, + "background": "green" + }, + { + "key": "d30ae386-832e-4741-bddc-38a3a2d77358", + "label": "label-7812", + "height": 315, + "background": "blue" + }, + { + "key": "e69f924e-b46b-484b-b417-2bdc90be27e6", + "label": "label-7813", + "height": 284, + "background": "yellow" + }, + { + "key": "4f6a4375-5b08-485d-a531-f31130bab1f6", + "label": "label-7814", + "height": 141, + "background": "yellow" + }, + { + "key": "d3572656-a8f7-4f98-b703-77649f7ea7e3", + "label": "label-7815", + "height": 479, + "background": "blue" + }, + { + "key": "d667a45b-845e-427f-87e7-28a3cee462be", + "label": "label-7816", + "height": 86, + "background": "yellow" + }, + { + "key": "812205b5-f087-465c-b12d-63bed8235b24", + "label": "label-7817", + "height": 74, + "background": "blue" + }, + { + "key": "e989ae79-7092-492c-bdc7-925c0441168b", + "label": "label-7818", + "height": 135, + "background": "green" + }, + { + "key": "843d4526-ccfe-4cd3-9b24-5d4bd8dd0631", + "label": "label-7819", + "height": 474, + "background": "red" + }, + { + "key": "9d61d83f-4601-4d31-95c2-5ac4f4a265e4", + "label": "label-7820", + "height": 270, + "background": "yellow" + }, + { + "key": "2ad747ba-a6c4-4d2b-bbf9-1fdfbc86157c", + "label": "label-7821", + "height": 368, + "background": "green" + }, + { + "key": "8dd1e86a-b6c8-4866-84d1-61a38f475a3a", + "label": "label-7822", + "height": 150, + "background": "blue" + }, + { + "key": "8ea58949-8a5d-42e7-beeb-f831d40bd2e5", + "label": "label-7823", + "height": 265, + "background": "green" + }, + { + "key": "3e2f5b27-a5cd-40c2-a1a5-a6c02773bb31", + "label": "label-7824", + "height": 232, + "background": "blue" + }, + { + "key": "09ddc74e-5320-40d1-bc3e-89aca696c92d", + "label": "label-7825", + "height": 322, + "background": "yellow" + }, + { + "key": "7dc17296-0acd-4d22-ae3a-2e083c53f061", + "label": "label-7826", + "height": 476, + "background": "yellow" + }, + { + "key": "dd509513-a010-4de2-90e1-9d494c680969", + "label": "label-7827", + "height": 292, + "background": "green" + }, + { + "key": "5a0dca3a-e6b9-4e63-84ba-380101f34ce6", + "label": "label-7828", + "height": 60, + "background": "yellow" + }, + { + "key": "7e347b6c-f5a3-42c9-9d78-13f83cb4f8e3", + "label": "label-7829", + "height": 480, + "background": "green" + }, + { + "key": "697da65d-1a2a-4f2f-928b-4185c67316fa", + "label": "label-7830", + "height": 352, + "background": "blue" + }, + { + "key": "250c0152-3c87-4b89-aa8d-9ec1929fe54d", + "label": "label-7831", + "height": 482, + "background": "yellow" + }, + { + "key": "4ab2f049-491f-4ea1-9ab5-8488ee2a20ce", + "label": "label-7832", + "height": 493, + "background": "green" + }, + { + "key": "136b31e6-b074-48da-a19b-944c4076fcb8", + "label": "label-7833", + "height": 99, + "background": "green" + }, + { + "key": "e7b1e1ef-1649-4dd2-8b65-0486a567477e", + "label": "label-7834", + "height": 339, + "background": "yellow" + }, + { + "key": "e8b674a1-e754-48e1-b092-1135dfb3dac2", + "label": "label-7835", + "height": 34, + "background": "green" + }, + { + "key": "c8dc1254-b55a-41e4-90eb-ad2aa61ff7ae", + "label": "label-7836", + "height": 294, + "background": "green" + }, + { + "key": "77bf2bf6-2b5f-43d0-aab1-244edb4894cc", + "label": "label-7837", + "height": 420, + "background": "blue" + }, + { + "key": "4c3f3f3b-5d17-4a62-83db-5e29ce69f560", + "label": "label-7838", + "height": 182, + "background": "yellow" + }, + { + "key": "000f371f-d60c-4f78-822b-f5cb6d6d5baf", + "label": "label-7839", + "height": 132, + "background": "red" + }, + { + "key": "feaff638-009c-4298-b9b9-ade927775fae", + "label": "label-7840", + "height": 217, + "background": "blue" + }, + { + "key": "18183745-34fc-42bd-bc9d-9e4d4fcc76a5", + "label": "label-7841", + "height": 184, + "background": "blue" + }, + { + "key": "9247aa35-5934-4da5-956c-9d208d9a7961", + "label": "label-7842", + "height": 319, + "background": "blue" + }, + { + "key": "db0933a6-3797-4661-8ba5-172bcf2075fa", + "label": "label-7843", + "height": 481, + "background": "green" + }, + { + "key": "6b5d5305-962a-450b-b2ea-7cb868d2b45f", + "label": "label-7844", + "height": 38, + "background": "red" + }, + { + "key": "ed47d83b-1292-4908-945b-45d9a76c37c3", + "label": "label-7845", + "height": 265, + "background": "red" + }, + { + "key": "93ca887f-668b-4153-a906-65e98cd9b9f3", + "label": "label-7846", + "height": 106, + "background": "blue" + }, + { + "key": "b9285551-f327-48a7-94ac-50bf07d98777", + "label": "label-7847", + "height": 503, + "background": "blue" + }, + { + "key": "0305d623-419d-4366-b193-8351bddfe4c5", + "label": "label-7848", + "height": 334, + "background": "blue" + }, + { + "key": "578b0934-a3e7-4aba-9262-71aa515a1715", + "label": "label-7849", + "height": 267, + "background": "green" + }, + { + "key": "ef910e08-6a76-40af-866c-f93f574544de", + "label": "label-7850", + "height": 164, + "background": "yellow" + }, + { + "key": "9f75e68b-9f3f-457e-a4d8-9444a1e9051a", + "label": "label-7851", + "height": 113, + "background": "blue" + }, + { + "key": "ec94f945-f4a1-4d39-ac26-3f900520dd3b", + "label": "label-7852", + "height": 126, + "background": "blue" + }, + { + "key": "ecdc3636-ccd2-41d3-a257-8327d4aecc48", + "label": "label-7853", + "height": 116, + "background": "red" + }, + { + "key": "38a81598-eb1a-4e64-9c98-c0be16769c0f", + "label": "label-7854", + "height": 271, + "background": "green" + }, + { + "key": "c04a80fd-f532-423b-8f7c-5f6de0aa3586", + "label": "label-7855", + "height": 231, + "background": "green" + }, + { + "key": "7bdff896-cc34-49d2-8eaf-5ad1b7449fc6", + "label": "label-7856", + "height": 409, + "background": "yellow" + }, + { + "key": "53db06f4-8ab0-44f7-90cb-95d2f50c7c06", + "label": "label-7857", + "height": 63, + "background": "red" + }, + { + "key": "41b236f8-70c9-476c-b162-5fe42eeed547", + "label": "label-7858", + "height": 269, + "background": "red" + }, + { + "key": "51e3044a-ddaa-442a-a731-08f7221310c1", + "label": "label-7859", + "height": 52, + "background": "yellow" + }, + { + "key": "7efd86d7-20c7-4da9-bd42-12345e46b927", + "label": "label-7860", + "height": 398, + "background": "blue" + }, + { + "key": "6c18edf5-2b6f-4c18-8f3f-9ab0a7f07781", + "label": "label-7861", + "height": 173, + "background": "green" + }, + { + "key": "dbebe4a8-0c04-46c8-baf9-1d804ec5a3ff", + "label": "label-7862", + "height": 239, + "background": "blue" + }, + { + "key": "1740974b-a8ce-4234-9340-78a769da5595", + "label": "label-7863", + "height": 376, + "background": "green" + }, + { + "key": "720bab6b-cea0-40fa-873c-7511c23a4cf0", + "label": "label-7864", + "height": 209, + "background": "red" + }, + { + "key": "20cebd97-f9e1-4466-9a4b-a06c17bec622", + "label": "label-7865", + "height": 359, + "background": "blue" + }, + { + "key": "d012c65a-7eca-43b2-af48-d0995b3828cc", + "label": "label-7866", + "height": 201, + "background": "blue" + }, + { + "key": "834d5b8d-0a53-47e2-bd50-bcde6fc0d7d2", + "label": "label-7867", + "height": 416, + "background": "green" + }, + { + "key": "9c146784-17ec-4ef7-95f6-c0fbd7d5fc17", + "label": "label-7868", + "height": 234, + "background": "red" + }, + { + "key": "471a7434-0a87-4abe-bf76-31cf3a02bc82", + "label": "label-7869", + "height": 474, + "background": "blue" + }, + { + "key": "dd5ee3c6-fe5a-4dfc-aea8-6105159b06a2", + "label": "label-7870", + "height": 34, + "background": "yellow" + }, + { + "key": "7c1649c1-fb5e-4f69-b9cf-87e990d7855a", + "label": "label-7871", + "height": 312, + "background": "red" + }, + { + "key": "49212e45-8af0-45a9-9e48-765569a8750f", + "label": "label-7872", + "height": 407, + "background": "green" + }, + { + "key": "bfc691ab-021f-4a74-a72b-7c9a6f2c26cd", + "label": "label-7873", + "height": 108, + "background": "blue" + }, + { + "key": "b89a7700-81b5-4eb9-bd73-d882966909cd", + "label": "label-7874", + "height": 524, + "background": "blue" + }, + { + "key": "eb395bb6-847a-443e-850b-6dc4914d31b4", + "label": "label-7875", + "height": 225, + "background": "blue" + }, + { + "key": "23e38d48-4f66-447e-8522-a171138af053", + "label": "label-7876", + "height": 529, + "background": "yellow" + }, + { + "key": "3e25373a-6638-4f43-9d23-0679889e9fd9", + "label": "label-7877", + "height": 124, + "background": "yellow" + }, + { + "key": "ff695d46-37ec-4b51-b6ba-6bbf2e9bdb02", + "label": "label-7878", + "height": 61, + "background": "red" + }, + { + "key": "b4ec289f-581e-4e87-85fa-058063fe1dde", + "label": "label-7879", + "height": 369, + "background": "yellow" + }, + { + "key": "c10db818-b825-47f9-9ca5-4c0d56d23202", + "label": "label-7880", + "height": 93, + "background": "red" + }, + { + "key": "6cab2ade-166e-4676-ac49-827431be5abb", + "label": "label-7881", + "height": 440, + "background": "red" + }, + { + "key": "dcafe932-df65-4aec-ac01-d3dc09cc80e5", + "label": "label-7882", + "height": 129, + "background": "blue" + }, + { + "key": "305acdd9-d5fc-4a37-9aeb-0725b98d1209", + "label": "label-7883", + "height": 190, + "background": "green" + }, + { + "key": "41b5f91c-0287-485a-adcc-7b51407b4be2", + "label": "label-7884", + "height": 406, + "background": "blue" + }, + { + "key": "f9f9b44a-3128-4fb6-8d93-09c7d9902681", + "label": "label-7885", + "height": 132, + "background": "red" + }, + { + "key": "9fc8dbce-7ee0-416d-83d9-e6cc2382ccca", + "label": "label-7886", + "height": 496, + "background": "red" + }, + { + "key": "840d2c4a-c4e9-4cf7-b4a6-1b6ddfacd4c1", + "label": "label-7887", + "height": 292, + "background": "yellow" + }, + { + "key": "51edff07-14a4-4c39-a93a-f44cebb20f9c", + "label": "label-7888", + "height": 45, + "background": "yellow" + }, + { + "key": "f2bc3cdc-4e0a-47db-b962-5c1477695c07", + "label": "label-7889", + "height": 423, + "background": "red" + }, + { + "key": "69a29c22-8ffa-4330-81b0-ba0cb2a8d279", + "label": "label-7890", + "height": 488, + "background": "blue" + }, + { + "key": "8bb44781-5e91-45a3-bca2-333fa783d5f0", + "label": "label-7891", + "height": 158, + "background": "yellow" + }, + { + "key": "145c7d9a-4bde-452b-94a9-f357c33a1f20", + "label": "label-7892", + "height": 216, + "background": "green" + }, + { + "key": "6fe9cb7e-2aac-4d04-9881-6fa79ef70152", + "label": "label-7893", + "height": 99, + "background": "green" + }, + { + "key": "9d0f8b06-428b-41f5-8009-b7eb3dfdc7b2", + "label": "label-7894", + "height": 306, + "background": "yellow" + }, + { + "key": "73649f2f-92cb-498b-8263-2ed5fbc73bbf", + "label": "label-7895", + "height": 200, + "background": "green" + }, + { + "key": "d218c328-2df1-48c7-8697-1ba1c10545a5", + "label": "label-7896", + "height": 44, + "background": "yellow" + }, + { + "key": "c7d88c7d-fa0e-4a4b-b34e-7496b7cb4c30", + "label": "label-7897", + "height": 219, + "background": "yellow" + }, + { + "key": "7e4c3dcc-e27d-4315-9441-71609f1144a8", + "label": "label-7898", + "height": 401, + "background": "yellow" + }, + { + "key": "b439122c-b215-496b-8ea8-d0d8d58c172b", + "label": "label-7899", + "height": 144, + "background": "green" + }, + { + "key": "d5077cb3-830e-481c-ada9-7d597097d90a", + "label": "label-7900", + "height": 410, + "background": "yellow" + }, + { + "key": "3c85734a-1cdd-48ca-901c-8614763651dd", + "label": "label-7901", + "height": 221, + "background": "yellow" + }, + { + "key": "01869394-8dd5-4955-9b71-89da45cc243a", + "label": "label-7902", + "height": 373, + "background": "yellow" + }, + { + "key": "ae3bf08d-5e75-4769-a544-d12c1ab7703e", + "label": "label-7903", + "height": 274, + "background": "red" + }, + { + "key": "04c7d46e-d391-4f63-a5bb-315e8260e673", + "label": "label-7904", + "height": 421, + "background": "green" + }, + { + "key": "aaa3621a-b6eb-4aa7-94d4-0f1a6b6d42dd", + "label": "label-7905", + "height": 457, + "background": "blue" + }, + { + "key": "fa86f120-5bc8-4d8b-a788-a5336b840fa9", + "label": "label-7906", + "height": 169, + "background": "blue" + }, + { + "key": "31c76c28-eb87-423c-a72b-7a8a6400bdc6", + "label": "label-7907", + "height": 379, + "background": "green" + }, + { + "key": "7595665d-0bfc-4bf5-945c-8fd25e86a0e0", + "label": "label-7908", + "height": 408, + "background": "red" + }, + { + "key": "fb4e200c-24ed-4550-a690-e7425f893dcd", + "label": "label-7909", + "height": 337, + "background": "yellow" + }, + { + "key": "08e0689d-41b8-4020-9cea-8efd132dcb30", + "label": "label-7910", + "height": 146, + "background": "yellow" + }, + { + "key": "7763336f-e069-472c-a0c7-2720583bbdf8", + "label": "label-7911", + "height": 256, + "background": "red" + }, + { + "key": "2628f3f3-1e36-4105-891e-aeade0405fd5", + "label": "label-7912", + "height": 462, + "background": "red" + }, + { + "key": "77304146-9672-4f89-80df-517e6fc79bcc", + "label": "label-7913", + "height": 345, + "background": "green" + }, + { + "key": "d2301ef8-d701-4ef4-8317-de763f15e9a6", + "label": "label-7914", + "height": 411, + "background": "red" + }, + { + "key": "0af1482a-a055-48f2-add4-2136690b824b", + "label": "label-7915", + "height": 447, + "background": "yellow" + }, + { + "key": "894fcc36-15fc-4e2d-8fbb-132ac588cb41", + "label": "label-7916", + "height": 76, + "background": "green" + }, + { + "key": "7b229f82-3356-4d10-9993-531c6679f4a2", + "label": "label-7917", + "height": 356, + "background": "blue" + }, + { + "key": "c92fd026-724c-4c87-b592-d45ac92629eb", + "label": "label-7918", + "height": 69, + "background": "red" + }, + { + "key": "ca514bed-d5f8-4340-9680-f4019d2e8319", + "label": "label-7919", + "height": 275, + "background": "red" + }, + { + "key": "d8417a00-3f94-4b2d-a7f7-736d54ec6258", + "label": "label-7920", + "height": 132, + "background": "blue" + }, + { + "key": "b0df4aa9-971f-4ebf-b876-6984f2b0542b", + "label": "label-7921", + "height": 67, + "background": "blue" + }, + { + "key": "9f22e3ec-fbea-44d8-b557-74f8c2fbd527", + "label": "label-7922", + "height": 382, + "background": "green" + }, + { + "key": "3d3fc3cb-4982-44ef-80d2-bbbcf6e391d1", + "label": "label-7923", + "height": 418, + "background": "blue" + }, + { + "key": "6e5d64c0-d83c-47da-a086-736330e13dcc", + "label": "label-7924", + "height": 488, + "background": "yellow" + }, + { + "key": "884aeac1-cfa2-4642-a6b7-3f85ab9b1d1d", + "label": "label-7925", + "height": 38, + "background": "yellow" + }, + { + "key": "5d2c9367-e968-480d-b512-de7506125b37", + "label": "label-7926", + "height": 529, + "background": "yellow" + }, + { + "key": "c0138f0b-78b0-4441-b3bb-bccd170ed8aa", + "label": "label-7927", + "height": 140, + "background": "red" + }, + { + "key": "c8ab25f8-32dc-4c29-a401-9d3dce30ac1e", + "label": "label-7928", + "height": 273, + "background": "green" + }, + { + "key": "b7999c11-bd2b-4639-bd42-38c12d70bdfe", + "label": "label-7929", + "height": 254, + "background": "yellow" + }, + { + "key": "03c1578f-103f-4e1c-9e90-fea21286f71b", + "label": "label-7930", + "height": 500, + "background": "blue" + }, + { + "key": "b2e9ef8b-3ac4-41bd-8fce-12944e4d880e", + "label": "label-7931", + "height": 371, + "background": "red" + }, + { + "key": "b87320ee-06cd-4226-a2bf-6eee126179d8", + "label": "label-7932", + "height": 351, + "background": "blue" + }, + { + "key": "6e675068-1b72-46b5-ae7d-1740f705aa77", + "label": "label-7933", + "height": 509, + "background": "blue" + }, + { + "key": "aeb1749e-8713-4355-871d-a7c416b18093", + "label": "label-7934", + "height": 271, + "background": "blue" + }, + { + "key": "c132b1c4-d9f0-4476-9839-1e690b14e438", + "label": "label-7935", + "height": 302, + "background": "green" + }, + { + "key": "38aff766-dc05-46ae-b435-685f984b9c73", + "label": "label-7936", + "height": 357, + "background": "blue" + }, + { + "key": "bcb1b10e-5384-40db-98d9-b9bd32bc9cb0", + "label": "label-7937", + "height": 203, + "background": "blue" + }, + { + "key": "cdaf92c1-35df-4345-bef0-7713f77e46a2", + "label": "label-7938", + "height": 500, + "background": "blue" + }, + { + "key": "4b8cd447-45c7-4fa3-8ff3-d57f6a739870", + "label": "label-7939", + "height": 361, + "background": "green" + }, + { + "key": "91981886-2240-43c3-a2ff-fa50f6ff7f95", + "label": "label-7940", + "height": 52, + "background": "blue" + }, + { + "key": "bf66237e-a7cb-4734-886e-f1132d6dd366", + "label": "label-7941", + "height": 456, + "background": "blue" + }, + { + "key": "49898a09-ec34-4c10-bd6b-91347582b44e", + "label": "label-7942", + "height": 34, + "background": "red" + }, + { + "key": "f8cc34b8-fa22-40c4-ba64-463f5950f95d", + "label": "label-7943", + "height": 289, + "background": "blue" + }, + { + "key": "e8f9e15c-b39d-4076-9e3d-2501b3a095be", + "label": "label-7944", + "height": 510, + "background": "yellow" + }, + { + "key": "95743a1a-4e2b-45f8-a3c1-f02b09c41a1e", + "label": "label-7945", + "height": 372, + "background": "yellow" + }, + { + "key": "0e6ceae8-61f3-4a3b-b0c6-c893fb886faa", + "label": "label-7946", + "height": 379, + "background": "green" + }, + { + "key": "6c2810af-de96-4d87-ba95-9e3c1dc0b575", + "label": "label-7947", + "height": 215, + "background": "red" + }, + { + "key": "d0877afc-c168-4858-a5f6-d1460a27015d", + "label": "label-7948", + "height": 414, + "background": "green" + }, + { + "key": "6e2819a9-8328-4ce8-b1b7-96222c995a75", + "label": "label-7949", + "height": 488, + "background": "red" + }, + { + "key": "b665b7f3-311a-4a7a-91c3-9cea0c9e805c", + "label": "label-7950", + "height": 223, + "background": "yellow" + }, + { + "key": "529a65dd-ae02-4669-b322-ee97fbaa0190", + "label": "label-7951", + "height": 262, + "background": "blue" + }, + { + "key": "4bf64390-a4ff-45e9-978c-dd0353be7fd1", + "label": "label-7952", + "height": 226, + "background": "yellow" + }, + { + "key": "b1472b7c-70cc-45f9-ac74-a0a68db5d676", + "label": "label-7953", + "height": 66, + "background": "green" + }, + { + "key": "0ed446e7-98d9-437c-87b0-3e34bb16fbb2", + "label": "label-7954", + "height": 280, + "background": "red" + }, + { + "key": "206e3ce3-7926-4525-bfdb-6b4b8ef92126", + "label": "label-7955", + "height": 239, + "background": "green" + }, + { + "key": "b1fdfc93-3d2d-4b0c-a3ea-eaac510b6f4b", + "label": "label-7956", + "height": 359, + "background": "yellow" + }, + { + "key": "f905bb64-e564-4e3d-a5cf-9d182364296e", + "label": "label-7957", + "height": 441, + "background": "blue" + }, + { + "key": "598c2a50-d640-4262-8f8f-69301b8357b2", + "label": "label-7958", + "height": 33, + "background": "yellow" + }, + { + "key": "c5966fc4-030d-4518-9e57-864f3cedc2e1", + "label": "label-7959", + "height": 287, + "background": "red" + }, + { + "key": "c2050df9-d8c3-4153-baf6-ed390289bd8c", + "label": "label-7960", + "height": 445, + "background": "yellow" + }, + { + "key": "544ea22a-3f05-4830-8454-b7c16ecf110f", + "label": "label-7961", + "height": 399, + "background": "green" + }, + { + "key": "8f6de18e-8717-43ed-8ced-5821ea1a6ac6", + "label": "label-7962", + "height": 355, + "background": "green" + }, + { + "key": "b97353c5-15eb-4a87-a5c6-b35f87b00ace", + "label": "label-7963", + "height": 67, + "background": "green" + }, + { + "key": "8c792d05-b06c-4b7e-abad-dac1363de9d6", + "label": "label-7964", + "height": 374, + "background": "green" + }, + { + "key": "9bafe783-3af2-4a27-9691-2277d35410ea", + "label": "label-7965", + "height": 501, + "background": "red" + }, + { + "key": "a47f7158-0506-4f56-b84e-800a83632e13", + "label": "label-7966", + "height": 436, + "background": "green" + }, + { + "key": "d43ac240-8ed9-49e6-aced-619de72ff7a3", + "label": "label-7967", + "height": 232, + "background": "yellow" + }, + { + "key": "a0673be0-b883-4cfd-8d1e-52ea7713f407", + "label": "label-7968", + "height": 423, + "background": "yellow" + }, + { + "key": "e0c04e49-79d1-4e5c-a7d1-e7258627b7a1", + "label": "label-7969", + "height": 98, + "background": "yellow" + }, + { + "key": "1cab49cc-997b-4394-b55d-f6574e1ffac8", + "label": "label-7970", + "height": 82, + "background": "green" + }, + { + "key": "5ffcc841-738d-4bd0-aae4-7f830a16d969", + "label": "label-7971", + "height": 120, + "background": "red" + }, + { + "key": "48b82b58-5e65-4485-b6b8-3e638f9fcbd2", + "label": "label-7972", + "height": 290, + "background": "yellow" + }, + { + "key": "ddac4b5c-d418-43af-bfb4-4116e96bbe7f", + "label": "label-7973", + "height": 46, + "background": "blue" + }, + { + "key": "21563581-b7ea-442c-b27d-bd546c52dc1e", + "label": "label-7974", + "height": 262, + "background": "blue" + }, + { + "key": "4e9a1939-2baa-43da-ace1-473fb12995b3", + "label": "label-7975", + "height": 470, + "background": "green" + }, + { + "key": "daade0d3-df77-4105-a1cb-d3418d02ff59", + "label": "label-7976", + "height": 274, + "background": "green" + }, + { + "key": "13b35236-d816-45a1-84f8-3b19f29c5402", + "label": "label-7977", + "height": 213, + "background": "red" + }, + { + "key": "9915e7c6-861b-48c8-9d9d-b8cb43c541d4", + "label": "label-7978", + "height": 169, + "background": "green" + }, + { + "key": "1cfc2127-a925-4719-a931-0ee26b207552", + "label": "label-7979", + "height": 450, + "background": "yellow" + }, + { + "key": "bf10c4ea-0c6c-4567-aa02-31370ba91ff0", + "label": "label-7980", + "height": 483, + "background": "blue" + }, + { + "key": "3db2949c-e497-4aa0-ac9a-179405af7f14", + "label": "label-7981", + "height": 377, + "background": "red" + }, + { + "key": "ed2d098d-8417-437d-a311-1c7983fab640", + "label": "label-7982", + "height": 53, + "background": "red" + }, + { + "key": "a7ca7847-0827-4db8-a91a-e152f4793fff", + "label": "label-7983", + "height": 354, + "background": "yellow" + }, + { + "key": "de2c5476-21dc-4d90-94c7-9e0352e405ad", + "label": "label-7984", + "height": 108, + "background": "green" + }, + { + "key": "41a5822c-4a56-48ba-8bd8-5f1f6bcbc11f", + "label": "label-7985", + "height": 409, + "background": "red" + }, + { + "key": "ac307da1-5454-491f-8634-f426ed277885", + "label": "label-7986", + "height": 136, + "background": "blue" + }, + { + "key": "4186f766-ab4e-41ea-b457-27827f976d3f", + "label": "label-7987", + "height": 386, + "background": "yellow" + }, + { + "key": "53cf52bf-f222-471e-96d6-75d480c11730", + "label": "label-7988", + "height": 530, + "background": "green" + }, + { + "key": "d98d28b1-01d6-48e7-b408-69f1681b4084", + "label": "label-7989", + "height": 322, + "background": "yellow" + }, + { + "key": "0164fc08-05f9-4ddf-a2e1-f7f2169dcbc2", + "label": "label-7990", + "height": 137, + "background": "red" + }, + { + "key": "74d6247a-aa22-4ea5-a418-7f0ed130bba7", + "label": "label-7991", + "height": 421, + "background": "blue" + }, + { + "key": "50dbc8e7-4283-4c12-8f16-11bff49cf075", + "label": "label-7992", + "height": 46, + "background": "red" + }, + { + "key": "dc3e37ae-e064-4393-aa30-926354a20abb", + "label": "label-7993", + "height": 360, + "background": "blue" + }, + { + "key": "3448586d-d0b9-4997-a3f7-72da9b7ae8d1", + "label": "label-7994", + "height": 259, + "background": "red" + }, + { + "key": "3c00dc41-148e-4cfe-bf00-386f33fab4c4", + "label": "label-7995", + "height": 74, + "background": "red" + }, + { + "key": "427c076c-4135-43b0-bd3e-91bc7d3fdf21", + "label": "label-7996", + "height": 323, + "background": "blue" + }, + { + "key": "eb21ced5-c568-4d73-9a1e-dbaa29204995", + "label": "label-7997", + "height": 399, + "background": "red" + }, + { + "key": "b95c4f52-67a9-4fef-955d-59b97b345898", + "label": "label-7998", + "height": 360, + "background": "blue" + }, + { + "key": "c0eab681-db58-4607-b12e-877d4724d5f4", + "label": "label-7999", + "height": 359, + "background": "yellow" + }, + { + "key": "02b2f232-b4e7-4b95-94d0-ab6a5768b41b", + "label": "label-8000", + "height": 529, + "background": "red" + }, + { + "key": "90b432cf-5d13-4624-800d-9ca0def7fb2b", + "label": "label-8001", + "height": 503, + "background": "green" + }, + { + "key": "8d859b16-434b-45c2-aa5b-4c58485f89b9", + "label": "label-8002", + "height": 234, + "background": "yellow" + }, + { + "key": "cac0d4de-5984-4bbb-86de-da5651e37727", + "label": "label-8003", + "height": 433, + "background": "green" + }, + { + "key": "82ee7093-3ac0-4f8c-837a-936c652e4187", + "label": "label-8004", + "height": 344, + "background": "red" + }, + { + "key": "7f860583-28f9-494d-b177-7e47640973c1", + "label": "label-8005", + "height": 409, + "background": "yellow" + }, + { + "key": "ef090f9b-443d-4e62-b123-bcb1c8839d8b", + "label": "label-8006", + "height": 105, + "background": "blue" + }, + { + "key": "a137b5be-5f09-4b39-ae95-6d4f6672816c", + "label": "label-8007", + "height": 129, + "background": "red" + }, + { + "key": "553a4ce7-f8aa-4f16-889f-cbfdc8516ee4", + "label": "label-8008", + "height": 365, + "background": "yellow" + }, + { + "key": "90844dc1-5162-422c-908b-18acd3be1280", + "label": "label-8009", + "height": 440, + "background": "red" + }, + { + "key": "6f569d48-2e71-4ade-b81f-6a652e1a2f13", + "label": "label-8010", + "height": 250, + "background": "yellow" + }, + { + "key": "383a7ece-1867-4f9c-9f0b-58f8d0f15210", + "label": "label-8011", + "height": 385, + "background": "blue" + }, + { + "key": "edbcd52c-a10a-4b1f-9757-46eefc9d60c8", + "label": "label-8012", + "height": 468, + "background": "blue" + }, + { + "key": "417d11d7-553e-45b9-93e6-98251a65722e", + "label": "label-8013", + "height": 527, + "background": "red" + }, + { + "key": "0de73abc-d4a3-42a5-9920-711e19e63e3e", + "label": "label-8014", + "height": 426, + "background": "blue" + }, + { + "key": "0ed9e730-6140-4b00-b2ad-1a406caf8afa", + "label": "label-8015", + "height": 122, + "background": "red" + }, + { + "key": "427be867-9191-43a7-bbbd-041cf57c643d", + "label": "label-8016", + "height": 181, + "background": "blue" + }, + { + "key": "ae6c7172-30eb-4cb6-8efc-13e36d94f293", + "label": "label-8017", + "height": 411, + "background": "green" + }, + { + "key": "376aa8d6-e2ad-48a2-89b8-dfd5e8a05737", + "label": "label-8018", + "height": 113, + "background": "red" + }, + { + "key": "414349f7-fa71-44bb-b35b-2d12d8a55ad4", + "label": "label-8019", + "height": 164, + "background": "blue" + }, + { + "key": "53d7bb4b-3bf6-48c2-bded-a8aea0baf89b", + "label": "label-8020", + "height": 346, + "background": "yellow" + }, + { + "key": "8e80f616-eeb6-466b-b12e-ebda40ff3032", + "label": "label-8021", + "height": 205, + "background": "green" + }, + { + "key": "55025779-965f-4795-a0fa-8e2ed1b78757", + "label": "label-8022", + "height": 477, + "background": "green" + }, + { + "key": "7b9f2066-0fdd-4b7c-88cf-8b551ece7972", + "label": "label-8023", + "height": 235, + "background": "red" + }, + { + "key": "cfaf63bd-321a-484f-a909-3ee336ad0334", + "label": "label-8024", + "height": 526, + "background": "yellow" + }, + { + "key": "e0a911f8-398b-41bc-b430-233c4bbb654c", + "label": "label-8025", + "height": 522, + "background": "yellow" + }, + { + "key": "47a9aab5-3405-419e-8dfd-dceb50b09247", + "label": "label-8026", + "height": 501, + "background": "red" + }, + { + "key": "d64becf9-d7ab-495f-a1f1-d53e92b07048", + "label": "label-8027", + "height": 483, + "background": "green" + }, + { + "key": "1da587b7-c597-495e-b951-710198a8a849", + "label": "label-8028", + "height": 356, + "background": "yellow" + }, + { + "key": "48395282-aafc-4317-839a-55b500372411", + "label": "label-8029", + "height": 239, + "background": "blue" + }, + { + "key": "2a6c8876-978c-4554-998b-5068d902991d", + "label": "label-8030", + "height": 502, + "background": "red" + }, + { + "key": "43d66a42-7c0a-470b-a98c-913e0c9605f1", + "label": "label-8031", + "height": 194, + "background": "blue" + }, + { + "key": "3fc1933d-69c1-48bd-9271-b51e8694ec3a", + "label": "label-8032", + "height": 439, + "background": "yellow" + }, + { + "key": "6daa800e-ca71-45fa-b0d8-75a9e37b13a8", + "label": "label-8033", + "height": 489, + "background": "blue" + }, + { + "key": "de2928ab-52a6-4930-8535-1c5b94ebb2b8", + "label": "label-8034", + "height": 302, + "background": "green" + }, + { + "key": "5b58f376-482f-4749-b481-45ecf68172bb", + "label": "label-8035", + "height": 226, + "background": "yellow" + }, + { + "key": "a77fb701-5c4b-4c02-95c9-a1661d0579f4", + "label": "label-8036", + "height": 261, + "background": "yellow" + }, + { + "key": "7c94d604-dc7f-4319-b486-9479657d6808", + "label": "label-8037", + "height": 325, + "background": "blue" + }, + { + "key": "bb71a4fb-727c-4f35-bf62-caf48fec8bbd", + "label": "label-8038", + "height": 513, + "background": "green" + }, + { + "key": "9ba30f52-d108-48b8-be2b-184ade84c936", + "label": "label-8039", + "height": 126, + "background": "green" + }, + { + "key": "6b098254-0f5b-42cb-8450-c31fc33c6f96", + "label": "label-8040", + "height": 409, + "background": "yellow" + }, + { + "key": "b3214168-f967-49b5-a164-ae0ebb38f010", + "label": "label-8041", + "height": 341, + "background": "blue" + }, + { + "key": "cae25427-72a7-4688-9d3c-3e925bbc5f8e", + "label": "label-8042", + "height": 315, + "background": "green" + }, + { + "key": "78fc52b2-2256-4ed7-ae61-a5f0dbdd185f", + "label": "label-8043", + "height": 443, + "background": "yellow" + }, + { + "key": "4674a2bf-9a8c-4b3e-8663-ed57b538297d", + "label": "label-8044", + "height": 331, + "background": "red" + }, + { + "key": "01cbf7dc-ee52-4915-9062-b5659f6a847b", + "label": "label-8045", + "height": 224, + "background": "green" + }, + { + "key": "501b646f-8127-4679-be98-95a652e3b092", + "label": "label-8046", + "height": 127, + "background": "red" + }, + { + "key": "5fa5e618-bf26-4678-9e87-0116f981eac5", + "label": "label-8047", + "height": 481, + "background": "yellow" + }, + { + "key": "9b0e1aa7-5a8f-45d4-a1bf-274c3c06bc80", + "label": "label-8048", + "height": 333, + "background": "green" + }, + { + "key": "5659521a-21b1-479b-ac4d-96e7b2434596", + "label": "label-8049", + "height": 41, + "background": "red" + }, + { + "key": "05bf6b28-5757-4503-87f9-e5179f6d2604", + "label": "label-8050", + "height": 260, + "background": "blue" + }, + { + "key": "623640a7-6032-40bc-b9a2-44cd5828fba8", + "label": "label-8051", + "height": 414, + "background": "blue" + }, + { + "key": "723f46d0-1628-4265-94fa-6814b138655c", + "label": "label-8052", + "height": 166, + "background": "yellow" + }, + { + "key": "1b08a3a8-7a0b-446d-9a4f-d5389af00f74", + "label": "label-8053", + "height": 420, + "background": "red" + }, + { + "key": "1780ab07-4814-47dc-94ec-73e08dbbebbc", + "label": "label-8054", + "height": 505, + "background": "yellow" + }, + { + "key": "b68cd535-33a8-4977-bc17-9483f57f29f5", + "label": "label-8055", + "height": 127, + "background": "yellow" + }, + { + "key": "ad206101-b65c-4d30-b622-b86ce7533d6a", + "label": "label-8056", + "height": 64, + "background": "red" + }, + { + "key": "6862a466-d90c-4441-95a1-41f4dce4fc94", + "label": "label-8057", + "height": 137, + "background": "yellow" + }, + { + "key": "cf0fc260-5269-4124-9148-9fcf75787d20", + "label": "label-8058", + "height": 397, + "background": "blue" + }, + { + "key": "258e3487-76a7-4cb7-9014-9ef04a6b88de", + "label": "label-8059", + "height": 471, + "background": "green" + }, + { + "key": "7cd41b9c-fb1d-44b7-9666-3c36d463dc06", + "label": "label-8060", + "height": 144, + "background": "blue" + }, + { + "key": "dcf020db-515d-40eb-8b43-906aac4bc789", + "label": "label-8061", + "height": 517, + "background": "green" + }, + { + "key": "c345aaf2-1629-4d64-8e7d-1a6e42791ecd", + "label": "label-8062", + "height": 158, + "background": "green" + }, + { + "key": "a6e09500-a45c-456d-92cb-3e0bb25ff9f9", + "label": "label-8063", + "height": 399, + "background": "yellow" + }, + { + "key": "7ae2bcaa-591a-4494-8b49-0bc6b2287946", + "label": "label-8064", + "height": 516, + "background": "yellow" + }, + { + "key": "e297476c-48d4-4900-babe-19ce3285280b", + "label": "label-8065", + "height": 144, + "background": "blue" + }, + { + "key": "fa748d05-db94-4fad-b6fa-d1ec9d2c0f86", + "label": "label-8066", + "height": 294, + "background": "yellow" + }, + { + "key": "1eaa450c-31e1-4514-a3b6-74cd991dc00c", + "label": "label-8067", + "height": 287, + "background": "yellow" + }, + { + "key": "eb562e12-fc0d-42b7-b433-489f929ddfa6", + "label": "label-8068", + "height": 126, + "background": "red" + }, + { + "key": "c8d6e567-01e8-48ff-8175-0532014b2c3d", + "label": "label-8069", + "height": 362, + "background": "yellow" + }, + { + "key": "8fbca340-9f4e-4357-a0f1-9195a11e2cb4", + "label": "label-8070", + "height": 299, + "background": "blue" + }, + { + "key": "5442d2c9-571e-4a83-9ae5-4aaa97ba2859", + "label": "label-8071", + "height": 478, + "background": "red" + }, + { + "key": "0b79f951-a20e-4482-a4d9-db2a4f08bb9b", + "label": "label-8072", + "height": 49, + "background": "red" + }, + { + "key": "d1d69225-ce49-48c6-8de7-f2261f63f85d", + "label": "label-8073", + "height": 474, + "background": "green" + }, + { + "key": "24f63363-246b-4f06-8033-e5281e797bc8", + "label": "label-8074", + "height": 265, + "background": "green" + }, + { + "key": "dd39b828-18b0-462d-995c-98bd86a5911d", + "label": "label-8075", + "height": 514, + "background": "green" + }, + { + "key": "a50529e4-986b-4b12-8601-bd8c2b0895cd", + "label": "label-8076", + "height": 486, + "background": "blue" + }, + { + "key": "4cd500ae-fccd-438f-9b82-cfe86706fa0c", + "label": "label-8077", + "height": 117, + "background": "yellow" + }, + { + "key": "9b14a21c-ca9d-4ce3-be02-b8360341fab9", + "label": "label-8078", + "height": 515, + "background": "red" + }, + { + "key": "0ec1e0b0-797f-4a3d-ac1e-3fa0753a03f2", + "label": "label-8079", + "height": 84, + "background": "yellow" + }, + { + "key": "e1411020-0ab1-4b38-b159-d8ed0e945094", + "label": "label-8080", + "height": 41, + "background": "red" + }, + { + "key": "29726fa4-cbec-40d4-9f3c-aa4ebdf7c1f2", + "label": "label-8081", + "height": 450, + "background": "green" + }, + { + "key": "b640f104-9923-4cff-952f-4f6b834dd043", + "label": "label-8082", + "height": 170, + "background": "red" + }, + { + "key": "4dcccadd-de7f-419d-b750-8ef654ee5a41", + "label": "label-8083", + "height": 51, + "background": "yellow" + }, + { + "key": "c93f3b35-400d-4857-bbfe-a6f723578e92", + "label": "label-8084", + "height": 214, + "background": "green" + }, + { + "key": "2a68f27b-df2e-4a7c-91ee-3b583711a316", + "label": "label-8085", + "height": 147, + "background": "green" + }, + { + "key": "08d0fefb-5855-4141-a729-f6515022b511", + "label": "label-8086", + "height": 93, + "background": "green" + }, + { + "key": "833bc202-2377-42e7-80c8-892873c31963", + "label": "label-8087", + "height": 437, + "background": "blue" + }, + { + "key": "cdf29f63-a792-4106-94a0-f741d4d48693", + "label": "label-8088", + "height": 148, + "background": "yellow" + }, + { + "key": "3a68788c-8177-4a0f-9eb4-aec1bd6e17f9", + "label": "label-8089", + "height": 421, + "background": "green" + }, + { + "key": "742d42f2-2e1b-400b-a16b-9496366e6e0f", + "label": "label-8090", + "height": 236, + "background": "green" + }, + { + "key": "0b6936d1-24aa-4805-87bc-2499f09ae84f", + "label": "label-8091", + "height": 203, + "background": "green" + }, + { + "key": "55d65363-2c7a-4aa2-8368-297034d19e35", + "label": "label-8092", + "height": 230, + "background": "blue" + }, + { + "key": "c50174ea-b890-498b-9574-b6a65be969bc", + "label": "label-8093", + "height": 334, + "background": "blue" + }, + { + "key": "00363641-19f1-4016-b55b-7f3656e28b0a", + "label": "label-8094", + "height": 350, + "background": "red" + }, + { + "key": "8feae549-1d51-47a9-8b0d-ae531d6391e5", + "label": "label-8095", + "height": 314, + "background": "green" + }, + { + "key": "f62862eb-46ad-40ae-a5cd-b983efd295c1", + "label": "label-8096", + "height": 266, + "background": "blue" + }, + { + "key": "d90131ac-d6ca-44f8-9e79-eb2ff65c7253", + "label": "label-8097", + "height": 304, + "background": "yellow" + }, + { + "key": "2b5dafc0-006f-4ba0-bf05-6bad3cfd3667", + "label": "label-8098", + "height": 304, + "background": "red" + }, + { + "key": "f772edfc-5d47-4dd8-936a-a052e13f31e4", + "label": "label-8099", + "height": 307, + "background": "red" + }, + { + "key": "fd8933b0-9ab6-4aa5-b872-d8310b527b99", + "label": "label-8100", + "height": 204, + "background": "yellow" + }, + { + "key": "8aaedb8e-d931-49bd-87a2-0fe45f81baf0", + "label": "label-8101", + "height": 270, + "background": "red" + }, + { + "key": "272d501b-388f-411b-99cb-be01a3965e19", + "label": "label-8102", + "height": 337, + "background": "yellow" + }, + { + "key": "753a9113-aa0d-4a18-a304-6d5119db0a8f", + "label": "label-8103", + "height": 153, + "background": "green" + }, + { + "key": "07b76042-2f30-40fa-a0ee-49ada79373cd", + "label": "label-8104", + "height": 478, + "background": "red" + }, + { + "key": "5c439d91-b54b-4442-a43e-214afb740a5a", + "label": "label-8105", + "height": 392, + "background": "blue" + }, + { + "key": "13fe66f4-f2a6-4d59-93f8-665b3dc4183c", + "label": "label-8106", + "height": 388, + "background": "blue" + }, + { + "key": "c94d5348-1cf9-499e-ae77-282046503056", + "label": "label-8107", + "height": 132, + "background": "green" + }, + { + "key": "e1ebadb0-be31-4fd8-b267-f18cffc1035e", + "label": "label-8108", + "height": 498, + "background": "yellow" + }, + { + "key": "f1c17986-643d-492a-867d-d033fccc8604", + "label": "label-8109", + "height": 399, + "background": "blue" + }, + { + "key": "569ce743-1a12-4934-b809-4e7ac09155af", + "label": "label-8110", + "height": 421, + "background": "yellow" + }, + { + "key": "fd4a8b9a-0b0f-4767-a9e3-ea9aa916a73a", + "label": "label-8111", + "height": 243, + "background": "blue" + }, + { + "key": "158d4751-d534-4e6c-a3b5-00602737db2f", + "label": "label-8112", + "height": 376, + "background": "green" + }, + { + "key": "b8daecd5-667a-4b93-bb8d-7b59b8acefc4", + "label": "label-8113", + "height": 94, + "background": "red" + }, + { + "key": "392583de-09c4-4891-87c7-cd3f8334b6e9", + "label": "label-8114", + "height": 137, + "background": "blue" + }, + { + "key": "cf1ab290-8e6b-4af3-b71c-84b22b2afc1a", + "label": "label-8115", + "height": 57, + "background": "red" + }, + { + "key": "7988a99c-af00-414c-a85a-5d10d8a91623", + "label": "label-8116", + "height": 294, + "background": "blue" + }, + { + "key": "bae9222e-962b-4e08-ba4a-434a82faccd1", + "label": "label-8117", + "height": 53, + "background": "yellow" + }, + { + "key": "83241472-70b1-47dd-a5b6-24a00b8dfa0b", + "label": "label-8118", + "height": 319, + "background": "green" + }, + { + "key": "7a74c277-0d5a-42e7-9340-d74d281e8e0a", + "label": "label-8119", + "height": 248, + "background": "red" + }, + { + "key": "46be8eb8-d41e-4937-914e-58348d038fe0", + "label": "label-8120", + "height": 510, + "background": "red" + }, + { + "key": "92dd94f2-a622-4620-ad5e-1827534f5a4c", + "label": "label-8121", + "height": 63, + "background": "blue" + }, + { + "key": "59911172-e18b-43cd-a6bb-0a449dcbb03c", + "label": "label-8122", + "height": 82, + "background": "yellow" + }, + { + "key": "102d2afa-5f0d-4cdf-a37e-42d0d7cc0768", + "label": "label-8123", + "height": 359, + "background": "red" + }, + { + "key": "86c24d24-1db2-452b-9f99-25b52c1e96dc", + "label": "label-8124", + "height": 466, + "background": "green" + }, + { + "key": "9865f3b4-58e5-495b-b666-7f5582c118f1", + "label": "label-8125", + "height": 33, + "background": "yellow" + }, + { + "key": "6fc8c1bf-79f9-408e-9ea5-15c3b5a97ca4", + "label": "label-8126", + "height": 478, + "background": "yellow" + }, + { + "key": "e9c9fd5d-111d-4a66-8b19-933c8e88dcbb", + "label": "label-8127", + "height": 208, + "background": "yellow" + }, + { + "key": "b558b058-1f20-4d94-8e02-ce8aa4b9a156", + "label": "label-8128", + "height": 243, + "background": "green" + }, + { + "key": "fc5a7569-0fb0-4e2e-84eb-3e46c35b4a50", + "label": "label-8129", + "height": 230, + "background": "green" + }, + { + "key": "f2e04df5-2899-4688-b77f-a3f76c83b616", + "label": "label-8130", + "height": 258, + "background": "red" + }, + { + "key": "b6675c55-3aff-4888-88f9-1304334c46e3", + "label": "label-8131", + "height": 100, + "background": "blue" + }, + { + "key": "f96a000b-b481-43e2-9ecb-e8bba27ec74c", + "label": "label-8132", + "height": 290, + "background": "red" + }, + { + "key": "2c0592e6-dac3-458a-b82f-5347b9d04d7d", + "label": "label-8133", + "height": 285, + "background": "red" + }, + { + "key": "10c90997-f1bc-43aa-957f-78373a7bd278", + "label": "label-8134", + "height": 226, + "background": "green" + }, + { + "key": "ddc4ff4f-1940-49a3-be93-c3664acfdc7e", + "label": "label-8135", + "height": 304, + "background": "green" + }, + { + "key": "9275984b-b2c6-46f0-a487-137386cb0423", + "label": "label-8136", + "height": 337, + "background": "red" + }, + { + "key": "a338f5b2-21e2-43be-91b5-a94ad86ddc6b", + "label": "label-8137", + "height": 512, + "background": "yellow" + }, + { + "key": "179aceeb-176c-4bf5-a6be-a226edc3a2cd", + "label": "label-8138", + "height": 525, + "background": "red" + }, + { + "key": "48208b4b-d7c0-4bf4-b583-694b78d98aff", + "label": "label-8139", + "height": 224, + "background": "blue" + }, + { + "key": "d269829e-6e08-4f35-9c12-d04ec91375de", + "label": "label-8140", + "height": 229, + "background": "green" + }, + { + "key": "73a48e96-7a31-4eb1-803b-57fe51d84518", + "label": "label-8141", + "height": 193, + "background": "yellow" + }, + { + "key": "aa5c950a-f153-42d1-b630-f7bb959d55ab", + "label": "label-8142", + "height": 237, + "background": "red" + }, + { + "key": "1a507a52-ba31-4fd4-b295-e80a0ded67e5", + "label": "label-8143", + "height": 305, + "background": "blue" + }, + { + "key": "c8191838-d23c-4566-8249-6a1a19ba7388", + "label": "label-8144", + "height": 347, + "background": "green" + }, + { + "key": "ef867d31-5adc-42eb-857c-143a48f7227a", + "label": "label-8145", + "height": 520, + "background": "blue" + }, + { + "key": "26290ac6-5f1b-47dd-bf29-1d5b357d1f9a", + "label": "label-8146", + "height": 64, + "background": "yellow" + }, + { + "key": "8acf12a8-bd0e-4b48-af55-96018a05d883", + "label": "label-8147", + "height": 459, + "background": "blue" + }, + { + "key": "6c06103f-1aae-4521-a61e-1e68ff23f585", + "label": "label-8148", + "height": 165, + "background": "blue" + }, + { + "key": "30542231-56ab-4edd-9267-995d8d7df441", + "label": "label-8149", + "height": 249, + "background": "green" + }, + { + "key": "7ba514e3-f0cd-401b-ab15-bc3ac8c9420b", + "label": "label-8150", + "height": 186, + "background": "blue" + }, + { + "key": "4815656f-2436-4cb1-b652-c8d981e7fb5f", + "label": "label-8151", + "height": 99, + "background": "green" + }, + { + "key": "b11c274b-3dfa-4494-9adf-a6413c73c94e", + "label": "label-8152", + "height": 174, + "background": "green" + }, + { + "key": "4b77c7ec-f812-467f-942e-53f61cf1a1cc", + "label": "label-8153", + "height": 240, + "background": "yellow" + }, + { + "key": "fcfaee52-a048-455b-87c7-ed865c3a0417", + "label": "label-8154", + "height": 217, + "background": "green" + }, + { + "key": "d43a1b09-9f2d-45d7-a65f-17307fc06458", + "label": "label-8155", + "height": 207, + "background": "green" + }, + { + "key": "b1b33d28-cc0e-4e19-9d7f-73794d52075e", + "label": "label-8156", + "height": 85, + "background": "red" + }, + { + "key": "a14ee500-967e-473d-a013-c456e72875bb", + "label": "label-8157", + "height": 311, + "background": "green" + }, + { + "key": "a5fa763d-5d26-4cfd-bdbc-1e528b9d30b3", + "label": "label-8158", + "height": 475, + "background": "yellow" + }, + { + "key": "0fe35e36-fd83-4176-8eef-8fd724febef6", + "label": "label-8159", + "height": 498, + "background": "red" + }, + { + "key": "14f4f11e-0270-42fa-95d9-4f25b281e28c", + "label": "label-8160", + "height": 196, + "background": "blue" + }, + { + "key": "aec2e763-c1c3-446b-8452-71d26f07d29a", + "label": "label-8161", + "height": 266, + "background": "green" + }, + { + "key": "691f54dc-8664-4e60-a501-a0cc55202601", + "label": "label-8162", + "height": 154, + "background": "green" + }, + { + "key": "302280d9-3652-4047-862a-c4a97c545973", + "label": "label-8163", + "height": 187, + "background": "red" + }, + { + "key": "40e88552-a402-40ce-8d5f-d479e0501a75", + "label": "label-8164", + "height": 375, + "background": "blue" + }, + { + "key": "5f3219c3-9d11-4f11-91f7-d4b6efb4f93d", + "label": "label-8165", + "height": 36, + "background": "red" + }, + { + "key": "bd9b8b0e-4bbf-401a-8970-9836e9552453", + "label": "label-8166", + "height": 246, + "background": "blue" + }, + { + "key": "3eedcfd6-4ff0-49ee-b873-54f24f851183", + "label": "label-8167", + "height": 331, + "background": "yellow" + }, + { + "key": "01dd4dd9-9c53-44a2-8c18-aa14e10a6149", + "label": "label-8168", + "height": 497, + "background": "red" + }, + { + "key": "8fda1b68-f3e5-4fa8-b259-14b6d4346b00", + "label": "label-8169", + "height": 176, + "background": "yellow" + }, + { + "key": "e56a3d77-dbdf-4338-a854-63dd6a9bdccb", + "label": "label-8170", + "height": 47, + "background": "green" + }, + { + "key": "1301fd97-7bcc-4dd6-936e-2bcbdcc6c4f0", + "label": "label-8171", + "height": 499, + "background": "blue" + }, + { + "key": "82427c09-891d-4a07-a2d0-f676071f05eb", + "label": "label-8172", + "height": 291, + "background": "yellow" + }, + { + "key": "e0002072-ae82-4487-9d6c-2623e08477c1", + "label": "label-8173", + "height": 498, + "background": "yellow" + }, + { + "key": "91a13fc9-83b1-413b-9692-c934712a6d93", + "label": "label-8174", + "height": 201, + "background": "yellow" + }, + { + "key": "337e2d04-ffb6-4408-912d-5260630f727e", + "label": "label-8175", + "height": 298, + "background": "green" + }, + { + "key": "5b46970f-4b43-433d-905f-1aab9302c3a8", + "label": "label-8176", + "height": 506, + "background": "green" + }, + { + "key": "e2f6970b-7c92-42fd-b3d3-d10fc34cfb19", + "label": "label-8177", + "height": 137, + "background": "green" + }, + { + "key": "64223b4e-8acb-4523-a2e3-7e6febca3ec5", + "label": "label-8178", + "height": 158, + "background": "green" + }, + { + "key": "1bfbf166-62c6-42a4-87fe-087dbed3ae31", + "label": "label-8179", + "height": 323, + "background": "red" + }, + { + "key": "9737aa41-73cc-4185-886b-9cf6519b45e5", + "label": "label-8180", + "height": 93, + "background": "blue" + }, + { + "key": "8aa0867e-1d7d-442e-879d-3b8b8eb61dc6", + "label": "label-8181", + "height": 324, + "background": "yellow" + }, + { + "key": "a71dfa26-484a-422b-ba02-5b87789bf88a", + "label": "label-8182", + "height": 334, + "background": "red" + }, + { + "key": "7275684f-bcc8-4841-9776-4a9665f2c927", + "label": "label-8183", + "height": 411, + "background": "blue" + }, + { + "key": "0a7025fd-6fb4-4fd4-aa23-0fa725b4c6b3", + "label": "label-8184", + "height": 66, + "background": "yellow" + }, + { + "key": "f50e6ced-f0da-4333-a049-e0ab875db851", + "label": "label-8185", + "height": 164, + "background": "green" + }, + { + "key": "84402581-e2ea-43e1-9338-1ff98c1609be", + "label": "label-8186", + "height": 424, + "background": "blue" + }, + { + "key": "619a4970-ff6a-49cf-9d2c-6bb15bbf5b60", + "label": "label-8187", + "height": 452, + "background": "blue" + }, + { + "key": "0a8872e2-00d2-434e-bebf-93ed17734c0d", + "label": "label-8188", + "height": 410, + "background": "green" + }, + { + "key": "5e9d7b06-b2ab-444a-807a-a9c5f3b03c12", + "label": "label-8189", + "height": 214, + "background": "red" + }, + { + "key": "2397c22c-0037-423b-b9f7-509b52b22f5b", + "label": "label-8190", + "height": 36, + "background": "red" + }, + { + "key": "f23538f4-5ffb-4810-876f-6ef99675d3b1", + "label": "label-8191", + "height": 133, + "background": "green" + }, + { + "key": "ccd8fee4-1b23-4d92-a067-116e02b10c5c", + "label": "label-8192", + "height": 188, + "background": "green" + }, + { + "key": "bb68fe8d-0869-47a2-a220-ed948b678c58", + "label": "label-8193", + "height": 254, + "background": "blue" + }, + { + "key": "7732bd24-6a50-4b46-97ac-7c9eb0b142dd", + "label": "label-8194", + "height": 454, + "background": "green" + }, + { + "key": "d5e4ff97-2af6-4892-b0df-15e8901a4fb2", + "label": "label-8195", + "height": 346, + "background": "yellow" + }, + { + "key": "227f2152-f234-4ad6-bf05-85b21f5c038e", + "label": "label-8196", + "height": 348, + "background": "yellow" + }, + { + "key": "fbc1bb5b-d609-475f-a182-d5913d8c6e4f", + "label": "label-8197", + "height": 348, + "background": "red" + }, + { + "key": "5d7744d6-9c6e-4f77-9337-9f05131471c6", + "label": "label-8198", + "height": 255, + "background": "green" + }, + { + "key": "b9978498-aef0-4104-afa4-5fd218d68f47", + "label": "label-8199", + "height": 158, + "background": "yellow" + }, + { + "key": "8eba063b-44b7-4a22-884f-b3f6c67bf3e4", + "label": "label-8200", + "height": 336, + "background": "red" + }, + { + "key": "4bb600f4-3ca6-4c58-988c-87e3897f48e8", + "label": "label-8201", + "height": 213, + "background": "blue" + }, + { + "key": "4101b63c-f1cb-42ac-b5ba-c8d81268a43a", + "label": "label-8202", + "height": 509, + "background": "red" + }, + { + "key": "c51dd961-2193-4d68-8414-44a0512888a0", + "label": "label-8203", + "height": 41, + "background": "green" + }, + { + "key": "303a1d91-e4f6-464f-a242-47b0d7d039e5", + "label": "label-8204", + "height": 164, + "background": "blue" + }, + { + "key": "7b679207-d251-48f9-8834-340b26f3c302", + "label": "label-8205", + "height": 480, + "background": "green" + }, + { + "key": "dce5fabc-3d5a-4489-9d65-32fc39ab9aa7", + "label": "label-8206", + "height": 39, + "background": "blue" + }, + { + "key": "99fb0496-0afc-4b5c-b9fd-45653f941dc0", + "label": "label-8207", + "height": 403, + "background": "yellow" + }, + { + "key": "b1bd64b5-5e12-4f53-bb3a-60b182f4c1a7", + "label": "label-8208", + "height": 493, + "background": "blue" + }, + { + "key": "cb3d792c-6986-4e60-b6b4-d531ec0b8d14", + "label": "label-8209", + "height": 75, + "background": "red" + }, + { + "key": "1eebfe16-0498-4b49-b476-01ad3dd2bd35", + "label": "label-8210", + "height": 224, + "background": "red" + }, + { + "key": "77cd703c-696d-4a68-a960-f331a8f0b704", + "label": "label-8211", + "height": 481, + "background": "green" + }, + { + "key": "f30b62e2-479f-48e6-9d4e-02d1914fd734", + "label": "label-8212", + "height": 279, + "background": "green" + }, + { + "key": "7377d252-3b28-4e0b-a6bf-11c775fd8afc", + "label": "label-8213", + "height": 312, + "background": "yellow" + }, + { + "key": "a150a64c-a053-48db-b9b0-d687dffb2dd6", + "label": "label-8214", + "height": 373, + "background": "green" + }, + { + "key": "e40c811e-c31c-48e8-9aaa-3f29f0780f45", + "label": "label-8215", + "height": 134, + "background": "green" + }, + { + "key": "4ebdf003-07b5-4de6-89c8-616a36a4e6bb", + "label": "label-8216", + "height": 469, + "background": "red" + }, + { + "key": "b0c454dc-63c7-489b-a2ce-eb3ef2539376", + "label": "label-8217", + "height": 146, + "background": "blue" + }, + { + "key": "26fb60d3-9c28-42e2-a381-f900cb710827", + "label": "label-8218", + "height": 268, + "background": "red" + }, + { + "key": "e676edd5-4bf5-451c-8535-538259bcaf9e", + "label": "label-8219", + "height": 319, + "background": "yellow" + }, + { + "key": "09b32ed0-4584-431a-9060-b85a222403f3", + "label": "label-8220", + "height": 154, + "background": "red" + }, + { + "key": "9a667b3a-7d59-4f6f-8757-90fbdfb19f66", + "label": "label-8221", + "height": 375, + "background": "blue" + }, + { + "key": "ab32a20a-52f8-47f5-8bee-d7312b032ecf", + "label": "label-8222", + "height": 71, + "background": "yellow" + }, + { + "key": "dc27e94d-5809-4191-ba18-060d660ceebf", + "label": "label-8223", + "height": 337, + "background": "yellow" + }, + { + "key": "b2ab354e-3318-4c51-9898-147abe8d3472", + "label": "label-8224", + "height": 173, + "background": "yellow" + }, + { + "key": "96e460b7-c544-4b67-8e7f-f21597612cc3", + "label": "label-8225", + "height": 481, + "background": "yellow" + }, + { + "key": "46c95595-92df-4143-a926-e26f0097c76d", + "label": "label-8226", + "height": 57, + "background": "green" + }, + { + "key": "499e6e7e-4529-4ad2-b157-0678219f67fd", + "label": "label-8227", + "height": 500, + "background": "green" + }, + { + "key": "067de849-87be-44e8-b009-420d5b1dba33", + "label": "label-8228", + "height": 175, + "background": "blue" + }, + { + "key": "68a47db5-cb73-436b-b3f8-bdfd728cd784", + "label": "label-8229", + "height": 178, + "background": "yellow" + }, + { + "key": "972d0043-6c42-4b42-8b68-db620e947c64", + "label": "label-8230", + "height": 94, + "background": "green" + }, + { + "key": "f0e2e526-2e60-4a7c-a027-9cf18299f94b", + "label": "label-8231", + "height": 250, + "background": "blue" + }, + { + "key": "3d5387f7-765d-40bb-a6d0-c696f8e9141e", + "label": "label-8232", + "height": 301, + "background": "yellow" + }, + { + "key": "2f118d11-b421-4acf-bd39-337cd850c9b8", + "label": "label-8233", + "height": 506, + "background": "red" + }, + { + "key": "965dac23-239f-4d78-80db-5510e304abbd", + "label": "label-8234", + "height": 122, + "background": "yellow" + }, + { + "key": "6f9567b6-d515-4532-be5b-034babf73b97", + "label": "label-8235", + "height": 492, + "background": "red" + }, + { + "key": "07cdc890-e24c-4bc8-9bf1-76fe0e8a67ab", + "label": "label-8236", + "height": 424, + "background": "red" + }, + { + "key": "193d8146-4449-4261-9000-db2b238d081c", + "label": "label-8237", + "height": 528, + "background": "yellow" + }, + { + "key": "ecd47ee8-915a-4383-8c46-88bacab1f717", + "label": "label-8238", + "height": 215, + "background": "red" + }, + { + "key": "f2e44ba3-852c-42cd-ab38-65e20138b164", + "label": "label-8239", + "height": 165, + "background": "yellow" + }, + { + "key": "86716200-d60d-4ed2-a12e-3816e7fc7a13", + "label": "label-8240", + "height": 171, + "background": "red" + }, + { + "key": "0ed006e6-f332-4efb-8c72-8922699458e2", + "label": "label-8241", + "height": 232, + "background": "green" + }, + { + "key": "f2641208-cdcc-4268-960a-a26588f8ed20", + "label": "label-8242", + "height": 405, + "background": "green" + }, + { + "key": "b8baab9f-dbd6-486a-932b-9d04f8239e54", + "label": "label-8243", + "height": 403, + "background": "blue" + }, + { + "key": "64702767-c09d-4d8b-b202-abfe9db3e3b6", + "label": "label-8244", + "height": 453, + "background": "red" + }, + { + "key": "3c72dd3a-f75b-48aa-a8bf-bb8811893a2a", + "label": "label-8245", + "height": 440, + "background": "yellow" + }, + { + "key": "51c9a13b-7d4a-4f21-b8e5-872fd8388824", + "label": "label-8246", + "height": 397, + "background": "green" + }, + { + "key": "0033327f-d0b1-4449-8145-a728ef1ef00f", + "label": "label-8247", + "height": 269, + "background": "blue" + }, + { + "key": "9582c3cc-019f-4fa1-927b-0cf91b3063f5", + "label": "label-8248", + "height": 109, + "background": "blue" + }, + { + "key": "13b5bc12-68bd-4f25-b485-9a6069d4fbd0", + "label": "label-8249", + "height": 85, + "background": "red" + }, + { + "key": "adff9d56-942c-454e-9d22-3cdbbb857987", + "label": "label-8250", + "height": 165, + "background": "yellow" + }, + { + "key": "80fcf4d3-2129-4763-8218-78a2416a5e60", + "label": "label-8251", + "height": 441, + "background": "red" + }, + { + "key": "f7268c59-ea9a-44e4-aa32-0ae2aaba67be", + "label": "label-8252", + "height": 152, + "background": "yellow" + }, + { + "key": "1983c6b1-4440-4b22-85a4-deb8b58e03e6", + "label": "label-8253", + "height": 178, + "background": "red" + }, + { + "key": "a62dcc3f-2c6e-4151-b176-8a628dc3ffe1", + "label": "label-8254", + "height": 200, + "background": "green" + }, + { + "key": "d5456e62-9972-485d-8891-cc7ba83cacc3", + "label": "label-8255", + "height": 335, + "background": "blue" + }, + { + "key": "656eb2c8-398f-44f3-9bcc-14ee98bb10b8", + "label": "label-8256", + "height": 194, + "background": "yellow" + }, + { + "key": "af9ed4c7-3a6a-48a8-949e-e6d4e2936039", + "label": "label-8257", + "height": 429, + "background": "green" + }, + { + "key": "5dad7427-51ea-4b0c-a84a-d43e7d5f2d79", + "label": "label-8258", + "height": 234, + "background": "red" + }, + { + "key": "82952a3d-e5ec-4064-88f0-534f75ba5bde", + "label": "label-8259", + "height": 300, + "background": "yellow" + }, + { + "key": "38d24f1e-b056-4912-b244-0e10fb8dd731", + "label": "label-8260", + "height": 236, + "background": "red" + }, + { + "key": "9addaabf-408b-4f9e-8b27-ef035e22adb1", + "label": "label-8261", + "height": 381, + "background": "blue" + }, + { + "key": "061506a4-9ac7-479e-b92c-7a057694e3b9", + "label": "label-8262", + "height": 273, + "background": "green" + }, + { + "key": "4de11edc-be5f-4fe4-a5c8-e477d550f8f4", + "label": "label-8263", + "height": 101, + "background": "yellow" + }, + { + "key": "ad496051-f707-49e5-9e6d-b03e4f9c944f", + "label": "label-8264", + "height": 530, + "background": "green" + }, + { + "key": "8ba985b8-6474-4473-9c20-d2288a099a11", + "label": "label-8265", + "height": 35, + "background": "blue" + }, + { + "key": "bc8c75ae-2bb5-4d84-bab8-517bc6e192e6", + "label": "label-8266", + "height": 380, + "background": "green" + }, + { + "key": "824e1b35-98e1-4c76-bfdc-29ab3db1b850", + "label": "label-8267", + "height": 313, + "background": "green" + }, + { + "key": "2e670361-91c1-46e8-a9f6-c5f2b03b50d1", + "label": "label-8268", + "height": 368, + "background": "green" + }, + { + "key": "45f8c63d-5b5f-4266-a0df-df9505c8515f", + "label": "label-8269", + "height": 155, + "background": "yellow" + }, + { + "key": "eb765b2e-7237-44e2-96a4-da1eee2783d9", + "label": "label-8270", + "height": 364, + "background": "green" + }, + { + "key": "198d8bdb-8c0b-4300-9abe-5a5ad56e586f", + "label": "label-8271", + "height": 512, + "background": "green" + }, + { + "key": "872a6aa4-f5a4-43e1-84a8-399d42f28335", + "label": "label-8272", + "height": 278, + "background": "red" + }, + { + "key": "ae57a14e-504c-4d39-95e4-56dc1763610d", + "label": "label-8273", + "height": 367, + "background": "green" + }, + { + "key": "1729cb5d-74ec-4dac-a677-4c0cac975d2c", + "label": "label-8274", + "height": 77, + "background": "yellow" + }, + { + "key": "c004a7f6-0f73-4df7-9d88-721c3916c70a", + "label": "label-8275", + "height": 417, + "background": "blue" + }, + { + "key": "7d0ff908-6243-4b88-b650-a014564a3337", + "label": "label-8276", + "height": 527, + "background": "yellow" + }, + { + "key": "5ca93aa5-fef8-4f36-a454-e0ffef933f1c", + "label": "label-8277", + "height": 476, + "background": "green" + }, + { + "key": "80e6576b-d407-4774-bb7f-19551e218f79", + "label": "label-8278", + "height": 67, + "background": "red" + }, + { + "key": "fd9a882a-285d-47c6-8825-183bc8de84be", + "label": "label-8279", + "height": 420, + "background": "yellow" + }, + { + "key": "735544d3-29bf-4dc6-98c6-f2b9a1959da9", + "label": "label-8280", + "height": 117, + "background": "yellow" + }, + { + "key": "2658c01e-159a-4a46-af66-ad9e776f586a", + "label": "label-8281", + "height": 268, + "background": "yellow" + }, + { + "key": "3d142742-b9cf-469b-bd5c-136060cb7b70", + "label": "label-8282", + "height": 143, + "background": "yellow" + }, + { + "key": "4818e260-f6c1-40ce-8665-7218f06ab3fd", + "label": "label-8283", + "height": 409, + "background": "yellow" + }, + { + "key": "61c984a8-5b73-4c68-8b09-1be2a3508c4b", + "label": "label-8284", + "height": 141, + "background": "yellow" + }, + { + "key": "bfa71edf-ef33-42f0-84f7-0c86555cc35d", + "label": "label-8285", + "height": 88, + "background": "red" + }, + { + "key": "27ab405a-5b45-4e21-acb5-dcd13eaf800c", + "label": "label-8286", + "height": 70, + "background": "red" + }, + { + "key": "dc78d66e-5e47-4a5b-9fe0-7a19f3476e3a", + "label": "label-8287", + "height": 432, + "background": "yellow" + }, + { + "key": "181b7b5e-e2ce-4600-887a-afe85d1881bd", + "label": "label-8288", + "height": 190, + "background": "red" + }, + { + "key": "13894497-872e-4eeb-829d-51b73cf889a9", + "label": "label-8289", + "height": 445, + "background": "yellow" + }, + { + "key": "b078a8d9-233f-4f0c-9f46-24fc593f56e5", + "label": "label-8290", + "height": 455, + "background": "green" + }, + { + "key": "7f8230f4-b213-4205-8fcd-b8d419555f7b", + "label": "label-8291", + "height": 258, + "background": "blue" + }, + { + "key": "cdeb1887-c398-4089-bb8e-a196082bb077", + "label": "label-8292", + "height": 261, + "background": "red" + }, + { + "key": "ec87687c-e95e-4c79-a60a-eac1cf693c43", + "label": "label-8293", + "height": 380, + "background": "green" + }, + { + "key": "4b84bb52-655e-4977-a4e5-24780cf9d143", + "label": "label-8294", + "height": 512, + "background": "blue" + }, + { + "key": "2dcb1ab9-1e5e-41b3-aff0-9e2aaf490bab", + "label": "label-8295", + "height": 39, + "background": "yellow" + }, + { + "key": "03353140-2e90-4a39-8385-54032e0b7570", + "label": "label-8296", + "height": 430, + "background": "red" + }, + { + "key": "1436b03c-73c9-480f-9da3-a7c560e99106", + "label": "label-8297", + "height": 315, + "background": "red" + }, + { + "key": "a467cf61-2e69-40de-921b-5dcd1ae82bac", + "label": "label-8298", + "height": 152, + "background": "red" + }, + { + "key": "d02dfac6-05ce-46ea-9149-50106cfb1bf0", + "label": "label-8299", + "height": 271, + "background": "green" + }, + { + "key": "ba95fee6-ca4d-4678-92b0-fe3973e76c0d", + "label": "label-8300", + "height": 124, + "background": "blue" + }, + { + "key": "054bae24-f7a2-4feb-ab57-1ef6959337ea", + "label": "label-8301", + "height": 194, + "background": "yellow" + }, + { + "key": "81a2cfb5-7c6c-46fc-9369-6878fbd9738d", + "label": "label-8302", + "height": 205, + "background": "blue" + }, + { + "key": "f15682b0-8b51-415d-a3ec-817214c1cf53", + "label": "label-8303", + "height": 343, + "background": "red" + }, + { + "key": "aeaa7e59-2cc1-49ff-ab55-6e51dc45b6a9", + "label": "label-8304", + "height": 109, + "background": "red" + }, + { + "key": "37d03c32-498c-4ae8-8fd6-3d7ecf6cff4e", + "label": "label-8305", + "height": 426, + "background": "green" + }, + { + "key": "46616e31-9e7d-460d-bca5-13f8abcecf10", + "label": "label-8306", + "height": 398, + "background": "blue" + }, + { + "key": "b03e1046-007d-4691-83fa-26525e28874b", + "label": "label-8307", + "height": 210, + "background": "blue" + }, + { + "key": "3de31294-f44b-4d39-b147-c42b70cf802f", + "label": "label-8308", + "height": 191, + "background": "green" + }, + { + "key": "d0ddb79c-b77f-4cbc-97bf-ce78b30579e6", + "label": "label-8309", + "height": 363, + "background": "red" + }, + { + "key": "d7ed9809-2c1a-43ce-804a-8c6f12f226fe", + "label": "label-8310", + "height": 33, + "background": "red" + }, + { + "key": "ae1b2b6b-9014-41d6-ae09-681392eb230d", + "label": "label-8311", + "height": 70, + "background": "red" + }, + { + "key": "96261fb1-1490-4b20-b03f-afe98bb72b35", + "label": "label-8312", + "height": 167, + "background": "yellow" + }, + { + "key": "a5e07ecf-f213-4ab6-9d91-3eebcb9d9ea4", + "label": "label-8313", + "height": 521, + "background": "red" + }, + { + "key": "04c7297a-a2bc-4192-8837-fbffb5b66c07", + "label": "label-8314", + "height": 192, + "background": "green" + }, + { + "key": "5c777d2d-b165-4ce9-b9e2-2d3cb8230fd8", + "label": "label-8315", + "height": 262, + "background": "green" + }, + { + "key": "82c900a9-0686-4880-8963-bce84da61cd9", + "label": "label-8316", + "height": 118, + "background": "green" + }, + { + "key": "59d78c9d-c442-48fb-8d40-6c71a5e5c2a0", + "label": "label-8317", + "height": 370, + "background": "blue" + }, + { + "key": "1c70ecec-0015-495b-9d55-10a0e6412f03", + "label": "label-8318", + "height": 530, + "background": "red" + }, + { + "key": "76559426-495b-415c-b1c9-84887a1f419b", + "label": "label-8319", + "height": 294, + "background": "yellow" + }, + { + "key": "a80dc934-1ffa-4893-bc51-c8266857ef9e", + "label": "label-8320", + "height": 258, + "background": "yellow" + }, + { + "key": "7c07bd4b-8d79-47bd-8af0-7dbccdf70456", + "label": "label-8321", + "height": 160, + "background": "yellow" + }, + { + "key": "46f488be-58ee-4e8c-b57c-c8c2cb25eb68", + "label": "label-8322", + "height": 517, + "background": "red" + }, + { + "key": "c5698692-7dba-4a66-b41f-4a6ceaa80456", + "label": "label-8323", + "height": 485, + "background": "yellow" + }, + { + "key": "3e5ab31a-d777-441b-9d3c-b02caab181ed", + "label": "label-8324", + "height": 170, + "background": "blue" + }, + { + "key": "175f28d6-5272-4201-a44c-4fb426b93a6a", + "label": "label-8325", + "height": 80, + "background": "red" + }, + { + "key": "aeccf805-1a52-49ee-89f5-9cc48d8464b9", + "label": "label-8326", + "height": 448, + "background": "yellow" + }, + { + "key": "5c7da110-f5d3-4619-bfc3-2bbb9076a3ce", + "label": "label-8327", + "height": 337, + "background": "blue" + }, + { + "key": "320de35c-6035-4be3-b08f-153692f7b41c", + "label": "label-8328", + "height": 476, + "background": "yellow" + }, + { + "key": "81525a7c-47a7-4d26-a942-129b1ea0888d", + "label": "label-8329", + "height": 95, + "background": "blue" + }, + { + "key": "5fa77502-913d-4faa-8d7a-3165a7f5e8e7", + "label": "label-8330", + "height": 38, + "background": "yellow" + }, + { + "key": "565171be-3765-4a0e-a274-60c498614bef", + "label": "label-8331", + "height": 515, + "background": "green" + }, + { + "key": "cf5b1f8e-b821-4837-b538-3504dccba1c5", + "label": "label-8332", + "height": 415, + "background": "blue" + }, + { + "key": "3b635bf3-7d72-4029-937e-4df8425af991", + "label": "label-8333", + "height": 200, + "background": "yellow" + }, + { + "key": "2974e655-fcd2-4fc0-b199-3363bbb008fc", + "label": "label-8334", + "height": 140, + "background": "green" + }, + { + "key": "b2b1d4dd-8aba-4075-be82-bd14df04663a", + "label": "label-8335", + "height": 326, + "background": "red" + }, + { + "key": "a0a18e7f-67de-4d83-a9f4-1c507b19e24a", + "label": "label-8336", + "height": 410, + "background": "red" + }, + { + "key": "f071279a-207d-47e8-a07d-2ac5491d1284", + "label": "label-8337", + "height": 388, + "background": "blue" + }, + { + "key": "e5ea55ce-9be3-4647-86d5-bf5189f29879", + "label": "label-8338", + "height": 326, + "background": "green" + }, + { + "key": "f9c61281-cf1b-4385-9a19-bc32fde8c29d", + "label": "label-8339", + "height": 297, + "background": "green" + }, + { + "key": "827709c4-f3c7-446a-a923-c21585dd4ce2", + "label": "label-8340", + "height": 382, + "background": "yellow" + }, + { + "key": "b3e26868-1798-4e7e-9348-6a2dba6c9c04", + "label": "label-8341", + "height": 425, + "background": "green" + }, + { + "key": "87448592-7fbd-4cbc-b35e-15dc3980d591", + "label": "label-8342", + "height": 461, + "background": "yellow" + }, + { + "key": "fca5c64e-e1cd-44aa-abce-ab77b8d23704", + "label": "label-8343", + "height": 418, + "background": "green" + }, + { + "key": "1e5bcca3-09e3-422f-bf07-1d49916ec343", + "label": "label-8344", + "height": 237, + "background": "red" + }, + { + "key": "fd9c5db9-d0f8-4c5d-a1f4-0cff3b1451a0", + "label": "label-8345", + "height": 33, + "background": "red" + }, + { + "key": "389308dd-bb69-45a5-9309-6bd77570d865", + "label": "label-8346", + "height": 426, + "background": "blue" + }, + { + "key": "18b73b54-763a-47cf-bda5-da36fe849700", + "label": "label-8347", + "height": 409, + "background": "yellow" + }, + { + "key": "1e91d34f-8e40-4e2d-8046-010e3a8f42aa", + "label": "label-8348", + "height": 443, + "background": "green" + }, + { + "key": "c8b119d7-e635-40e3-80a4-2ef2c278c132", + "label": "label-8349", + "height": 298, + "background": "blue" + }, + { + "key": "e54e6051-8e64-4387-8922-d8bc54f2834a", + "label": "label-8350", + "height": 165, + "background": "blue" + }, + { + "key": "5bff392a-3f48-487a-992f-30325f0ed808", + "label": "label-8351", + "height": 231, + "background": "blue" + }, + { + "key": "2196d61d-6ce7-43da-a967-f72f5455dc34", + "label": "label-8352", + "height": 461, + "background": "red" + }, + { + "key": "f72afa41-3847-493b-b34a-085108cb99fd", + "label": "label-8353", + "height": 146, + "background": "red" + }, + { + "key": "1cd2632c-73f6-4054-9dfd-eb98e3e4495e", + "label": "label-8354", + "height": 428, + "background": "yellow" + }, + { + "key": "590a81f6-b691-4f59-a911-aec42424afbb", + "label": "label-8355", + "height": 370, + "background": "green" + }, + { + "key": "ae013f8a-cdb6-48a9-b460-7c1f75c7af57", + "label": "label-8356", + "height": 362, + "background": "blue" + }, + { + "key": "2150f8e3-b181-4b41-a1da-81b8ae1a728a", + "label": "label-8357", + "height": 491, + "background": "red" + }, + { + "key": "019bc8e9-65c5-4fd1-9f2e-416ae1af3dee", + "label": "label-8358", + "height": 475, + "background": "red" + }, + { + "key": "fdbab4cc-2ab7-46f2-8259-dcacfc004dcf", + "label": "label-8359", + "height": 50, + "background": "red" + }, + { + "key": "de1bab02-8c12-4278-bd8d-3a072d55ca94", + "label": "label-8360", + "height": 288, + "background": "green" + }, + { + "key": "c796dc19-fc93-4c02-a076-2a36d656662c", + "label": "label-8361", + "height": 412, + "background": "red" + }, + { + "key": "e7bd07fe-6a49-4990-9cb3-26735f6d2ff7", + "label": "label-8362", + "height": 379, + "background": "red" + }, + { + "key": "04817ead-22fc-48aa-afa6-b20b25816821", + "label": "label-8363", + "height": 87, + "background": "green" + }, + { + "key": "46f684f6-2eb9-4dab-9af5-96fb8f2ee073", + "label": "label-8364", + "height": 55, + "background": "green" + }, + { + "key": "f9fb188a-09fe-4177-8dd1-7c578831e101", + "label": "label-8365", + "height": 69, + "background": "blue" + }, + { + "key": "37f697c5-78a2-4289-bd51-b7363a41d866", + "label": "label-8366", + "height": 457, + "background": "red" + }, + { + "key": "b816d7d8-eef1-4cba-ab9c-353bd06ee7e7", + "label": "label-8367", + "height": 410, + "background": "yellow" + }, + { + "key": "23b6c602-01c8-41b1-9bbd-67660c5e62da", + "label": "label-8368", + "height": 220, + "background": "yellow" + }, + { + "key": "b4e6dd32-6fb4-4526-b332-54ef0cc09dda", + "label": "label-8369", + "height": 410, + "background": "red" + }, + { + "key": "d0be9714-5b2e-4917-8f59-6fba9dc664f8", + "label": "label-8370", + "height": 154, + "background": "blue" + }, + { + "key": "90b7e7fb-f6fd-4879-b3e9-72ac64033c4e", + "label": "label-8371", + "height": 75, + "background": "blue" + }, + { + "key": "07abc0d6-6bcb-4768-bdab-57de74206f39", + "label": "label-8372", + "height": 442, + "background": "red" + }, + { + "key": "e8fcfe0f-e5b5-4e61-b8b0-98f640e1b617", + "label": "label-8373", + "height": 239, + "background": "green" + }, + { + "key": "8e58e043-7ca9-4e44-b421-32cba34fc5c8", + "label": "label-8374", + "height": 320, + "background": "green" + }, + { + "key": "0db8320b-af5c-4420-894f-7fae69321d10", + "label": "label-8375", + "height": 296, + "background": "yellow" + }, + { + "key": "579d5054-5031-4757-a5a1-538403c6b978", + "label": "label-8376", + "height": 157, + "background": "red" + }, + { + "key": "9df9a6ee-2720-4b53-ab9d-1e8f9578dbbc", + "label": "label-8377", + "height": 380, + "background": "yellow" + }, + { + "key": "78e154d8-389d-4f05-b0bf-b2f21860c9c1", + "label": "label-8378", + "height": 463, + "background": "blue" + }, + { + "key": "2330279d-704a-4cdf-902b-2687b299222f", + "label": "label-8379", + "height": 94, + "background": "red" + }, + { + "key": "0f956cf7-aec4-4ecc-906e-1416d8bbad8c", + "label": "label-8380", + "height": 440, + "background": "green" + }, + { + "key": "52519852-59a4-442a-ab44-81ef10381848", + "label": "label-8381", + "height": 420, + "background": "green" + }, + { + "key": "540698b4-6970-47e7-802b-f4daf1dd2778", + "label": "label-8382", + "height": 142, + "background": "red" + }, + { + "key": "cc597511-7ee6-4989-ab36-a5c7264e3c56", + "label": "label-8383", + "height": 346, + "background": "green" + }, + { + "key": "87ee2c3a-30a4-4980-b506-9fe55cfc677d", + "label": "label-8384", + "height": 38, + "background": "yellow" + }, + { + "key": "43e65976-4a9a-4681-af4d-72a8861c461c", + "label": "label-8385", + "height": 338, + "background": "yellow" + }, + { + "key": "8b82409e-452b-4ab8-a510-36d66179b555", + "label": "label-8386", + "height": 230, + "background": "green" + }, + { + "key": "8e2aa5ce-9d1a-49ce-8c38-4fdc33a3ee61", + "label": "label-8387", + "height": 209, + "background": "blue" + }, + { + "key": "e1acfcb3-34b3-4186-8949-670357aea45c", + "label": "label-8388", + "height": 41, + "background": "green" + }, + { + "key": "1281ba69-e526-4453-89b3-c1242f65e2b8", + "label": "label-8389", + "height": 107, + "background": "green" + }, + { + "key": "0092f1b7-0dda-4aed-812c-9a46852fbb16", + "label": "label-8390", + "height": 338, + "background": "yellow" + }, + { + "key": "a6e94e8f-e5ce-433b-98ed-0492df0d4fc5", + "label": "label-8391", + "height": 448, + "background": "blue" + }, + { + "key": "7c53f2a2-a412-4d63-b94a-99597102ff4a", + "label": "label-8392", + "height": 216, + "background": "yellow" + }, + { + "key": "afec2bc7-0f40-4f83-8894-906bb81bddcc", + "label": "label-8393", + "height": 426, + "background": "green" + }, + { + "key": "d5606490-6dda-4f07-825f-3dcb8fc92a6d", + "label": "label-8394", + "height": 409, + "background": "green" + }, + { + "key": "de136f51-3381-4234-ba51-60c796210f09", + "label": "label-8395", + "height": 290, + "background": "blue" + }, + { + "key": "4a73f1be-5362-4112-8886-434c4d1501d1", + "label": "label-8396", + "height": 413, + "background": "red" + }, + { + "key": "a42ca8ba-0a88-4b9e-93dc-ade921b6371e", + "label": "label-8397", + "height": 483, + "background": "red" + }, + { + "key": "2ccb8139-4e81-4086-9706-17d373973572", + "label": "label-8398", + "height": 478, + "background": "red" + }, + { + "key": "ac434847-6545-4238-b845-5f7dde0381ec", + "label": "label-8399", + "height": 519, + "background": "yellow" + }, + { + "key": "ffd30a7e-f7c3-4dbc-aaa9-f3c53d1d6b7f", + "label": "label-8400", + "height": 472, + "background": "red" + }, + { + "key": "082923cf-99f2-4b6c-840e-4178eb7caf53", + "label": "label-8401", + "height": 122, + "background": "yellow" + }, + { + "key": "497864cf-e739-4cf6-ab92-8b25aa75010a", + "label": "label-8402", + "height": 37, + "background": "red" + }, + { + "key": "1b759ed5-435c-4201-99f1-37aceaa20813", + "label": "label-8403", + "height": 477, + "background": "yellow" + }, + { + "key": "6a2dda10-6e23-4dea-990d-b8b1284f26b6", + "label": "label-8404", + "height": 191, + "background": "blue" + }, + { + "key": "c3195b6a-a2cd-4467-866e-f0b49ff97cb4", + "label": "label-8405", + "height": 193, + "background": "blue" + }, + { + "key": "acd1255a-64ad-424f-8d19-79c5a78336cb", + "label": "label-8406", + "height": 37, + "background": "blue" + }, + { + "key": "fdb08b53-759b-463f-ac21-65d5923686e2", + "label": "label-8407", + "height": 291, + "background": "blue" + }, + { + "key": "6be0d54d-729b-4482-99bc-0b3853efc52c", + "label": "label-8408", + "height": 376, + "background": "blue" + }, + { + "key": "8e3e437d-3e57-4e53-b36b-1e11c8aa81ad", + "label": "label-8409", + "height": 293, + "background": "yellow" + }, + { + "key": "952b1180-e7fb-4b4a-9e4b-2618e860c67d", + "label": "label-8410", + "height": 202, + "background": "blue" + }, + { + "key": "2b456898-3eed-4d7a-ba98-f78e179836dd", + "label": "label-8411", + "height": 442, + "background": "blue" + }, + { + "key": "ca58574b-ae69-42d1-b92e-60e37e029e7a", + "label": "label-8412", + "height": 403, + "background": "red" + }, + { + "key": "b4201d5b-1edc-4680-8500-a99d6e8f71f3", + "label": "label-8413", + "height": 300, + "background": "red" + }, + { + "key": "5d626b7b-92b7-4ca0-ab2c-7b6926f1dca9", + "label": "label-8414", + "height": 514, + "background": "blue" + }, + { + "key": "9d14f624-4bef-4e3e-8f85-6e3b87cb0cb3", + "label": "label-8415", + "height": 136, + "background": "green" + }, + { + "key": "de574e17-d0ea-4cde-8bfd-b3099e2aa8fa", + "label": "label-8416", + "height": 79, + "background": "red" + }, + { + "key": "dd14c033-7801-475b-9b66-a290d53244f4", + "label": "label-8417", + "height": 336, + "background": "yellow" + }, + { + "key": "cba7dbb9-7b6a-4639-877b-3a7da2a0b0ba", + "label": "label-8418", + "height": 57, + "background": "green" + }, + { + "key": "dcd33923-5c87-4f03-99f2-72489e5aa60d", + "label": "label-8419", + "height": 259, + "background": "red" + }, + { + "key": "de145116-a60d-4de2-b61b-35e66567ad04", + "label": "label-8420", + "height": 527, + "background": "green" + }, + { + "key": "838d9b57-4e28-41a0-bdac-89f20a668466", + "label": "label-8421", + "height": 478, + "background": "yellow" + }, + { + "key": "eef7082d-96d8-4832-bd8d-e2673a1a672d", + "label": "label-8422", + "height": 111, + "background": "yellow" + }, + { + "key": "c0d255e5-7ca8-4e18-ab44-61de0e3b581c", + "label": "label-8423", + "height": 377, + "background": "red" + }, + { + "key": "05b07640-d2f8-41e4-838f-6ff377c08fa7", + "label": "label-8424", + "height": 46, + "background": "yellow" + }, + { + "key": "b07ecba8-d389-4d8f-9604-3457281c190c", + "label": "label-8425", + "height": 281, + "background": "yellow" + }, + { + "key": "a53466dd-1679-4a41-89df-071817fdb72a", + "label": "label-8426", + "height": 118, + "background": "green" + }, + { + "key": "c8f17eaf-a27d-4aee-99de-aa64168f2172", + "label": "label-8427", + "height": 102, + "background": "blue" + }, + { + "key": "a368c3ba-a8e3-4ec8-ba57-5d05b13bd562", + "label": "label-8428", + "height": 423, + "background": "blue" + }, + { + "key": "bf5b737e-aab8-443c-9ba3-76c3db082ef1", + "label": "label-8429", + "height": 379, + "background": "green" + }, + { + "key": "4627636f-c74a-45ca-a1a3-f4f2fbfa3087", + "label": "label-8430", + "height": 97, + "background": "yellow" + }, + { + "key": "a9d35d26-967d-4e51-b981-38d6082f7e15", + "label": "label-8431", + "height": 50, + "background": "red" + }, + { + "key": "c04e53ee-b823-4cf2-8461-6426af601db3", + "label": "label-8432", + "height": 518, + "background": "yellow" + }, + { + "key": "68072c8a-e3de-4f8c-9df5-9f22dc81b598", + "label": "label-8433", + "height": 373, + "background": "blue" + }, + { + "key": "3caaeb6f-f9d9-4546-af54-a56c0776303c", + "label": "label-8434", + "height": 424, + "background": "blue" + }, + { + "key": "79a8c8e8-4b0f-4558-b2d8-477a571c234b", + "label": "label-8435", + "height": 260, + "background": "red" + }, + { + "key": "7f33bf9d-9ee4-47cd-9a1b-0e7e46bc40af", + "label": "label-8436", + "height": 318, + "background": "yellow" + }, + { + "key": "4c91c98a-f7d6-4c4b-8cd2-52d8c097fd47", + "label": "label-8437", + "height": 504, + "background": "yellow" + }, + { + "key": "a858d975-21ba-400a-8e7c-89ebaad0044b", + "label": "label-8438", + "height": 376, + "background": "green" + }, + { + "key": "b9f6f5c7-be4d-465a-b67b-5b502eb1f0db", + "label": "label-8439", + "height": 439, + "background": "blue" + }, + { + "key": "f75ff869-efb0-413a-b9d0-d65363b6c388", + "label": "label-8440", + "height": 320, + "background": "green" + }, + { + "key": "0c17d458-91aa-4a03-b28e-74c4732393eb", + "label": "label-8441", + "height": 277, + "background": "green" + }, + { + "key": "def4695b-2f53-4e76-af50-45261e190201", + "label": "label-8442", + "height": 466, + "background": "yellow" + }, + { + "key": "086e131d-9df2-4b86-b249-4a028f6ee905", + "label": "label-8443", + "height": 232, + "background": "red" + }, + { + "key": "1270c75d-2c9b-4e82-8a16-a3b8bd632c92", + "label": "label-8444", + "height": 454, + "background": "blue" + }, + { + "key": "9e1d9096-ef2a-445a-98b8-dc5d4dd3aab5", + "label": "label-8445", + "height": 495, + "background": "blue" + }, + { + "key": "9ed7ebed-2993-486c-a072-dbb773cbda59", + "label": "label-8446", + "height": 115, + "background": "blue" + }, + { + "key": "c0167d1b-a776-4a03-9960-7034ab85e712", + "label": "label-8447", + "height": 249, + "background": "blue" + }, + { + "key": "c1f502d0-b69b-41e0-a8a9-14205c3d45c9", + "label": "label-8448", + "height": 259, + "background": "red" + }, + { + "key": "efa42348-1669-4475-8c50-af07c44d2b2b", + "label": "label-8449", + "height": 159, + "background": "blue" + }, + { + "key": "89b80b99-e7da-4eb0-aa4c-0b3b10e6c23c", + "label": "label-8450", + "height": 434, + "background": "red" + }, + { + "key": "6d4ebf9d-ecc9-4303-9b54-4b7d06d5edb7", + "label": "label-8451", + "height": 237, + "background": "red" + }, + { + "key": "1f5b7514-849f-4b85-87f2-33f305a3f0e6", + "label": "label-8452", + "height": 441, + "background": "green" + }, + { + "key": "52ff4400-f6de-46d0-a5b3-5725d11434b9", + "label": "label-8453", + "height": 496, + "background": "blue" + }, + { + "key": "b41f34bc-7bd2-40f0-b3d6-e48c4c2edded", + "label": "label-8454", + "height": 435, + "background": "blue" + }, + { + "key": "02564ad2-6667-461a-884e-d480ae315af5", + "label": "label-8455", + "height": 397, + "background": "yellow" + }, + { + "key": "82ce6f84-0e53-4f41-8f70-662fe894bef7", + "label": "label-8456", + "height": 100, + "background": "yellow" + }, + { + "key": "27ebc797-e4b4-4353-84d0-70a1ba9ae02e", + "label": "label-8457", + "height": 272, + "background": "green" + }, + { + "key": "10866abc-e353-4257-b7ae-f67c44399fa4", + "label": "label-8458", + "height": 266, + "background": "green" + }, + { + "key": "aec40dad-0197-45d0-85a1-31a891c10299", + "label": "label-8459", + "height": 200, + "background": "yellow" + }, + { + "key": "c2bff126-bdbb-4761-bfca-af6ef3a6f385", + "label": "label-8460", + "height": 219, + "background": "blue" + }, + { + "key": "d5899870-369f-463c-aeb5-bea84774aee3", + "label": "label-8461", + "height": 154, + "background": "blue" + }, + { + "key": "6c172ae6-fe89-4094-9619-b049c175be7e", + "label": "label-8462", + "height": 272, + "background": "blue" + }, + { + "key": "505d063c-0bde-464b-9ad2-93d765df0541", + "label": "label-8463", + "height": 487, + "background": "green" + }, + { + "key": "f6a66286-f930-4ddc-9888-8daf1bb655b5", + "label": "label-8464", + "height": 59, + "background": "green" + }, + { + "key": "f5aae3e6-03ad-406f-a156-c6469cfc1119", + "label": "label-8465", + "height": 63, + "background": "red" + }, + { + "key": "6740648f-87f9-4d23-9932-632d29643177", + "label": "label-8466", + "height": 67, + "background": "blue" + }, + { + "key": "aab1bd43-bb9e-4492-ad16-4018f38874a6", + "label": "label-8467", + "height": 156, + "background": "red" + }, + { + "key": "84548672-bf53-4279-ae9c-61ee061d7927", + "label": "label-8468", + "height": 145, + "background": "green" + }, + { + "key": "1b917ac5-8300-4b0a-b86b-ca04440ace6e", + "label": "label-8469", + "height": 57, + "background": "green" + }, + { + "key": "d9c06c0a-2803-4d39-9112-b655ac1adf5b", + "label": "label-8470", + "height": 180, + "background": "green" + }, + { + "key": "ca09ee30-2a7a-4414-acdb-95036a85735c", + "label": "label-8471", + "height": 363, + "background": "red" + }, + { + "key": "b66948aa-2ce1-41e6-b72a-e86653072d5a", + "label": "label-8472", + "height": 478, + "background": "yellow" + }, + { + "key": "b91f0f86-b8d1-4d57-bd5a-15fbc5bc39af", + "label": "label-8473", + "height": 40, + "background": "red" + }, + { + "key": "0edee14f-5d95-4e04-beb4-b31e22f44f27", + "label": "label-8474", + "height": 458, + "background": "red" + }, + { + "key": "65025482-0e8d-4cd8-80a2-a5f125fbb65f", + "label": "label-8475", + "height": 151, + "background": "blue" + }, + { + "key": "161c5eb8-45eb-4298-80b4-7a1b0ddf93af", + "label": "label-8476", + "height": 279, + "background": "yellow" + }, + { + "key": "e126fb05-8ee6-48ab-8a4c-85d81d538155", + "label": "label-8477", + "height": 265, + "background": "green" + }, + { + "key": "a10d3aaf-1f58-4181-acbb-ec7e50659e83", + "label": "label-8478", + "height": 62, + "background": "green" + }, + { + "key": "7d9847fa-48a1-4810-953e-944b5480e0ae", + "label": "label-8479", + "height": 60, + "background": "yellow" + }, + { + "key": "f94a6126-0b37-47ea-bb61-8e2d22437b38", + "label": "label-8480", + "height": 274, + "background": "green" + }, + { + "key": "ecad9ff4-82aa-4163-aaab-880fd7c2e355", + "label": "label-8481", + "height": 246, + "background": "blue" + }, + { + "key": "e689c346-e165-45d1-a24c-b8346318bc25", + "label": "label-8482", + "height": 489, + "background": "red" + }, + { + "key": "74c0e5b3-cc77-4597-bcb0-76deef679893", + "label": "label-8483", + "height": 442, + "background": "blue" + }, + { + "key": "eb78f7de-3c08-4084-8cc7-0a4029c5b573", + "label": "label-8484", + "height": 300, + "background": "green" + }, + { + "key": "f1decedb-d65e-4960-99b1-2d9589c7c7b4", + "label": "label-8485", + "height": 248, + "background": "green" + }, + { + "key": "c553967e-be7d-46e7-8387-669590a442ca", + "label": "label-8486", + "height": 528, + "background": "blue" + }, + { + "key": "9e6cfbef-c6e0-404e-999c-580aa0ec0bdf", + "label": "label-8487", + "height": 455, + "background": "red" + }, + { + "key": "a64c3712-e178-4b60-85f6-af48f153c5b2", + "label": "label-8488", + "height": 200, + "background": "green" + }, + { + "key": "a0302464-312d-4320-84c9-d1c561adce5b", + "label": "label-8489", + "height": 429, + "background": "green" + }, + { + "key": "09a2a3a5-1c31-4b4d-8e54-9de6b6cf0e19", + "label": "label-8490", + "height": 36, + "background": "yellow" + }, + { + "key": "f17ac52d-70d4-4f94-b6e6-019cc9ea6ee3", + "label": "label-8491", + "height": 514, + "background": "green" + }, + { + "key": "be4a8415-e948-43d8-8a93-3491f6f548c5", + "label": "label-8492", + "height": 62, + "background": "red" + }, + { + "key": "9f59504a-57e9-4603-a106-3271c387b070", + "label": "label-8493", + "height": 68, + "background": "blue" + }, + { + "key": "9690459c-e189-45f8-8256-e6c4edbc80ee", + "label": "label-8494", + "height": 214, + "background": "red" + }, + { + "key": "e6f6a948-da51-4bec-b77e-0342eb681730", + "label": "label-8495", + "height": 240, + "background": "blue" + }, + { + "key": "2f7d55fe-3a44-42c6-a520-bf8b236b6c63", + "label": "label-8496", + "height": 271, + "background": "yellow" + }, + { + "key": "0337d34c-4458-4a14-a808-489ecdd2ef30", + "label": "label-8497", + "height": 86, + "background": "blue" + }, + { + "key": "f305cfe6-02ed-45d8-9491-e367fe96a1a6", + "label": "label-8498", + "height": 367, + "background": "red" + }, + { + "key": "2a3a5a18-caed-45b6-a00b-6394c52934da", + "label": "label-8499", + "height": 365, + "background": "yellow" + }, + { + "key": "987b6cb2-7962-4a74-bd13-ba37dec47148", + "label": "label-8500", + "height": 443, + "background": "blue" + }, + { + "key": "3a4dcf09-29ac-4cc1-b625-39461dc0ebc0", + "label": "label-8501", + "height": 89, + "background": "red" + }, + { + "key": "0d8a5ace-e1b8-437f-9590-e0c9143702c2", + "label": "label-8502", + "height": 62, + "background": "green" + }, + { + "key": "4c088d68-19d0-4a7f-babd-d791da23a0c6", + "label": "label-8503", + "height": 311, + "background": "red" + }, + { + "key": "5c7a93d7-b371-42d3-ae95-39cfdad2621e", + "label": "label-8504", + "height": 315, + "background": "green" + }, + { + "key": "a430aa2b-cc3f-4517-a27c-ab99bd7836f2", + "label": "label-8505", + "height": 143, + "background": "yellow" + }, + { + "key": "52406a9c-836e-44d4-9875-13f151feed6f", + "label": "label-8506", + "height": 101, + "background": "green" + }, + { + "key": "935b0030-1a39-45b9-a761-8300fb1cd2c7", + "label": "label-8507", + "height": 518, + "background": "green" + }, + { + "key": "ee0ea003-93bf-4ea3-83db-3b68c2fe3b89", + "label": "label-8508", + "height": 45, + "background": "green" + }, + { + "key": "1ef0339d-c910-4de8-be56-fbc9ea2d5aa7", + "label": "label-8509", + "height": 420, + "background": "yellow" + }, + { + "key": "699808b5-738f-4ba9-9c7f-94e002477468", + "label": "label-8510", + "height": 235, + "background": "blue" + }, + { + "key": "c16309c0-4c7a-4ba1-a228-4dc9c4f4ba39", + "label": "label-8511", + "height": 73, + "background": "green" + }, + { + "key": "0940cc76-af5a-45f1-8796-a40fcbd20cca", + "label": "label-8512", + "height": 251, + "background": "red" + }, + { + "key": "808003c1-c36c-4cc4-a989-33b9352d2520", + "label": "label-8513", + "height": 156, + "background": "red" + }, + { + "key": "5e75a31f-aae2-4357-8841-7114026ef283", + "label": "label-8514", + "height": 80, + "background": "blue" + }, + { + "key": "122a5928-adf0-4386-b306-d83a06898f06", + "label": "label-8515", + "height": 332, + "background": "blue" + }, + { + "key": "772c2340-8809-4e22-a86d-c45ea16a0d01", + "label": "label-8516", + "height": 414, + "background": "red" + }, + { + "key": "3a448bc5-d62b-4f7c-81fc-7b6ec2b8ca0d", + "label": "label-8517", + "height": 81, + "background": "red" + }, + { + "key": "6d78880d-cfcf-48a8-8394-bc10e3142abb", + "label": "label-8518", + "height": 177, + "background": "red" + }, + { + "key": "355ff92a-3290-4f06-b47b-bf2f8c0443e4", + "label": "label-8519", + "height": 462, + "background": "green" + }, + { + "key": "5cf9098a-9a00-4108-8ba6-36291bd3d96c", + "label": "label-8520", + "height": 370, + "background": "yellow" + }, + { + "key": "3729e2f0-a4a7-4dc5-8558-1db0a32a7215", + "label": "label-8521", + "height": 171, + "background": "red" + }, + { + "key": "17b46779-d4f6-49b9-840f-188214b82fbb", + "label": "label-8522", + "height": 250, + "background": "blue" + }, + { + "key": "08b34027-b522-4940-93a2-560be1f1b109", + "label": "label-8523", + "height": 330, + "background": "yellow" + }, + { + "key": "412370ee-1c52-4267-827b-d0a0209fda3d", + "label": "label-8524", + "height": 522, + "background": "red" + }, + { + "key": "92ab88b9-1936-4970-96c7-662a343586b1", + "label": "label-8525", + "height": 382, + "background": "red" + }, + { + "key": "5c77f156-eafb-4fe9-bd91-6945421a93ca", + "label": "label-8526", + "height": 454, + "background": "blue" + }, + { + "key": "90e8e565-81b4-4d55-88dd-d876385eb66e", + "label": "label-8527", + "height": 48, + "background": "green" + }, + { + "key": "4bcb6fba-1e9f-45f0-b29a-61697c07a9b4", + "label": "label-8528", + "height": 521, + "background": "red" + }, + { + "key": "dc2ffac8-ae77-43d3-b345-21ad097f5674", + "label": "label-8529", + "height": 409, + "background": "blue" + }, + { + "key": "e496a6c9-2ce4-4034-9b8d-61cdd00693f4", + "label": "label-8530", + "height": 507, + "background": "yellow" + }, + { + "key": "f26c725d-0bde-4c7e-b015-ea6641936f71", + "label": "label-8531", + "height": 317, + "background": "green" + }, + { + "key": "306c2167-f081-4e7b-b791-464bc6c4feec", + "label": "label-8532", + "height": 305, + "background": "green" + }, + { + "key": "808e258a-c81d-48df-9d62-45ea78341ef7", + "label": "label-8533", + "height": 279, + "background": "green" + }, + { + "key": "5e125761-5086-4e63-aeea-6b8ccc82dba9", + "label": "label-8534", + "height": 440, + "background": "yellow" + }, + { + "key": "a9109146-6ef2-4b8c-a50f-f4a84f4759be", + "label": "label-8535", + "height": 496, + "background": "red" + }, + { + "key": "ce570134-90fc-450f-9c4c-0204dea5fd3f", + "label": "label-8536", + "height": 113, + "background": "blue" + }, + { + "key": "914c7d0e-56dc-49c8-bc14-61aa37a47ca6", + "label": "label-8537", + "height": 230, + "background": "yellow" + }, + { + "key": "d81940da-713a-4f29-9698-9553836f5abf", + "label": "label-8538", + "height": 44, + "background": "red" + }, + { + "key": "19ca0373-5818-4af3-a3cc-02741d637e81", + "label": "label-8539", + "height": 499, + "background": "yellow" + }, + { + "key": "4be7c0c7-3b1c-448b-91cb-577cad84a75f", + "label": "label-8540", + "height": 77, + "background": "yellow" + }, + { + "key": "15b72f6f-45ae-4a53-ac2e-17ec71305458", + "label": "label-8541", + "height": 51, + "background": "blue" + }, + { + "key": "b165c763-f353-42ce-8991-9c2c950f622a", + "label": "label-8542", + "height": 149, + "background": "green" + }, + { + "key": "167b47ef-9add-4d87-a733-9c86dcec2d9d", + "label": "label-8543", + "height": 386, + "background": "red" + }, + { + "key": "82731c2e-4f0e-4f5d-9ca2-2cb82f8a65bd", + "label": "label-8544", + "height": 85, + "background": "blue" + }, + { + "key": "4ab37f5c-c251-4ee6-9200-88730875ded6", + "label": "label-8545", + "height": 255, + "background": "yellow" + }, + { + "key": "b5f7e00e-0474-42bb-b05e-0be3cc80c191", + "label": "label-8546", + "height": 487, + "background": "green" + }, + { + "key": "68cc5bb1-9f5c-4bc7-9863-fc1cbae298ad", + "label": "label-8547", + "height": 184, + "background": "red" + }, + { + "key": "ec16b3b5-82de-4919-935f-76499f3af4c5", + "label": "label-8548", + "height": 489, + "background": "blue" + }, + { + "key": "6d335c5d-1de8-4d92-88c5-1c9910a0e513", + "label": "label-8549", + "height": 212, + "background": "yellow" + }, + { + "key": "b2357343-4244-4fb4-b16c-4bef27b6b692", + "label": "label-8550", + "height": 287, + "background": "green" + }, + { + "key": "d9918a62-b768-434e-a20c-06c6cb3b3e4a", + "label": "label-8551", + "height": 326, + "background": "green" + }, + { + "key": "6643e279-43e2-4e94-9107-e1c2bce2c7f4", + "label": "label-8552", + "height": 176, + "background": "yellow" + }, + { + "key": "d5fe4d37-f3af-466f-abec-781c0fff27c4", + "label": "label-8553", + "height": 78, + "background": "green" + }, + { + "key": "1aea7dd6-982a-4233-a942-ee20c3520e89", + "label": "label-8554", + "height": 465, + "background": "green" + }, + { + "key": "6667af92-67ca-4fe8-a69a-f356442e16a1", + "label": "label-8555", + "height": 80, + "background": "blue" + }, + { + "key": "6e288a36-e22a-479a-bc68-b1381366256f", + "label": "label-8556", + "height": 214, + "background": "red" + }, + { + "key": "aaea6d6a-c134-4904-98ec-4a34659cc105", + "label": "label-8557", + "height": 444, + "background": "yellow" + }, + { + "key": "dfe36541-7daf-4ffa-8bfc-a80fa748f6af", + "label": "label-8558", + "height": 421, + "background": "red" + }, + { + "key": "090564e2-a4f1-4e80-b657-e7c0cdef9a44", + "label": "label-8559", + "height": 197, + "background": "yellow" + }, + { + "key": "747158a3-e9ca-47a5-87aa-7bbf5ba04ecb", + "label": "label-8560", + "height": 508, + "background": "red" + }, + { + "key": "49b9ded2-63bc-4348-b99a-8ac4a733b7e3", + "label": "label-8561", + "height": 291, + "background": "green" + }, + { + "key": "9e4668ce-9d35-4f57-a9cf-11ff0f9dac5b", + "label": "label-8562", + "height": 364, + "background": "blue" + }, + { + "key": "1cf3de72-915b-4306-822e-421b594efe1d", + "label": "label-8563", + "height": 57, + "background": "blue" + }, + { + "key": "357b8f45-47a7-45bc-9799-7321705c7cdf", + "label": "label-8564", + "height": 325, + "background": "green" + }, + { + "key": "4b80a31f-8f11-4ea8-8e0c-bfe04a03eae7", + "label": "label-8565", + "height": 171, + "background": "red" + }, + { + "key": "9f838a4f-6fe5-4227-b336-40da86940d73", + "label": "label-8566", + "height": 404, + "background": "red" + }, + { + "key": "0c5b8e47-08c2-4350-9dda-6ca36e56877b", + "label": "label-8567", + "height": 471, + "background": "green" + }, + { + "key": "39cd7a55-0592-4ccf-bc23-adfd8506f0a1", + "label": "label-8568", + "height": 307, + "background": "red" + }, + { + "key": "7f116760-8e36-4b23-a9e6-26f9ceda9ef0", + "label": "label-8569", + "height": 221, + "background": "blue" + }, + { + "key": "87282516-d43e-42da-9f46-59dd42b243c8", + "label": "label-8570", + "height": 134, + "background": "red" + }, + { + "key": "8b1f2160-dd37-463d-9e0c-add0c035ce57", + "label": "label-8571", + "height": 235, + "background": "yellow" + }, + { + "key": "f803c292-d36c-4aee-bc82-f7066d1f80eb", + "label": "label-8572", + "height": 529, + "background": "green" + }, + { + "key": "9adf2262-88cc-4034-ab0d-5f5d4eb06faa", + "label": "label-8573", + "height": 447, + "background": "green" + }, + { + "key": "7b1c5d24-a31d-4c71-8e08-d6e8a47f19c6", + "label": "label-8574", + "height": 72, + "background": "green" + }, + { + "key": "7964ac1d-3d28-412e-a065-d6e37c15a9a7", + "label": "label-8575", + "height": 265, + "background": "blue" + }, + { + "key": "70036708-61b1-4381-a39a-ba370daefdcf", + "label": "label-8576", + "height": 173, + "background": "red" + }, + { + "key": "15d32da3-201d-410b-b35e-e3af55d40272", + "label": "label-8577", + "height": 295, + "background": "yellow" + }, + { + "key": "dbe874c3-4de1-4c1f-ac5a-6d53b168722c", + "label": "label-8578", + "height": 67, + "background": "blue" + }, + { + "key": "f3477627-c81d-4c25-a32f-b0d859a85b9f", + "label": "label-8579", + "height": 183, + "background": "yellow" + }, + { + "key": "b43d8ca0-d7ad-4e1c-9ce1-36c4efcbebb4", + "label": "label-8580", + "height": 183, + "background": "red" + }, + { + "key": "fe8db70e-f230-4a95-a84d-7218a7a42198", + "label": "label-8581", + "height": 62, + "background": "yellow" + }, + { + "key": "17bb0bb0-2a99-4df7-868a-722b743c421c", + "label": "label-8582", + "height": 425, + "background": "yellow" + }, + { + "key": "a2002d4e-9d1b-4f29-a91f-a94be1462bad", + "label": "label-8583", + "height": 341, + "background": "green" + }, + { + "key": "068911bb-f691-4f59-bfdd-0a8c8c51d7c9", + "label": "label-8584", + "height": 94, + "background": "yellow" + }, + { + "key": "89cf1d87-ac64-44bf-b699-b7e98aca6917", + "label": "label-8585", + "height": 191, + "background": "green" + }, + { + "key": "631518d2-9b82-4662-9c7b-d47dcc2f2ac3", + "label": "label-8586", + "height": 128, + "background": "red" + }, + { + "key": "5fa1bc69-a320-468d-ad30-8ecd8e0079c6", + "label": "label-8587", + "height": 324, + "background": "yellow" + }, + { + "key": "5c781d5c-dc87-4fc7-ac23-64dd1b5c7848", + "label": "label-8588", + "height": 502, + "background": "green" + }, + { + "key": "7508d538-7908-4bda-ab30-d2c78efe0afc", + "label": "label-8589", + "height": 285, + "background": "green" + }, + { + "key": "f5ae57fc-0746-4f37-8a04-77d59a08deb4", + "label": "label-8590", + "height": 364, + "background": "yellow" + }, + { + "key": "97136d4b-3eec-414e-bac5-dddb66f65f19", + "label": "label-8591", + "height": 417, + "background": "red" + }, + { + "key": "891c48bb-0a02-4f2b-b181-35c080ab2d31", + "label": "label-8592", + "height": 507, + "background": "yellow" + }, + { + "key": "b6bd048c-c71c-40aa-a042-7d7510c56dfb", + "label": "label-8593", + "height": 85, + "background": "blue" + }, + { + "key": "e6254a35-3604-49b7-bc8c-a25d72c1a208", + "label": "label-8594", + "height": 282, + "background": "green" + }, + { + "key": "f6751f69-f263-45dd-a326-8eb8b113b7ea", + "label": "label-8595", + "height": 380, + "background": "blue" + }, + { + "key": "311d8f82-8c8b-40d2-be1b-dac363e3cc6b", + "label": "label-8596", + "height": 285, + "background": "yellow" + }, + { + "key": "506dbe67-b6a7-4165-ac00-907acd00ed5d", + "label": "label-8597", + "height": 391, + "background": "blue" + }, + { + "key": "fce95164-e28d-4fee-b07f-9fadc0819e4c", + "label": "label-8598", + "height": 313, + "background": "blue" + }, + { + "key": "eae712b6-c7d3-4a55-8a12-8bc09bbc33a4", + "label": "label-8599", + "height": 376, + "background": "blue" + }, + { + "key": "8b9b9f04-2859-4772-a7fc-0b98038c92fd", + "label": "label-8600", + "height": 418, + "background": "green" + }, + { + "key": "4bf6abf7-d228-413d-82be-c1927902b0e7", + "label": "label-8601", + "height": 423, + "background": "red" + }, + { + "key": "b1afa160-d109-4da5-a855-d8e37e7cc444", + "label": "label-8602", + "height": 529, + "background": "blue" + }, + { + "key": "922f3e53-6a01-44a1-aded-724503671148", + "label": "label-8603", + "height": 69, + "background": "green" + }, + { + "key": "995299ae-cd12-4b9c-b000-466a1033b894", + "label": "label-8604", + "height": 387, + "background": "blue" + }, + { + "key": "555ce62a-bb9c-44a0-8f19-13ec40e24364", + "label": "label-8605", + "height": 127, + "background": "yellow" + }, + { + "key": "21748f73-81aa-4868-a096-99cd93f6bc3e", + "label": "label-8606", + "height": 258, + "background": "green" + }, + { + "key": "3d6b3430-09d3-492b-99d7-7473ab616ea5", + "label": "label-8607", + "height": 414, + "background": "yellow" + }, + { + "key": "99285027-215f-486d-bb93-91343849d38f", + "label": "label-8608", + "height": 407, + "background": "red" + }, + { + "key": "607655eb-0c66-4486-b328-7f1cab9ddc15", + "label": "label-8609", + "height": 221, + "background": "yellow" + }, + { + "key": "e71c3ddd-5ba0-4a3a-a4e4-e3955a2d865a", + "label": "label-8610", + "height": 330, + "background": "yellow" + }, + { + "key": "e9013cc1-9074-452c-b59d-5da0357d8cc6", + "label": "label-8611", + "height": 336, + "background": "blue" + }, + { + "key": "f1b109b0-d1e0-4721-a5de-1f3b150e4c1f", + "label": "label-8612", + "height": 60, + "background": "blue" + }, + { + "key": "d2f8dddd-b58e-4e07-95c1-0a99905173f9", + "label": "label-8613", + "height": 261, + "background": "red" + }, + { + "key": "9a6c827b-b536-47e1-9d6e-57ae2a653acf", + "label": "label-8614", + "height": 185, + "background": "yellow" + }, + { + "key": "409f60d5-a19d-4910-83de-8e6a69fcc3ba", + "label": "label-8615", + "height": 406, + "background": "red" + }, + { + "key": "f8e14d27-a1e7-4645-82cc-015350859048", + "label": "label-8616", + "height": 66, + "background": "green" + }, + { + "key": "5031ebc7-c565-478c-998f-fd98eb371b58", + "label": "label-8617", + "height": 266, + "background": "yellow" + }, + { + "key": "31f076ba-7ab1-4457-afcb-625788831d5b", + "label": "label-8618", + "height": 247, + "background": "blue" + }, + { + "key": "bb7683ce-4e57-424a-835b-023eb2dab5af", + "label": "label-8619", + "height": 392, + "background": "yellow" + }, + { + "key": "ef61bd3b-0b4b-43f3-98e3-714a0eddbbad", + "label": "label-8620", + "height": 361, + "background": "blue" + }, + { + "key": "a655c72a-dfc0-437e-ae32-1bd1468518db", + "label": "label-8621", + "height": 357, + "background": "yellow" + }, + { + "key": "d3253c47-4ca4-4031-ba74-22f6db829891", + "label": "label-8622", + "height": 180, + "background": "green" + }, + { + "key": "ee22234b-3ee7-4eea-b38f-8100c1ef012d", + "label": "label-8623", + "height": 500, + "background": "yellow" + }, + { + "key": "528d1818-b540-485c-9b2b-5de16d8e85d1", + "label": "label-8624", + "height": 188, + "background": "yellow" + }, + { + "key": "87d34f92-dfc4-4802-8760-74d594449e03", + "label": "label-8625", + "height": 177, + "background": "blue" + }, + { + "key": "e216e3ee-9d4e-4271-b0ff-5d7f3f423d95", + "label": "label-8626", + "height": 123, + "background": "yellow" + }, + { + "key": "bd590894-54ed-4e30-b2f1-e5c77091f20f", + "label": "label-8627", + "height": 190, + "background": "yellow" + }, + { + "key": "c9215602-e77e-488c-9612-4b824d0efea3", + "label": "label-8628", + "height": 219, + "background": "blue" + }, + { + "key": "e1f574bb-56a7-40f2-9b01-28604502925e", + "label": "label-8629", + "height": 406, + "background": "red" + }, + { + "key": "89f2dc8e-332c-4821-9ddf-c0ad0e463202", + "label": "label-8630", + "height": 243, + "background": "yellow" + }, + { + "key": "e8bbc6f4-b742-408a-8065-5fc6ebae00cc", + "label": "label-8631", + "height": 103, + "background": "blue" + }, + { + "key": "908763af-dd40-4917-a6e6-508a0cadc0fa", + "label": "label-8632", + "height": 338, + "background": "blue" + }, + { + "key": "ad46668d-e771-4ccf-ac5a-a0d174946422", + "label": "label-8633", + "height": 405, + "background": "blue" + }, + { + "key": "6949eb5f-96a7-4639-8e32-4018cdfed422", + "label": "label-8634", + "height": 52, + "background": "yellow" + }, + { + "key": "3c680fc0-29b7-4c6e-97c6-026f9d6775f1", + "label": "label-8635", + "height": 347, + "background": "red" + }, + { + "key": "4c83c368-1e41-4909-b5ac-929d08ae7fca", + "label": "label-8636", + "height": 39, + "background": "blue" + }, + { + "key": "dc978f26-0526-4adf-a972-09cca3a4db90", + "label": "label-8637", + "height": 378, + "background": "blue" + }, + { + "key": "4c7463c0-db11-4c77-be17-2907a1a50ec3", + "label": "label-8638", + "height": 419, + "background": "green" + }, + { + "key": "08515102-c645-4868-9e52-158a3fd68291", + "label": "label-8639", + "height": 394, + "background": "green" + }, + { + "key": "2aec7585-3ace-4608-9e15-23e76eaf0c61", + "label": "label-8640", + "height": 212, + "background": "red" + }, + { + "key": "c060aa05-beed-47ee-b8b3-046592673c23", + "label": "label-8641", + "height": 99, + "background": "yellow" + }, + { + "key": "3f391892-f8bf-4d36-a3a7-654566fe3897", + "label": "label-8642", + "height": 336, + "background": "blue" + }, + { + "key": "b7aa9a82-4249-4b13-b3e5-c9db32daa2ac", + "label": "label-8643", + "height": 136, + "background": "yellow" + }, + { + "key": "308522b8-3113-48e0-9c23-8c1b083801b8", + "label": "label-8644", + "height": 47, + "background": "blue" + }, + { + "key": "58c8a7f2-498e-4880-aaa1-498a5a2f5f5e", + "label": "label-8645", + "height": 471, + "background": "blue" + }, + { + "key": "b94a95d4-846f-4a12-ba81-90978c3ade8d", + "label": "label-8646", + "height": 521, + "background": "blue" + }, + { + "key": "7abb7379-1aa9-4dfc-bc2f-2225cce53773", + "label": "label-8647", + "height": 332, + "background": "blue" + }, + { + "key": "e165688f-a201-4d29-b520-b55c02d01612", + "label": "label-8648", + "height": 413, + "background": "yellow" + }, + { + "key": "6aaeaf37-5086-4ead-b637-d6593c93c548", + "label": "label-8649", + "height": 121, + "background": "red" + }, + { + "key": "ba1e1bd3-943a-4924-ae9d-9cc9d20cad72", + "label": "label-8650", + "height": 458, + "background": "green" + }, + { + "key": "e2955385-f46f-4cd1-b251-9b2987ebf265", + "label": "label-8651", + "height": 455, + "background": "blue" + }, + { + "key": "569c7315-14ae-4e30-a58c-ad9e7eeabce2", + "label": "label-8652", + "height": 225, + "background": "yellow" + }, + { + "key": "daeef850-9321-4469-8fd4-12e2b7451f72", + "label": "label-8653", + "height": 393, + "background": "blue" + }, + { + "key": "7dc093d0-e7fc-4fd3-a23a-c6032699979e", + "label": "label-8654", + "height": 218, + "background": "green" + }, + { + "key": "eab464f8-f8ff-4014-968a-af51f0dc51f1", + "label": "label-8655", + "height": 391, + "background": "green" + }, + { + "key": "d03ada33-2c73-4f2d-b373-621086f586cc", + "label": "label-8656", + "height": 514, + "background": "green" + }, + { + "key": "e9d22da4-f25f-442f-9e87-d8c347b7c4a2", + "label": "label-8657", + "height": 33, + "background": "yellow" + }, + { + "key": "344fe43f-d98d-4d3a-a7dc-fd99bba07b4a", + "label": "label-8658", + "height": 57, + "background": "blue" + }, + { + "key": "e86fd47d-fbe5-4238-bc37-d3eba451e0e6", + "label": "label-8659", + "height": 320, + "background": "blue" + }, + { + "key": "6805e333-dcfb-4179-8d4b-e0af7ee27f2c", + "label": "label-8660", + "height": 482, + "background": "yellow" + }, + { + "key": "5b60e382-6e74-4e47-922d-7bda73a58781", + "label": "label-8661", + "height": 67, + "background": "yellow" + }, + { + "key": "28a8c6dd-a44f-403c-8b47-0a471580c665", + "label": "label-8662", + "height": 248, + "background": "blue" + }, + { + "key": "220245e8-3783-4fc0-8435-06ca220c3ed0", + "label": "label-8663", + "height": 47, + "background": "red" + }, + { + "key": "41d77c09-a1e3-443f-8a7e-7102d5c68cc9", + "label": "label-8664", + "height": 176, + "background": "blue" + }, + { + "key": "3eccdfec-8684-45cc-84f3-18d622429038", + "label": "label-8665", + "height": 174, + "background": "yellow" + }, + { + "key": "4e615a4a-ea49-4ef5-8a02-9ed5e88b682b", + "label": "label-8666", + "height": 267, + "background": "yellow" + }, + { + "key": "6f39a11e-adad-4259-a782-0c4b780364bb", + "label": "label-8667", + "height": 129, + "background": "yellow" + }, + { + "key": "d13c4868-2437-48b7-9ac8-7b53a4b16a29", + "label": "label-8668", + "height": 231, + "background": "green" + }, + { + "key": "fc2a53f9-6074-4d57-b5bc-664ac7d604ed", + "label": "label-8669", + "height": 300, + "background": "green" + }, + { + "key": "b5a0912b-374b-40b7-ac1f-e0ad6c22d3c1", + "label": "label-8670", + "height": 131, + "background": "yellow" + }, + { + "key": "47e80c13-6a5f-42af-a839-4aab86788dbe", + "label": "label-8671", + "height": 446, + "background": "blue" + }, + { + "key": "a8f9a257-fd29-4df5-b0f2-e4c8265ae3ce", + "label": "label-8672", + "height": 452, + "background": "green" + }, + { + "key": "3a0c0971-7893-4e09-823c-a91c7a5b15fa", + "label": "label-8673", + "height": 393, + "background": "green" + }, + { + "key": "9a852948-de75-4748-b723-7915321595f5", + "label": "label-8674", + "height": 121, + "background": "blue" + }, + { + "key": "5a2bb9fc-2d63-4ade-a263-e8a17a89678d", + "label": "label-8675", + "height": 144, + "background": "red" + }, + { + "key": "f424369b-31d6-4b5a-97b5-54880c9b90d3", + "label": "label-8676", + "height": 323, + "background": "red" + }, + { + "key": "db34fcb0-6421-4134-8fd8-b58908e82dbb", + "label": "label-8677", + "height": 273, + "background": "blue" + }, + { + "key": "444ff40f-09d3-4e91-a94b-817b91731228", + "label": "label-8678", + "height": 491, + "background": "green" + }, + { + "key": "bca44c8b-4891-4f05-8d4e-7ca21f60afb4", + "label": "label-8679", + "height": 217, + "background": "blue" + }, + { + "key": "d963da36-d3b1-4fb1-86c7-1979d123eeda", + "label": "label-8680", + "height": 38, + "background": "red" + }, + { + "key": "b217e42c-0d2d-456a-b343-375789b58523", + "label": "label-8681", + "height": 263, + "background": "red" + }, + { + "key": "348a958b-8aa3-41f1-9da6-af5aa9f47c59", + "label": "label-8682", + "height": 181, + "background": "blue" + }, + { + "key": "61d278f0-5429-43a3-8cd6-82420c670518", + "label": "label-8683", + "height": 450, + "background": "blue" + }, + { + "key": "1c44470e-0e29-4b70-ab1f-db61a745b25f", + "label": "label-8684", + "height": 520, + "background": "blue" + }, + { + "key": "0f3a4654-932d-41d6-a347-9f3f45d1670a", + "label": "label-8685", + "height": 331, + "background": "blue" + }, + { + "key": "5abb45cd-47c3-413c-8fb2-86f940555293", + "label": "label-8686", + "height": 202, + "background": "green" + }, + { + "key": "15a78cd0-1b87-4a9f-b5d8-15f1622019be", + "label": "label-8687", + "height": 92, + "background": "red" + }, + { + "key": "5ae3af46-6da7-4e09-bb37-6c2918440878", + "label": "label-8688", + "height": 393, + "background": "red" + }, + { + "key": "1cdf9cb0-907a-4975-a245-bccf99e6313d", + "label": "label-8689", + "height": 426, + "background": "yellow" + }, + { + "key": "23bb2db5-b2c5-4784-9c4b-a322fb15ffc1", + "label": "label-8690", + "height": 481, + "background": "green" + }, + { + "key": "a1535711-bd44-44a8-b8e4-557d26efc2a7", + "label": "label-8691", + "height": 507, + "background": "red" + }, + { + "key": "a875288e-bdb1-4474-bc19-93b560925b30", + "label": "label-8692", + "height": 521, + "background": "green" + }, + { + "key": "80588f7a-8bf7-4c9f-92fc-59d6f58091ea", + "label": "label-8693", + "height": 477, + "background": "green" + }, + { + "key": "4e5fc27b-74f0-4e5f-bc15-b504bdeea414", + "label": "label-8694", + "height": 137, + "background": "yellow" + }, + { + "key": "a3cb1234-6bdb-41f2-a4f6-845612e64078", + "label": "label-8695", + "height": 119, + "background": "red" + }, + { + "key": "2dc93004-a6cf-49e1-aedc-034a5f915fa9", + "label": "label-8696", + "height": 164, + "background": "blue" + }, + { + "key": "1ae10e94-e80c-498c-896f-60d3cb37c85e", + "label": "label-8697", + "height": 476, + "background": "green" + }, + { + "key": "778b4ac2-db0d-41a5-9c11-c9474e7f50e0", + "label": "label-8698", + "height": 496, + "background": "red" + }, + { + "key": "70e515a4-7ff6-4e27-a69c-a43219b7d712", + "label": "label-8699", + "height": 448, + "background": "green" + }, + { + "key": "a9f074b6-608d-48c3-8103-bc4ec44c919e", + "label": "label-8700", + "height": 461, + "background": "green" + }, + { + "key": "1afcae74-c2c6-41cb-b673-7afd7b3e9064", + "label": "label-8701", + "height": 225, + "background": "yellow" + }, + { + "key": "c61893b6-5a67-4d34-9323-d70de8085267", + "label": "label-8702", + "height": 499, + "background": "blue" + }, + { + "key": "65650fd9-1464-4c3c-b6b0-c2ad7812190b", + "label": "label-8703", + "height": 214, + "background": "yellow" + }, + { + "key": "ffdf7716-79bd-4c98-9f24-f4c78f97311b", + "label": "label-8704", + "height": 361, + "background": "yellow" + }, + { + "key": "fbfe6ad7-566a-48ce-a536-2b3d51b2f932", + "label": "label-8705", + "height": 234, + "background": "blue" + }, + { + "key": "d0516fab-e611-43e5-8485-c8b2e12850e3", + "label": "label-8706", + "height": 499, + "background": "red" + }, + { + "key": "222215c9-7d5f-41bb-9cfa-b2829c194f5c", + "label": "label-8707", + "height": 285, + "background": "yellow" + }, + { + "key": "0f97247f-dedf-43ad-a80d-5ded91e46df0", + "label": "label-8708", + "height": 250, + "background": "green" + }, + { + "key": "7aaf9d93-1a4b-480a-ad59-d1e03d9108ae", + "label": "label-8709", + "height": 179, + "background": "yellow" + }, + { + "key": "501de6e6-35d3-4771-a29d-4ef6151a0e6a", + "label": "label-8710", + "height": 237, + "background": "yellow" + }, + { + "key": "9dc0d2a5-2180-4af1-bf8f-44fac53d2ec2", + "label": "label-8711", + "height": 349, + "background": "yellow" + }, + { + "key": "8f8b81e8-27c2-4e9a-a9ba-335e878496f9", + "label": "label-8712", + "height": 523, + "background": "blue" + }, + { + "key": "1e3462f0-b1eb-41fa-a2ec-f09db4e66355", + "label": "label-8713", + "height": 155, + "background": "red" + }, + { + "key": "d8a294fc-f436-4a56-996d-1db6b070c969", + "label": "label-8714", + "height": 139, + "background": "green" + }, + { + "key": "858cf8dd-2379-48cb-8421-63ac24ef01f0", + "label": "label-8715", + "height": 55, + "background": "blue" + }, + { + "key": "03d734f8-9853-4d57-956c-0e22ad03e990", + "label": "label-8716", + "height": 270, + "background": "green" + }, + { + "key": "43967917-7933-423c-acfa-1f1cb12c6463", + "label": "label-8717", + "height": 67, + "background": "yellow" + }, + { + "key": "0917dc11-272e-404d-aaf7-3893a0214db6", + "label": "label-8718", + "height": 84, + "background": "red" + }, + { + "key": "c89a48bf-4ea0-4e2e-b39c-533570326e56", + "label": "label-8719", + "height": 319, + "background": "blue" + }, + { + "key": "f78bff10-14e3-475e-8c9d-e7da4758e205", + "label": "label-8720", + "height": 129, + "background": "yellow" + }, + { + "key": "04677b09-7d07-4e33-bd91-afb2f1bf4093", + "label": "label-8721", + "height": 191, + "background": "red" + }, + { + "key": "59ccf5c4-3bad-4858-a0ea-8c9729f8e617", + "label": "label-8722", + "height": 526, + "background": "yellow" + }, + { + "key": "eed9dfa1-ce3b-449f-ab4b-4c7646aaceac", + "label": "label-8723", + "height": 406, + "background": "green" + }, + { + "key": "6640135f-83fd-46ed-ace7-489b355614d8", + "label": "label-8724", + "height": 490, + "background": "green" + }, + { + "key": "9244f086-1780-40bd-9113-ac284bd98230", + "label": "label-8725", + "height": 439, + "background": "blue" + }, + { + "key": "22891c55-8861-4358-9ab7-be5ea599694d", + "label": "label-8726", + "height": 86, + "background": "green" + }, + { + "key": "1e401b43-b225-464b-8c6a-53cbc88d1656", + "label": "label-8727", + "height": 251, + "background": "yellow" + }, + { + "key": "1a937691-b58f-4a80-a03b-68c49a653d77", + "label": "label-8728", + "height": 502, + "background": "red" + }, + { + "key": "417bf20c-bd61-4824-86b7-473dc7efaac4", + "label": "label-8729", + "height": 500, + "background": "yellow" + }, + { + "key": "1bf7c7f4-c8f0-4b8c-8d9f-ff02ebb6ed20", + "label": "label-8730", + "height": 488, + "background": "blue" + }, + { + "key": "0a6a6067-9b44-4f43-9091-21211850b43e", + "label": "label-8731", + "height": 481, + "background": "red" + }, + { + "key": "c1d87b2c-510b-4789-887e-bfef0d4f1ef9", + "label": "label-8732", + "height": 156, + "background": "green" + }, + { + "key": "901c942f-f895-49ee-bdd4-6478bfe2fbf3", + "label": "label-8733", + "height": 268, + "background": "red" + }, + { + "key": "e95517be-e0ae-457d-a336-7a3178cbf436", + "label": "label-8734", + "height": 338, + "background": "red" + }, + { + "key": "7468bf75-59bf-4cb3-98d5-07f3570205e4", + "label": "label-8735", + "height": 516, + "background": "blue" + }, + { + "key": "894e5e63-bcf3-4ac0-b99c-f477f0968bc7", + "label": "label-8736", + "height": 437, + "background": "green" + }, + { + "key": "d0e69e0d-8860-4eb0-a347-f948e51b2700", + "label": "label-8737", + "height": 457, + "background": "yellow" + }, + { + "key": "630373b4-453b-4670-9965-60ee916c5c35", + "label": "label-8738", + "height": 95, + "background": "red" + }, + { + "key": "acd77f71-2fc5-424b-82e5-fc17de12bef3", + "label": "label-8739", + "height": 395, + "background": "blue" + }, + { + "key": "7ced5aae-400c-49dd-8bcc-4cd541e2b132", + "label": "label-8740", + "height": 340, + "background": "blue" + }, + { + "key": "ce0cb9a6-32f5-4472-a255-b1aa46874564", + "label": "label-8741", + "height": 313, + "background": "green" + }, + { + "key": "bad40fae-57f9-41e0-8495-535ebbc16597", + "label": "label-8742", + "height": 148, + "background": "blue" + }, + { + "key": "d2a19d91-b6e9-44ab-b8d4-02753232ddf4", + "label": "label-8743", + "height": 173, + "background": "red" + }, + { + "key": "58155d27-97cb-4b0d-b4a0-1e1dc0316c73", + "label": "label-8744", + "height": 346, + "background": "blue" + }, + { + "key": "198cba8f-3614-4bec-a0a2-48bf0417e833", + "label": "label-8745", + "height": 87, + "background": "green" + }, + { + "key": "f40eed19-7bda-47e8-9c65-f61b946012bc", + "label": "label-8746", + "height": 131, + "background": "green" + }, + { + "key": "f78c6dec-fba2-4e81-bd02-3bbc6e4b800a", + "label": "label-8747", + "height": 86, + "background": "red" + }, + { + "key": "2b007fd0-baf6-4861-a32a-6ab0cc1ef87a", + "label": "label-8748", + "height": 363, + "background": "yellow" + }, + { + "key": "79b00b00-fa0b-4293-8364-ca810c6d10e4", + "label": "label-8749", + "height": 126, + "background": "green" + }, + { + "key": "e16d5fdd-3cd4-4900-bc9a-ffdcb3b627df", + "label": "label-8750", + "height": 337, + "background": "blue" + }, + { + "key": "e7beeaf0-f592-447a-b49e-85cc452b70b8", + "label": "label-8751", + "height": 312, + "background": "yellow" + }, + { + "key": "56569d9b-8388-41dd-8691-7162534e1255", + "label": "label-8752", + "height": 149, + "background": "green" + }, + { + "key": "37309fa3-6d91-49d0-8f09-61854a9b34b0", + "label": "label-8753", + "height": 61, + "background": "blue" + }, + { + "key": "764910b3-f736-4bac-bfb9-d74e6d8b724c", + "label": "label-8754", + "height": 217, + "background": "blue" + }, + { + "key": "ee05382e-2255-44bf-aa24-d761386351ec", + "label": "label-8755", + "height": 108, + "background": "green" + }, + { + "key": "6efbdf6e-63bb-441e-83fb-7ea51df3605b", + "label": "label-8756", + "height": 268, + "background": "blue" + }, + { + "key": "3bf6b61d-c864-4357-ba9b-58b0051cf74d", + "label": "label-8757", + "height": 295, + "background": "red" + }, + { + "key": "12b0849b-998c-4e15-9d4d-a0a174b5e823", + "label": "label-8758", + "height": 149, + "background": "blue" + }, + { + "key": "5866ac79-a9b6-4e07-a7eb-b624361ea4e7", + "label": "label-8759", + "height": 201, + "background": "yellow" + }, + { + "key": "4de7da99-eb31-449c-bb41-8c8cd07c4068", + "label": "label-8760", + "height": 205, + "background": "red" + }, + { + "key": "951d5c89-9e7c-4ca0-8e93-a16bb6509770", + "label": "label-8761", + "height": 369, + "background": "yellow" + }, + { + "key": "a70effb9-a479-45d8-991d-cddc9a982b73", + "label": "label-8762", + "height": 119, + "background": "green" + }, + { + "key": "bb2ef13c-e7ab-47b0-8127-bbdc18e398c2", + "label": "label-8763", + "height": 312, + "background": "blue" + }, + { + "key": "7f814e4d-c0ad-4127-8bf2-7ce62cc61192", + "label": "label-8764", + "height": 487, + "background": "green" + }, + { + "key": "b5261844-b1e7-4d22-9240-8a31b7108a72", + "label": "label-8765", + "height": 501, + "background": "blue" + }, + { + "key": "c81af7e5-f75b-425d-8862-cdf7c86cbf8e", + "label": "label-8766", + "height": 395, + "background": "yellow" + }, + { + "key": "8b3a76b8-1e70-46ea-b698-4c23be4db91c", + "label": "label-8767", + "height": 343, + "background": "green" + }, + { + "key": "25609e6a-a1c3-443e-93b8-007edaa6399b", + "label": "label-8768", + "height": 297, + "background": "green" + }, + { + "key": "191793c2-5310-49a5-82a6-7188c15546c5", + "label": "label-8769", + "height": 303, + "background": "blue" + }, + { + "key": "4f572726-1c11-4f8a-bcce-ba25eb176c52", + "label": "label-8770", + "height": 318, + "background": "yellow" + }, + { + "key": "dfab35ea-c34c-4cec-bfe0-f0afc2bfb313", + "label": "label-8771", + "height": 476, + "background": "green" + }, + { + "key": "ec5b22e1-6796-4145-a496-91bbe8f5e1e7", + "label": "label-8772", + "height": 341, + "background": "yellow" + }, + { + "key": "2790f39a-c277-492a-92ab-8e4711c200f9", + "label": "label-8773", + "height": 392, + "background": "red" + }, + { + "key": "2a0e1d64-4ef9-4b6c-ac81-af0fae23632f", + "label": "label-8774", + "height": 523, + "background": "red" + }, + { + "key": "1be3c9a2-07f9-45eb-8238-a57e3a84b642", + "label": "label-8775", + "height": 41, + "background": "yellow" + }, + { + "key": "52a05868-d0fd-426f-b4c6-2b3bcb5cf4c0", + "label": "label-8776", + "height": 181, + "background": "blue" + }, + { + "key": "e1a68523-1d7d-4860-9c64-1c1d51b94e51", + "label": "label-8777", + "height": 358, + "background": "yellow" + }, + { + "key": "34c2af8a-20b9-4f06-93b1-5f0d6bfae8a9", + "label": "label-8778", + "height": 70, + "background": "red" + }, + { + "key": "f37099d6-653c-4f1e-8e3a-f25f5feebe48", + "label": "label-8779", + "height": 238, + "background": "red" + }, + { + "key": "c71540f3-0b13-478b-89ec-5e51243e763e", + "label": "label-8780", + "height": 452, + "background": "blue" + }, + { + "key": "2ca6310b-c594-46d2-806f-decba97ffd54", + "label": "label-8781", + "height": 279, + "background": "yellow" + }, + { + "key": "e302eeb8-ec00-4650-ad0f-e3fc3afa941b", + "label": "label-8782", + "height": 361, + "background": "blue" + }, + { + "key": "f6b27875-491a-4dee-9388-bd965040e2ed", + "label": "label-8783", + "height": 399, + "background": "yellow" + }, + { + "key": "3b31ff13-b589-4e19-a454-eda3e9cdc7ce", + "label": "label-8784", + "height": 282, + "background": "green" + }, + { + "key": "3566800a-8721-45a7-93b8-cdf7bb9a2a83", + "label": "label-8785", + "height": 129, + "background": "blue" + }, + { + "key": "759ff31d-eacc-4831-81bc-7ad2ef21b58e", + "label": "label-8786", + "height": 314, + "background": "red" + }, + { + "key": "e52bdb8f-4fbf-4658-b514-cf82ac7da50d", + "label": "label-8787", + "height": 205, + "background": "yellow" + }, + { + "key": "20fa2ef5-8c0a-43a9-898e-1e73a555823f", + "label": "label-8788", + "height": 354, + "background": "blue" + }, + { + "key": "cc7eedc8-4a41-482c-81ea-db6efeb1c5c8", + "label": "label-8789", + "height": 56, + "background": "red" + }, + { + "key": "600e6d7d-8526-40da-a4c0-d8125804156b", + "label": "label-8790", + "height": 286, + "background": "blue" + }, + { + "key": "69bacf29-8d57-424a-aca2-afaf40c58f86", + "label": "label-8791", + "height": 99, + "background": "green" + }, + { + "key": "31d3db9b-e0aa-47fe-8f69-41d38706baa9", + "label": "label-8792", + "height": 130, + "background": "green" + }, + { + "key": "2aea146f-27fa-43b1-9c72-3910a0772568", + "label": "label-8793", + "height": 477, + "background": "green" + }, + { + "key": "42c00cc1-fbee-42a5-8140-37c45fe29570", + "label": "label-8794", + "height": 230, + "background": "blue" + }, + { + "key": "2de9c0b9-5dc6-4913-8216-9a96603dcdcc", + "label": "label-8795", + "height": 114, + "background": "green" + }, + { + "key": "c5aea23c-775c-45ea-a880-6e6ffd45d323", + "label": "label-8796", + "height": 441, + "background": "green" + }, + { + "key": "25d7795d-7af4-4885-aae5-232403054a7b", + "label": "label-8797", + "height": 423, + "background": "green" + }, + { + "key": "da47749c-4990-42b9-bf33-45e092fdf520", + "label": "label-8798", + "height": 473, + "background": "green" + }, + { + "key": "ad440211-e105-403e-a82f-663a7491653b", + "label": "label-8799", + "height": 199, + "background": "blue" + }, + { + "key": "0395bcb7-73df-42c0-802d-fcadf638d3ab", + "label": "label-8800", + "height": 313, + "background": "green" + }, + { + "key": "2819d64f-7b05-4446-ac27-d3ad50f52aa4", + "label": "label-8801", + "height": 223, + "background": "blue" + }, + { + "key": "65ec599b-39c9-42f8-8a1e-5921d15a581f", + "label": "label-8802", + "height": 395, + "background": "yellow" + }, + { + "key": "1b8459dc-c41a-413f-8eff-e9803dcb02d3", + "label": "label-8803", + "height": 509, + "background": "green" + }, + { + "key": "37bba991-2e77-4d5b-b490-4dde082d3240", + "label": "label-8804", + "height": 37, + "background": "green" + }, + { + "key": "44f9c532-8b0c-4d95-b69d-81a3616d923a", + "label": "label-8805", + "height": 508, + "background": "yellow" + }, + { + "key": "cdd630ce-54ea-448b-86bc-26bb6bf631f1", + "label": "label-8806", + "height": 465, + "background": "green" + }, + { + "key": "6910e17f-1b65-4705-8ffc-d4289d0a3b71", + "label": "label-8807", + "height": 269, + "background": "green" + }, + { + "key": "744ee421-e64c-478c-a546-1c3af408b301", + "label": "label-8808", + "height": 454, + "background": "green" + }, + { + "key": "3e6421f7-7b7d-4ea5-a797-a5999fd3a503", + "label": "label-8809", + "height": 141, + "background": "blue" + }, + { + "key": "aa0af9c9-5a56-4d7d-a9c0-73f4234dcf64", + "label": "label-8810", + "height": 317, + "background": "green" + }, + { + "key": "dfe9e647-6d9e-455a-bb8d-b03efda23163", + "label": "label-8811", + "height": 218, + "background": "yellow" + }, + { + "key": "b03d9334-2a9a-49e8-8aa9-4e65e2a15a57", + "label": "label-8812", + "height": 484, + "background": "green" + }, + { + "key": "975a0587-a482-40f4-982d-d9d84f5773e0", + "label": "label-8813", + "height": 294, + "background": "yellow" + }, + { + "key": "bbe858a4-a40d-4eef-b6ea-d412bf4f82ed", + "label": "label-8814", + "height": 40, + "background": "red" + }, + { + "key": "04366cf3-c5d9-4cb7-b6d2-06e8b4e4b7eb", + "label": "label-8815", + "height": 132, + "background": "green" + }, + { + "key": "93e94e5f-f645-46e7-bd4b-c754ed31135f", + "label": "label-8816", + "height": 128, + "background": "blue" + }, + { + "key": "59e053c4-e679-4c40-9da6-b9007c11886f", + "label": "label-8817", + "height": 262, + "background": "yellow" + }, + { + "key": "f9deed8c-679d-4b25-980a-905443bb1792", + "label": "label-8818", + "height": 447, + "background": "blue" + }, + { + "key": "8b6b3d2a-24f6-49b7-9ed3-7bdd7d94421c", + "label": "label-8819", + "height": 116, + "background": "green" + }, + { + "key": "0baf81d7-875a-4f30-9660-1f0d5b728222", + "label": "label-8820", + "height": 382, + "background": "red" + }, + { + "key": "22320b8d-7681-428a-975c-af096a88fef7", + "label": "label-8821", + "height": 307, + "background": "blue" + }, + { + "key": "7a36c100-d4d5-458d-9729-7b85e7c2a61c", + "label": "label-8822", + "height": 131, + "background": "green" + }, + { + "key": "a1d216e8-1308-461c-b77c-b06146b09058", + "label": "label-8823", + "height": 131, + "background": "green" + }, + { + "key": "22aff033-a8e0-4de4-a29d-b4851b303acf", + "label": "label-8824", + "height": 311, + "background": "yellow" + }, + { + "key": "0e097715-652e-4b87-800a-86ebba68ead3", + "label": "label-8825", + "height": 501, + "background": "green" + }, + { + "key": "1e696c77-baab-4f9d-9c0e-e1e8e859ceaa", + "label": "label-8826", + "height": 166, + "background": "blue" + }, + { + "key": "4a62f6ab-efc3-46d9-8056-eb413bbdb48f", + "label": "label-8827", + "height": 312, + "background": "green" + }, + { + "key": "c3c3a1f7-ff2a-4fbf-b099-4de7d67ebee1", + "label": "label-8828", + "height": 318, + "background": "yellow" + }, + { + "key": "1d36371d-7619-49a4-a3d4-34e0742e85d2", + "label": "label-8829", + "height": 381, + "background": "red" + }, + { + "key": "5b9c45ce-dcdc-44df-b3d5-7feef6dab14d", + "label": "label-8830", + "height": 82, + "background": "red" + }, + { + "key": "0a3ba250-8438-4f53-9633-d61309dcaa48", + "label": "label-8831", + "height": 306, + "background": "yellow" + }, + { + "key": "0e029ffc-0c15-4032-ae15-b9e5885f3ee1", + "label": "label-8832", + "height": 244, + "background": "yellow" + }, + { + "key": "3c93ee17-28e6-4625-b6de-a66ee5f3f09d", + "label": "label-8833", + "height": 272, + "background": "yellow" + }, + { + "key": "f56d6852-4d19-4c11-aa7d-d13ae6c9be27", + "label": "label-8834", + "height": 354, + "background": "yellow" + }, + { + "key": "42d38998-3488-4363-8883-47ad2cea20dc", + "label": "label-8835", + "height": 521, + "background": "blue" + }, + { + "key": "893c25bc-abf5-40c7-987b-30e54551ba06", + "label": "label-8836", + "height": 508, + "background": "yellow" + }, + { + "key": "5108943a-803d-45ba-9670-f661f6fc7229", + "label": "label-8837", + "height": 374, + "background": "blue" + }, + { + "key": "f6cf0fd0-917f-43a9-9197-00a9e519f8ea", + "label": "label-8838", + "height": 436, + "background": "red" + }, + { + "key": "f61a1fe5-d0a5-468b-a854-804f1bd13561", + "label": "label-8839", + "height": 52, + "background": "yellow" + }, + { + "key": "a40ad355-c3ed-4efb-8a85-82c7268b2dc7", + "label": "label-8840", + "height": 318, + "background": "yellow" + }, + { + "key": "04ae4089-3b61-41ca-9a59-da575266b7a7", + "label": "label-8841", + "height": 185, + "background": "red" + }, + { + "key": "7c891265-320b-495f-9af5-421fb4905cd6", + "label": "label-8842", + "height": 385, + "background": "yellow" + }, + { + "key": "1308d884-a6d7-4c55-b107-748af37d6e05", + "label": "label-8843", + "height": 340, + "background": "yellow" + }, + { + "key": "545e0a8c-5608-48d4-ade1-9834dcfe7701", + "label": "label-8844", + "height": 345, + "background": "red" + }, + { + "key": "e770548a-b756-41e3-8a7d-22b9132b05de", + "label": "label-8845", + "height": 52, + "background": "yellow" + }, + { + "key": "fc9bb412-5e93-45c3-bcf1-06a01f9f0018", + "label": "label-8846", + "height": 213, + "background": "blue" + }, + { + "key": "c1bc5c00-6cab-449e-8ae3-41e77f119818", + "label": "label-8847", + "height": 78, + "background": "yellow" + }, + { + "key": "2a026a6c-0075-4c61-a7bf-9cd07a28088e", + "label": "label-8848", + "height": 359, + "background": "yellow" + }, + { + "key": "1d2c9e9f-9326-476d-8086-b60ab9e5dc80", + "label": "label-8849", + "height": 413, + "background": "green" + }, + { + "key": "0755fbce-c128-43a2-a406-eb29ff8d3a60", + "label": "label-8850", + "height": 415, + "background": "green" + }, + { + "key": "ad415dd8-df0e-40e3-8e92-56eda6fd3146", + "label": "label-8851", + "height": 442, + "background": "yellow" + }, + { + "key": "f3cdff12-c764-403b-a18c-7c613844cfaf", + "label": "label-8852", + "height": 318, + "background": "yellow" + }, + { + "key": "de7fb3b8-0799-4842-97f4-5c139ec29908", + "label": "label-8853", + "height": 316, + "background": "green" + }, + { + "key": "09b180af-0a1f-45f5-9bd9-671a32ad6e07", + "label": "label-8854", + "height": 132, + "background": "red" + }, + { + "key": "2c77bdb9-7a1f-4ccd-ae7f-223019d085fc", + "label": "label-8855", + "height": 389, + "background": "yellow" + }, + { + "key": "47a27193-e8ea-483e-99a8-449b565333f3", + "label": "label-8856", + "height": 121, + "background": "blue" + }, + { + "key": "e9f9f19a-37d1-45ac-913e-69222f8fc483", + "label": "label-8857", + "height": 449, + "background": "red" + }, + { + "key": "9acbebf4-8835-4703-a6d8-a7d6881823d5", + "label": "label-8858", + "height": 130, + "background": "blue" + }, + { + "key": "1ec778e5-16a1-4f50-922b-f8e69ea2a2a6", + "label": "label-8859", + "height": 283, + "background": "yellow" + }, + { + "key": "7abb9c7d-1d4a-479a-a503-9b0826879975", + "label": "label-8860", + "height": 363, + "background": "red" + }, + { + "key": "cf6f903e-94e2-457a-8dff-9d01abd1e3c5", + "label": "label-8861", + "height": 62, + "background": "yellow" + }, + { + "key": "94315a40-393e-478d-b051-87c586886427", + "label": "label-8862", + "height": 378, + "background": "blue" + }, + { + "key": "3edffe21-6f5f-4355-bca4-59ad6b7e5e59", + "label": "label-8863", + "height": 72, + "background": "yellow" + }, + { + "key": "5ea05d36-c141-461a-a695-be9e134bf913", + "label": "label-8864", + "height": 403, + "background": "red" + }, + { + "key": "58dad165-ee9f-4657-a6c4-7844934a1637", + "label": "label-8865", + "height": 210, + "background": "red" + }, + { + "key": "9b41c5f0-b34c-4fff-b743-26756fd34f7d", + "label": "label-8866", + "height": 162, + "background": "red" + }, + { + "key": "ddff74b2-5b05-4ad9-9ba1-6750ef9cb1a0", + "label": "label-8867", + "height": 491, + "background": "green" + }, + { + "key": "1c56ef35-411a-4111-ac7e-cfa2efad42f1", + "label": "label-8868", + "height": 441, + "background": "green" + }, + { + "key": "6db75821-b6d8-40bb-9f99-320bd56b419b", + "label": "label-8869", + "height": 429, + "background": "green" + }, + { + "key": "fd455cdf-e563-4c47-9312-bec0977043d4", + "label": "label-8870", + "height": 412, + "background": "green" + }, + { + "key": "63f14089-389e-4ff6-9869-dca8cafb44ac", + "label": "label-8871", + "height": 139, + "background": "red" + }, + { + "key": "e752d9c4-8498-4d34-835e-320a198725ab", + "label": "label-8872", + "height": 327, + "background": "blue" + }, + { + "key": "dd4bf592-7851-41db-b120-69b57fbf5f16", + "label": "label-8873", + "height": 363, + "background": "green" + }, + { + "key": "47b0aa1f-5eee-4f90-afd4-bde492206a8c", + "label": "label-8874", + "height": 424, + "background": "green" + }, + { + "key": "209ade49-9f7d-4dca-90ff-9719489a563d", + "label": "label-8875", + "height": 174, + "background": "yellow" + }, + { + "key": "63ad84e5-b20c-4065-be5c-1d9e20599bb8", + "label": "label-8876", + "height": 476, + "background": "blue" + }, + { + "key": "e1f7b253-dab1-4902-b786-f19409efefab", + "label": "label-8877", + "height": 305, + "background": "green" + }, + { + "key": "42f3412d-925e-4ba5-9caa-cae30cf5120f", + "label": "label-8878", + "height": 524, + "background": "red" + }, + { + "key": "70ba6c24-b0c9-4544-b111-17118d3c7a9d", + "label": "label-8879", + "height": 107, + "background": "yellow" + }, + { + "key": "7bcc1003-e09a-4b46-8995-38b3c730602a", + "label": "label-8880", + "height": 503, + "background": "yellow" + }, + { + "key": "b4813037-31c0-4687-90da-5411fe81fa9b", + "label": "label-8881", + "height": 160, + "background": "red" + }, + { + "key": "15f8a97e-7502-46e2-9340-bd24f08cfcd6", + "label": "label-8882", + "height": 238, + "background": "yellow" + }, + { + "key": "02b5e08b-decd-41cf-af4f-df2ceb53df8a", + "label": "label-8883", + "height": 210, + "background": "yellow" + }, + { + "key": "9db79140-ac0f-439b-a41f-4c6cf72fb2a2", + "label": "label-8884", + "height": 200, + "background": "yellow" + }, + { + "key": "9d21f380-6aa9-4843-9373-976116ed8e9a", + "label": "label-8885", + "height": 433, + "background": "red" + }, + { + "key": "79e72149-5984-457a-973a-7cb704f734fd", + "label": "label-8886", + "height": 436, + "background": "green" + }, + { + "key": "a1965f34-8a3a-43ff-88a5-90c59f3a7f87", + "label": "label-8887", + "height": 348, + "background": "red" + }, + { + "key": "bdbbbb06-da2c-440f-a874-2db6c67afb6d", + "label": "label-8888", + "height": 450, + "background": "red" + }, + { + "key": "e398adfb-455f-4ba3-8d58-5bfdfe4ff2a6", + "label": "label-8889", + "height": 367, + "background": "yellow" + }, + { + "key": "5da49e62-f11f-450c-8b97-d18cdd99bebe", + "label": "label-8890", + "height": 146, + "background": "blue" + }, + { + "key": "7fde32ee-bf21-4f76-a627-67a20ef51549", + "label": "label-8891", + "height": 350, + "background": "yellow" + }, + { + "key": "a893161f-4f28-49bb-92c8-fba7fd31a0db", + "label": "label-8892", + "height": 221, + "background": "yellow" + }, + { + "key": "84039436-abd5-45aa-8660-6217e309a332", + "label": "label-8893", + "height": 258, + "background": "red" + }, + { + "key": "cce65c80-24fb-4374-bfcc-c0c31ea72b32", + "label": "label-8894", + "height": 506, + "background": "green" + }, + { + "key": "11196e15-4e2d-45ad-bdb3-ccf98ab31c32", + "label": "label-8895", + "height": 104, + "background": "red" + }, + { + "key": "c718206c-2901-48ef-80b0-da1b0fff8585", + "label": "label-8896", + "height": 468, + "background": "blue" + }, + { + "key": "44e7687f-a725-4732-a447-12cd2f91d382", + "label": "label-8897", + "height": 120, + "background": "yellow" + }, + { + "key": "08146ccc-5c17-4fcf-8081-99de43e78d41", + "label": "label-8898", + "height": 100, + "background": "blue" + }, + { + "key": "f8d9b0dd-ac61-433b-b087-97272f4a9d46", + "label": "label-8899", + "height": 359, + "background": "blue" + }, + { + "key": "1d25c926-779f-4467-9128-cca9f30430c8", + "label": "label-8900", + "height": 358, + "background": "yellow" + }, + { + "key": "94580e69-bbcb-46a6-a6e6-4e3de115ca9d", + "label": "label-8901", + "height": 173, + "background": "green" + }, + { + "key": "8d634fff-f44a-4172-b804-6c8e1a2e2d12", + "label": "label-8902", + "height": 62, + "background": "blue" + }, + { + "key": "7984859e-1e60-40ca-af87-2b51d4ed304f", + "label": "label-8903", + "height": 474, + "background": "yellow" + }, + { + "key": "3deaa041-9ed1-4561-b240-3c4e52470e6c", + "label": "label-8904", + "height": 524, + "background": "green" + }, + { + "key": "dd9a0b9b-36c0-4e0a-8e91-4a03df295879", + "label": "label-8905", + "height": 385, + "background": "blue" + }, + { + "key": "b637b241-dccc-4b86-84e3-42c23693c16f", + "label": "label-8906", + "height": 380, + "background": "blue" + }, + { + "key": "23391462-4900-49bb-91df-dd5a5e09be4c", + "label": "label-8907", + "height": 473, + "background": "blue" + }, + { + "key": "b4bf88fd-73ab-44ac-abf1-44eacb6b6156", + "label": "label-8908", + "height": 192, + "background": "yellow" + }, + { + "key": "ddc26e39-9d32-489b-b08b-934604ae1937", + "label": "label-8909", + "height": 493, + "background": "blue" + }, + { + "key": "534a9bd1-464d-4ec9-b16f-91253d982677", + "label": "label-8910", + "height": 518, + "background": "red" + }, + { + "key": "a7c567ab-a279-45a1-ac88-0ae69b2fd67b", + "label": "label-8911", + "height": 341, + "background": "red" + }, + { + "key": "da97b316-b0ad-40f0-94c5-8fe8115d84fb", + "label": "label-8912", + "height": 278, + "background": "red" + }, + { + "key": "90586b7a-74dc-4be8-9293-761bb72ac74a", + "label": "label-8913", + "height": 340, + "background": "green" + }, + { + "key": "7c5b6c54-3f71-4e9b-a023-30de3709ee85", + "label": "label-8914", + "height": 195, + "background": "yellow" + }, + { + "key": "c8e5ed7c-c845-4452-a395-746eb437a31b", + "label": "label-8915", + "height": 486, + "background": "yellow" + }, + { + "key": "5bea8f22-f611-486d-b3c1-9b6905148115", + "label": "label-8916", + "height": 320, + "background": "green" + }, + { + "key": "fa9e4f06-91bd-4bf3-89aa-fbcff5e2e7ef", + "label": "label-8917", + "height": 248, + "background": "green" + }, + { + "key": "d5d1c56c-3163-4bd3-8def-9e0851fd5a5b", + "label": "label-8918", + "height": 179, + "background": "yellow" + }, + { + "key": "b33fda69-8530-4dc4-9655-41b63a4d86cb", + "label": "label-8919", + "height": 472, + "background": "green" + }, + { + "key": "a7f024b8-2215-4c31-9ffc-ad26b0244118", + "label": "label-8920", + "height": 241, + "background": "blue" + }, + { + "key": "740a9d59-2ee3-4bdc-992d-7433f649601f", + "label": "label-8921", + "height": 303, + "background": "green" + }, + { + "key": "1af60cbc-ede7-470e-b630-0b2af1d37c30", + "label": "label-8922", + "height": 342, + "background": "yellow" + }, + { + "key": "889d2235-b9a4-4811-8de8-babbbc3b2dcb", + "label": "label-8923", + "height": 236, + "background": "green" + }, + { + "key": "c5c679bc-8ad9-4f5c-a80d-c42ce5480d10", + "label": "label-8924", + "height": 439, + "background": "red" + }, + { + "key": "56dbf6c0-b38e-48b1-8fdf-326d8bbddc54", + "label": "label-8925", + "height": 477, + "background": "green" + }, + { + "key": "66e89318-8f85-4999-be44-1b8649a0f409", + "label": "label-8926", + "height": 259, + "background": "blue" + }, + { + "key": "3472d0de-4738-42e5-a1cc-9448d7a07ba8", + "label": "label-8927", + "height": 130, + "background": "blue" + }, + { + "key": "d9aa45d2-d39f-40cb-b885-10e86c1fc833", + "label": "label-8928", + "height": 72, + "background": "green" + }, + { + "key": "c241dffb-c610-496d-a780-3350cd41dcdc", + "label": "label-8929", + "height": 206, + "background": "yellow" + }, + { + "key": "259567d2-852b-4f12-b227-92347bcf9d2b", + "label": "label-8930", + "height": 488, + "background": "yellow" + }, + { + "key": "db9f55ca-3e7a-4b76-ab7a-3c7406036056", + "label": "label-8931", + "height": 170, + "background": "green" + }, + { + "key": "9f9d8f4a-72f0-452b-a555-f72607f4f619", + "label": "label-8932", + "height": 529, + "background": "blue" + }, + { + "key": "220d28ae-1799-448b-8d44-e116cb0324ff", + "label": "label-8933", + "height": 104, + "background": "yellow" + }, + { + "key": "34bdd4b3-d727-4f53-a773-b1c63ba0bddb", + "label": "label-8934", + "height": 457, + "background": "blue" + }, + { + "key": "d0702adb-4f0e-4222-99de-f5a5435e9183", + "label": "label-8935", + "height": 164, + "background": "yellow" + }, + { + "key": "8d4067b9-745a-49a5-b9c4-2df85d0dff7c", + "label": "label-8936", + "height": 116, + "background": "blue" + }, + { + "key": "09b9aaca-73a6-4b78-a46b-99577f81da4d", + "label": "label-8937", + "height": 336, + "background": "red" + }, + { + "key": "421818f4-4cb0-464b-a289-c24831b509ef", + "label": "label-8938", + "height": 215, + "background": "green" + }, + { + "key": "09bee5f8-b714-41a5-947f-f7f67597dc74", + "label": "label-8939", + "height": 56, + "background": "yellow" + }, + { + "key": "cfc4fb7a-9fbc-48ab-a252-42f24bde25d5", + "label": "label-8940", + "height": 454, + "background": "blue" + }, + { + "key": "e0148f48-14c9-49c2-8abb-5f43b74c1ef7", + "label": "label-8941", + "height": 38, + "background": "red" + }, + { + "key": "f3d3cd5e-353d-44cf-ac6c-168fe56f2158", + "label": "label-8942", + "height": 160, + "background": "green" + }, + { + "key": "f70e5fd9-6a69-4537-8298-2e507a91d364", + "label": "label-8943", + "height": 232, + "background": "green" + }, + { + "key": "e11360ca-e5db-4ab9-8263-af5ea5de5228", + "label": "label-8944", + "height": 354, + "background": "blue" + }, + { + "key": "69eac432-c35e-4eab-9435-35ff648e308f", + "label": "label-8945", + "height": 334, + "background": "red" + }, + { + "key": "38f7be78-3271-494e-b8c1-a5d6fbdd90bf", + "label": "label-8946", + "height": 472, + "background": "green" + }, + { + "key": "2cb17b49-2b87-4c9a-8b17-be67e64f4007", + "label": "label-8947", + "height": 46, + "background": "green" + }, + { + "key": "d7a7c256-61b6-4a20-8465-333290bfbdec", + "label": "label-8948", + "height": 212, + "background": "green" + }, + { + "key": "c493b601-7233-4c35-8c77-3ef5b5377034", + "label": "label-8949", + "height": 459, + "background": "red" + }, + { + "key": "3dcc8de5-5080-4c3a-beef-3fb08db51bc1", + "label": "label-8950", + "height": 116, + "background": "red" + }, + { + "key": "d9c3f236-727e-4493-ab21-6c6cbc93b4d3", + "label": "label-8951", + "height": 429, + "background": "yellow" + }, + { + "key": "164cec0c-abfb-49e9-b1e1-78622c11402e", + "label": "label-8952", + "height": 528, + "background": "blue" + }, + { + "key": "a7983a5a-def2-4530-96c8-0aa4cd4891b8", + "label": "label-8953", + "height": 105, + "background": "green" + }, + { + "key": "68662110-2e37-4163-b061-a9677e997135", + "label": "label-8954", + "height": 276, + "background": "red" + }, + { + "key": "45969d41-26a4-4c37-86ee-338dd9f00dfc", + "label": "label-8955", + "height": 147, + "background": "yellow" + }, + { + "key": "2216c0f1-ba50-4eee-8ae4-9c115094e591", + "label": "label-8956", + "height": 94, + "background": "blue" + }, + { + "key": "986d3864-f503-4b5a-825b-d2d24cf18f09", + "label": "label-8957", + "height": 346, + "background": "blue" + }, + { + "key": "69eca8c4-27d2-40b5-8237-92279757cdb5", + "label": "label-8958", + "height": 74, + "background": "blue" + }, + { + "key": "e28d9516-7612-4d81-be47-97d0a5786b27", + "label": "label-8959", + "height": 459, + "background": "yellow" + }, + { + "key": "50647621-de31-4564-a05f-22e35be87727", + "label": "label-8960", + "height": 429, + "background": "red" + }, + { + "key": "3af1fc08-9f71-47a5-a26b-744432091c9d", + "label": "label-8961", + "height": 86, + "background": "blue" + }, + { + "key": "f5fd7a3f-da63-4ac3-9c60-8533f4750576", + "label": "label-8962", + "height": 331, + "background": "green" + }, + { + "key": "8ef99f1b-b582-45ea-ab7e-98edf12f925d", + "label": "label-8963", + "height": 245, + "background": "blue" + }, + { + "key": "20797bd1-a75c-41db-a4bb-739b6c0a7de2", + "label": "label-8964", + "height": 263, + "background": "green" + }, + { + "key": "a106909f-ddf7-4509-bdec-d0ba91ce745f", + "label": "label-8965", + "height": 261, + "background": "red" + }, + { + "key": "e3496267-80ba-49a7-b397-96c2bcbf5e93", + "label": "label-8966", + "height": 136, + "background": "red" + }, + { + "key": "ecd2839a-4499-4f7d-a01c-f0df7d0678bb", + "label": "label-8967", + "height": 410, + "background": "blue" + }, + { + "key": "765b7670-9287-4796-835e-0f33c69cab8c", + "label": "label-8968", + "height": 399, + "background": "blue" + }, + { + "key": "7cb57950-74ee-49e4-b6df-075ab835572f", + "label": "label-8969", + "height": 315, + "background": "red" + }, + { + "key": "af79ab8d-dd62-4c4a-905c-5b888fe2193f", + "label": "label-8970", + "height": 243, + "background": "blue" + }, + { + "key": "b664b7a7-a361-4ce7-a54c-8542d75b9396", + "label": "label-8971", + "height": 40, + "background": "red" + }, + { + "key": "e5e485c7-210b-4ba7-bfaa-cc6e6b3e0286", + "label": "label-8972", + "height": 463, + "background": "green" + }, + { + "key": "9ea80bd3-839e-436a-8f30-4fdab925e5c3", + "label": "label-8973", + "height": 327, + "background": "green" + }, + { + "key": "de8258cc-cdf1-4c9c-a8b3-79dbf2b86d10", + "label": "label-8974", + "height": 420, + "background": "green" + }, + { + "key": "75fed6f0-4eb4-4b45-9006-c2140b46bc72", + "label": "label-8975", + "height": 114, + "background": "yellow" + }, + { + "key": "4b99c002-b46c-4fd1-a5cb-a1bda369e33c", + "label": "label-8976", + "height": 73, + "background": "blue" + }, + { + "key": "866f3c3d-d045-4620-b067-a38aa974620d", + "label": "label-8977", + "height": 58, + "background": "green" + }, + { + "key": "6aa70e81-ea94-4104-9ce6-ccaf916804ec", + "label": "label-8978", + "height": 421, + "background": "green" + }, + { + "key": "db03a130-3a1c-457d-8d6e-1b8201cb4401", + "label": "label-8979", + "height": 342, + "background": "yellow" + }, + { + "key": "ad319728-7be4-4de3-8309-56c0228fdeb8", + "label": "label-8980", + "height": 102, + "background": "blue" + }, + { + "key": "14702fff-ee6a-4e22-b571-94653d3f0d8a", + "label": "label-8981", + "height": 247, + "background": "blue" + }, + { + "key": "642e4490-be71-4f21-afa2-0bb0aaa6bb26", + "label": "label-8982", + "height": 471, + "background": "blue" + }, + { + "key": "cd16eac0-1cb1-4a2d-95f9-d4ef1ff330f7", + "label": "label-8983", + "height": 391, + "background": "green" + }, + { + "key": "735ab047-c76e-4c7e-ac29-9fcdd2ded401", + "label": "label-8984", + "height": 387, + "background": "green" + }, + { + "key": "478ec901-7427-4ad8-ab88-568e504bf8a2", + "label": "label-8985", + "height": 165, + "background": "red" + }, + { + "key": "da312c79-9f3f-485d-8c99-7e47dab06ff6", + "label": "label-8986", + "height": 44, + "background": "blue" + }, + { + "key": "e1d89eda-4ec3-42fa-ac69-444b05433d63", + "label": "label-8987", + "height": 297, + "background": "blue" + }, + { + "key": "dfd69ec5-c3ae-41f4-bc03-3a3607297450", + "label": "label-8988", + "height": 410, + "background": "blue" + }, + { + "key": "07d1338d-d850-4e62-a6ce-7efe71b5caa5", + "label": "label-8989", + "height": 275, + "background": "blue" + }, + { + "key": "1315d2be-d71d-4a95-bf34-875104071575", + "label": "label-8990", + "height": 319, + "background": "yellow" + }, + { + "key": "289088a0-4a46-4752-aa73-c2eddf0c4d1a", + "label": "label-8991", + "height": 405, + "background": "blue" + }, + { + "key": "1948b410-4974-44ea-bc6b-bf0e9dc14bad", + "label": "label-8992", + "height": 472, + "background": "yellow" + }, + { + "key": "d7d34985-c7ee-437a-96f0-d116d8745be6", + "label": "label-8993", + "height": 299, + "background": "blue" + }, + { + "key": "d13d2c43-6b01-492e-b1c3-0e3576d3dd76", + "label": "label-8994", + "height": 391, + "background": "green" + }, + { + "key": "0490fc08-72e4-4371-b796-eaad46d87bf9", + "label": "label-8995", + "height": 435, + "background": "green" + }, + { + "key": "912c0caa-46fc-4546-a3d4-f2edf754035f", + "label": "label-8996", + "height": 330, + "background": "yellow" + }, + { + "key": "bb6293ce-7087-48b9-92c8-d308226e1003", + "label": "label-8997", + "height": 366, + "background": "green" + }, + { + "key": "e72c4519-c690-4cb2-992b-ceff6f7b890b", + "label": "label-8998", + "height": 405, + "background": "green" + }, + { + "key": "9ec6a9f9-3dd5-4c1d-813a-2b5674bb15c5", + "label": "label-8999", + "height": 371, + "background": "blue" + }, + { + "key": "69895326-f51c-4ad2-a374-4d935e42e2f9", + "label": "label-9000", + "height": 103, + "background": "green" + }, + { + "key": "753b5e4a-3a5e-4220-844b-e5d682848c27", + "label": "label-9001", + "height": 326, + "background": "yellow" + }, + { + "key": "11983fdd-7584-412c-ae80-892e22c3896d", + "label": "label-9002", + "height": 501, + "background": "yellow" + }, + { + "key": "b9c8292b-ad2a-43a4-b59a-5934ae0e793e", + "label": "label-9003", + "height": 371, + "background": "green" + }, + { + "key": "9a109916-1c7d-4bd2-8dde-8f4cd60a7af9", + "label": "label-9004", + "height": 420, + "background": "yellow" + }, + { + "key": "e2e33fb4-55fc-4696-bf67-68b17700ddb0", + "label": "label-9005", + "height": 227, + "background": "yellow" + }, + { + "key": "7ecaf537-d092-4d1e-a49a-0dd48a03d6af", + "label": "label-9006", + "height": 244, + "background": "blue" + }, + { + "key": "1114dad9-60b6-4de7-b56d-c733999c4fb0", + "label": "label-9007", + "height": 431, + "background": "green" + }, + { + "key": "aad89ee1-c0fd-40bc-aa27-f47fe1d667ff", + "label": "label-9008", + "height": 335, + "background": "yellow" + }, + { + "key": "69610739-e139-4db5-8a6d-ebb2b3df9abf", + "label": "label-9009", + "height": 88, + "background": "yellow" + }, + { + "key": "1f653011-1cce-496d-8203-9c67f582670f", + "label": "label-9010", + "height": 492, + "background": "blue" + }, + { + "key": "dc445f00-f4ac-4e49-8c58-e6697bbbda51", + "label": "label-9011", + "height": 239, + "background": "yellow" + }, + { + "key": "6867d0e0-5464-49ee-9216-11b7ac587689", + "label": "label-9012", + "height": 233, + "background": "red" + }, + { + "key": "765320da-a36f-4b51-906e-2a78652dc434", + "label": "label-9013", + "height": 403, + "background": "blue" + }, + { + "key": "65686375-1728-4702-8989-51189a3d3abb", + "label": "label-9014", + "height": 74, + "background": "green" + }, + { + "key": "31dd7c81-8d46-4e44-8955-f4f2292c3773", + "label": "label-9015", + "height": 370, + "background": "yellow" + }, + { + "key": "ecb86253-ba0c-439d-a4be-63aad031d079", + "label": "label-9016", + "height": 392, + "background": "red" + }, + { + "key": "7e4adecf-aa34-4200-a35c-9640424649a8", + "label": "label-9017", + "height": 118, + "background": "blue" + }, + { + "key": "667fb574-b46d-4aa2-b347-1e70ba3f0377", + "label": "label-9018", + "height": 227, + "background": "yellow" + }, + { + "key": "fbfaf908-de6b-4feb-bc49-c8d38910bdb7", + "label": "label-9019", + "height": 481, + "background": "green" + }, + { + "key": "c5876577-a883-4de2-a0dd-7fdeaf82b5bd", + "label": "label-9020", + "height": 233, + "background": "red" + }, + { + "key": "3b78f5b2-615c-4818-9e4c-ea2dd4abc72d", + "label": "label-9021", + "height": 239, + "background": "red" + }, + { + "key": "cd872d4a-1235-41f3-9a25-34824e500b89", + "label": "label-9022", + "height": 185, + "background": "red" + }, + { + "key": "e896bb70-50d9-4a53-9828-b6578d9d939d", + "label": "label-9023", + "height": 70, + "background": "blue" + }, + { + "key": "37de137f-9810-438d-b01a-e7038c182360", + "label": "label-9024", + "height": 58, + "background": "red" + }, + { + "key": "5b3d553e-4a9d-4649-93ff-ed8fb9ee8e96", + "label": "label-9025", + "height": 482, + "background": "blue" + }, + { + "key": "d1279e43-430a-469a-a62e-ee4c57835364", + "label": "label-9026", + "height": 496, + "background": "blue" + }, + { + "key": "e0b16ee4-9695-4f7a-8e00-468ca4472199", + "label": "label-9027", + "height": 296, + "background": "green" + }, + { + "key": "20e4ef9e-5555-47a4-b3f3-f7c19524c9d2", + "label": "label-9028", + "height": 250, + "background": "red" + }, + { + "key": "f26ba519-04fe-4e69-9515-3cef20f05dd1", + "label": "label-9029", + "height": 362, + "background": "red" + }, + { + "key": "33a5eb87-f46f-40db-a9e0-e52a046f348a", + "label": "label-9030", + "height": 91, + "background": "yellow" + }, + { + "key": "91638b41-424a-4ec7-bb2a-2d02ae3a2973", + "label": "label-9031", + "height": 318, + "background": "blue" + }, + { + "key": "7fdedb17-62e9-498f-9e46-c63d25ae253e", + "label": "label-9032", + "height": 341, + "background": "green" + }, + { + "key": "7e5b69ee-a9e8-4d94-9365-8715c8f970bb", + "label": "label-9033", + "height": 454, + "background": "red" + }, + { + "key": "92793619-5ffe-4487-aad6-1557e4db0cc6", + "label": "label-9034", + "height": 409, + "background": "blue" + }, + { + "key": "b3d9ea48-09ef-4e72-a446-376867b745ca", + "label": "label-9035", + "height": 243, + "background": "blue" + }, + { + "key": "d277e8fa-d661-4a63-8ebd-7f61f7f6dd68", + "label": "label-9036", + "height": 242, + "background": "red" + }, + { + "key": "af53981b-5781-49e3-8625-ec1e6b5fa40b", + "label": "label-9037", + "height": 186, + "background": "green" + }, + { + "key": "be0fad98-e738-41dc-b0ac-9f6246fe5604", + "label": "label-9038", + "height": 375, + "background": "yellow" + }, + { + "key": "ab77e34f-51a8-4512-a01e-c57481026947", + "label": "label-9039", + "height": 195, + "background": "red" + }, + { + "key": "a20f5032-eb7f-4f6a-94dd-bf92abb1386e", + "label": "label-9040", + "height": 256, + "background": "yellow" + }, + { + "key": "f590f0b4-3866-419f-84c3-c3d933642549", + "label": "label-9041", + "height": 328, + "background": "blue" + }, + { + "key": "1a768a74-5529-4715-91a6-d8e81f8dbdc2", + "label": "label-9042", + "height": 124, + "background": "red" + }, + { + "key": "f6a20d38-1a01-4cc5-9a39-f047a863057f", + "label": "label-9043", + "height": 531, + "background": "yellow" + }, + { + "key": "ed0d2cb0-adc8-4b46-ade1-98ba1ae20eb1", + "label": "label-9044", + "height": 51, + "background": "green" + }, + { + "key": "ddfec461-b857-4acd-8389-a02f132b21a0", + "label": "label-9045", + "height": 58, + "background": "red" + }, + { + "key": "01911bf5-1a12-404e-a445-a3d49c6f4816", + "label": "label-9046", + "height": 150, + "background": "yellow" + }, + { + "key": "7aac13b5-4594-4dca-82f1-fd6cded1ec35", + "label": "label-9047", + "height": 238, + "background": "green" + }, + { + "key": "518b8a27-1813-4cb7-a063-1fd2d772e8f5", + "label": "label-9048", + "height": 491, + "background": "red" + }, + { + "key": "54d99903-be06-44af-8620-b6c7641da757", + "label": "label-9049", + "height": 338, + "background": "green" + }, + { + "key": "3bddcba3-4a43-4e24-9fa3-3dc52e07cdda", + "label": "label-9050", + "height": 193, + "background": "red" + }, + { + "key": "bf166f78-97c8-42da-9361-3e5ad716a545", + "label": "label-9051", + "height": 78, + "background": "blue" + }, + { + "key": "69aff0b5-7642-4d08-86f9-07ff96bb06ed", + "label": "label-9052", + "height": 521, + "background": "green" + }, + { + "key": "64a5b4d2-1543-4fce-a00e-1cdcb5ca8e4c", + "label": "label-9053", + "height": 362, + "background": "red" + }, + { + "key": "c7bf25c2-3c93-4f43-92bc-84c5ef2183e2", + "label": "label-9054", + "height": 248, + "background": "red" + }, + { + "key": "a13e7d0b-4f4f-4566-aaf6-b067086f83b3", + "label": "label-9055", + "height": 362, + "background": "blue" + }, + { + "key": "d5d1bd22-0ed8-452f-82cc-70cfdd6b8147", + "label": "label-9056", + "height": 290, + "background": "green" + }, + { + "key": "37bc6728-8d3a-48df-ab87-f8950fc90957", + "label": "label-9057", + "height": 347, + "background": "yellow" + }, + { + "key": "1c04347c-2d6b-4c4a-9e1f-93e1a0e9a9d0", + "label": "label-9058", + "height": 141, + "background": "blue" + }, + { + "key": "2d42f626-fbe1-4122-89fa-6fc04b5368ed", + "label": "label-9059", + "height": 432, + "background": "red" + }, + { + "key": "1388956c-328d-4191-a90a-0db80826c0ff", + "label": "label-9060", + "height": 328, + "background": "yellow" + }, + { + "key": "8d0ab7a4-4379-4147-844d-086cce29b8fd", + "label": "label-9061", + "height": 416, + "background": "red" + }, + { + "key": "7d1de24d-67fa-42cd-9897-88f56773cff4", + "label": "label-9062", + "height": 251, + "background": "red" + }, + { + "key": "e4fcb6f3-035a-4b60-ae0f-bc685cd5ca65", + "label": "label-9063", + "height": 143, + "background": "blue" + }, + { + "key": "6c56ad88-28f8-4767-b914-818c2dd3744a", + "label": "label-9064", + "height": 298, + "background": "green" + }, + { + "key": "06b1c56b-c39b-4139-a06a-7c9a7cd99ae6", + "label": "label-9065", + "height": 191, + "background": "blue" + }, + { + "key": "068c9b2e-73d5-4b52-9bce-c2d7040221fd", + "label": "label-9066", + "height": 195, + "background": "blue" + }, + { + "key": "961ac68b-a62e-49c2-ab11-67a18d2c1c6b", + "label": "label-9067", + "height": 124, + "background": "green" + }, + { + "key": "53dd2f9f-9fea-4c9e-9689-d5642d7b4424", + "label": "label-9068", + "height": 233, + "background": "green" + }, + { + "key": "56f39bc7-4af0-4266-baa1-6e26a131771d", + "label": "label-9069", + "height": 256, + "background": "blue" + }, + { + "key": "c1663faa-1596-4f9e-a6a2-9c0ee8dbabbe", + "label": "label-9070", + "height": 414, + "background": "red" + }, + { + "key": "9b9c4ed4-574e-4e92-b3f3-63ff15d060bf", + "label": "label-9071", + "height": 353, + "background": "green" + }, + { + "key": "ee2d4790-77f4-4937-a2e4-3e1a9149bf98", + "label": "label-9072", + "height": 263, + "background": "yellow" + }, + { + "key": "4859ad52-02e7-4945-8140-28bf64975bea", + "label": "label-9073", + "height": 197, + "background": "red" + }, + { + "key": "9eeeee40-f66d-4654-9446-9c042ac7d351", + "label": "label-9074", + "height": 339, + "background": "green" + }, + { + "key": "8d99c666-6152-4474-8441-7e3dbe4825d0", + "label": "label-9075", + "height": 129, + "background": "blue" + }, + { + "key": "063ba6f4-cb3e-4a85-ad31-dec5f60377ef", + "label": "label-9076", + "height": 297, + "background": "yellow" + }, + { + "key": "36af8fd9-6a13-4c37-84ba-e5da8a142f09", + "label": "label-9077", + "height": 189, + "background": "yellow" + }, + { + "key": "08f35653-75fc-4cc4-8c0a-ec2d03e07e3a", + "label": "label-9078", + "height": 220, + "background": "green" + }, + { + "key": "bef8aaf5-6ba7-4cf4-bc08-6022b65415de", + "label": "label-9079", + "height": 106, + "background": "green" + }, + { + "key": "545eacfe-e939-4dbe-897d-e60f0fa7de7f", + "label": "label-9080", + "height": 41, + "background": "yellow" + }, + { + "key": "e9b35c3a-4a2e-4f53-84b0-8421d455e6dc", + "label": "label-9081", + "height": 485, + "background": "red" + }, + { + "key": "e4942a2e-88d5-4257-a647-624ad6406443", + "label": "label-9082", + "height": 313, + "background": "red" + }, + { + "key": "22a1adfc-9236-49fe-ab4c-3e2b50a75ecd", + "label": "label-9083", + "height": 256, + "background": "red" + }, + { + "key": "72ae3f6c-b1b9-4a0a-8d23-3069938d9f48", + "label": "label-9084", + "height": 272, + "background": "blue" + }, + { + "key": "87a6588d-2114-4523-92ff-f2ec14770277", + "label": "label-9085", + "height": 298, + "background": "red" + }, + { + "key": "bff874c9-2b02-4796-8fb6-5a48407f2c4c", + "label": "label-9086", + "height": 225, + "background": "green" + }, + { + "key": "8a58a18b-a4ae-43b4-92b8-fc8a2d3bca53", + "label": "label-9087", + "height": 309, + "background": "yellow" + }, + { + "key": "1ede14a1-8751-4793-949d-6816a184e547", + "label": "label-9088", + "height": 466, + "background": "yellow" + }, + { + "key": "54a7c31d-f6d3-44c1-b617-3afcdfc3d729", + "label": "label-9089", + "height": 318, + "background": "green" + }, + { + "key": "a9d81cd1-e9d6-4f06-951c-8013888bb22e", + "label": "label-9090", + "height": 500, + "background": "yellow" + }, + { + "key": "57e5225f-888d-4755-9963-8e8171509d23", + "label": "label-9091", + "height": 506, + "background": "green" + }, + { + "key": "dc638b56-48bd-4e51-baa5-ba6ddd67898e", + "label": "label-9092", + "height": 384, + "background": "blue" + }, + { + "key": "64a33cdb-807a-41d2-b74f-7f8cb027ac63", + "label": "label-9093", + "height": 518, + "background": "yellow" + }, + { + "key": "3ca251a0-242d-4b35-a1d9-e510b62828cb", + "label": "label-9094", + "height": 460, + "background": "blue" + }, + { + "key": "ee5eca46-8f8c-446d-9108-cbb444f1bc32", + "label": "label-9095", + "height": 295, + "background": "green" + }, + { + "key": "7d254098-e8ab-4c69-b627-d1c6f8aded1d", + "label": "label-9096", + "height": 224, + "background": "blue" + }, + { + "key": "8e9681be-5c85-44ac-8e23-9a42bccd2602", + "label": "label-9097", + "height": 101, + "background": "red" + }, + { + "key": "240b0525-7030-42b4-8b5c-72bde9b6abc7", + "label": "label-9098", + "height": 352, + "background": "red" + }, + { + "key": "442830ae-6983-4c97-9672-b82cf289c26c", + "label": "label-9099", + "height": 252, + "background": "green" + }, + { + "key": "c2f48b0c-0359-479b-a4ae-977201ebfb10", + "label": "label-9100", + "height": 513, + "background": "yellow" + }, + { + "key": "82529f79-070a-4c2d-aec0-83dcb8ec425d", + "label": "label-9101", + "height": 74, + "background": "blue" + }, + { + "key": "b933f936-a303-4d75-a84a-0ad36d809cff", + "label": "label-9102", + "height": 474, + "background": "blue" + }, + { + "key": "154c4c7c-a8ab-4c4c-b668-d34891faa9ac", + "label": "label-9103", + "height": 225, + "background": "blue" + }, + { + "key": "48f67008-8f4b-45f8-b5c2-7211fd68f990", + "label": "label-9104", + "height": 416, + "background": "yellow" + }, + { + "key": "cb8e6167-afaa-4a31-aef4-2e8000c5de29", + "label": "label-9105", + "height": 356, + "background": "red" + }, + { + "key": "20cef492-6edb-45ac-947b-66a24e3fe8e5", + "label": "label-9106", + "height": 524, + "background": "yellow" + }, + { + "key": "b192560e-136c-4eac-ad41-960764c61763", + "label": "label-9107", + "height": 400, + "background": "blue" + }, + { + "key": "20d03954-05a8-4027-b109-2924205563f2", + "label": "label-9108", + "height": 202, + "background": "yellow" + }, + { + "key": "081cf06f-d6d9-443b-b360-1d7976037ad9", + "label": "label-9109", + "height": 450, + "background": "red" + }, + { + "key": "a4126932-ca6d-4135-8825-1451a8f4a9d1", + "label": "label-9110", + "height": 90, + "background": "yellow" + }, + { + "key": "75b0291e-e8bd-454d-bd8a-19240c602459", + "label": "label-9111", + "height": 467, + "background": "red" + }, + { + "key": "93fa744b-d25c-485c-8752-1640df593512", + "label": "label-9112", + "height": 166, + "background": "red" + }, + { + "key": "8ddbcaef-c51a-4c5f-b7d8-6e1e62bbeeb5", + "label": "label-9113", + "height": 444, + "background": "blue" + }, + { + "key": "c166e4be-f1e9-42c9-abec-3d15669a2d54", + "label": "label-9114", + "height": 98, + "background": "yellow" + }, + { + "key": "b93b7350-cde4-42b1-a005-2f13b5ce79e1", + "label": "label-9115", + "height": 523, + "background": "red" + }, + { + "key": "6c621376-5daa-4323-ad46-7e317bb4b0f6", + "label": "label-9116", + "height": 511, + "background": "blue" + }, + { + "key": "36b341cd-d294-4267-9075-df4008a45526", + "label": "label-9117", + "height": 501, + "background": "red" + }, + { + "key": "c49f929f-f054-4d84-b501-3aaa5c3731ae", + "label": "label-9118", + "height": 209, + "background": "green" + }, + { + "key": "5a29f334-250b-4fc8-93ff-a89a8d37cbb9", + "label": "label-9119", + "height": 184, + "background": "red" + }, + { + "key": "fffbb71c-ad50-4245-97c5-d7bf0993ac3b", + "label": "label-9120", + "height": 145, + "background": "yellow" + }, + { + "key": "68605e2d-a39f-4984-a2f5-c07b0812905b", + "label": "label-9121", + "height": 432, + "background": "green" + }, + { + "key": "52cbb704-b6a0-49d5-9ef8-c047ad2ca7ae", + "label": "label-9122", + "height": 158, + "background": "green" + }, + { + "key": "f0cd2b79-776d-4d9e-9506-1fcb2334ed91", + "label": "label-9123", + "height": 506, + "background": "yellow" + }, + { + "key": "ddecd8a9-9d47-4901-8d02-95919bd56d6a", + "label": "label-9124", + "height": 76, + "background": "yellow" + }, + { + "key": "661cbda7-a06f-41c8-86bc-1a07daaab721", + "label": "label-9125", + "height": 380, + "background": "yellow" + }, + { + "key": "2e49a827-8983-4275-bd44-fe6f69f8c4de", + "label": "label-9126", + "height": 241, + "background": "blue" + }, + { + "key": "c6a2c853-efa4-4f4e-a4d1-632cfcc0b673", + "label": "label-9127", + "height": 326, + "background": "blue" + }, + { + "key": "b6b8c134-d62a-4272-90a4-f265908ac8b5", + "label": "label-9128", + "height": 304, + "background": "green" + }, + { + "key": "2f183ea8-0208-4b9b-b8a8-26181217aa93", + "label": "label-9129", + "height": 63, + "background": "green" + }, + { + "key": "017f7f12-e73b-4c38-a0fa-7b570b31ba1a", + "label": "label-9130", + "height": 39, + "background": "red" + }, + { + "key": "c8c00038-be10-4cd9-8e1e-dad09091525a", + "label": "label-9131", + "height": 103, + "background": "red" + }, + { + "key": "7854b0a2-9fb1-43d9-9b69-ca0fda5459c2", + "label": "label-9132", + "height": 310, + "background": "green" + }, + { + "key": "b0d26e9b-7419-411e-b844-d673e0080dea", + "label": "label-9133", + "height": 355, + "background": "blue" + }, + { + "key": "6e1dc833-3fbc-418a-aab8-03214c7d02e4", + "label": "label-9134", + "height": 422, + "background": "red" + }, + { + "key": "16d7dd76-5a04-479e-b6c7-b984405db48d", + "label": "label-9135", + "height": 433, + "background": "yellow" + }, + { + "key": "09658270-3104-4573-adb8-a292b4292bbd", + "label": "label-9136", + "height": 83, + "background": "red" + }, + { + "key": "11c139d5-56d2-4a95-a346-3acfd2da29b1", + "label": "label-9137", + "height": 151, + "background": "blue" + }, + { + "key": "51e23c44-8859-4ed2-b1c6-9fceaae8d50b", + "label": "label-9138", + "height": 426, + "background": "blue" + }, + { + "key": "f0e80496-e15d-4063-89a6-6cae183224a1", + "label": "label-9139", + "height": 296, + "background": "green" + }, + { + "key": "c7df1fd1-8912-415c-ae03-0aad3012b779", + "label": "label-9140", + "height": 221, + "background": "yellow" + }, + { + "key": "c35b88b6-97db-4b61-9278-0edc1e99349d", + "label": "label-9141", + "height": 251, + "background": "yellow" + }, + { + "key": "8ccec0a9-c741-45ae-a991-4c6580f51b38", + "label": "label-9142", + "height": 325, + "background": "green" + }, + { + "key": "b2f563f3-b341-4455-a77e-6150510ad705", + "label": "label-9143", + "height": 438, + "background": "blue" + }, + { + "key": "a1cf9cdc-4f44-4c82-93e0-a36112cd220b", + "label": "label-9144", + "height": 434, + "background": "blue" + }, + { + "key": "12abeb54-f4b2-4dd9-948b-ca08ebe5c0ff", + "label": "label-9145", + "height": 529, + "background": "green" + }, + { + "key": "4af51f29-c051-42e6-b532-b91eb37168c2", + "label": "label-9146", + "height": 245, + "background": "green" + }, + { + "key": "9523c828-a3b5-40ee-8794-3b4e84322d39", + "label": "label-9147", + "height": 192, + "background": "red" + }, + { + "key": "c10679e3-ebba-46c6-a89b-e6db86cbc2ac", + "label": "label-9148", + "height": 152, + "background": "yellow" + }, + { + "key": "1cb6b707-6bce-4cb2-94aa-6e64931913a3", + "label": "label-9149", + "height": 386, + "background": "red" + }, + { + "key": "0454bf4a-f21e-4ea6-b03f-0d133015944a", + "label": "label-9150", + "height": 512, + "background": "red" + }, + { + "key": "0b0fb5ea-3441-4b75-b5bb-82f7b84311b0", + "label": "label-9151", + "height": 47, + "background": "yellow" + }, + { + "key": "fa94a1ba-cf1f-4227-9339-d8d49c1e31bd", + "label": "label-9152", + "height": 499, + "background": "green" + }, + { + "key": "030e8908-6808-4b21-b029-1f4e01aad000", + "label": "label-9153", + "height": 202, + "background": "yellow" + }, + { + "key": "8eb70b12-5b5c-4d01-ae64-86d96f76530c", + "label": "label-9154", + "height": 450, + "background": "red" + }, + { + "key": "1f6f3a9c-6567-4fa2-85e9-f0dc41439c5a", + "label": "label-9155", + "height": 522, + "background": "blue" + }, + { + "key": "f573ac92-feb0-4b42-b77b-073a6b43b268", + "label": "label-9156", + "height": 487, + "background": "green" + }, + { + "key": "3e159d12-cdac-48e4-aee7-c4a3ba275e70", + "label": "label-9157", + "height": 258, + "background": "green" + }, + { + "key": "c90ae750-d1c1-4bf1-bbad-c26f8e9902fd", + "label": "label-9158", + "height": 386, + "background": "red" + }, + { + "key": "414b29de-7446-4b8b-ba4a-c3a9712767d4", + "label": "label-9159", + "height": 338, + "background": "blue" + }, + { + "key": "b3d2725c-2f95-4d0a-9dff-402648b90340", + "label": "label-9160", + "height": 345, + "background": "green" + }, + { + "key": "a341aed1-8830-4f11-aa3c-2c0f96327f3c", + "label": "label-9161", + "height": 124, + "background": "green" + }, + { + "key": "ab7e5aa7-3d01-4531-b04b-760e46ef94af", + "label": "label-9162", + "height": 70, + "background": "yellow" + }, + { + "key": "8d02f3c2-3ea4-4acd-9259-ea0e89a3cb01", + "label": "label-9163", + "height": 503, + "background": "yellow" + }, + { + "key": "16239daf-3507-4c82-bd2d-bffc1ac9b55b", + "label": "label-9164", + "height": 223, + "background": "yellow" + }, + { + "key": "67757e30-0840-49ec-97b7-1169631ad246", + "label": "label-9165", + "height": 59, + "background": "yellow" + }, + { + "key": "79b4fde4-ab9f-460d-a7d0-bff4537d0501", + "label": "label-9166", + "height": 406, + "background": "green" + }, + { + "key": "07c49804-6877-4c07-b31b-f598ca2700a9", + "label": "label-9167", + "height": 397, + "background": "red" + }, + { + "key": "02e6c3d8-b016-4f8d-b39f-d15d4e761ddf", + "label": "label-9168", + "height": 443, + "background": "green" + }, + { + "key": "d45d011a-39ab-4fa0-9cd1-1a51698f08e5", + "label": "label-9169", + "height": 191, + "background": "red" + }, + { + "key": "ac1498ef-3979-4eff-beae-575ff0984609", + "label": "label-9170", + "height": 320, + "background": "yellow" + }, + { + "key": "3ace9f37-8f4d-4045-9a1b-acc9a883e9b7", + "label": "label-9171", + "height": 445, + "background": "yellow" + }, + { + "key": "f10bafc0-1230-4c9c-ae4a-08b573c08342", + "label": "label-9172", + "height": 444, + "background": "blue" + }, + { + "key": "fcfa33e7-faed-4586-beb2-6ce963b44382", + "label": "label-9173", + "height": 268, + "background": "blue" + }, + { + "key": "145939ff-cf9b-4efa-a541-ade7707a16c6", + "label": "label-9174", + "height": 198, + "background": "red" + }, + { + "key": "e6389220-630f-49c1-ae97-d5d4b66744ea", + "label": "label-9175", + "height": 158, + "background": "blue" + }, + { + "key": "ef0fad50-fe30-49d5-abfa-3a5d73297723", + "label": "label-9176", + "height": 371, + "background": "yellow" + }, + { + "key": "5f3e80cf-ac1e-40df-9096-b9ec986fe19c", + "label": "label-9177", + "height": 480, + "background": "red" + }, + { + "key": "d3335af5-b250-4348-90c4-cdd22096cf17", + "label": "label-9178", + "height": 412, + "background": "yellow" + }, + { + "key": "01d125e3-b521-4829-9541-326cd273bc1d", + "label": "label-9179", + "height": 95, + "background": "green" + }, + { + "key": "db341a88-60a7-49e5-b129-4cc2829cc46d", + "label": "label-9180", + "height": 34, + "background": "yellow" + }, + { + "key": "a3cb738f-c878-4f1b-b4f3-1b028883755d", + "label": "label-9181", + "height": 89, + "background": "red" + }, + { + "key": "a0aff04d-b7c7-45e6-953c-7a035f5ea0f1", + "label": "label-9182", + "height": 320, + "background": "green" + }, + { + "key": "cd5e969a-834f-4d8d-a8d3-d5a6adf7c86b", + "label": "label-9183", + "height": 102, + "background": "blue" + }, + { + "key": "3080aa1b-4128-4843-8cac-1c7b9edf1133", + "label": "label-9184", + "height": 249, + "background": "red" + }, + { + "key": "cde889bb-b461-40c0-9839-31e7cfd1708c", + "label": "label-9185", + "height": 233, + "background": "yellow" + }, + { + "key": "e8cb51e9-e992-4493-ba33-7fe792e73b71", + "label": "label-9186", + "height": 525, + "background": "green" + }, + { + "key": "2f65e1dd-02a8-4fd3-ba43-15ef5e0f1386", + "label": "label-9187", + "height": 246, + "background": "yellow" + }, + { + "key": "b32de1b1-7616-4899-afa9-1ca9247af70c", + "label": "label-9188", + "height": 515, + "background": "yellow" + }, + { + "key": "88022d6c-288e-475b-9539-fa075d8bb7a6", + "label": "label-9189", + "height": 240, + "background": "green" + }, + { + "key": "df08db21-3720-4c22-aa28-d14c55fd66c3", + "label": "label-9190", + "height": 471, + "background": "red" + }, + { + "key": "45e870cf-e075-40f0-80d0-766160740f84", + "label": "label-9191", + "height": 531, + "background": "yellow" + }, + { + "key": "80187638-acf2-4fa5-b8b3-e3e743d5d7fd", + "label": "label-9192", + "height": 456, + "background": "green" + }, + { + "key": "7f2c198d-ba36-47e3-bae7-3a66ffad2e68", + "label": "label-9193", + "height": 162, + "background": "blue" + }, + { + "key": "51936779-fcbd-49de-8db3-cd9b8a7db31e", + "label": "label-9194", + "height": 192, + "background": "yellow" + }, + { + "key": "a11b14d6-41bc-4c50-8a3d-fa2f0b401141", + "label": "label-9195", + "height": 502, + "background": "green" + }, + { + "key": "6c200dbc-36e5-4683-a71e-a554ad1d8461", + "label": "label-9196", + "height": 496, + "background": "blue" + }, + { + "key": "7034403d-e59b-4f51-8b29-fdcec3fc2911", + "label": "label-9197", + "height": 249, + "background": "yellow" + }, + { + "key": "3364a6c9-2d1d-4683-97d5-fed4f0bcdd94", + "label": "label-9198", + "height": 531, + "background": "blue" + }, + { + "key": "82e7e803-95d2-404b-911c-2be2f13d155a", + "label": "label-9199", + "height": 238, + "background": "blue" + }, + { + "key": "6c65bdac-5dcb-492e-97da-c7af3b1bcf4c", + "label": "label-9200", + "height": 387, + "background": "green" + }, + { + "key": "2ef3a6ba-8db6-4a78-b193-56da23df179c", + "label": "label-9201", + "height": 348, + "background": "blue" + }, + { + "key": "947d638c-7b4a-4e62-abc5-c81253d7eadf", + "label": "label-9202", + "height": 489, + "background": "blue" + }, + { + "key": "225dcb53-252f-41af-b660-cf47fc901f16", + "label": "label-9203", + "height": 288, + "background": "red" + }, + { + "key": "fe1c490f-728f-42de-81c2-1c5e46bfa2de", + "label": "label-9204", + "height": 36, + "background": "yellow" + }, + { + "key": "b90fd61f-cbb7-4310-a7d0-4d9774bd8ba8", + "label": "label-9205", + "height": 273, + "background": "yellow" + }, + { + "key": "50dd397c-2409-438b-8d42-3fb596d8647d", + "label": "label-9206", + "height": 269, + "background": "blue" + }, + { + "key": "45139c31-044b-4041-9dda-82d8846c5c22", + "label": "label-9207", + "height": 222, + "background": "green" + }, + { + "key": "4336ba1d-0e80-4c25-8c77-eb08c49618c1", + "label": "label-9208", + "height": 340, + "background": "blue" + }, + { + "key": "b44fcfea-f68a-482a-8e36-81b50feed614", + "label": "label-9209", + "height": 423, + "background": "blue" + }, + { + "key": "a8bf046e-d446-48ea-b67a-c35c0c6e12e0", + "label": "label-9210", + "height": 71, + "background": "green" + }, + { + "key": "2ff404b2-af62-4ef0-bc68-df964b455f6d", + "label": "label-9211", + "height": 175, + "background": "red" + }, + { + "key": "0a7ae724-594f-481f-805a-5f7b14d845c0", + "label": "label-9212", + "height": 195, + "background": "red" + }, + { + "key": "8e7affee-7ed7-4ce4-8226-3be8ef0d7cea", + "label": "label-9213", + "height": 357, + "background": "blue" + }, + { + "key": "b464dde2-69cc-4656-800a-f4dbe861e52b", + "label": "label-9214", + "height": 217, + "background": "yellow" + }, + { + "key": "582333cb-3391-44b8-a0df-da43b3e2148c", + "label": "label-9215", + "height": 262, + "background": "yellow" + }, + { + "key": "24fedfb9-27b4-48ef-ac1e-33639ac7953e", + "label": "label-9216", + "height": 270, + "background": "yellow" + }, + { + "key": "632a3de2-8182-4365-a82b-9d740bfb1fec", + "label": "label-9217", + "height": 308, + "background": "yellow" + }, + { + "key": "7013e077-bc77-4715-b187-0c47e25aaeb8", + "label": "label-9218", + "height": 106, + "background": "yellow" + }, + { + "key": "502e86d4-1b9e-4bfa-8cba-594cc3176114", + "label": "label-9219", + "height": 241, + "background": "red" + }, + { + "key": "dfaabc86-494b-4513-ad22-b2df008130ba", + "label": "label-9220", + "height": 426, + "background": "green" + }, + { + "key": "a2143c01-02b6-4868-9c0f-8be1360aa3ff", + "label": "label-9221", + "height": 51, + "background": "red" + }, + { + "key": "fd65f656-1c60-40eb-bee5-98ddcafb3270", + "label": "label-9222", + "height": 314, + "background": "red" + }, + { + "key": "5e49d343-1fb7-4fe4-b444-24dffc079ee3", + "label": "label-9223", + "height": 338, + "background": "red" + }, + { + "key": "b35a5f57-8aa2-474b-8c9f-7c31d789be08", + "label": "label-9224", + "height": 345, + "background": "yellow" + }, + { + "key": "959d98ed-4846-438c-b904-6c87482f9399", + "label": "label-9225", + "height": 73, + "background": "yellow" + }, + { + "key": "3ea92695-71ef-4db7-addf-bd527e690867", + "label": "label-9226", + "height": 261, + "background": "blue" + }, + { + "key": "a464f06e-7327-40f7-b969-66e602c11b9c", + "label": "label-9227", + "height": 43, + "background": "red" + }, + { + "key": "7c5f7496-505a-4fa5-bdc6-cf8274dac5b4", + "label": "label-9228", + "height": 287, + "background": "blue" + }, + { + "key": "ae978afb-0ba6-4fc5-b0d6-6364b702aa5d", + "label": "label-9229", + "height": 506, + "background": "blue" + }, + { + "key": "eed56352-0e9f-4a9a-a581-7c02248adba8", + "label": "label-9230", + "height": 515, + "background": "green" + }, + { + "key": "518395ea-3f17-4700-876a-6139dab92014", + "label": "label-9231", + "height": 111, + "background": "blue" + }, + { + "key": "cb4ca160-986e-4971-be8c-ffc7e1015602", + "label": "label-9232", + "height": 290, + "background": "yellow" + }, + { + "key": "8ad80b8e-2936-4493-8c41-1bf86ecf726c", + "label": "label-9233", + "height": 407, + "background": "red" + }, + { + "key": "175f8781-001d-4458-831a-2d3e18dd358b", + "label": "label-9234", + "height": 347, + "background": "yellow" + }, + { + "key": "3797adb9-b628-44b5-b7dc-245e5673b8b7", + "label": "label-9235", + "height": 477, + "background": "red" + }, + { + "key": "0fbd7c84-5ca4-4067-8eaf-99a6f5dadfbd", + "label": "label-9236", + "height": 381, + "background": "yellow" + }, + { + "key": "f2de1fb5-94e5-4806-b312-9611fcb5271e", + "label": "label-9237", + "height": 193, + "background": "blue" + }, + { + "key": "a970ff70-d8ea-43c0-bf41-887dfe160147", + "label": "label-9238", + "height": 217, + "background": "yellow" + }, + { + "key": "c83dea58-42e4-467b-aa5e-850c83dea3ca", + "label": "label-9239", + "height": 104, + "background": "yellow" + }, + { + "key": "9f713a5e-da92-435e-9c41-bdfcc76f1f86", + "label": "label-9240", + "height": 151, + "background": "red" + }, + { + "key": "2f2a1954-8799-4603-90c9-a51612305a16", + "label": "label-9241", + "height": 524, + "background": "red" + }, + { + "key": "71004702-3fde-41c9-ae2b-42694a43a39c", + "label": "label-9242", + "height": 485, + "background": "green" + }, + { + "key": "2546852c-903a-49dc-9c44-8010ea0e39cc", + "label": "label-9243", + "height": 241, + "background": "blue" + }, + { + "key": "7d18585b-17bb-4a95-ad1a-b8e4168ddb2e", + "label": "label-9244", + "height": 191, + "background": "blue" + }, + { + "key": "2ee18d6e-12c5-4e11-88b0-aa8b31f1dfde", + "label": "label-9245", + "height": 377, + "background": "blue" + }, + { + "key": "c0b154de-d623-42a6-84c2-f80ddc800447", + "label": "label-9246", + "height": 431, + "background": "green" + }, + { + "key": "bb117c12-5a98-4be8-bc8e-ee4f0c18e0fc", + "label": "label-9247", + "height": 225, + "background": "green" + }, + { + "key": "c0d1906d-b58d-460d-8f95-644673be081d", + "label": "label-9248", + "height": 220, + "background": "blue" + }, + { + "key": "cb5a8fa1-2e0c-4478-a7e2-2528cd9c2d0e", + "label": "label-9249", + "height": 283, + "background": "blue" + }, + { + "key": "58d048ba-4920-4353-946a-b7d1e2feb4e2", + "label": "label-9250", + "height": 407, + "background": "green" + }, + { + "key": "bc131fb0-8ab7-497c-8f2e-5744ba65992e", + "label": "label-9251", + "height": 213, + "background": "green" + }, + { + "key": "3dcc8451-684c-497f-b5b2-43f1f82b0f75", + "label": "label-9252", + "height": 46, + "background": "green" + }, + { + "key": "43394686-dc28-4138-b113-0b09668f9392", + "label": "label-9253", + "height": 198, + "background": "red" + }, + { + "key": "4199803e-ec74-4955-81b3-7b049f4099fc", + "label": "label-9254", + "height": 365, + "background": "green" + }, + { + "key": "c0b1750c-068e-4a7e-ab24-3d497c658827", + "label": "label-9255", + "height": 276, + "background": "green" + }, + { + "key": "5eed7497-110e-4c0d-bacb-e9f1553316e1", + "label": "label-9256", + "height": 111, + "background": "yellow" + }, + { + "key": "50f66fe1-8ae2-4345-aa7e-f1e4169f4f23", + "label": "label-9257", + "height": 66, + "background": "yellow" + }, + { + "key": "ba92cd12-6067-413f-9401-23f5056ba4c1", + "label": "label-9258", + "height": 101, + "background": "yellow" + }, + { + "key": "a92ae11a-fa50-406f-8f90-169532d2987f", + "label": "label-9259", + "height": 531, + "background": "blue" + }, + { + "key": "88b2aabe-acc6-47e5-a166-473bcd62e482", + "label": "label-9260", + "height": 367, + "background": "blue" + }, + { + "key": "77809753-9a8d-4329-b62f-2eae30ac636a", + "label": "label-9261", + "height": 461, + "background": "blue" + }, + { + "key": "a92983a7-0463-4452-a57b-da6acbabec9b", + "label": "label-9262", + "height": 221, + "background": "blue" + }, + { + "key": "fdc77b7f-87e6-4b8a-9f29-fd5e196e98d3", + "label": "label-9263", + "height": 89, + "background": "green" + }, + { + "key": "55b30a8e-1dcc-4c86-849f-05a790c48ce5", + "label": "label-9264", + "height": 325, + "background": "green" + }, + { + "key": "6427c72c-678a-474c-8619-a27b1ec09e84", + "label": "label-9265", + "height": 403, + "background": "yellow" + }, + { + "key": "ade640e9-d0b6-4187-96ae-36bf4cb2c709", + "label": "label-9266", + "height": 446, + "background": "blue" + }, + { + "key": "63bee661-8acf-4b53-87f7-219627bbdbd0", + "label": "label-9267", + "height": 157, + "background": "blue" + }, + { + "key": "e1868184-43af-4294-99b7-ee27c0456107", + "label": "label-9268", + "height": 102, + "background": "red" + }, + { + "key": "096c9ce1-f01f-44f6-8c5e-ae8ea99383bc", + "label": "label-9269", + "height": 74, + "background": "red" + }, + { + "key": "106574ea-f60c-4b65-90ec-dcaf59fde685", + "label": "label-9270", + "height": 356, + "background": "red" + }, + { + "key": "fba45fd4-9909-4a17-839d-0aed921b6885", + "label": "label-9271", + "height": 122, + "background": "blue" + }, + { + "key": "3f5799f2-ad9e-43be-aed3-6a5f47b360c5", + "label": "label-9272", + "height": 335, + "background": "yellow" + }, + { + "key": "42d99033-28a0-4883-9e55-8df6ecfe7b1d", + "label": "label-9273", + "height": 410, + "background": "red" + }, + { + "key": "fc64f9f4-e80e-4600-b712-96800f4f062f", + "label": "label-9274", + "height": 368, + "background": "yellow" + }, + { + "key": "8840996f-63a1-4444-a60d-1a1b0e9ccb4e", + "label": "label-9275", + "height": 526, + "background": "red" + }, + { + "key": "495788eb-a747-43f3-af98-869c070a4334", + "label": "label-9276", + "height": 180, + "background": "red" + }, + { + "key": "7b0a437a-ce65-4fbc-a84d-f267f509fbf8", + "label": "label-9277", + "height": 509, + "background": "yellow" + }, + { + "key": "33a383a9-b1ef-47a9-aabe-41042b64ae7d", + "label": "label-9278", + "height": 269, + "background": "blue" + }, + { + "key": "82929b12-cf40-4c59-a3b1-cc70e575a420", + "label": "label-9279", + "height": 81, + "background": "blue" + }, + { + "key": "6492bf3c-c757-479f-a070-a01da1c7fed7", + "label": "label-9280", + "height": 199, + "background": "yellow" + }, + { + "key": "2cff105b-bd40-4fc3-ade7-7c80a5fab89f", + "label": "label-9281", + "height": 362, + "background": "red" + }, + { + "key": "0049bcc9-2ccf-47be-82b0-57ba2b83a882", + "label": "label-9282", + "height": 60, + "background": "red" + }, + { + "key": "88ccafc8-84fb-4e59-92ef-471f73d7a569", + "label": "label-9283", + "height": 420, + "background": "blue" + }, + { + "key": "76877d51-3740-4d92-8a0c-924fbf528aca", + "label": "label-9284", + "height": 133, + "background": "yellow" + }, + { + "key": "e37e8077-1647-4321-9c44-371530f9be99", + "label": "label-9285", + "height": 149, + "background": "red" + }, + { + "key": "ff7c7921-d4f9-4af8-86fd-0702cafae846", + "label": "label-9286", + "height": 499, + "background": "green" + }, + { + "key": "c0fefff8-b70b-41ad-b43f-290f84736afd", + "label": "label-9287", + "height": 427, + "background": "red" + }, + { + "key": "640a8731-4e1b-431c-86e3-ee12e9361116", + "label": "label-9288", + "height": 257, + "background": "green" + }, + { + "key": "3909c639-f537-4447-8da0-c7ba9602bbb1", + "label": "label-9289", + "height": 456, + "background": "green" + }, + { + "key": "744f59ff-4a61-4fba-8c4c-19282c8786e7", + "label": "label-9290", + "height": 223, + "background": "red" + }, + { + "key": "750263e7-58bf-4da3-8261-2bb1b6e315ae", + "label": "label-9291", + "height": 248, + "background": "blue" + }, + { + "key": "ee43ce44-d15d-4edd-acd4-91973bbee581", + "label": "label-9292", + "height": 64, + "background": "red" + }, + { + "key": "d6bfa435-8155-4222-a2fb-047559f384b1", + "label": "label-9293", + "height": 154, + "background": "green" + }, + { + "key": "306823f7-2d12-4a36-900c-15bfd1c9b618", + "label": "label-9294", + "height": 66, + "background": "blue" + }, + { + "key": "0c42c065-5648-426c-b03c-fffa5f87c1ee", + "label": "label-9295", + "height": 407, + "background": "green" + }, + { + "key": "fdda2814-fe59-4a68-8225-8332c2ed7684", + "label": "label-9296", + "height": 445, + "background": "yellow" + }, + { + "key": "34b10d67-e7ff-40ff-a0cb-8c3a096ce1ce", + "label": "label-9297", + "height": 58, + "background": "red" + }, + { + "key": "9e0006b0-3cd1-497c-9a41-2ea2d46558c6", + "label": "label-9298", + "height": 211, + "background": "green" + }, + { + "key": "c46b465d-4379-4ce7-8886-d2af563513ed", + "label": "label-9299", + "height": 35, + "background": "red" + }, + { + "key": "8ceefaad-6a75-4d44-94aa-9ca4db7affd6", + "label": "label-9300", + "height": 222, + "background": "red" + }, + { + "key": "716f5c0e-5891-4e3e-9285-c808d7c5bcd2", + "label": "label-9301", + "height": 287, + "background": "red" + }, + { + "key": "8e5d3fff-096a-464b-bd79-7cb17158f0a3", + "label": "label-9302", + "height": 249, + "background": "red" + }, + { + "key": "77a94112-6b7a-4628-869d-726b741dd8e2", + "label": "label-9303", + "height": 88, + "background": "red" + }, + { + "key": "39e5d4ee-ae3f-44df-ba3f-ef75e9b641b1", + "label": "label-9304", + "height": 212, + "background": "green" + }, + { + "key": "d17906dd-42be-47bc-a594-f111a3342343", + "label": "label-9305", + "height": 371, + "background": "blue" + }, + { + "key": "d028ff90-7378-4110-a3db-b32d49979bd1", + "label": "label-9306", + "height": 95, + "background": "blue" + }, + { + "key": "8fe5f406-4d07-4fc8-8322-3ea147c3d9fe", + "label": "label-9307", + "height": 409, + "background": "blue" + }, + { + "key": "5c05edc7-42f1-4b99-b5b9-62eea22f8ab0", + "label": "label-9308", + "height": 331, + "background": "yellow" + }, + { + "key": "4c6bd43c-9825-47fd-a115-ae8f43702d64", + "label": "label-9309", + "height": 205, + "background": "green" + }, + { + "key": "096d4f56-9f3e-4ac7-82bf-bed7f18aac89", + "label": "label-9310", + "height": 381, + "background": "yellow" + }, + { + "key": "0465fea4-ed61-4842-884c-df7c9a556a92", + "label": "label-9311", + "height": 394, + "background": "red" + }, + { + "key": "68138f16-1793-4e6b-9be0-2c476db8ca97", + "label": "label-9312", + "height": 209, + "background": "yellow" + }, + { + "key": "21cb7721-9c1f-467b-b84b-65cc81e7f8fc", + "label": "label-9313", + "height": 487, + "background": "blue" + }, + { + "key": "3b987234-47b2-4e49-ad4b-708b560d6f02", + "label": "label-9314", + "height": 243, + "background": "blue" + }, + { + "key": "ebb79a56-6c72-4f43-905e-37b8bd99e17e", + "label": "label-9315", + "height": 194, + "background": "red" + }, + { + "key": "9b6f7d1a-0e29-4006-9ca1-64a2d3613634", + "label": "label-9316", + "height": 112, + "background": "blue" + }, + { + "key": "9cb547cf-5880-4322-a089-2990db977286", + "label": "label-9317", + "height": 434, + "background": "green" + }, + { + "key": "fc63c845-1b47-48a7-a25b-7b7bab79bba0", + "label": "label-9318", + "height": 506, + "background": "blue" + }, + { + "key": "466f8fa5-a8d9-4304-add8-bde778d73896", + "label": "label-9319", + "height": 71, + "background": "blue" + }, + { + "key": "37ae47b8-a17b-4706-9bc6-de398314fc3d", + "label": "label-9320", + "height": 228, + "background": "red" + }, + { + "key": "75f037c9-ecb9-4302-96cf-248042e59287", + "label": "label-9321", + "height": 306, + "background": "green" + }, + { + "key": "dc210779-2615-4e88-b17f-55b0e90f768d", + "label": "label-9322", + "height": 64, + "background": "green" + }, + { + "key": "56f2155f-0483-4e30-90b1-2a62421f2a24", + "label": "label-9323", + "height": 408, + "background": "yellow" + }, + { + "key": "5d37f32e-4be0-4e1c-bf9c-daa71d325b3a", + "label": "label-9324", + "height": 451, + "background": "blue" + }, + { + "key": "b03e15d7-5740-46dd-b449-aef19fbc8bde", + "label": "label-9325", + "height": 430, + "background": "red" + }, + { + "key": "7f9941ee-6fab-415f-8047-a858897320b1", + "label": "label-9326", + "height": 322, + "background": "yellow" + }, + { + "key": "294aca68-827e-4153-aeb6-9030fc43674a", + "label": "label-9327", + "height": 376, + "background": "green" + }, + { + "key": "273e05a0-5093-4c12-8bdc-8d7ba6c939f2", + "label": "label-9328", + "height": 416, + "background": "blue" + }, + { + "key": "730730bb-a552-4b07-9a9d-1897ce43ba1f", + "label": "label-9329", + "height": 478, + "background": "blue" + }, + { + "key": "f3790db9-8e62-4ee7-bb8c-c22fb124ef27", + "label": "label-9330", + "height": 132, + "background": "blue" + }, + { + "key": "9767e7b6-925d-4275-b85f-7ce46e2054cd", + "label": "label-9331", + "height": 193, + "background": "yellow" + }, + { + "key": "552ed815-27a4-486d-b5cb-4b5752477aa0", + "label": "label-9332", + "height": 527, + "background": "red" + }, + { + "key": "0f4296c9-8709-478d-8cf6-3c89c95ec312", + "label": "label-9333", + "height": 224, + "background": "blue" + }, + { + "key": "9a4b091e-cf11-4f69-ae4e-001c41ceaf26", + "label": "label-9334", + "height": 482, + "background": "red" + }, + { + "key": "0fdbb134-a28a-43a4-be36-60e566b43995", + "label": "label-9335", + "height": 309, + "background": "blue" + }, + { + "key": "c45b874b-785d-475f-b6f3-ba2f528b2576", + "label": "label-9336", + "height": 115, + "background": "yellow" + }, + { + "key": "1ba5fdd4-1cd0-4860-a190-2a92ad099634", + "label": "label-9337", + "height": 417, + "background": "yellow" + }, + { + "key": "41c45453-6df6-444e-a6d6-98be6278c0b8", + "label": "label-9338", + "height": 208, + "background": "blue" + }, + { + "key": "1dcc39bc-e1eb-4109-a54d-f0aca29d6554", + "label": "label-9339", + "height": 74, + "background": "red" + }, + { + "key": "df6f2f09-1026-4dfa-98e9-97a38e4527d1", + "label": "label-9340", + "height": 191, + "background": "yellow" + }, + { + "key": "dfb8e62b-c58f-40e0-b080-2442c6e1b1b8", + "label": "label-9341", + "height": 505, + "background": "red" + }, + { + "key": "7a653e29-7365-40ad-89cb-786f35820206", + "label": "label-9342", + "height": 351, + "background": "red" + }, + { + "key": "fce7f984-b290-47eb-afc4-a5f66061e443", + "label": "label-9343", + "height": 337, + "background": "green" + }, + { + "key": "b2e470f1-6da9-402a-9087-7d61ab2ea2ff", + "label": "label-9344", + "height": 454, + "background": "yellow" + }, + { + "key": "0bba699d-0a96-49c8-8b46-47af3d787a3e", + "label": "label-9345", + "height": 388, + "background": "green" + }, + { + "key": "6b733e8b-4ef0-4a63-a5fd-6652e76ce5b8", + "label": "label-9346", + "height": 312, + "background": "green" + }, + { + "key": "1e8b2e6b-60f6-4cc3-a98b-8ebf6de516fc", + "label": "label-9347", + "height": 131, + "background": "yellow" + }, + { + "key": "7bcba1b6-3f2b-49c4-87fe-3dc4e24c9716", + "label": "label-9348", + "height": 165, + "background": "red" + }, + { + "key": "42bcac1e-cef1-4577-8e29-2b75792f4db3", + "label": "label-9349", + "height": 116, + "background": "yellow" + }, + { + "key": "7d368453-3f72-4ec9-aae4-6e86962a1485", + "label": "label-9350", + "height": 56, + "background": "yellow" + }, + { + "key": "60a113ab-5a64-495f-bf53-311a4fd956cc", + "label": "label-9351", + "height": 235, + "background": "red" + }, + { + "key": "31220a5c-185a-4825-aad3-e6744d8c2458", + "label": "label-9352", + "height": 505, + "background": "blue" + }, + { + "key": "3612061f-7c69-4b95-8fd1-71da68ce1d95", + "label": "label-9353", + "height": 210, + "background": "yellow" + }, + { + "key": "99c21117-bc68-4f8e-b470-4b0f76385cd8", + "label": "label-9354", + "height": 292, + "background": "red" + }, + { + "key": "f492003b-c1e5-4886-9e75-b949ccaf8c42", + "label": "label-9355", + "height": 487, + "background": "yellow" + }, + { + "key": "a9d438d5-f47b-4082-abb5-b49768b555ef", + "label": "label-9356", + "height": 50, + "background": "green" + }, + { + "key": "ab9bad56-e872-4e09-9ee3-93ce07366d19", + "label": "label-9357", + "height": 68, + "background": "red" + }, + { + "key": "18ebcb5c-a17d-4069-a073-aba9e60d3521", + "label": "label-9358", + "height": 208, + "background": "red" + }, + { + "key": "f7de1766-6e39-4f62-bd08-7a16178ce311", + "label": "label-9359", + "height": 376, + "background": "blue" + }, + { + "key": "2905d064-f3d8-4814-9c64-00a040136c35", + "label": "label-9360", + "height": 288, + "background": "green" + }, + { + "key": "927843b6-5783-4934-b6a4-0ecfdf191f47", + "label": "label-9361", + "height": 303, + "background": "yellow" + }, + { + "key": "88d5cc1e-3539-4fff-81fb-1259d0991764", + "label": "label-9362", + "height": 136, + "background": "yellow" + }, + { + "key": "f6eefddd-bdab-400e-9a31-c14590a9ae4e", + "label": "label-9363", + "height": 131, + "background": "yellow" + }, + { + "key": "a83cc3d7-b5bc-41f9-bbd4-611696caf070", + "label": "label-9364", + "height": 190, + "background": "yellow" + }, + { + "key": "d8fb1b16-383c-4d4b-a5c9-e940e9a3f21e", + "label": "label-9365", + "height": 255, + "background": "red" + }, + { + "key": "5025d6bb-595e-4759-9750-0f47fab3585c", + "label": "label-9366", + "height": 77, + "background": "blue" + }, + { + "key": "697e5cda-eda8-470c-849f-610164036491", + "label": "label-9367", + "height": 144, + "background": "blue" + }, + { + "key": "485dd63e-dcea-476a-9ad7-969ec1c6bdf7", + "label": "label-9368", + "height": 191, + "background": "red" + }, + { + "key": "3cb940e1-8ddf-49db-b78e-5c5fe3bc45e0", + "label": "label-9369", + "height": 253, + "background": "green" + }, + { + "key": "a0d13380-32b0-4aa8-a9c5-619a15e1b930", + "label": "label-9370", + "height": 94, + "background": "green" + }, + { + "key": "66568bfa-48da-4799-9462-5cc1d2508eb6", + "label": "label-9371", + "height": 159, + "background": "blue" + }, + { + "key": "e4461c35-abbd-4e8c-a7e5-f29a5f7d06dd", + "label": "label-9372", + "height": 190, + "background": "yellow" + }, + { + "key": "232eb84e-ce1e-4725-8947-28fda9255fff", + "label": "label-9373", + "height": 512, + "background": "green" + }, + { + "key": "a843466f-9928-442b-8dae-4acd1419f580", + "label": "label-9374", + "height": 509, + "background": "blue" + }, + { + "key": "9964ad48-7462-4b06-bd1a-f735d2b1f770", + "label": "label-9375", + "height": 162, + "background": "green" + }, + { + "key": "fc617c3c-82cf-44b1-9d4d-72101064ecf4", + "label": "label-9376", + "height": 475, + "background": "green" + }, + { + "key": "c83f9b63-fe2b-4e2d-972c-e8c0df41765d", + "label": "label-9377", + "height": 189, + "background": "red" + }, + { + "key": "66676ff3-2da4-47bc-bef2-b4d4844d834b", + "label": "label-9378", + "height": 361, + "background": "yellow" + }, + { + "key": "9475529a-39f6-4618-9bd3-dd131e45b136", + "label": "label-9379", + "height": 227, + "background": "red" + }, + { + "key": "5a569d01-1528-491d-9748-fae4b5f89c03", + "label": "label-9380", + "height": 80, + "background": "green" + }, + { + "key": "7e6de14c-cb54-4178-b2a7-08c11b1ed6fb", + "label": "label-9381", + "height": 141, + "background": "yellow" + }, + { + "key": "bd1475f0-afdc-4f75-90a0-7aee2919ef6a", + "label": "label-9382", + "height": 319, + "background": "yellow" + }, + { + "key": "dfdfcd63-e273-4434-8e2f-f088a75c2289", + "label": "label-9383", + "height": 280, + "background": "red" + }, + { + "key": "bd839b9d-59e2-432f-9e8d-a3d306f72339", + "label": "label-9384", + "height": 47, + "background": "blue" + }, + { + "key": "e08f156c-c19e-4a38-8c66-cffce816fc55", + "label": "label-9385", + "height": 215, + "background": "green" + }, + { + "key": "174303b3-b902-4eff-846e-eb3357925150", + "label": "label-9386", + "height": 47, + "background": "red" + }, + { + "key": "6d7c5c1f-becd-4537-815e-5fe931fef92a", + "label": "label-9387", + "height": 250, + "background": "yellow" + }, + { + "key": "253c2801-cceb-4ae1-8f0c-bf4fa7730314", + "label": "label-9388", + "height": 503, + "background": "red" + }, + { + "key": "5b16668a-9516-4c1d-9f94-39e048ea9ffd", + "label": "label-9389", + "height": 121, + "background": "blue" + }, + { + "key": "9a29ee7c-1081-4c0d-8f86-b991ce4d1296", + "label": "label-9390", + "height": 119, + "background": "yellow" + }, + { + "key": "1553621f-b923-4639-a4cc-203e736eed49", + "label": "label-9391", + "height": 432, + "background": "red" + }, + { + "key": "6731f90a-83d7-447c-b4ba-6717b3c1b49b", + "label": "label-9392", + "height": 194, + "background": "blue" + }, + { + "key": "79d6e88e-c41e-4b5d-8776-01f582231f3f", + "label": "label-9393", + "height": 511, + "background": "blue" + }, + { + "key": "a0a0cd13-904c-4228-8a3a-ce68b1546d11", + "label": "label-9394", + "height": 337, + "background": "blue" + }, + { + "key": "baa64d94-8583-41a0-ae1b-6f5e999d34ae", + "label": "label-9395", + "height": 522, + "background": "red" + }, + { + "key": "306ccb4d-53a1-4850-81cc-107f3a017ab9", + "label": "label-9396", + "height": 234, + "background": "red" + }, + { + "key": "88e3add3-93a6-4f57-a62d-97e2614643b3", + "label": "label-9397", + "height": 513, + "background": "yellow" + }, + { + "key": "3f7b3ec0-7871-4bef-abed-ecfab1344487", + "label": "label-9398", + "height": 106, + "background": "green" + }, + { + "key": "5e816d0e-057b-4197-a0de-333772c37a33", + "label": "label-9399", + "height": 258, + "background": "red" + }, + { + "key": "eaf58bde-ad67-4699-a00c-7e749ed49b6c", + "label": "label-9400", + "height": 77, + "background": "red" + }, + { + "key": "9415fd96-80b2-4688-a1cf-f7238a1fb2dd", + "label": "label-9401", + "height": 334, + "background": "blue" + }, + { + "key": "b6a7e90c-d08e-4087-b238-423b3c6ce3eb", + "label": "label-9402", + "height": 429, + "background": "yellow" + }, + { + "key": "28129d2c-d9f2-4a4a-8ec4-f7c470e76fff", + "label": "label-9403", + "height": 439, + "background": "blue" + }, + { + "key": "829397bc-f112-44ca-8722-83c3ebb2a28a", + "label": "label-9404", + "height": 260, + "background": "red" + }, + { + "key": "09b3a823-b755-4dd8-a8b8-d0a9cd9621d9", + "label": "label-9405", + "height": 265, + "background": "blue" + }, + { + "key": "4e197bd9-1a9f-4be6-ac67-0c65bea0d4ad", + "label": "label-9406", + "height": 471, + "background": "red" + }, + { + "key": "eea63c86-3f03-4a5d-af72-3a97aa000dea", + "label": "label-9407", + "height": 271, + "background": "red" + }, + { + "key": "b1b601f4-af4a-45c7-8d26-fbcd6be76b63", + "label": "label-9408", + "height": 384, + "background": "red" + }, + { + "key": "d69cec1e-eb61-4294-8be7-87798276b4af", + "label": "label-9409", + "height": 284, + "background": "red" + }, + { + "key": "93e3ef25-2b2c-4b0d-bd5c-c4dc4278c4f5", + "label": "label-9410", + "height": 322, + "background": "blue" + }, + { + "key": "129657b5-efe0-4b02-aab6-9b111361e7dd", + "label": "label-9411", + "height": 387, + "background": "yellow" + }, + { + "key": "4010e5a5-46ea-42f4-8a47-63c1ed494157", + "label": "label-9412", + "height": 397, + "background": "yellow" + }, + { + "key": "0200e697-3150-4315-9463-e5961477bd7a", + "label": "label-9413", + "height": 348, + "background": "green" + }, + { + "key": "800e2bfe-f827-436a-93bd-6f13ff2e1a88", + "label": "label-9414", + "height": 291, + "background": "yellow" + }, + { + "key": "c75c0b08-8d61-40a7-aecc-824da2a02ebb", + "label": "label-9415", + "height": 153, + "background": "red" + }, + { + "key": "7d0f04f9-0bb6-4c9d-9b85-c97e14ff4a18", + "label": "label-9416", + "height": 250, + "background": "yellow" + }, + { + "key": "ec544817-2aad-424f-a415-57d96d67d271", + "label": "label-9417", + "height": 158, + "background": "yellow" + }, + { + "key": "e1b53581-20ef-4798-89fc-e6e894327e82", + "label": "label-9418", + "height": 239, + "background": "blue" + }, + { + "key": "589d1412-c528-4918-bba6-a595cddc01bc", + "label": "label-9419", + "height": 162, + "background": "red" + }, + { + "key": "846e5381-269f-4048-983d-362732fabbd7", + "label": "label-9420", + "height": 257, + "background": "red" + }, + { + "key": "deb5f787-b212-4f2c-aa10-cda5bf611245", + "label": "label-9421", + "height": 232, + "background": "yellow" + }, + { + "key": "e3bfe92a-ac13-404c-93fb-f1b5990694bf", + "label": "label-9422", + "height": 312, + "background": "red" + }, + { + "key": "b888b61b-efde-449d-8ff9-39b075c2f91d", + "label": "label-9423", + "height": 375, + "background": "green" + }, + { + "key": "3eb25719-e592-4be6-b443-30ebb80dca94", + "label": "label-9424", + "height": 248, + "background": "red" + }, + { + "key": "7e98398c-bee9-4cf6-ad65-d55972efee0b", + "label": "label-9425", + "height": 470, + "background": "red" + }, + { + "key": "05bb3386-4aad-43b6-98c1-6b95e4d02b7d", + "label": "label-9426", + "height": 489, + "background": "green" + }, + { + "key": "2982f0c8-b23d-40ed-b6c8-0efc84733be1", + "label": "label-9427", + "height": 332, + "background": "blue" + }, + { + "key": "1b09a523-2389-4e07-be4a-c3cd9c64ec9f", + "label": "label-9428", + "height": 68, + "background": "yellow" + }, + { + "key": "d0305de9-039a-42a7-a8fc-acd72a5abd79", + "label": "label-9429", + "height": 443, + "background": "red" + }, + { + "key": "e7faa6e3-2a41-4f49-be7c-500c563a88e5", + "label": "label-9430", + "height": 326, + "background": "yellow" + }, + { + "key": "1e23aecf-54bd-4e7e-b97d-b22fb0c57761", + "label": "label-9431", + "height": 476, + "background": "blue" + }, + { + "key": "57e4d81c-1b0a-4197-b60f-db0cc1f76dfc", + "label": "label-9432", + "height": 220, + "background": "yellow" + }, + { + "key": "040803f4-a883-41e4-a812-b64ee4a42dad", + "label": "label-9433", + "height": 208, + "background": "red" + }, + { + "key": "699e3e2a-9d58-4eaf-ac2c-37a7a868e938", + "label": "label-9434", + "height": 260, + "background": "green" + }, + { + "key": "49fe721e-8d84-4817-a776-de2a04be59d7", + "label": "label-9435", + "height": 388, + "background": "yellow" + }, + { + "key": "d8b95056-5854-4742-adbf-bdc00872cb1f", + "label": "label-9436", + "height": 187, + "background": "green" + }, + { + "key": "5a2b3f1b-315a-4a7d-8d1d-1544188a18df", + "label": "label-9437", + "height": 186, + "background": "blue" + }, + { + "key": "19ed9cff-8033-403d-85a7-bde0266a4b2e", + "label": "label-9438", + "height": 150, + "background": "blue" + }, + { + "key": "1ffc60de-c85b-4ffd-841a-8e4d95ae50bf", + "label": "label-9439", + "height": 246, + "background": "blue" + }, + { + "key": "d8fc261a-7136-4739-9157-832351ea23af", + "label": "label-9440", + "height": 112, + "background": "yellow" + }, + { + "key": "0dea5b89-ffeb-416c-a811-21517afe0886", + "label": "label-9441", + "height": 377, + "background": "green" + }, + { + "key": "e9621a27-10d7-497a-ad0d-52dbf4953c38", + "label": "label-9442", + "height": 470, + "background": "yellow" + }, + { + "key": "6b16d697-4cdf-4d02-bcd7-24f3fa7d8276", + "label": "label-9443", + "height": 440, + "background": "red" + }, + { + "key": "d3c3aea5-faa7-474b-8d5d-e39bcbd2856e", + "label": "label-9444", + "height": 357, + "background": "yellow" + }, + { + "key": "cb68a6bc-20f9-4151-8fa7-74fc98da09ec", + "label": "label-9445", + "height": 175, + "background": "red" + }, + { + "key": "1538db4e-b53c-4316-8489-ff1e6a695a65", + "label": "label-9446", + "height": 37, + "background": "green" + }, + { + "key": "a83b8f66-1419-4079-a155-8015cce083f3", + "label": "label-9447", + "height": 212, + "background": "blue" + }, + { + "key": "50268876-3d31-44b1-932f-f0f2e72cb4a3", + "label": "label-9448", + "height": 458, + "background": "blue" + }, + { + "key": "2c5ef661-ef7f-47c1-bcbf-5e9edeab7f41", + "label": "label-9449", + "height": 162, + "background": "green" + }, + { + "key": "151e13c4-26d0-440a-b851-f9f8d9ca86de", + "label": "label-9450", + "height": 174, + "background": "blue" + }, + { + "key": "64748f1b-2a1c-49ac-b7d7-688edc82538b", + "label": "label-9451", + "height": 506, + "background": "yellow" + }, + { + "key": "1eeca19f-a48c-4630-a457-9c5d6ae312bc", + "label": "label-9452", + "height": 81, + "background": "yellow" + }, + { + "key": "8082bb7e-70ba-40f8-a938-daf9b0bee850", + "label": "label-9453", + "height": 339, + "background": "green" + }, + { + "key": "c950407c-2916-4943-bba0-7913fbb2bfa4", + "label": "label-9454", + "height": 427, + "background": "red" + }, + { + "key": "9c46486a-c91c-49ab-a256-13872a094367", + "label": "label-9455", + "height": 197, + "background": "red" + }, + { + "key": "e6ef0661-97b6-4f53-a365-cef0145c68f9", + "label": "label-9456", + "height": 230, + "background": "blue" + }, + { + "key": "282c9c14-ee25-417d-9dd4-696e68a163db", + "label": "label-9457", + "height": 340, + "background": "green" + }, + { + "key": "cec848d2-0e10-4bb2-aa88-955ef73f87a6", + "label": "label-9458", + "height": 437, + "background": "yellow" + }, + { + "key": "eec381d9-8854-42de-9599-7e93bd2e6189", + "label": "label-9459", + "height": 377, + "background": "red" + }, + { + "key": "c4bdfa79-09f5-4307-9678-7c8a93012320", + "label": "label-9460", + "height": 133, + "background": "green" + }, + { + "key": "e586f61e-877a-4859-8c94-5a220b0a9da0", + "label": "label-9461", + "height": 447, + "background": "yellow" + }, + { + "key": "3f03fb32-f4f3-4575-ab28-5f817a2e323c", + "label": "label-9462", + "height": 304, + "background": "green" + }, + { + "key": "1062c7cc-42e3-49f1-9a68-53e42a086717", + "label": "label-9463", + "height": 36, + "background": "blue" + }, + { + "key": "101bcae6-1589-4d2c-a12e-4da859f1933d", + "label": "label-9464", + "height": 51, + "background": "yellow" + }, + { + "key": "541ca53b-7bc4-4834-b097-0c045fe4d276", + "label": "label-9465", + "height": 85, + "background": "red" + }, + { + "key": "44c1dda7-f248-4e97-81a1-7621a1d327a8", + "label": "label-9466", + "height": 259, + "background": "yellow" + }, + { + "key": "7d85ee0b-8866-4234-9446-b056ae1496a3", + "label": "label-9467", + "height": 466, + "background": "yellow" + }, + { + "key": "2269c300-1694-40d4-9835-1ba14d74ba2e", + "label": "label-9468", + "height": 514, + "background": "blue" + }, + { + "key": "f8a0c757-6b9a-4dbc-ab0c-4a39ebfd2f60", + "label": "label-9469", + "height": 502, + "background": "yellow" + }, + { + "key": "e0c9ca2e-6166-4ac3-a413-2ccad2113272", + "label": "label-9470", + "height": 262, + "background": "red" + }, + { + "key": "c177cced-5b86-41b5-8382-39beed53440b", + "label": "label-9471", + "height": 346, + "background": "green" + }, + { + "key": "4205eafb-157d-4f6b-a761-45496f183432", + "label": "label-9472", + "height": 182, + "background": "green" + }, + { + "key": "f4a557b2-6251-4fa1-bb87-29f0082b4ad5", + "label": "label-9473", + "height": 267, + "background": "blue" + }, + { + "key": "7578972b-4e30-412b-bd88-5977d3233b8c", + "label": "label-9474", + "height": 88, + "background": "green" + }, + { + "key": "40756242-cb50-47fe-93e7-1327fda16b8b", + "label": "label-9475", + "height": 210, + "background": "green" + }, + { + "key": "9b8adef0-8373-4914-bf55-68dce23773e4", + "label": "label-9476", + "height": 336, + "background": "red" + }, + { + "key": "2962ad29-f14a-4831-a9b6-2bf649a51924", + "label": "label-9477", + "height": 47, + "background": "green" + }, + { + "key": "5a735ebb-e121-487f-9416-7ddf284d696e", + "label": "label-9478", + "height": 165, + "background": "red" + }, + { + "key": "bbc9591f-a0cd-4a12-a2bf-14cc0feaccd6", + "label": "label-9479", + "height": 498, + "background": "blue" + }, + { + "key": "c09589ac-bd2f-48d0-8a54-2ee45a1f6e06", + "label": "label-9480", + "height": 462, + "background": "red" + }, + { + "key": "12ec83ac-4f4a-4a03-83a4-58800a4533d0", + "label": "label-9481", + "height": 404, + "background": "red" + }, + { + "key": "036008be-35a4-478d-bcaf-d0a678f28cd3", + "label": "label-9482", + "height": 356, + "background": "blue" + }, + { + "key": "d5f50fee-176c-458d-9be2-504371aa64e2", + "label": "label-9483", + "height": 81, + "background": "yellow" + }, + { + "key": "0a1b4a4b-8e3a-467c-8457-f2def3d8a429", + "label": "label-9484", + "height": 439, + "background": "yellow" + }, + { + "key": "6690a2fd-f06f-47cf-b34b-dbb5cef00f6e", + "label": "label-9485", + "height": 465, + "background": "red" + }, + { + "key": "ea8b0379-6dbf-46b5-bcab-18e87400acd5", + "label": "label-9486", + "height": 233, + "background": "green" + }, + { + "key": "a8cb7bc8-cbb9-458e-8e36-b79359b9b1ff", + "label": "label-9487", + "height": 244, + "background": "red" + }, + { + "key": "10ac7290-0314-455d-8da3-67d7553be04e", + "label": "label-9488", + "height": 467, + "background": "blue" + }, + { + "key": "a5511549-51f4-432a-ab08-ef51aa064b84", + "label": "label-9489", + "height": 242, + "background": "blue" + }, + { + "key": "12c1573a-681d-4f9b-923c-97b4443242e5", + "label": "label-9490", + "height": 361, + "background": "red" + }, + { + "key": "0bc88304-957a-49a3-bcc6-a24c21103725", + "label": "label-9491", + "height": 328, + "background": "blue" + }, + { + "key": "2cc9d0c6-ffd3-452c-83a1-9e2d922ae39c", + "label": "label-9492", + "height": 265, + "background": "green" + }, + { + "key": "c35dc73d-4ab8-47bc-8dce-e1d0c8ac031d", + "label": "label-9493", + "height": 77, + "background": "blue" + }, + { + "key": "6e8900f1-85d2-48ff-b6fa-057e57fe8df6", + "label": "label-9494", + "height": 222, + "background": "blue" + }, + { + "key": "089d4590-b960-465c-950c-5428c39ff149", + "label": "label-9495", + "height": 249, + "background": "blue" + }, + { + "key": "445f894e-d034-48e4-88a3-e9c58f1e1c5c", + "label": "label-9496", + "height": 270, + "background": "green" + }, + { + "key": "55259b61-ab61-405f-9472-f45485a4f7a9", + "label": "label-9497", + "height": 51, + "background": "red" + }, + { + "key": "d82d0347-3fdd-43e0-8e6d-49bdc7dbe520", + "label": "label-9498", + "height": 101, + "background": "blue" + }, + { + "key": "00e27d29-0e1f-41ab-a0b4-8be0cba68584", + "label": "label-9499", + "height": 255, + "background": "green" + }, + { + "key": "b68b146e-214f-4ecd-9890-9393fa907a82", + "label": "label-9500", + "height": 257, + "background": "yellow" + }, + { + "key": "e1cc2218-b14a-4e79-a437-d0c4481ab241", + "label": "label-9501", + "height": 202, + "background": "yellow" + }, + { + "key": "d8bfccd2-61f5-44ef-a37b-9caa58ac94fd", + "label": "label-9502", + "height": 270, + "background": "green" + }, + { + "key": "47f98c2c-32ab-4eb4-8357-c2d7b7d04774", + "label": "label-9503", + "height": 521, + "background": "blue" + }, + { + "key": "b1739e45-acb8-48ee-a2d3-55bcab127acb", + "label": "label-9504", + "height": 268, + "background": "red" + }, + { + "key": "bdbfbafb-5299-4999-b064-57a58445ff63", + "label": "label-9505", + "height": 325, + "background": "yellow" + }, + { + "key": "74bedbfc-9aab-4d93-8cdd-51de4c2bef30", + "label": "label-9506", + "height": 56, + "background": "blue" + }, + { + "key": "9ab4f6f3-a19c-437e-8b29-cb312650f523", + "label": "label-9507", + "height": 369, + "background": "yellow" + }, + { + "key": "d6c6adc3-5536-4941-9665-56e967585fb2", + "label": "label-9508", + "height": 329, + "background": "green" + }, + { + "key": "2788e2ca-6920-41d5-9183-690efb0a1109", + "label": "label-9509", + "height": 125, + "background": "red" + }, + { + "key": "13b333cf-61bf-418d-be1e-2c495600adfd", + "label": "label-9510", + "height": 168, + "background": "green" + }, + { + "key": "90632d7e-acde-492b-a30a-c514de0ae635", + "label": "label-9511", + "height": 232, + "background": "blue" + }, + { + "key": "5420a576-7415-475c-9aa9-a735176f5fa3", + "label": "label-9512", + "height": 322, + "background": "yellow" + }, + { + "key": "3bea3d47-7848-433d-b3f7-b02341a4bc58", + "label": "label-9513", + "height": 429, + "background": "blue" + }, + { + "key": "c0fdd816-c75f-47c7-a635-2b321bc90e48", + "label": "label-9514", + "height": 336, + "background": "red" + }, + { + "key": "60415ed7-98d7-4ac1-9272-e6017ed3ebeb", + "label": "label-9515", + "height": 408, + "background": "yellow" + }, + { + "key": "59a63935-6c45-4ab5-86f0-03f9746222fb", + "label": "label-9516", + "height": 284, + "background": "yellow" + }, + { + "key": "8a3988e8-5847-49b5-ae30-f444be1850f4", + "label": "label-9517", + "height": 244, + "background": "yellow" + }, + { + "key": "f191db7d-6690-47a3-b723-8dcc4fcc67eb", + "label": "label-9518", + "height": 321, + "background": "green" + }, + { + "key": "574a84e6-e46f-4a8a-9c5b-6101d6b3fa27", + "label": "label-9519", + "height": 207, + "background": "yellow" + }, + { + "key": "3f9c6f36-8c39-4b0f-a7df-9f73c96f4f78", + "label": "label-9520", + "height": 457, + "background": "blue" + }, + { + "key": "28b4ec66-97ce-43aa-9e63-6b2b31dd2bdf", + "label": "label-9521", + "height": 155, + "background": "green" + }, + { + "key": "0ca17e2a-ab93-4726-9368-e557d4fead6c", + "label": "label-9522", + "height": 510, + "background": "yellow" + }, + { + "key": "4f4c1c0c-a5bb-4e3d-b527-f1d595dcec1e", + "label": "label-9523", + "height": 175, + "background": "yellow" + }, + { + "key": "aa04b236-42e3-4df9-b33b-56ac6d24d850", + "label": "label-9524", + "height": 117, + "background": "blue" + }, + { + "key": "082cded8-bf09-40d3-bbd9-c31f88a6dc9a", + "label": "label-9525", + "height": 300, + "background": "blue" + }, + { + "key": "f5034f79-4203-4c0b-8ee2-dcda7af72f5a", + "label": "label-9526", + "height": 228, + "background": "green" + }, + { + "key": "5d63f621-0337-4316-9ddc-aed0f4aaee05", + "label": "label-9527", + "height": 279, + "background": "yellow" + }, + { + "key": "f7ff281c-da86-49ec-b346-2a1dc79030ed", + "label": "label-9528", + "height": 113, + "background": "red" + }, + { + "key": "218c3def-ca53-4f01-b854-60f0b6444165", + "label": "label-9529", + "height": 159, + "background": "green" + }, + { + "key": "9ee28513-080b-4650-815c-bb314ec08f75", + "label": "label-9530", + "height": 36, + "background": "blue" + }, + { + "key": "7544b22f-5556-4cdc-ab50-6899d6e8d8fb", + "label": "label-9531", + "height": 160, + "background": "red" + }, + { + "key": "ebcc5393-8d0d-4f38-a270-e8677d46a567", + "label": "label-9532", + "height": 464, + "background": "blue" + }, + { + "key": "59afbdaf-604b-4517-bfda-076d1d2e12c0", + "label": "label-9533", + "height": 367, + "background": "red" + }, + { + "key": "2c5eabe9-7b4e-4e46-a1f9-42868b473346", + "label": "label-9534", + "height": 483, + "background": "blue" + }, + { + "key": "8487f203-aae2-4dfc-8fd5-e8731316e1bc", + "label": "label-9535", + "height": 192, + "background": "blue" + }, + { + "key": "5e731976-73d0-41c0-a186-0f6a1a9ae491", + "label": "label-9536", + "height": 483, + "background": "yellow" + }, + { + "key": "75de6081-4886-4209-9bf8-86f647d17f46", + "label": "label-9537", + "height": 109, + "background": "yellow" + }, + { + "key": "bb21e798-4387-444a-8277-55dca3e1cc3e", + "label": "label-9538", + "height": 190, + "background": "blue" + }, + { + "key": "b87c97bd-58bf-4c0b-aac1-b1a47d347529", + "label": "label-9539", + "height": 88, + "background": "yellow" + }, + { + "key": "956033fd-e335-4f04-82e8-2a51f2b8b7ed", + "label": "label-9540", + "height": 76, + "background": "yellow" + }, + { + "key": "3e810104-e747-44ce-a56c-950e61a99718", + "label": "label-9541", + "height": 250, + "background": "green" + }, + { + "key": "6dd9095c-2e42-40c5-9396-c92e7b82d3f3", + "label": "label-9542", + "height": 313, + "background": "green" + }, + { + "key": "2f632188-a148-4c52-b0fd-8200b95d524e", + "label": "label-9543", + "height": 284, + "background": "blue" + }, + { + "key": "416d3944-7fd5-4b92-b563-ab8ed96279c2", + "label": "label-9544", + "height": 164, + "background": "green" + }, + { + "key": "f5c70fdd-3daf-49bd-8322-0addd15a5ed8", + "label": "label-9545", + "height": 213, + "background": "green" + }, + { + "key": "bb667347-b251-4113-bb9d-e6f0d8e1554c", + "label": "label-9546", + "height": 284, + "background": "blue" + }, + { + "key": "fc0f109f-4bda-4c1d-85cb-0a38370b9643", + "label": "label-9547", + "height": 488, + "background": "yellow" + }, + { + "key": "c3ae61a5-b725-41a8-831c-ab35a1f6b283", + "label": "label-9548", + "height": 33, + "background": "red" + }, + { + "key": "2b7656c6-52b9-4913-8958-c3257e48cead", + "label": "label-9549", + "height": 469, + "background": "red" + }, + { + "key": "bdbbba73-4183-4e2c-906d-4257b08a5cbc", + "label": "label-9550", + "height": 181, + "background": "yellow" + }, + { + "key": "ab6a0899-8b06-42f3-b649-46e78cee68b2", + "label": "label-9551", + "height": 324, + "background": "blue" + }, + { + "key": "563ff82e-cecd-4c8c-b76a-08ed82d5faf9", + "label": "label-9552", + "height": 120, + "background": "blue" + }, + { + "key": "0e9517f7-4f3e-44c1-be05-b8c504c8f3a5", + "label": "label-9553", + "height": 174, + "background": "green" + }, + { + "key": "85ef7931-eb97-439d-b6bd-81660b904e93", + "label": "label-9554", + "height": 465, + "background": "green" + }, + { + "key": "6e88d8b2-16af-48d2-9f37-83e46ab76fec", + "label": "label-9555", + "height": 71, + "background": "green" + }, + { + "key": "b0135075-e3c9-4605-832c-ff03b2a272f2", + "label": "label-9556", + "height": 264, + "background": "green" + }, + { + "key": "4544b25f-4a43-4e4d-8d73-66d3c03179a3", + "label": "label-9557", + "height": 293, + "background": "green" + }, + { + "key": "2522681a-c223-4d53-bbb1-59fd6f5d6a66", + "label": "label-9558", + "height": 183, + "background": "blue" + }, + { + "key": "a492d3cf-f7f7-42a2-b965-fec873ceb50b", + "label": "label-9559", + "height": 298, + "background": "green" + }, + { + "key": "a8d4a9d3-b827-461e-aac3-05c4ea68463b", + "label": "label-9560", + "height": 257, + "background": "blue" + }, + { + "key": "a498f801-2139-41ea-8351-866f91947a47", + "label": "label-9561", + "height": 237, + "background": "green" + }, + { + "key": "3fa2e538-47a1-4d8b-8758-820f1ce651e7", + "label": "label-9562", + "height": 323, + "background": "yellow" + }, + { + "key": "cd4dd813-4556-4db4-bd52-cb8fdbdaeb35", + "label": "label-9563", + "height": 278, + "background": "yellow" + }, + { + "key": "542df852-17e4-4ad1-93e3-30b4031d7c1f", + "label": "label-9564", + "height": 411, + "background": "green" + }, + { + "key": "26edbdab-5c54-45ad-b813-cfff17146e4f", + "label": "label-9565", + "height": 412, + "background": "green" + }, + { + "key": "c86c1291-d4a1-41b1-b5d4-cf51c8134fff", + "label": "label-9566", + "height": 43, + "background": "red" + }, + { + "key": "d1194371-68e4-4972-a9de-8a2f5a3667f9", + "label": "label-9567", + "height": 139, + "background": "blue" + }, + { + "key": "63c81e34-e928-44bc-914f-fcbd33b4c43b", + "label": "label-9568", + "height": 113, + "background": "blue" + }, + { + "key": "9f7703b2-b410-4354-86f6-c12aa1042306", + "label": "label-9569", + "height": 258, + "background": "green" + }, + { + "key": "2cbd8aec-d2f5-4b7b-a1ec-2ee7c3f9218c", + "label": "label-9570", + "height": 368, + "background": "blue" + }, + { + "key": "d3181f89-c228-4d44-b542-7482047c97eb", + "label": "label-9571", + "height": 503, + "background": "green" + }, + { + "key": "aef50be4-dc36-4df7-9b22-7ea5f28c90ac", + "label": "label-9572", + "height": 366, + "background": "yellow" + }, + { + "key": "6ddebb12-0df6-4859-9553-ce513a032862", + "label": "label-9573", + "height": 224, + "background": "yellow" + }, + { + "key": "79fc8034-8ccf-4bb1-91d1-0bc19eacb77e", + "label": "label-9574", + "height": 472, + "background": "yellow" + }, + { + "key": "cb40e47b-331b-4046-b6a7-dcc098154283", + "label": "label-9575", + "height": 110, + "background": "red" + }, + { + "key": "6edba408-31ba-4f47-90e6-607a0aca294e", + "label": "label-9576", + "height": 143, + "background": "blue" + }, + { + "key": "cf0dcc3b-4a42-450a-8d97-67d62e26c91d", + "label": "label-9577", + "height": 283, + "background": "red" + }, + { + "key": "5ac39d64-3a47-4d19-aabb-11e428c2f6df", + "label": "label-9578", + "height": 357, + "background": "green" + }, + { + "key": "960eb8a1-79a2-4dac-9084-e4be2150194f", + "label": "label-9579", + "height": 259, + "background": "red" + }, + { + "key": "b0efbf9c-b724-4721-8906-63827a171a43", + "label": "label-9580", + "height": 529, + "background": "red" + }, + { + "key": "5f14b2b1-d1f8-4b40-b7d0-4c10387ff0ff", + "label": "label-9581", + "height": 347, + "background": "blue" + }, + { + "key": "c3309242-5d09-4678-aab4-3e60dca9a303", + "label": "label-9582", + "height": 456, + "background": "green" + }, + { + "key": "acb41b55-cd4b-42a5-9d53-1ce324b26f86", + "label": "label-9583", + "height": 407, + "background": "red" + }, + { + "key": "8a29abac-37a9-4fc7-a4e5-5bc08eb26b76", + "label": "label-9584", + "height": 516, + "background": "yellow" + }, + { + "key": "ead69f31-6821-4036-900b-cded8e9e15d6", + "label": "label-9585", + "height": 482, + "background": "green" + }, + { + "key": "abf9f3b8-c1e2-4be1-b1a4-e5dfacb8900f", + "label": "label-9586", + "height": 402, + "background": "yellow" + }, + { + "key": "e0cfeb4d-f2ab-4a82-83eb-3354a4827d34", + "label": "label-9587", + "height": 107, + "background": "blue" + }, + { + "key": "e257faee-8ede-4b8a-a27e-4580f56d973c", + "label": "label-9588", + "height": 60, + "background": "green" + }, + { + "key": "fcf48015-da12-4e29-93da-4fb7b5f3f098", + "label": "label-9589", + "height": 465, + "background": "red" + }, + { + "key": "52758676-7d26-4dff-868e-942b1c1f8f50", + "label": "label-9590", + "height": 531, + "background": "green" + }, + { + "key": "e3de8a9d-34af-4427-b665-b9fe44941ab0", + "label": "label-9591", + "height": 435, + "background": "yellow" + }, + { + "key": "be44887b-d616-49a8-ae88-799335dddaec", + "label": "label-9592", + "height": 269, + "background": "green" + }, + { + "key": "1b1eb36c-05fe-4d3b-8045-1fe909a3c219", + "label": "label-9593", + "height": 485, + "background": "yellow" + }, + { + "key": "abbb24f0-51cb-4f3a-8ddc-11d9ced84164", + "label": "label-9594", + "height": 448, + "background": "yellow" + }, + { + "key": "145870cd-d460-4e4c-8791-abfe5479c57a", + "label": "label-9595", + "height": 501, + "background": "yellow" + }, + { + "key": "0dfff81a-236d-40fb-8855-c85008012b6f", + "label": "label-9596", + "height": 298, + "background": "blue" + }, + { + "key": "5f1f3153-a861-417a-939e-86526bb889fa", + "label": "label-9597", + "height": 172, + "background": "blue" + }, + { + "key": "a81af0ab-3a63-4618-87f6-f235a4956525", + "label": "label-9598", + "height": 297, + "background": "blue" + }, + { + "key": "bd05f58f-3766-48c7-bf5f-1fb15ea59d24", + "label": "label-9599", + "height": 472, + "background": "blue" + }, + { + "key": "4687ae5a-bcdb-48b4-bae6-c1c180af0bfd", + "label": "label-9600", + "height": 381, + "background": "blue" + }, + { + "key": "26b21cd8-c69f-460e-8f5a-3b8331f3b063", + "label": "label-9601", + "height": 110, + "background": "yellow" + }, + { + "key": "4fb0d3d6-1c01-4ce8-bc46-426286b99da4", + "label": "label-9602", + "height": 476, + "background": "blue" + }, + { + "key": "7743a7c2-111c-46e4-9b9e-528b1ade007d", + "label": "label-9603", + "height": 454, + "background": "blue" + }, + { + "key": "d26e1754-ea4e-4943-8d9c-9cbc263736a0", + "label": "label-9604", + "height": 329, + "background": "yellow" + }, + { + "key": "b4687b3b-f06a-4ee1-952d-146edd89faf4", + "label": "label-9605", + "height": 163, + "background": "yellow" + }, + { + "key": "4f88fd64-182e-4410-851f-de73103512ad", + "label": "label-9606", + "height": 169, + "background": "yellow" + }, + { + "key": "4851d26c-e095-49fa-ac27-93003fb2d91e", + "label": "label-9607", + "height": 355, + "background": "blue" + }, + { + "key": "a44aaf41-2ae6-40a9-800b-0ab044efe4b8", + "label": "label-9608", + "height": 46, + "background": "green" + }, + { + "key": "61889092-726d-4dc0-91f1-7b57a0b3cdac", + "label": "label-9609", + "height": 88, + "background": "green" + }, + { + "key": "7d18271c-7a20-4825-8881-526321da6a5a", + "label": "label-9610", + "height": 446, + "background": "blue" + }, + { + "key": "7c6efe36-60c0-4330-9712-6b126bd436f7", + "label": "label-9611", + "height": 145, + "background": "green" + }, + { + "key": "2f466bf1-ffb5-47a1-ae5f-7bcb5a0ba897", + "label": "label-9612", + "height": 120, + "background": "blue" + }, + { + "key": "2c15b1ef-8234-40b2-97a0-836d27f00aeb", + "label": "label-9613", + "height": 358, + "background": "blue" + }, + { + "key": "9ff376c6-8090-416b-ba7a-df2829537b2e", + "label": "label-9614", + "height": 136, + "background": "yellow" + }, + { + "key": "f1c280d1-f63c-4caf-94fe-23050e25b17b", + "label": "label-9615", + "height": 298, + "background": "green" + }, + { + "key": "9e3048aa-3b31-48c9-a777-656a7647a3a7", + "label": "label-9616", + "height": 410, + "background": "red" + }, + { + "key": "c84db1b8-5613-4ff3-836b-d9dfddfd4c72", + "label": "label-9617", + "height": 104, + "background": "green" + }, + { + "key": "8f9ab130-6d09-416b-a8f1-b3a6246f86be", + "label": "label-9618", + "height": 165, + "background": "red" + }, + { + "key": "5a3d6da4-f518-4622-b382-43e8e062c780", + "label": "label-9619", + "height": 283, + "background": "green" + }, + { + "key": "31ee5509-63d7-425b-8736-2d6202a38d0b", + "label": "label-9620", + "height": 168, + "background": "green" + }, + { + "key": "6fd8176e-1ca8-4678-86f8-57d8e9e12767", + "label": "label-9621", + "height": 267, + "background": "red" + }, + { + "key": "a307b8dc-3186-4b86-834e-109cd8da841b", + "label": "label-9622", + "height": 67, + "background": "red" + }, + { + "key": "45f5cd6b-53fd-4f96-bb30-6b71a66e9372", + "label": "label-9623", + "height": 35, + "background": "blue" + }, + { + "key": "bf9da817-c490-45d3-9832-9e34edb2eeb4", + "label": "label-9624", + "height": 481, + "background": "blue" + }, + { + "key": "62079e4c-7e82-4f60-8dfd-12f49a1951bc", + "label": "label-9625", + "height": 68, + "background": "yellow" + }, + { + "key": "3c04a367-8372-4dab-8398-37da28fc9818", + "label": "label-9626", + "height": 197, + "background": "blue" + }, + { + "key": "b9f56080-91a8-4b9e-81fe-664f5519bac0", + "label": "label-9627", + "height": 403, + "background": "green" + }, + { + "key": "e4962ce2-cdd7-4ede-a3d5-5781752cd234", + "label": "label-9628", + "height": 518, + "background": "yellow" + }, + { + "key": "3bc51599-2890-4528-aed9-9f0bc2b6fbe1", + "label": "label-9629", + "height": 381, + "background": "yellow" + }, + { + "key": "834cd087-c22b-4479-b0fd-7a3403514a22", + "label": "label-9630", + "height": 173, + "background": "yellow" + }, + { + "key": "1d5eac8b-37fc-45e8-bc93-8e4fe7cbb8bd", + "label": "label-9631", + "height": 383, + "background": "green" + }, + { + "key": "123ddfdd-51c5-494b-a85f-9e315d8d5778", + "label": "label-9632", + "height": 114, + "background": "red" + }, + { + "key": "5d166bcf-af50-460a-93b6-852fa601319a", + "label": "label-9633", + "height": 435, + "background": "green" + }, + { + "key": "2e1b4b04-05d2-4f96-8222-313cfc5886f5", + "label": "label-9634", + "height": 236, + "background": "red" + }, + { + "key": "57603601-9f0a-4d6d-810c-cba8043c26d3", + "label": "label-9635", + "height": 191, + "background": "yellow" + }, + { + "key": "3f50f20d-84ad-4216-a789-7c998d270d04", + "label": "label-9636", + "height": 57, + "background": "green" + }, + { + "key": "f83c1593-87b2-426d-b80a-e74083188985", + "label": "label-9637", + "height": 144, + "background": "green" + }, + { + "key": "c3d0649e-ed3c-4e68-96be-a465071c51ec", + "label": "label-9638", + "height": 391, + "background": "green" + }, + { + "key": "63d78c06-ca28-476c-9f56-4fe819c40ea4", + "label": "label-9639", + "height": 266, + "background": "blue" + }, + { + "key": "5aa0e14d-d51c-49e7-97a9-22b98a869601", + "label": "label-9640", + "height": 115, + "background": "blue" + }, + { + "key": "032cc2cf-f7c5-4726-b5c5-6f31c83101b0", + "label": "label-9641", + "height": 464, + "background": "red" + }, + { + "key": "9db33a68-bfa2-4dcb-b170-0af46e620444", + "label": "label-9642", + "height": 503, + "background": "yellow" + }, + { + "key": "b567ae5f-5a54-49c6-875f-7516e2a85739", + "label": "label-9643", + "height": 524, + "background": "blue" + }, + { + "key": "dd59d74b-372f-444e-95dc-7e5152c64ad7", + "label": "label-9644", + "height": 153, + "background": "green" + }, + { + "key": "e3f8ca26-e094-4371-8e0e-79c92d6f1125", + "label": "label-9645", + "height": 193, + "background": "green" + }, + { + "key": "e79b8533-498b-4486-be87-f9ceafa15a64", + "label": "label-9646", + "height": 291, + "background": "blue" + }, + { + "key": "5b7b62c0-3cb9-4860-92f2-1b7012efb0a2", + "label": "label-9647", + "height": 295, + "background": "green" + }, + { + "key": "6ab990dd-d93f-4472-ad71-2f59efffabb7", + "label": "label-9648", + "height": 145, + "background": "yellow" + }, + { + "key": "6f88c975-7f17-4840-97e8-4f057680bc68", + "label": "label-9649", + "height": 139, + "background": "yellow" + }, + { + "key": "8f4da76a-5b35-47ca-bfb9-e3e03f2636ad", + "label": "label-9650", + "height": 329, + "background": "red" + }, + { + "key": "2e7a89e8-7ed9-4577-9d17-53e72162130b", + "label": "label-9651", + "height": 172, + "background": "blue" + }, + { + "key": "0836e56e-0fcd-4a56-8599-5c95bd2c3774", + "label": "label-9652", + "height": 460, + "background": "red" + }, + { + "key": "9851ba67-02b4-4642-a8ca-8d3d2a5d7939", + "label": "label-9653", + "height": 360, + "background": "blue" + }, + { + "key": "e66ce884-e645-4753-b8be-aebc9326f0e8", + "label": "label-9654", + "height": 55, + "background": "yellow" + }, + { + "key": "f0428389-e57b-470f-98cf-351fbad305bf", + "label": "label-9655", + "height": 487, + "background": "yellow" + }, + { + "key": "86243877-5c33-4fac-a9c7-2fee7544fed9", + "label": "label-9656", + "height": 353, + "background": "red" + }, + { + "key": "69e5a679-7fa7-41b0-8790-82191b3e839d", + "label": "label-9657", + "height": 50, + "background": "blue" + }, + { + "key": "fb77bb0d-d592-4688-89dc-8e54b9f2ca51", + "label": "label-9658", + "height": 504, + "background": "yellow" + }, + { + "key": "b857980b-47ba-4049-b8ea-59731c9fc231", + "label": "label-9659", + "height": 321, + "background": "yellow" + }, + { + "key": "e8f247ba-473e-4868-ae3b-1d7e3095e208", + "label": "label-9660", + "height": 198, + "background": "green" + }, + { + "key": "0ad90f63-6ba0-4748-9d6f-254a59e08b08", + "label": "label-9661", + "height": 501, + "background": "green" + }, + { + "key": "8753b50d-aa14-4e7f-b952-ed16cc2c5083", + "label": "label-9662", + "height": 279, + "background": "green" + }, + { + "key": "eebb50e1-ac6f-46b4-bce0-c618ee173226", + "label": "label-9663", + "height": 106, + "background": "yellow" + }, + { + "key": "d008aefb-30d0-499e-a3ff-ee4dd4d94fc1", + "label": "label-9664", + "height": 187, + "background": "green" + }, + { + "key": "fb691eb6-aa69-4af4-8da0-1efe6a7b9f53", + "label": "label-9665", + "height": 384, + "background": "green" + }, + { + "key": "aa9d3619-3e7e-49ac-a850-e55e4562f17f", + "label": "label-9666", + "height": 390, + "background": "red" + }, + { + "key": "e13bc4cc-d7bc-4282-abac-2fe952bce7c5", + "label": "label-9667", + "height": 75, + "background": "yellow" + }, + { + "key": "f120ae95-f457-45f3-b2e3-208adc8aeee2", + "label": "label-9668", + "height": 71, + "background": "yellow" + }, + { + "key": "a53c7bb6-e5aa-4a52-9a6f-e164d415ce92", + "label": "label-9669", + "height": 380, + "background": "red" + }, + { + "key": "ff1a0249-e592-4cc0-81e0-47b071982f37", + "label": "label-9670", + "height": 467, + "background": "blue" + }, + { + "key": "0f71700f-becd-405d-912c-89eaa3458d92", + "label": "label-9671", + "height": 237, + "background": "blue" + }, + { + "key": "06986b09-ccd0-4933-a51c-5785b5caf380", + "label": "label-9672", + "height": 57, + "background": "green" + }, + { + "key": "300e566f-6c40-4a7a-b17c-d0c3db57bcbc", + "label": "label-9673", + "height": 318, + "background": "blue" + }, + { + "key": "f765d139-f711-4f6f-96ed-3a048af01476", + "label": "label-9674", + "height": 140, + "background": "green" + }, + { + "key": "63193827-0381-4b50-9c7e-319d5592f105", + "label": "label-9675", + "height": 211, + "background": "yellow" + }, + { + "key": "e4ae5c15-3e24-4f10-ad4d-c3158597ab2a", + "label": "label-9676", + "height": 501, + "background": "yellow" + }, + { + "key": "a7879cf6-c911-4f99-a1b6-7f07de452648", + "label": "label-9677", + "height": 399, + "background": "green" + }, + { + "key": "3178f037-ca49-4d48-b12b-6618b813542b", + "label": "label-9678", + "height": 511, + "background": "red" + }, + { + "key": "e42dab02-2693-4ac2-bd38-deaee60a2dd2", + "label": "label-9679", + "height": 69, + "background": "red" + }, + { + "key": "67463e8e-b7fa-4eb3-b557-1bd99343b9ec", + "label": "label-9680", + "height": 448, + "background": "yellow" + }, + { + "key": "3b57f020-45e6-4afd-b696-8c40ee90eab4", + "label": "label-9681", + "height": 379, + "background": "red" + }, + { + "key": "f36ee9dd-32de-4e05-9e83-a09afd29c692", + "label": "label-9682", + "height": 159, + "background": "green" + }, + { + "key": "045b4055-b412-4ce6-91a4-5206fbe8b05f", + "label": "label-9683", + "height": 71, + "background": "blue" + }, + { + "key": "f65e2370-6513-4278-b407-4d0680b09c9f", + "label": "label-9684", + "height": 57, + "background": "green" + }, + { + "key": "9b42e4fd-2e5a-4b69-8539-b7e132524a15", + "label": "label-9685", + "height": 510, + "background": "green" + }, + { + "key": "f3a5e414-a97d-4c77-8f9d-a0396dbc22d7", + "label": "label-9686", + "height": 465, + "background": "red" + }, + { + "key": "8338f312-23af-4642-94e2-90f33cfc9b3f", + "label": "label-9687", + "height": 429, + "background": "green" + }, + { + "key": "947b4498-5119-4b8b-b76e-3e5ba4ee2c5e", + "label": "label-9688", + "height": 165, + "background": "red" + }, + { + "key": "bf9df4ad-e2f2-43d4-a441-ae01920765b7", + "label": "label-9689", + "height": 41, + "background": "green" + }, + { + "key": "c958b26a-5aaf-4cc1-85f8-2ec22d403f69", + "label": "label-9690", + "height": 255, + "background": "blue" + }, + { + "key": "346b736f-ec2f-4bd4-ba78-4008932dca43", + "label": "label-9691", + "height": 73, + "background": "yellow" + }, + { + "key": "673404c4-f5e1-4084-aa88-6db358a358f7", + "label": "label-9692", + "height": 144, + "background": "yellow" + }, + { + "key": "5f686c00-13e9-4c40-a53e-0498fb916ba1", + "label": "label-9693", + "height": 290, + "background": "yellow" + }, + { + "key": "c86d05fd-900c-42d1-8981-9caf0736024e", + "label": "label-9694", + "height": 254, + "background": "red" + }, + { + "key": "c0c1ce90-00ce-4b7a-b317-d1f842b9860c", + "label": "label-9695", + "height": 337, + "background": "blue" + }, + { + "key": "172d9ae3-99ad-4d2b-bc34-525e1d907c18", + "label": "label-9696", + "height": 244, + "background": "green" + }, + { + "key": "96366255-b3d4-45f5-9b8b-163d979a05c0", + "label": "label-9697", + "height": 480, + "background": "red" + }, + { + "key": "779e7a54-ad98-4261-8676-e5b79c75f491", + "label": "label-9698", + "height": 142, + "background": "blue" + }, + { + "key": "3753a722-8d77-4b11-8f32-2c7e554a879c", + "label": "label-9699", + "height": 190, + "background": "red" + }, + { + "key": "63354f57-e84c-4b57-a1af-648ff2235244", + "label": "label-9700", + "height": 98, + "background": "green" + }, + { + "key": "8f4de988-8732-4e75-9709-5ae94ab189f6", + "label": "label-9701", + "height": 490, + "background": "red" + }, + { + "key": "71f391df-6767-4e80-880f-f1032c300a1c", + "label": "label-9702", + "height": 146, + "background": "red" + }, + { + "key": "0292df73-9594-488b-8a86-109c9d451c3f", + "label": "label-9703", + "height": 155, + "background": "yellow" + }, + { + "key": "b5c955c8-94f4-440c-adbc-fe137f3a352a", + "label": "label-9704", + "height": 379, + "background": "blue" + }, + { + "key": "831c803c-62d2-4d33-98d5-16a2885c196c", + "label": "label-9705", + "height": 434, + "background": "green" + }, + { + "key": "75c2f618-c19b-4b3c-8d3f-7b8969de2bce", + "label": "label-9706", + "height": 129, + "background": "red" + }, + { + "key": "447d12ff-5c75-49f9-a883-7079402dada1", + "label": "label-9707", + "height": 193, + "background": "red" + }, + { + "key": "e9273891-085e-4d0c-bf86-cbd1eb19c11c", + "label": "label-9708", + "height": 184, + "background": "green" + }, + { + "key": "f29c8a8f-2b5c-49c0-948e-2850367f92b3", + "label": "label-9709", + "height": 43, + "background": "blue" + }, + { + "key": "fe882763-4893-4316-bc49-b3a899a495d0", + "label": "label-9710", + "height": 199, + "background": "blue" + }, + { + "key": "3965f76f-7e7b-4bfe-b4e6-0ddb74b141aa", + "label": "label-9711", + "height": 493, + "background": "green" + }, + { + "key": "1dc6e20e-d506-43ef-af4b-c40fb3cf8b43", + "label": "label-9712", + "height": 194, + "background": "blue" + }, + { + "key": "a1a92fe9-7315-4b60-9ec0-81f8c1b3aab4", + "label": "label-9713", + "height": 420, + "background": "yellow" + }, + { + "key": "e6915c36-cd9b-4cbf-8d61-b79c76f97b72", + "label": "label-9714", + "height": 517, + "background": "blue" + }, + { + "key": "b3596c10-2f65-44d5-b444-10bb32b8a7f5", + "label": "label-9715", + "height": 287, + "background": "red" + }, + { + "key": "f01eb4c7-2c0c-4a05-ae85-c60dab28cdd1", + "label": "label-9716", + "height": 48, + "background": "red" + }, + { + "key": "5e481437-17b1-47e0-8787-b1c2b4986ca5", + "label": "label-9717", + "height": 398, + "background": "yellow" + }, + { + "key": "11bc2e13-6897-4df3-ba13-2841609276be", + "label": "label-9718", + "height": 172, + "background": "red" + }, + { + "key": "1a751433-f6f1-4e85-aed3-7cf9bb38487c", + "label": "label-9719", + "height": 506, + "background": "yellow" + }, + { + "key": "59ed02d6-38ef-4c32-ab39-12075504459f", + "label": "label-9720", + "height": 191, + "background": "yellow" + }, + { + "key": "cf11687c-9187-4286-b1cd-c649abb1ca4e", + "label": "label-9721", + "height": 412, + "background": "red" + }, + { + "key": "81a6e6be-24b4-4ee4-9597-8ab26e6d15b8", + "label": "label-9722", + "height": 104, + "background": "red" + }, + { + "key": "0b311058-9e2e-4693-a6df-57d2a3929548", + "label": "label-9723", + "height": 193, + "background": "red" + }, + { + "key": "88f6434c-8c4d-4498-bc7b-b6cda749d29e", + "label": "label-9724", + "height": 293, + "background": "yellow" + }, + { + "key": "613b8a70-329e-4916-a0c5-5cf7dced583a", + "label": "label-9725", + "height": 515, + "background": "blue" + }, + { + "key": "613f89ff-0d48-4da1-8734-85cca4b599b5", + "label": "label-9726", + "height": 355, + "background": "blue" + }, + { + "key": "d8427e9b-6776-4335-869d-4fc331092caa", + "label": "label-9727", + "height": 301, + "background": "red" + }, + { + "key": "3c63f42d-e4d9-4853-a517-2643293bf335", + "label": "label-9728", + "height": 370, + "background": "red" + }, + { + "key": "a747f5e1-d0ca-4239-9337-8a903b04b602", + "label": "label-9729", + "height": 523, + "background": "red" + }, + { + "key": "f16d37c9-be75-4d10-ac0e-40605140775c", + "label": "label-9730", + "height": 303, + "background": "yellow" + }, + { + "key": "9c50c705-e791-4048-b2b8-5691c5125056", + "label": "label-9731", + "height": 238, + "background": "red" + }, + { + "key": "7e01b86b-4d93-49ec-97d3-894e1d566679", + "label": "label-9732", + "height": 345, + "background": "blue" + }, + { + "key": "bcae968e-a41c-467e-8e39-ccb60b888656", + "label": "label-9733", + "height": 38, + "background": "yellow" + }, + { + "key": "97983ce9-7323-4747-9bf4-9fb1293e2315", + "label": "label-9734", + "height": 491, + "background": "green" + }, + { + "key": "add9006a-a6d1-418b-a71b-b871e9b7dff8", + "label": "label-9735", + "height": 267, + "background": "blue" + }, + { + "key": "d9850e79-cd03-4e17-8f26-43c10f1751c5", + "label": "label-9736", + "height": 375, + "background": "blue" + }, + { + "key": "9f1df5dc-2bc4-46c0-836d-054fc0ee0b31", + "label": "label-9737", + "height": 225, + "background": "blue" + }, + { + "key": "af276397-cff8-4b9c-8d6f-a4874249ac1d", + "label": "label-9738", + "height": 260, + "background": "red" + }, + { + "key": "ee14b500-8c32-481f-ae30-75876178e424", + "label": "label-9739", + "height": 375, + "background": "blue" + }, + { + "key": "5c951322-3ce6-4ecf-8438-0efbc14716f1", + "label": "label-9740", + "height": 37, + "background": "blue" + }, + { + "key": "35f68d4f-7989-4991-bdad-e5442323e3c1", + "label": "label-9741", + "height": 427, + "background": "yellow" + }, + { + "key": "55d7bffd-94e9-4e07-b59e-4c0befb4ad63", + "label": "label-9742", + "height": 130, + "background": "yellow" + }, + { + "key": "a8e1810a-c761-4ee7-9bfb-3842945041f8", + "label": "label-9743", + "height": 135, + "background": "blue" + }, + { + "key": "82d4c61e-9603-48c7-918a-70dec56bd58d", + "label": "label-9744", + "height": 279, + "background": "blue" + }, + { + "key": "53249cba-5243-4002-b165-dc1144beea58", + "label": "label-9745", + "height": 520, + "background": "green" + }, + { + "key": "706ca269-c04f-4d1e-b3a5-d64eea27a37d", + "label": "label-9746", + "height": 303, + "background": "yellow" + }, + { + "key": "915a7027-a428-4a33-990a-4e8f0557b971", + "label": "label-9747", + "height": 351, + "background": "yellow" + }, + { + "key": "022b25f0-3b34-4bb8-b600-81f88471996c", + "label": "label-9748", + "height": 348, + "background": "red" + }, + { + "key": "a28ec46c-9b1c-4932-99cd-1a032bb98fad", + "label": "label-9749", + "height": 409, + "background": "yellow" + }, + { + "key": "8618ab76-26c0-43c8-bd40-ffa4dc00f3f5", + "label": "label-9750", + "height": 104, + "background": "red" + }, + { + "key": "cdeeea24-2a80-48b4-b517-aac316c24433", + "label": "label-9751", + "height": 149, + "background": "red" + }, + { + "key": "a91585c0-530f-495d-8fa0-ed074fd3fd64", + "label": "label-9752", + "height": 42, + "background": "red" + }, + { + "key": "675f6690-23a8-42e4-be55-a0038fb4dd5d", + "label": "label-9753", + "height": 132, + "background": "red" + }, + { + "key": "4f9435b0-8ec2-40fa-b0c1-65011cad9fe3", + "label": "label-9754", + "height": 99, + "background": "yellow" + }, + { + "key": "1c27de37-63a5-4fb3-9269-fc01d22a7125", + "label": "label-9755", + "height": 407, + "background": "green" + }, + { + "key": "715338f7-aad0-4bb9-8c7b-d0cdbdbb005d", + "label": "label-9756", + "height": 233, + "background": "red" + }, + { + "key": "df632781-6925-4e4b-a02e-58101bcf5269", + "label": "label-9757", + "height": 340, + "background": "blue" + }, + { + "key": "524edc82-c92d-48b6-b811-5a510a36e3a0", + "label": "label-9758", + "height": 98, + "background": "red" + }, + { + "key": "6ee9ab23-81a7-4e60-b01f-525243b60858", + "label": "label-9759", + "height": 155, + "background": "yellow" + }, + { + "key": "a22f0f3f-c681-40ca-8c98-0545ebbfc6db", + "label": "label-9760", + "height": 58, + "background": "yellow" + }, + { + "key": "ec89be47-f961-4ce9-bd32-49d9d949675a", + "label": "label-9761", + "height": 139, + "background": "green" + }, + { + "key": "3bb1bc8d-a8a0-44f8-b08d-934d4439bb82", + "label": "label-9762", + "height": 403, + "background": "green" + }, + { + "key": "8ceec31d-d50c-4e04-a87d-dac06828613c", + "label": "label-9763", + "height": 414, + "background": "blue" + }, + { + "key": "a71dcd3a-edaa-47ca-b125-11e2886cd2d1", + "label": "label-9764", + "height": 381, + "background": "red" + }, + { + "key": "95f6f259-5669-4271-a125-de1f9055ca56", + "label": "label-9765", + "height": 443, + "background": "red" + }, + { + "key": "73f0f3e5-7914-4710-9ad3-3e68a4b4e54f", + "label": "label-9766", + "height": 293, + "background": "red" + }, + { + "key": "efd0a71d-6432-404f-b47d-681ab50d2228", + "label": "label-9767", + "height": 334, + "background": "red" + }, + { + "key": "e155c355-3f52-4ea8-b1c8-a6a057360986", + "label": "label-9768", + "height": 137, + "background": "yellow" + }, + { + "key": "fe458624-b329-4954-9e55-0c1a70762060", + "label": "label-9769", + "height": 491, + "background": "green" + }, + { + "key": "adaea451-1cf5-4535-987a-dd4ea88b0c96", + "label": "label-9770", + "height": 428, + "background": "blue" + }, + { + "key": "b9429130-b559-4a92-ad48-91ee0942ac62", + "label": "label-9771", + "height": 435, + "background": "yellow" + }, + { + "key": "dfc4a189-290c-4506-ad62-10e67cc90abe", + "label": "label-9772", + "height": 77, + "background": "red" + }, + { + "key": "06954a3f-3184-48e5-8276-a2a39836588b", + "label": "label-9773", + "height": 465, + "background": "blue" + }, + { + "key": "e7a818d7-eca0-49c8-8644-bc8dd731af36", + "label": "label-9774", + "height": 437, + "background": "blue" + }, + { + "key": "6e9b2b9b-37f7-497c-a530-a648860d8a87", + "label": "label-9775", + "height": 368, + "background": "yellow" + }, + { + "key": "a3a2ea50-613f-4c8e-b7af-7bd0663e7799", + "label": "label-9776", + "height": 461, + "background": "yellow" + }, + { + "key": "20a91e0b-f5f7-4f40-b762-f8fa8a7a089e", + "label": "label-9777", + "height": 277, + "background": "yellow" + }, + { + "key": "f9af6a50-2b93-4493-a75b-2d7603bbab76", + "label": "label-9778", + "height": 335, + "background": "yellow" + }, + { + "key": "70524eb8-9656-4986-a0a6-56dabc557d3f", + "label": "label-9779", + "height": 448, + "background": "green" + }, + { + "key": "eba7b6bc-cf25-4d37-9b45-4f1f1db35ec4", + "label": "label-9780", + "height": 405, + "background": "yellow" + }, + { + "key": "2e841ec2-d6b9-4fea-a0b8-24f17bf897e3", + "label": "label-9781", + "height": 418, + "background": "yellow" + }, + { + "key": "e1d255cf-9dc6-42de-a65d-cca4b2a08175", + "label": "label-9782", + "height": 67, + "background": "yellow" + }, + { + "key": "b8c89eeb-5630-4c92-a05b-aad820712640", + "label": "label-9783", + "height": 311, + "background": "blue" + }, + { + "key": "3d19b461-2eef-429a-ae60-6f0663c35319", + "label": "label-9784", + "height": 341, + "background": "yellow" + }, + { + "key": "65867171-5137-4b0e-b28c-c034dd37f15d", + "label": "label-9785", + "height": 226, + "background": "green" + }, + { + "key": "ef5eff34-189d-48f5-a3e2-6e8dd07abee7", + "label": "label-9786", + "height": 119, + "background": "green" + }, + { + "key": "189cf0fd-be22-4e96-8892-6fef69943c3b", + "label": "label-9787", + "height": 504, + "background": "yellow" + }, + { + "key": "76d90d62-59a5-4b59-a651-9b85a0916205", + "label": "label-9788", + "height": 83, + "background": "red" + }, + { + "key": "d6f2ca4e-bdc3-4909-bdd1-a4fa71286148", + "label": "label-9789", + "height": 67, + "background": "yellow" + }, + { + "key": "55c6ff2a-777c-4e09-8be5-468032143bdd", + "label": "label-9790", + "height": 158, + "background": "yellow" + }, + { + "key": "1d472412-df57-4cd5-b6e1-b02d4ee43be0", + "label": "label-9791", + "height": 180, + "background": "red" + }, + { + "key": "d02b8bbd-34ff-48cd-a877-bc8bb641f971", + "label": "label-9792", + "height": 175, + "background": "red" + }, + { + "key": "a52ab224-0b63-4db8-b184-61af26130aea", + "label": "label-9793", + "height": 509, + "background": "blue" + }, + { + "key": "8903e96e-e741-4b88-9bd2-527c03244e62", + "label": "label-9794", + "height": 400, + "background": "yellow" + }, + { + "key": "1088b2ad-e2e9-475c-b725-9a90a3a27ee2", + "label": "label-9795", + "height": 250, + "background": "red" + }, + { + "key": "e266f386-f6cd-4005-bd6c-cf9fdeca2181", + "label": "label-9796", + "height": 316, + "background": "red" + }, + { + "key": "a72d96be-1b0a-42c2-82cc-45017b9d24ee", + "label": "label-9797", + "height": 359, + "background": "blue" + }, + { + "key": "3beadedf-e615-4399-af60-2c69d2d89498", + "label": "label-9798", + "height": 438, + "background": "yellow" + }, + { + "key": "1db30720-332d-40ad-9411-0acf3e26c458", + "label": "label-9799", + "height": 269, + "background": "green" + }, + { + "key": "558ae2e7-2ee7-42e1-8d2c-015cc5f38dc3", + "label": "label-9800", + "height": 361, + "background": "yellow" + }, + { + "key": "c46c499d-5055-451d-b8d6-a835bba91fe3", + "label": "label-9801", + "height": 264, + "background": "red" + }, + { + "key": "cad85910-cb50-4e6a-8e1e-c51f4c0d9063", + "label": "label-9802", + "height": 342, + "background": "blue" + }, + { + "key": "dacee20b-a58e-4ae8-b41e-6957705e5590", + "label": "label-9803", + "height": 136, + "background": "red" + }, + { + "key": "9211eb5c-892b-43e5-afef-ad0112df0c60", + "label": "label-9804", + "height": 70, + "background": "yellow" + }, + { + "key": "aa46d971-a2c9-46c5-becb-fa8258cada1d", + "label": "label-9805", + "height": 353, + "background": "yellow" + }, + { + "key": "9c238f77-224c-47ba-a71f-293a656ce200", + "label": "label-9806", + "height": 253, + "background": "red" + }, + { + "key": "5fa17e87-eb20-4e52-aa52-07c1dadb405c", + "label": "label-9807", + "height": 499, + "background": "yellow" + }, + { + "key": "e09ad9e2-39b4-4e0a-81b2-b91f9e0b7ddb", + "label": "label-9808", + "height": 508, + "background": "blue" + }, + { + "key": "b10d7f18-3f18-45e2-bd64-c1006182f616", + "label": "label-9809", + "height": 529, + "background": "yellow" + }, + { + "key": "8045d72e-4fa8-4226-b713-11afe12ba788", + "label": "label-9810", + "height": 241, + "background": "yellow" + }, + { + "key": "84514be4-2c94-4191-9308-3c3ed8c8ea18", + "label": "label-9811", + "height": 256, + "background": "yellow" + }, + { + "key": "5692219d-1887-494d-a6c0-aee3648f23cd", + "label": "label-9812", + "height": 358, + "background": "green" + }, + { + "key": "22ee8655-a919-46b2-b52f-1f82c4a3220e", + "label": "label-9813", + "height": 83, + "background": "green" + }, + { + "key": "4037e7c5-060e-4ac9-b0aa-e4e75e44f4d2", + "label": "label-9814", + "height": 291, + "background": "blue" + }, + { + "key": "fe61eaa3-7133-4ee3-b0a2-9be16bce4b60", + "label": "label-9815", + "height": 405, + "background": "green" + }, + { + "key": "40dfac8e-acb1-4593-aa37-497bce9995b0", + "label": "label-9816", + "height": 122, + "background": "yellow" + }, + { + "key": "6485a3ef-a148-490f-b52b-12d1bb330390", + "label": "label-9817", + "height": 426, + "background": "green" + }, + { + "key": "25ed0428-4d67-40a0-b107-8cdf8469a102", + "label": "label-9818", + "height": 322, + "background": "blue" + }, + { + "key": "38f5f5c9-edb7-4cf6-8ba4-c32c9649bbd1", + "label": "label-9819", + "height": 325, + "background": "green" + }, + { + "key": "5b5a915f-52ee-42f2-9ca8-c9825f9bb3fe", + "label": "label-9820", + "height": 211, + "background": "yellow" + }, + { + "key": "b6e102d0-099e-439a-8fce-d65a712e79e1", + "label": "label-9821", + "height": 129, + "background": "red" + }, + { + "key": "e689a042-a3a1-4b5a-b8b4-44a9b9a2fe48", + "label": "label-9822", + "height": 58, + "background": "yellow" + }, + { + "key": "c13237b0-989e-428b-b3a4-eff25a98139a", + "label": "label-9823", + "height": 121, + "background": "yellow" + }, + { + "key": "5e28653f-21ea-4cd7-b43c-c962412dfaa7", + "label": "label-9824", + "height": 179, + "background": "blue" + }, + { + "key": "c1d7b175-9a10-441b-ae1d-693962623fcd", + "label": "label-9825", + "height": 341, + "background": "yellow" + }, + { + "key": "92c96236-3765-4f83-a21a-fcd2019a6ed4", + "label": "label-9826", + "height": 317, + "background": "green" + }, + { + "key": "c70451e9-fe15-47da-9bdd-43cf6a171a54", + "label": "label-9827", + "height": 326, + "background": "blue" + }, + { + "key": "ad69195d-9a94-4fc0-8060-e7bb4b7ea90f", + "label": "label-9828", + "height": 527, + "background": "green" + }, + { + "key": "6911ed83-4ce4-40a6-8871-5a221d076118", + "label": "label-9829", + "height": 136, + "background": "green" + }, + { + "key": "53406d16-e337-4030-b3bc-6eaacee5a997", + "label": "label-9830", + "height": 146, + "background": "blue" + }, + { + "key": "8ea4a648-e840-4c4a-b6f3-bf7e191e0c35", + "label": "label-9831", + "height": 301, + "background": "green" + }, + { + "key": "77037e15-2fb7-49e3-a8de-90cafbff8047", + "label": "label-9832", + "height": 216, + "background": "green" + }, + { + "key": "ad620473-19a3-43ae-8bf1-5bea9a93872e", + "label": "label-9833", + "height": 51, + "background": "red" + }, + { + "key": "261faeb4-6875-44bf-a6af-b347495f6709", + "label": "label-9834", + "height": 419, + "background": "yellow" + }, + { + "key": "e7d48545-f98c-423c-adbf-eb06737a735a", + "label": "label-9835", + "height": 219, + "background": "blue" + }, + { + "key": "7ee34abd-8327-445f-8a2d-98ff9f74773d", + "label": "label-9836", + "height": 53, + "background": "green" + }, + { + "key": "d1eda9d7-a2b5-4c7c-9e50-4ce518556602", + "label": "label-9837", + "height": 169, + "background": "yellow" + }, + { + "key": "6b0e92b2-252d-4d77-be70-6f783236e39e", + "label": "label-9838", + "height": 162, + "background": "blue" + }, + { + "key": "939285a3-5677-41a2-a3e4-ffefa425316e", + "label": "label-9839", + "height": 398, + "background": "green" + }, + { + "key": "0837bef5-0bc4-44c1-9541-9e6ce11a7fc9", + "label": "label-9840", + "height": 60, + "background": "red" + }, + { + "key": "eb683c01-44a8-4c84-9387-5e23c41802a8", + "label": "label-9841", + "height": 434, + "background": "blue" + }, + { + "key": "b0cf05f9-da16-419e-a8cc-c1b665051796", + "label": "label-9842", + "height": 244, + "background": "green" + }, + { + "key": "108da063-a2ae-4a8c-b4f2-cb30128a8784", + "label": "label-9843", + "height": 73, + "background": "yellow" + }, + { + "key": "afaae8eb-9b19-41da-922c-945265bf97ac", + "label": "label-9844", + "height": 242, + "background": "yellow" + }, + { + "key": "2e01fe02-4636-4210-b530-4aae56128452", + "label": "label-9845", + "height": 225, + "background": "yellow" + }, + { + "key": "2dff4101-4593-4d45-9fe3-7017ee8dc08f", + "label": "label-9846", + "height": 111, + "background": "red" + }, + { + "key": "74730ff5-717c-4c2e-9281-d3202b6f3536", + "label": "label-9847", + "height": 67, + "background": "green" + }, + { + "key": "ee3889ad-a11b-49f5-822a-e6456ab0891b", + "label": "label-9848", + "height": 131, + "background": "green" + }, + { + "key": "7d9f20ea-ac63-4b5d-8cb2-7e07544e2b0b", + "label": "label-9849", + "height": 342, + "background": "red" + }, + { + "key": "ea65baf6-7bb0-43b0-91d2-9c29226b63d9", + "label": "label-9850", + "height": 377, + "background": "red" + }, + { + "key": "553c15a9-08ea-44fd-a8cc-0fa5db25674e", + "label": "label-9851", + "height": 398, + "background": "blue" + }, + { + "key": "bb5cfe1c-f665-4b2c-aace-277fd26c81db", + "label": "label-9852", + "height": 450, + "background": "green" + }, + { + "key": "6f10c097-51ab-460c-b902-fddea27bdb99", + "label": "label-9853", + "height": 201, + "background": "red" + }, + { + "key": "ce31c25c-9047-4f9e-9e32-b5e0a774a8f9", + "label": "label-9854", + "height": 366, + "background": "red" + }, + { + "key": "0661b336-79f3-4384-8f69-fc5715a13f60", + "label": "label-9855", + "height": 526, + "background": "red" + }, + { + "key": "f75b2504-57ab-436e-8094-8c77ad4f87a8", + "label": "label-9856", + "height": 358, + "background": "yellow" + }, + { + "key": "c2617e73-bb9f-4c16-aedf-28da4b7bfcff", + "label": "label-9857", + "height": 445, + "background": "yellow" + }, + { + "key": "3c105f5b-a107-4769-8ffa-9982fb754fba", + "label": "label-9858", + "height": 321, + "background": "yellow" + }, + { + "key": "ef627692-4406-4867-90a1-ec13b88ed445", + "label": "label-9859", + "height": 128, + "background": "yellow" + }, + { + "key": "11818e65-a730-491c-b98f-ed0e1356d175", + "label": "label-9860", + "height": 471, + "background": "green" + }, + { + "key": "24d9620e-4712-4980-a16e-7f1fed92a9dc", + "label": "label-9861", + "height": 50, + "background": "green" + }, + { + "key": "bbfff0a8-aea2-458a-aee0-a4927e30dd6e", + "label": "label-9862", + "height": 439, + "background": "yellow" + }, + { + "key": "672f48dc-36c3-4b28-b54d-b3eaabb4c35f", + "label": "label-9863", + "height": 455, + "background": "yellow" + }, + { + "key": "075d0930-8134-4539-a6b8-052228a4b436", + "label": "label-9864", + "height": 456, + "background": "green" + }, + { + "key": "919ad734-ac5f-46b5-a6f4-ff84dd174365", + "label": "label-9865", + "height": 338, + "background": "yellow" + }, + { + "key": "c2847218-cf96-43c8-a28a-9ca9e80d8ef4", + "label": "label-9866", + "height": 336, + "background": "green" + }, + { + "key": "21f7ed5b-52ab-49eb-86b9-90c620de71b3", + "label": "label-9867", + "height": 455, + "background": "green" + }, + { + "key": "a12d55b6-e4c6-4a9c-ac84-2380ec5eb1d8", + "label": "label-9868", + "height": 144, + "background": "green" + }, + { + "key": "d0a9cc38-b561-4ea3-880c-e20a1bee3d75", + "label": "label-9869", + "height": 169, + "background": "yellow" + }, + { + "key": "33811746-55c7-42a5-b702-83e82bfb43a6", + "label": "label-9870", + "height": 305, + "background": "red" + }, + { + "key": "3be6fb83-494c-40f1-90b5-2f47a176c43f", + "label": "label-9871", + "height": 466, + "background": "green" + }, + { + "key": "def6108e-ddd6-4efc-8c74-14e12e2f8a46", + "label": "label-9872", + "height": 236, + "background": "red" + }, + { + "key": "c43f2ce2-1ce9-44c0-a910-22964079e077", + "label": "label-9873", + "height": 102, + "background": "yellow" + }, + { + "key": "b1ad7744-cb57-4a01-b3cd-4c6303b5d25e", + "label": "label-9874", + "height": 269, + "background": "blue" + }, + { + "key": "bf89436a-9ed5-4367-9c1f-24c1659aa348", + "label": "label-9875", + "height": 140, + "background": "red" + }, + { + "key": "0942ec74-9ce2-4942-af73-608bc72abb56", + "label": "label-9876", + "height": 314, + "background": "red" + }, + { + "key": "3671860e-bf9a-487e-871b-6685e3f43728", + "label": "label-9877", + "height": 130, + "background": "blue" + }, + { + "key": "91d91d56-e5f8-4970-a612-32ce16a4ccff", + "label": "label-9878", + "height": 290, + "background": "red" + }, + { + "key": "e45c9409-97a3-409c-baef-5e2137cb097e", + "label": "label-9879", + "height": 512, + "background": "green" + }, + { + "key": "c8a687c2-e615-44cb-990c-9f367c7923b4", + "label": "label-9880", + "height": 525, + "background": "yellow" + }, + { + "key": "1c01aa68-ae7f-4328-ab2f-26a55902c16b", + "label": "label-9881", + "height": 274, + "background": "yellow" + }, + { + "key": "a2199f0c-30f9-4797-8e8a-ccb33b9b969f", + "label": "label-9882", + "height": 375, + "background": "green" + }, + { + "key": "3dc783b7-6a05-4e7b-963f-ff12552f7a0b", + "label": "label-9883", + "height": 358, + "background": "blue" + }, + { + "key": "aeaf703a-506b-42de-b3ef-203101790205", + "label": "label-9884", + "height": 435, + "background": "blue" + }, + { + "key": "125a936c-c750-4b96-a4b6-8e420f758894", + "label": "label-9885", + "height": 474, + "background": "yellow" + }, + { + "key": "d2af3ccf-75db-427d-984c-4bc8b3bd6a52", + "label": "label-9886", + "height": 344, + "background": "blue" + }, + { + "key": "bb750b49-a311-41a5-a4b7-3482e2be5f06", + "label": "label-9887", + "height": 254, + "background": "red" + }, + { + "key": "1a718011-b291-43ed-80a4-18b112b58100", + "label": "label-9888", + "height": 427, + "background": "blue" + }, + { + "key": "f7234949-cc6e-4da3-befb-af9d9437133d", + "label": "label-9889", + "height": 248, + "background": "green" + }, + { + "key": "140a4aba-84c6-4db7-a9e8-d9747e961779", + "label": "label-9890", + "height": 455, + "background": "red" + }, + { + "key": "385d2de2-939b-4f92-8b49-8105305911ca", + "label": "label-9891", + "height": 201, + "background": "yellow" + }, + { + "key": "e83ceee6-e9ff-43f5-9ca5-28b053b3f84c", + "label": "label-9892", + "height": 199, + "background": "blue" + }, + { + "key": "c67df40a-7ebe-4e24-9d8e-d4e128b437a3", + "label": "label-9893", + "height": 266, + "background": "red" + }, + { + "key": "fad78d8b-902e-4be1-927b-2e38d69b03ff", + "label": "label-9894", + "height": 178, + "background": "yellow" + }, + { + "key": "a5693f51-eabe-42cc-b832-877e0873a994", + "label": "label-9895", + "height": 202, + "background": "yellow" + }, + { + "key": "354e0e41-eac6-4ec0-a956-c7a8da43897b", + "label": "label-9896", + "height": 68, + "background": "green" + }, + { + "key": "777eaeb4-b974-4737-ad7c-4509e753bc52", + "label": "label-9897", + "height": 97, + "background": "red" + }, + { + "key": "0ac697b9-00ec-4c31-a2e8-5319c0c8054b", + "label": "label-9898", + "height": 246, + "background": "yellow" + }, + { + "key": "bd80ea08-aa82-488b-a28f-a918a536c2c7", + "label": "label-9899", + "height": 114, + "background": "yellow" + }, + { + "key": "e2e1db62-299d-48ce-aed7-a096130673ed", + "label": "label-9900", + "height": 522, + "background": "yellow" + }, + { + "key": "c438f419-7569-4d12-aa48-ba3ffa7fbef4", + "label": "label-9901", + "height": 517, + "background": "yellow" + }, + { + "key": "a572f87c-0e32-4037-928d-5129abcf5089", + "label": "label-9902", + "height": 127, + "background": "red" + }, + { + "key": "b11d7d6a-c4e8-4716-9a59-c3a05c47719a", + "label": "label-9903", + "height": 214, + "background": "red" + }, + { + "key": "af63ccfb-dd08-44a3-8a1a-65b2eb2d9de4", + "label": "label-9904", + "height": 122, + "background": "red" + }, + { + "key": "51634b91-8c5c-42ba-b875-28b1478dbbbc", + "label": "label-9905", + "height": 365, + "background": "green" + }, + { + "key": "1d15326e-e928-46c7-a6b3-7bc4dcce4d35", + "label": "label-9906", + "height": 44, + "background": "green" + }, + { + "key": "19aecdbe-335a-4b30-bca6-a1aead25ab61", + "label": "label-9907", + "height": 85, + "background": "blue" + }, + { + "key": "5d916698-4c6a-4c9b-9f24-0d12c2d208f8", + "label": "label-9908", + "height": 328, + "background": "green" + }, + { + "key": "da37be42-25fc-4517-bcf5-b2ccd045e422", + "label": "label-9909", + "height": 181, + "background": "green" + }, + { + "key": "168f61e8-2778-4732-865c-fdd47dc8685f", + "label": "label-9910", + "height": 173, + "background": "green" + }, + { + "key": "7d769d79-687e-4a5f-b434-e9ce174ee9ee", + "label": "label-9911", + "height": 514, + "background": "green" + }, + { + "key": "d9e63be3-7950-4adf-a280-715e511fd0fd", + "label": "label-9912", + "height": 194, + "background": "yellow" + }, + { + "key": "03a6cb10-b633-4df6-8a21-5baaadb47d10", + "label": "label-9913", + "height": 326, + "background": "blue" + }, + { + "key": "a666bacc-dc2b-4029-a4eb-36ffef59cd9b", + "label": "label-9914", + "height": 302, + "background": "blue" + }, + { + "key": "554ca88e-13e8-4db6-b8c9-96872f4267bc", + "label": "label-9915", + "height": 289, + "background": "red" + }, + { + "key": "4bcfd0bc-bb3d-445d-8125-41991025957a", + "label": "label-9916", + "height": 150, + "background": "blue" + }, + { + "key": "2768f8c2-926b-4040-b423-cecef3ad125e", + "label": "label-9917", + "height": 525, + "background": "green" + }, + { + "key": "7dbaff5f-4c20-4622-8d18-2bfcf483f743", + "label": "label-9918", + "height": 324, + "background": "blue" + }, + { + "key": "7e76ca37-565e-4865-96f0-a56d420df4e6", + "label": "label-9919", + "height": 52, + "background": "green" + }, + { + "key": "a22941f0-0990-4291-82c0-7ca6e1f48f1a", + "label": "label-9920", + "height": 308, + "background": "yellow" + }, + { + "key": "b076e6d0-8205-4994-a0d8-f7c9b93f2b75", + "label": "label-9921", + "height": 292, + "background": "yellow" + }, + { + "key": "46e59e73-a065-4da1-adfd-3a567609c0a2", + "label": "label-9922", + "height": 264, + "background": "yellow" + }, + { + "key": "71ba04db-988e-4abd-a470-5201ab474d6b", + "label": "label-9923", + "height": 522, + "background": "green" + }, + { + "key": "c1123bd4-9299-4c31-a5ee-600ef686018a", + "label": "label-9924", + "height": 276, + "background": "yellow" + }, + { + "key": "dca77346-bfc8-4bae-9fc8-a00a743731e0", + "label": "label-9925", + "height": 425, + "background": "blue" + }, + { + "key": "d1e96107-ab8b-4d0d-a701-642c3c936194", + "label": "label-9926", + "height": 310, + "background": "green" + }, + { + "key": "96d93809-6deb-47dc-86ae-641bab83b867", + "label": "label-9927", + "height": 233, + "background": "yellow" + }, + { + "key": "0816e7fa-3e59-47f0-8f99-e3c9f14dba0a", + "label": "label-9928", + "height": 86, + "background": "green" + }, + { + "key": "82594e49-2cf8-4ef1-aded-f99dcce80880", + "label": "label-9929", + "height": 87, + "background": "blue" + }, + { + "key": "2779ac4f-a7fd-4a73-8388-6cf9521a3171", + "label": "label-9930", + "height": 71, + "background": "blue" + }, + { + "key": "5aa3e33b-bf4c-4f29-b6ec-b6beff859b58", + "label": "label-9931", + "height": 470, + "background": "blue" + }, + { + "key": "57bcdb3c-9b8d-42a1-b8a0-560dc73761ad", + "label": "label-9932", + "height": 423, + "background": "yellow" + }, + { + "key": "14759c16-301e-4ba8-a72c-ee44ea2f22df", + "label": "label-9933", + "height": 76, + "background": "red" + }, + { + "key": "20b87955-c2ce-4c95-833f-d219701179d9", + "label": "label-9934", + "height": 86, + "background": "green" + }, + { + "key": "6e1d6a14-3703-400d-8fdf-38692869b185", + "label": "label-9935", + "height": 42, + "background": "yellow" + }, + { + "key": "428b2c5c-f935-44ad-a364-fcc6aacd4bc7", + "label": "label-9936", + "height": 492, + "background": "blue" + }, + { + "key": "91652e66-2255-41d7-bbd3-3a98ac8dc1f7", + "label": "label-9937", + "height": 269, + "background": "red" + }, + { + "key": "b37ad9a3-17cf-423b-8381-c0d0aa89fa0d", + "label": "label-9938", + "height": 74, + "background": "green" + }, + { + "key": "a13f1cec-e88e-433b-a6a3-0d4517a34d29", + "label": "label-9939", + "height": 468, + "background": "blue" + }, + { + "key": "408eceb3-50b6-45d2-ad85-69039f8600de", + "label": "label-9940", + "height": 522, + "background": "blue" + }, + { + "key": "14937f3e-215a-4100-ac9a-73b3c701ac0e", + "label": "label-9941", + "height": 402, + "background": "red" + }, + { + "key": "a94d0d54-4b11-4c11-858e-9758949d923b", + "label": "label-9942", + "height": 44, + "background": "green" + }, + { + "key": "afc7a01c-b4c3-41e5-a56a-9367de3b065b", + "label": "label-9943", + "height": 101, + "background": "red" + }, + { + "key": "9f45a297-a221-493a-94e9-efaafa2968f0", + "label": "label-9944", + "height": 451, + "background": "green" + }, + { + "key": "b50dc340-bcdf-44f9-b40b-0e7c75b4ab76", + "label": "label-9945", + "height": 492, + "background": "yellow" + }, + { + "key": "66fcf382-347f-423f-9329-b77241a87737", + "label": "label-9946", + "height": 456, + "background": "green" + }, + { + "key": "67226a8b-b8a1-4d3e-b644-9bdf618ffb54", + "label": "label-9947", + "height": 204, + "background": "green" + }, + { + "key": "89317ec3-ef69-4cf0-b50c-e68923199c91", + "label": "label-9948", + "height": 414, + "background": "red" + }, + { + "key": "04c68a16-b633-4c3f-84f9-659b05e8d217", + "label": "label-9949", + "height": 390, + "background": "green" + }, + { + "key": "f87f00c6-7515-4614-bb3e-543df8f58d9b", + "label": "label-9950", + "height": 202, + "background": "blue" + }, + { + "key": "d2da9202-0393-4972-8464-df70b96489e5", + "label": "label-9951", + "height": 402, + "background": "yellow" + }, + { + "key": "2e00aae3-e2e8-42fb-9805-4062c5e91a60", + "label": "label-9952", + "height": 527, + "background": "red" + }, + { + "key": "f727c827-0268-47e9-b81b-4db928e4487e", + "label": "label-9953", + "height": 408, + "background": "blue" + }, + { + "key": "7803c6dd-6edb-4fd7-95a2-7f18e8ea2b45", + "label": "label-9954", + "height": 404, + "background": "blue" + }, + { + "key": "aee63fbc-03d6-44c0-a403-a1fb6d007999", + "label": "label-9955", + "height": 225, + "background": "blue" + }, + { + "key": "032cbe88-57cb-4546-8d58-fdee00063e37", + "label": "label-9956", + "height": 240, + "background": "green" + }, + { + "key": "51ac1a36-0b47-4229-a5f5-273677d31bfc", + "label": "label-9957", + "height": 285, + "background": "blue" + }, + { + "key": "8f3a318e-c869-4382-a2de-7bb4ed3e9443", + "label": "label-9958", + "height": 62, + "background": "yellow" + }, + { + "key": "a29e98a9-a73a-450f-b43d-9b72056f7f0c", + "label": "label-9959", + "height": 303, + "background": "yellow" + }, + { + "key": "f240d350-7559-4472-a393-02e65bfe7d18", + "label": "label-9960", + "height": 237, + "background": "blue" + }, + { + "key": "ca2badb4-be19-4143-9d74-1d8a4db6722a", + "label": "label-9961", + "height": 116, + "background": "yellow" + }, + { + "key": "7cfb3aea-189a-4eb5-a581-6eb7de29aaa1", + "label": "label-9962", + "height": 307, + "background": "yellow" + }, + { + "key": "d78fbd6e-9776-4559-96bd-0f3a3e954a5d", + "label": "label-9963", + "height": 422, + "background": "green" + }, + { + "key": "4f037ece-4afe-492c-a597-7080996dc045", + "label": "label-9964", + "height": 256, + "background": "green" + }, + { + "key": "796204b0-7673-45ba-91a2-11419ae1a02e", + "label": "label-9965", + "height": 470, + "background": "red" + }, + { + "key": "3a39c20f-b55f-44d7-89fc-bbee61c171e9", + "label": "label-9966", + "height": 36, + "background": "yellow" + }, + { + "key": "2aeac93a-80b5-4f79-acbc-2d2125ffa7b3", + "label": "label-9967", + "height": 512, + "background": "red" + }, + { + "key": "4dd891d7-ac72-4d61-aa4b-0094574d6a37", + "label": "label-9968", + "height": 304, + "background": "green" + }, + { + "key": "44019aed-7f94-4c1d-bf45-47a3e3cb0d8a", + "label": "label-9969", + "height": 372, + "background": "yellow" + }, + { + "key": "9f2d4fad-0584-4ad6-887d-1b4e24bf2d73", + "label": "label-9970", + "height": 352, + "background": "green" + }, + { + "key": "2902fd20-3ce1-4df9-bc9b-e534a8977252", + "label": "label-9971", + "height": 454, + "background": "blue" + }, + { + "key": "98b4aaa1-32a4-4dbe-b25c-23703d39925b", + "label": "label-9972", + "height": 65, + "background": "red" + }, + { + "key": "3b538302-5709-4be5-a510-4319069e40aa", + "label": "label-9973", + "height": 315, + "background": "blue" + }, + { + "key": "4d1d11ef-b5e7-42ff-b789-3c05d312ecf2", + "label": "label-9974", + "height": 443, + "background": "green" + }, + { + "key": "4e9b21cb-1cc9-4844-94da-9ecd13efedf0", + "label": "label-9975", + "height": 172, + "background": "red" + }, + { + "key": "7b2e537b-9380-4644-83c1-72e212a5ed0f", + "label": "label-9976", + "height": 490, + "background": "blue" + }, + { + "key": "182ebbe8-df41-4b79-a2ba-485d298ce8b7", + "label": "label-9977", + "height": 112, + "background": "yellow" + }, + { + "key": "5fdfcd29-98d4-4c4a-b084-459149255daf", + "label": "label-9978", + "height": 518, + "background": "yellow" + }, + { + "key": "346e1b52-1599-44eb-959b-00dc83b58b84", + "label": "label-9979", + "height": 184, + "background": "red" + }, + { + "key": "614620f1-dfaf-42e9-9c2d-bc3ce90c8cef", + "label": "label-9980", + "height": 314, + "background": "blue" + }, + { + "key": "c1953c82-d5d0-44c9-a757-ff7e0e524987", + "label": "label-9981", + "height": 202, + "background": "red" + }, + { + "key": "ad14e994-2387-4dfb-affa-9266810046df", + "label": "label-9982", + "height": 109, + "background": "green" + }, + { + "key": "6364a081-d095-4a63-92ae-27b0f013ad52", + "label": "label-9983", + "height": 204, + "background": "red" + }, + { + "key": "749db9d2-dd56-4e40-afa8-6b00b831ede7", + "label": "label-9984", + "height": 426, + "background": "red" + }, + { + "key": "13be70f0-58a1-4d94-ae1d-d81afdec5402", + "label": "label-9985", + "height": 149, + "background": "yellow" + }, + { + "key": "cb8fd5b3-0b65-41e6-a973-a58225994454", + "label": "label-9986", + "height": 202, + "background": "green" + }, + { + "key": "2cf10c31-eb72-4c17-8388-a98da60780d5", + "label": "label-9987", + "height": 211, + "background": "red" + }, + { + "key": "ae86ce0d-7349-4a6b-a38b-a7b892a3825f", + "label": "label-9988", + "height": 89, + "background": "red" + }, + { + "key": "aa2298a5-8996-4004-8d86-0e704a6a7ecc", + "label": "label-9989", + "height": 192, + "background": "green" + }, + { + "key": "d36dac09-0527-487c-bc3a-0a70f71c1940", + "label": "label-9990", + "height": 371, + "background": "red" + }, + { + "key": "ada0775e-5334-4b06-bb13-53ecfabe92c8", + "label": "label-9991", + "height": 334, + "background": "blue" + }, + { + "key": "bd4a09fa-bf4a-412b-98fb-419b15e7eee8", + "label": "label-9992", + "height": 500, + "background": "blue" + }, + { + "key": "9c4f199a-ab62-4648-8ba8-61afe90b359c", + "label": "label-9993", + "height": 411, + "background": "blue" + }, + { + "key": "efbdb272-a021-4448-982a-7c72e05e4f70", + "label": "label-9994", + "height": 497, + "background": "yellow" + }, + { + "key": "49b8fb55-895d-4d1e-95a7-5c6588eeb482", + "label": "label-9995", + "height": 292, + "background": "yellow" + }, + { + "key": "63047041-ab84-4126-b32e-0b6738996b7f", + "label": "label-9996", + "height": 220, + "background": "green" + }, + { + "key": "d39d56d3-92d0-499c-8570-02cdbbf5ff30", + "label": "label-9997", + "height": 67, + "background": "green" + }, + { + "key": "b621bf88-f9d0-491b-9b76-7e55dd55cdfa", + "label": "label-9998", + "height": 528, + "background": "green" + }, + { + "key": "17f4d643-9210-4504-8e1c-af3885181f24", + "label": "label-9999", + "height": 177, + "background": "yellow" + } +] diff --git a/packages/web-vue-storybook/stories/components/menu.vue b/packages/web-vue-storybook/stories/components/menu.vue index 1be1b0f79..d6cb17468 100644 --- a/packages/web-vue-storybook/stories/components/menu.vue +++ b/packages/web-vue-storybook/stories/components/menu.vue @@ -51,12 +51,29 @@ + 带有自己封装的 SubMenu + + + diff --git a/packages/web-vue-storybook/stories/components/tree-select.vue b/packages/web-vue-storybook/stories/components/tree-select.vue new file mode 100644 index 000000000..4ab36921e --- /dev/null +++ b/packages/web-vue-storybook/stories/components/tree-select.vue @@ -0,0 +1,113 @@ + + + diff --git a/packages/web-vue-storybook/stories/components/virtual-list.vue b/packages/web-vue-storybook/stories/components/virtual-list.vue index eca68e3a2..90fb4e8b9 100644 --- a/packages/web-vue-storybook/stories/components/virtual-list.vue +++ b/packages/web-vue-storybook/stories/components/virtual-list.vue @@ -3,12 +3,15 @@ + + diff --git a/packages/web-vue/components/modal/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/modal/__test__/__snapshots__/demo.test.ts.snap index 2121f934f..1953d828f 100644 --- a/packages/web-vue/components/modal/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/modal/__test__/__snapshots__/demo.test.ts.snap @@ -14,6 +14,12 @@ exports[` demo: render [basic] correctly 1`] = ` " `; +exports[` demo: render [confirm] correctly 1`] = ` +"" +`; + exports[` demo: render [custom] correctly 1`] = ` " +
+
+
diff --git a/packages/web-vue/components/modal/__test__/__snapshots__/index.test.ts.snap b/packages/web-vue/components/modal/__test__/__snapshots__/index.test.ts.snap index b448ddbb2..2ca414c27 100644 --- a/packages/web-vue/components/modal/__test__/__snapshots__/index.test.ts.snap +++ b/packages/web-vue/components/modal/__test__/__snapshots__/index.test.ts.snap @@ -10,10 +10,10 @@ exports[`Modal should render modal and emit ok/cancel event 1`] = `
-
+
Title
-
+
Modal Body
@@ -40,7 +40,7 @@ exports[`Modal should render simple modal 1`] = `
-
+
Title
@@ -60,4 +60,4 @@ exports[`Modal should render simple modal 1`] = ` " `; -exports[`Modal should show modal and call cb 1`] = `"
title
content
"`; +exports[`Modal should show modal and call cb 1`] = `"
title
content
"`; diff --git a/packages/web-vue/components/modal/hooks/use-draggable.ts b/packages/web-vue/components/modal/hooks/use-draggable.ts index 69b1a8674..a2444d6cc 100644 --- a/packages/web-vue/components/modal/hooks/use-draggable.ts +++ b/packages/web-vue/components/modal/hooks/use-draggable.ts @@ -5,45 +5,53 @@ export const useDraggable = ({ modalRef, wrapperRef, draggable, + alignCenter, }: { modalRef: Ref; wrapperRef: Ref; draggable: Ref; + alignCenter: Ref; }) => { const isDragging = ref(false); const startMouse = ref([0, 0]); - const diffMouse = ref([0, 0]); const initialPosition = ref([0, 0]); const position = ref<[number, number]>(); + const minPosition = ref<[number, number]>([0, 0]); + const maxPosition = ref<[number, number]>([0, 0]); const getInitialPosition = () => { if (wrapperRef.value && modalRef.value) { - const { - top: wrapperTop, - left: wrapperLeft, - width: wrapperWidth, - height: wrapperHeight, - } = wrapperRef.value.getBoundingClientRect(); + const { top: wrapperTop, left: wrapperLeft } = + wrapperRef.value.getBoundingClientRect(); + const { clientWidth: wrapperWidth, clientHeight: wrapperHeight } = + wrapperRef.value; const { top, left, width, height } = modalRef.value.getBoundingClientRect(); + // subtract the top prop value when the alignCenter is false + const offsetTop = alignCenter.value ? 0 : modalRef.value?.offsetTop; const initialX = left - wrapperLeft; - const initialY = top - wrapperTop; + const initialY = top - wrapperTop - offsetTop; if ( initialX !== initialPosition.value?.[0] || initialY !== initialPosition.value?.[1] ) { initialPosition.value = [initialX, initialY]; } - const maxX = wrapperWidth - width; - const maxY = wrapperHeight - height; + const maxX = wrapperWidth > width ? wrapperWidth - width : 0; + const maxY = + wrapperHeight > height ? wrapperHeight - height - offsetTop : 0; if (maxX !== maxPosition.value[0] || maxY !== maxPosition.value[1]) { maxPosition.value = [maxX, maxY]; } + + if (offsetTop) { + minPosition.value = [0, 0 - offsetTop]; + } } }; @@ -54,7 +62,6 @@ export const useDraggable = ({ isDragging.value = true; getInitialPosition(); startMouse.value = [ev.x, ev.y]; - diffMouse.value = [0, 0]; on(window, 'mousemove', handleMouseMove); on(window, 'mouseup', handleMouseUp); on(window, 'contextmenu', handleMouseUp); @@ -68,10 +75,13 @@ export const useDraggable = ({ let x = initialPosition.value[0] + diffX; let y = initialPosition.value[1] + diffY; - if (x < 0) x = 0; + + // eslint-disable-next-line prefer-destructuring + if (x < minPosition.value[0]) x = minPosition.value[0]; // eslint-disable-next-line prefer-destructuring if (x > maxPosition.value[0]) x = maxPosition.value[0]; - if (y < 0) y = 0; + // eslint-disable-next-line prefer-destructuring + if (y < minPosition.value[1]) y = minPosition.value[1]; // eslint-disable-next-line prefer-destructuring if (y > maxPosition.value[1]) y = maxPosition.value[1]; diff --git a/packages/web-vue/components/modal/index.tsx b/packages/web-vue/components/modal/index.tsx index 55f9175f3..ccacb1bb0 100644 --- a/packages/web-vue/components/modal/index.tsx +++ b/packages/web-vue/components/modal/index.tsx @@ -1,12 +1,12 @@ import type { App, AppContext } from 'vue'; -import { createVNode, render } from 'vue'; +import { nextTick, createVNode, render } from 'vue'; import type { ArcoOptions } from '../_utils/types'; import { setGlobalConfig, getComponentPrefix } from '../_utils/global-config'; import { MESSAGE_TYPES } from '../_utils/constant'; import { getOverlay } from '../_utils/dom'; import { isFunction } from '../_utils/is'; import _Modal from './modal.vue'; -import { ModalConfig, ModalMethod } from './interface'; +import type { ModalConfig, ModalMethod, ModalUpdateConfig } from './interface'; import { omit } from '../_utils/omit'; import { getSlotFunction } from '../_utils/vue-utils'; @@ -33,7 +33,8 @@ const open = (config: ModalConfig, appContext?: AppContext) => { } }; - const handleClose = () => { + const handleClose = async () => { + await nextTick(); if (container) { render(null, container); document.body.removeChild(container); @@ -45,9 +46,24 @@ const open = (config: ModalConfig, appContext?: AppContext) => { } }; + const handleReturnClose = () => { + if (vm.component) { + vm.component.props.visible = false; + } + }; + + const handleUpdateConfig = (config: ModalUpdateConfig) => { + if (vm.component) { + Object.entries(config).forEach(([key, value]) => { + vm.component!.props[key] = value; + }); + } + }; + const defaultConfig = { visible: true, renderToBody: false, + unmountOnClose: true, onOk: handleOk, onCancel: handleCancel, onClose: handleClose, @@ -56,11 +72,29 @@ const open = (config: ModalConfig, appContext?: AppContext) => { // @ts-ignore const vm = createVNode( _Modal, - { ...omit(config, ['content', 'title', 'footer']), ...defaultConfig }, + { + ...defaultConfig, + ...omit(config, [ + 'content', + 'title', + 'footer', + 'visible', + 'unmountOnClose', + 'onOk', + 'onCancel', + 'onClose', + ]), + ...{ + footer: typeof config.footer === 'boolean' ? config.footer : undefined, + }, + }, { default: getSlotFunction(config.content), title: getSlotFunction(config.title), - footer: getSlotFunction(config.footer), + footer: + typeof config.footer !== 'boolean' + ? getSlotFunction(config.footer) + : undefined, } ); @@ -72,14 +106,15 @@ const open = (config: ModalConfig, appContext?: AppContext) => { document.body.appendChild(container); return { - close: handleClose, + close: handleReturnClose, + update: handleUpdateConfig, }; }; const modal: ModalMethod = { open, confirm: (config: ModalConfig, appContext?: AppContext) => { - const _config = { simple: true, ...config }; + const _config = { simple: true, messageType: 'warning', ...config }; return open(_config, appContext); }, diff --git a/packages/web-vue/components/modal/interface.ts b/packages/web-vue/components/modal/interface.ts index de02fbe2d..623ed5827 100644 --- a/packages/web-vue/components/modal/interface.ts +++ b/packages/web-vue/components/modal/interface.ts @@ -1,4 +1,5 @@ -import { AppContext, CSSProperties } from 'vue'; +import { AppContext, CSSProperties, StyleValue } from 'vue'; +import { ButtonProps } from '../button'; import { RenderContent } from '../_utils/types'; export interface ModalConfig { @@ -15,11 +16,13 @@ export interface ModalConfig { /** * @zh 页脚 * @en Footer + * @defaultValue true */ - footer?: RenderContent; + footer?: boolean | RenderContent; /** * @zh 是否显示关闭按钮 * @en Whether to show the close button + * @defaultValue true */ closable?: boolean; /** @@ -36,12 +39,12 @@ export interface ModalConfig { * @zh 确认按钮的Props * @en Props of confirm button */ - okButtonProps?: any; + okButtonProps?: ButtonProps; /** * @zh 取消按钮的Props * @en Props of cancel button */ - cancelButtonProps?: any; + cancelButtonProps?: ButtonProps; /** * @zh 确认按钮是否为加载中状态 * @en Whether the confirm button is in the loading state @@ -55,6 +58,7 @@ export interface ModalConfig { /** * @zh 是否显示遮罩层 * @en Whether to show the mask + * @defaultValue true */ mask?: boolean; /** @@ -65,6 +69,7 @@ export interface ModalConfig { /** * @zh 是否点击遮罩层可以关闭对话框 * @en Whether to close the modal when click the mask + * @defaultValue true */ maskClosable?: boolean; /** @@ -75,11 +80,13 @@ export interface ModalConfig { /** * @zh 对话框是否居中显示 * @en Whether the dialog box is displayed in the center + * @defaultValue true */ alignCenter?: boolean; /** * @zh 是否支持 ESC 键关闭对话框 * @en Whether to support the ESC key to close the dialog + * @defaultValue true * @version 2.15.0 */ escToClose?: boolean; @@ -99,18 +106,20 @@ export interface ModalConfig { * @zh 点击确定按钮的回调函数 * @en Callback function for clicking the OK button */ - onOk?: () => void; + onOk?: (e?: Event) => void; /** * @zh 点击取消按钮的回调函数 * @en Callback function for clicking the Cancel button */ - onCancel?: () => void; + onCancel?: (e?: Event) => void; /** * @zh 触发 ok 事件前的回调函数。如果返回 false 则不会触发后续事件,也可使用 done 进行异步关闭。 * @en The callback function before the ok event is triggered. If false is returned, subsequent events will not be triggered, and done can also be used to close asynchronously. * @version 2.7.0 */ - onBeforeOk?: (done: (closed: boolean) => void) => void | boolean; + onBeforeOk?: ( + done: (closed: boolean) => void + ) => void | boolean | Promise; /** * @zh 触发 cancel 事件前的回调函数。如果返回 false 则不会触发后续事件。 * @en The callback function before the cancel event is triggered. If it returns false, no subsequent events will be triggered. @@ -139,14 +148,105 @@ export interface ModalConfig { * @version 2.16.0 */ onBeforeClose?: () => void; + /** + * @zh 对话框的宽度,不设置的情况下会使用样式中的宽度值 + * @en The width of the dialog box, if not set, the width value in the style will be used + * @version 2.12.0 + */ + width?: number | string; + /** + * @zh 对话框的距离顶部的高度,居中显示开启的情况下不生效 + * @en The height from the top of the dialog box. It does not take effect when the center display is turned on. + * @version 2.12.0 + */ + top?: number | string; + /** + * @zh 标题的水平对齐方向 + * @en horizontal alignment of the title + * @defaultValue 'center' + * @version 2.17.0 + */ + titleAlign?: 'start' | 'center'; + /** + * @zh 对话框是否挂载在 `body` 元素下 + * @en Whether the modal is mounted under the `body` element + * @defaultValue true + */ + renderToBody?: boolean; + /** + * @zh 弹出框的挂载容器 + * @en Mount container for modal + * @defaultValue 'body' + */ + popupContainer?: string | HTMLElement; + /** + * @zh 对话框的类名 + * @en The classname of the modal + */ + modalClass?: string | any[]; + /** + * @zh 对话框的样式 + * @en Modal style + */ + modalStyle?: CSSProperties; + /** + * @zh 遮罩层动画名字 + * @en Mask layer animation name + * @version 2.24.0 + */ + maskAnimationName?: string; + /** + * @zh 对话框动画名字 + * @en Modal animation name + * @version 2.24.0 + */ + modalAnimationName?: string; + /** + * @zh 是否隐藏标题 + * @en Whether to hide the title + * @defaultValue false + * @version 2.50.0 + */ + hideTitle?: boolean; + /** + * @zh 对话框内容部分的类名 + * @en The classname of the modal + */ + bodyClass?: string | any[]; + /** + * @zh 对话框内容部分的样式 + * @en Modal style + */ + bodyStyle?: StyleValue; } +export type ModalUpdateConfig = Omit< + ModalConfig, + | 'title' + | 'content' + | 'footer' + | 'onOk' + | 'onCancel' + | 'onBeforeOk' + | 'onBeforeCancel' + | 'onOpen' + | 'onClose' + | 'onBeforeOpen' + | 'onBeforeClose' +>; + export interface ModalReturn { /** * @zh 关闭对话框 * @en Close Modal */ close: () => void; + /** + * @zh 更新对话框 + * @en Update Modal + * @version 2.43.2 + */ + update: (config: ModalUpdateConfig) => void; } export interface ModalMethod { diff --git a/packages/web-vue/components/modal/modal.vue b/packages/web-vue/components/modal/modal.vue index ca247a326..539fb6821 100644 --- a/packages/web-vue/components/modal/modal.vue +++ b/packages/web-vue/components/modal/modal.vue @@ -4,9 +4,9 @@
@@ -59,6 +59,9 @@
@@ -67,7 +70,7 @@
-
+
@@ -98,7 +101,7 @@ ``` diff --git a/packages/web-vue/components/notification/__demo__/btn.md b/packages/web-vue/components/notification/__demo__/btn.md new file mode 100644 index 000000000..912ca5bc9 --- /dev/null +++ b/packages/web-vue/components/notification/__demo__/btn.md @@ -0,0 +1,57 @@ +```yaml +title: + zh-CN: 自定义操作按钮 + en-US: Custom action buttons +``` + +## zh-CN + +通过指定 `btn` 字段,可以添加操作按钮。 + +--- + +## en-US + +You can add operation buttons by specifying the `btn` field. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/notification/__demo__/custom-close.md b/packages/web-vue/components/notification/__demo__/custom-close.md new file mode 100644 index 000000000..1e937bc6a --- /dev/null +++ b/packages/web-vue/components/notification/__demo__/custom-close.md @@ -0,0 +1,59 @@ +```yaml +title: + zh-CN: 自定义关闭按钮 + en-US: Custom close button +``` + +## zh-CN + +需要设置 `closable: true`,自定义元素使用 `closeIconElement`,仅图标使用 `closeIcon` (会有 `hover` 样式)。 + +--- + +## en-US + +Need to set up `closable: true`, Custom elements use the `closeIconElement`, only icon use the `closeIcon` (There will be a `hover` style). + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/notification/__demo__/position.md b/packages/web-vue/components/notification/__demo__/position.md index 1228c5145..3de828755 100644 --- a/packages/web-vue/components/notification/__demo__/position.md +++ b/packages/web-vue/components/notification/__demo__/position.md @@ -6,29 +6,69 @@ title: ## zh-CN -通知提醒框的显示位置。 +通知提醒框有 4 种不同的弹出位置,分别为:`左上角`, `右上角 (默认)`, `左下角`, `右下角`。 --- ## en-US -The display position of the notification. +Notification has 4 different positions, `Top Left`, `Top Right (default)`, `Bottom Left`, `Bottom Right`. --- ```vue + + ``` diff --git a/packages/web-vue/components/notification/__demo__/style.md b/packages/web-vue/components/notification/__demo__/style.md new file mode 100644 index 000000000..432263655 --- /dev/null +++ b/packages/web-vue/components/notification/__demo__/style.md @@ -0,0 +1,44 @@ +```yaml +title: + zh-CN: 自定义样式 + en-US: Customize style +``` + +## zh-CN + +可以设置 `style` 和 `class` 来定制样式。 + +--- + +## en-US + +You can set `style` and `class` to customize the style. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/notification/__demo__/type.md b/packages/web-vue/components/notification/__demo__/type.md index 6567b7fcc..017104707 100644 --- a/packages/web-vue/components/notification/__demo__/type.md +++ b/packages/web-vue/components/notification/__demo__/type.md @@ -19,10 +19,42 @@ The message type of the notification. ```vue ``` diff --git a/packages/web-vue/components/notification/__demo__/update_duration.md b/packages/web-vue/components/notification/__demo__/update_duration.md new file mode 100644 index 000000000..0c7601bb4 --- /dev/null +++ b/packages/web-vue/components/notification/__demo__/update_duration.md @@ -0,0 +1,53 @@ +```yaml +title: + zh-CN: 更新延迟 + en-US: Update duration +``` + +## zh-CN + +通过指定参数 `id`,可以更新已经存在的通知提醒框。 + +--- + +## en-US + +Specifying `id` to update the existing notification. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/notification/__demo__/update_notification.md b/packages/web-vue/components/notification/__demo__/update_notification.md new file mode 100644 index 000000000..90bf8d1e2 --- /dev/null +++ b/packages/web-vue/components/notification/__demo__/update_notification.md @@ -0,0 +1,51 @@ +```yaml +title: + zh-CN: 更新通知内容 + en-US: Update +``` + +## zh-CN + +通过指定参数 `id`,可以更新已经存在的通知提醒框。 + +--- + +## en-US + +Specifying `id` to update the existing notification. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/notification/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/notification/__test__/__snapshots__/demo.test.ts.snap index f553823e3..b2a97cfd7 100644 --- a/packages/web-vue/components/notification/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/notification/__test__/__snapshots__/demo.test.ts.snap @@ -1,41 +1,97 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[` demo: render [basic] correctly 1`] = ` -"
+ +
+
" +`; + +exports[` demo: render [btn] correctly 1`] = ` +"" `; +exports[` demo: render [custom-close] correctly 1`] = ` +"
+ +
+ +
+
" +`; + exports[` demo: render [position] correctly 1`] = ` "
-
-
-
-
" `; +exports[` demo: render [style] correctly 1`] = ` +"" +`; + exports[` demo: render [type] correctly 1`] = ` "
-
+ +
-
-
-
" `; + +exports[` demo: render [update_duration] correctly 1`] = ` +"" +`; + +exports[` demo: render [update_notification] correctly 1`] = ` +"" +`; diff --git a/packages/web-vue/components/notification/__test__/__snapshots__/index.test.ts.snap b/packages/web-vue/components/notification/__test__/__snapshots__/index.test.ts.snap index 0de73bbc3..112165e76 100644 --- a/packages/web-vue/components/notification/__test__/__snapshots__/index.test.ts.snap +++ b/packages/web-vue/components/notification/__test__/__snapshots__/index.test.ts.snap @@ -2,53 +2,53 @@ exports[`Notification should render notification 1`] = ` " -
  • +
  • -
    +
    Info Message
  • -
  • +
  • -
    +
    Success Message
  • -
  • +
  • -
    +
    Warning Message
  • -
  • +
  • -
    +
    Error Message
    diff --git a/packages/web-vue/components/notification/index.ts b/packages/web-vue/components/notification/index.ts index 7158a4c8c..10f3cb067 100644 --- a/packages/web-vue/components/notification/index.ts +++ b/packages/web-vue/components/notification/index.ts @@ -135,11 +135,17 @@ const notification = MESSAGE_TYPES.reduce((pre, value) => { return pre; }, {} as NotificationMethod); +notification.remove = (id: string) => { + if (id) { + Object.values(notificationInstance).forEach((item) => item?.remove(id)); + } +}; + notification.clear = (position?: NotificationPosition) => { if (position) { notificationInstance[position]?.clear(); } else { - Object.values(notificationInstance).forEach((item) => item.clear()); + Object.values(notificationInstance).forEach((item) => item?.clear()); } }; diff --git a/packages/web-vue/components/notification/interface.ts b/packages/web-vue/components/notification/interface.ts index 18052557e..eb651a792 100644 --- a/packages/web-vue/components/notification/interface.ts +++ b/packages/web-vue/components/notification/interface.ts @@ -1,5 +1,5 @@ -import { AppContext, RenderFunction } from 'vue'; -import { RenderContent } from '../_utils/types'; +import { AppContext, CSSProperties, RenderFunction } from 'vue'; +import { ClassName, RenderContent } from '../_utils/types'; import { MessageType } from '../_utils/constant'; export const NOTIFICATION_POSITION = [ @@ -44,6 +44,11 @@ export interface NotificationMethod { config: string | NotificationConfig, appContext?: AppContext ) => NotificationReturn; + /** + * @zh 清除对应 `id` 的提醒框 + * @en remove the notification for the corresponding `id` + */ + remove: (id: string) => void; /** * @zh 清除全部提醒框 * @en Clear all notifications @@ -72,6 +77,16 @@ export interface NotificationConfig { * @en Unique id */ id?: string; + /** + * @zh 样式 + * @en Style + */ + style?: CSSProperties; + /** + * @zh 样式类名 + * @en Style class name + */ + class?: ClassName; /** * @zh 位置 * @en Position @@ -81,18 +96,19 @@ export interface NotificationConfig { /** * @zh 是否显示图标 * @en Whether to show icon - * @default true + * @defaultValue true */ showIcon?: boolean; /** * @zh 是否可关闭 * @en Whether it can be closed + * @defaultValue false */ closable?: boolean; /** - * @zh 显示的持续时间 - * @en Display duration - * @default 3000 + * @zh 显示的持续时间,单位为 `ms` + * @en Display duration, the unit is `ms` + * @defaultValue 3000 */ duration?: number; /** @@ -101,6 +117,16 @@ export interface NotificationConfig { * @version 2.25.0 */ footer?: RenderFunction; + /** + * @zh 关闭按钮图标 + * @en Close button icon + */ + closeIcon?: RenderFunction; + /** + * @zh 关闭按钮元素 + * @en Close button element + */ + closeIconElement?: RenderFunction; /** * @zh 关闭时的回调函数 * @en Callback function when closing @@ -121,9 +147,13 @@ export interface NotificationItem { id: number | string; type: MessageType; content: RenderContent; + style?: CSSProperties; + class?: ClassName; title?: RenderContent; icon?: RenderFunction; footer?: RenderFunction; + closeIcon?: RenderFunction; + closeIconElement?: RenderFunction; showIcon?: boolean; closable?: boolean; duration?: number; diff --git a/packages/web-vue/components/notification/notification-list.tsx b/packages/web-vue/components/notification/notification-list.tsx index 398f1a73b..bfa152ada 100644 --- a/packages/web-vue/components/notification/notification-list.tsx +++ b/packages/web-vue/components/notification/notification-list.tsx @@ -48,13 +48,19 @@ export default defineComponent({ content: getSlotFunction(item.content), icon: getSlotFunction(item.icon), footer: getSlotFunction(item.footer), + closeIcon: getSlotFunction(item.closeIcon), + closeIconElement: getSlotFunction(item.closeIconElement), }; return ( context.emit('close', item.id)} /> diff --git a/packages/web-vue/components/notification/notification.vue b/packages/web-vue/components/notification/notification.vue index 294267b47..e2b326799 100644 --- a/packages/web-vue/components/notification/notification.vue +++ b/packages/web-vue/components/notification/notification.vue @@ -1,13 +1,14 @@ diff --git a/packages/web-vue/components/notification/style/index.less b/packages/web-vue/components/notification/style/index.less index 8b2805173..4bc4d5e2f 100644 --- a/packages/web-vue/components/notification/style/index.less +++ b/packages/web-vue/components/notification/style/index.less @@ -6,6 +6,8 @@ .@{notification-prefix-cls}-list { position: fixed; z-index: @z-index-notification; + margin: 0; + padding-left: 0; &-top-left { top: @notification-wrapper-margin-top; @@ -42,7 +44,6 @@ box-sizing: border-box; width: @notification-width + @notification-padding-right + @notification-padding-left; - margin-bottom: @notification-margin-bottom; padding: @notification-padding-top @notification-padding-right @notification-padding-bottom @notification-padding-left; overflow: hidden; @@ -54,8 +55,12 @@ opacity: 1; transition: opacity @transition-duration-2 @transition-timing-function-linear; + &:not(:last-child) { + margin-bottom: @notification-margin-bottom; + } + &-icon { - display: inline-flex; + display: flex; align-items: center; font-size: @notification-font-size-icon; } @@ -106,12 +111,15 @@ } &-title { - margin-bottom: @notification-title-margin-bottom; color: @notification-normal-color-text-title; font-weight: @font-weight-500; font-size: @notification-font-size-title; } + &-title + &-content { + margin-top: @notification-title-margin-bottom; + } + &-content { color: @notification-normal-color-text-content; font-size: @notification-font-size-content; diff --git a/packages/web-vue/components/overflow-list/CHANGELOG.md b/packages/web-vue/components/overflow-list/CHANGELOG.md new file mode 100644 index 000000000..911d2ffd0 --- /dev/null +++ b/packages/web-vue/components/overflow-list/CHANGELOG.md @@ -0,0 +1,30 @@ +```yaml +changelog: true +``` + +## 2.37.3 + +`2022-09-23` + +### 💎 Enhancement + +- overflow quantity changes event ([#1287](https://github.com/arco-design/arco-design-vue/pull/1287)) + + +## 2.37.1 + +`2022-09-16` + +### 🆕 Feature + +- Added `OverflowList` component ([#1634](https://github.com/arco-design/arco-design-vue/pull/1634)) + + +## 2.30.1-beta.1 + +`2022-06-10` + +### 🆕 Feature + +- Added `OverflowList` component ([#1221](https://github.com/arco-design/arco-design-vue/pull/1221)) + diff --git a/packages/web-vue/components/overflow-list/CHANGELOG.zh-CN.md b/packages/web-vue/components/overflow-list/CHANGELOG.zh-CN.md new file mode 100644 index 000000000..cfc32ae74 --- /dev/null +++ b/packages/web-vue/components/overflow-list/CHANGELOG.zh-CN.md @@ -0,0 +1,30 @@ +```yaml +changelog: true +``` + +## 2.37.3 + +`2022-09-23` + +### 💎 功能优化 + +- 溢出数量改变事件 ([#1287](https://github.com/arco-design/arco-design-vue/pull/1287)) + + +## 2.37.1 + +`2022-09-16` + +### 🆕 新增功能 + +- 新增 `OverflowList` 组件 ([#1634](https://github.com/arco-design/arco-design-vue/pull/1634)) + + +## 2.30.1-beta.1 + +`2022-06-10` + +### 🆕 新增功能 + +- 新增 `OverflowList` 组件 ([#1221](https://github.com/arco-design/arco-design-vue/pull/1221)) + diff --git a/packages/web-vue/components/overflow-list/README.en-US.md b/packages/web-vue/components/overflow-list/README.en-US.md new file mode 100644 index 000000000..9abccc1cc --- /dev/null +++ b/packages/web-vue/components/overflow-list/README.en-US.md @@ -0,0 +1,37 @@ +```yaml +meta: + type: Component + category: Data Display +title: List +description: +``` + +*Auto translate by google.* + +@import ./__demo__/basic.md + +@import ./__demo__/from.md + +## API + + +### `` Props + +|Attribute|Description|Type|Default| +|---|---|---|:---:| +|min|Minimum number of elements to display|`number`|`0`| +|margin|Item Margin|`number`|`8`| +|from|Overflow From|`'start' \| 'end'`|`'end'`| +### `` Events + +|Event Name|Description|Parameters| +|---|---|---| +|change|Triggered when the overflow quantity changes|value: `number`| +### `` Slots + +|Slot Name|Description|Parameters| +|---|---|---| +|overflow|Overflow|number: `number`| + + + diff --git a/packages/web-vue/components/overflow-list/README.zh-CN.md b/packages/web-vue/components/overflow-list/README.zh-CN.md new file mode 100644 index 000000000..ce0574ba8 --- /dev/null +++ b/packages/web-vue/components/overflow-list/README.zh-CN.md @@ -0,0 +1,35 @@ +```yaml +meta: + type: 组件 + category: 其他 +title: 折叠列表 OverflowList +description: +``` + +@import ./__demo__/basic.md + +@import ./__demo__/from.md + +## API + + +### `` Props + +|参数名|描述|类型|默认值| +|---|---|---|:---:| +|min|最少展示的元素个数|`number`|`0`| +|margin|项目间隔|`number`|`8`| +|from|折叠方向|`'start' \| 'end'`|`'end'`| +### `` Events + +|事件名|描述|参数| +|---|---|---| +|change|溢出数量改变时触发|value: `number`| +### `` Slots + +|插槽名|描述|参数| +|---|:---:|---| +|overflow|折叠元素|number: `number`| + + + diff --git a/packages/web-vue/components/overflow-list/TEMPLATE.md b/packages/web-vue/components/overflow-list/TEMPLATE.md new file mode 100644 index 000000000..757a443f9 --- /dev/null +++ b/packages/web-vue/components/overflow-list/TEMPLATE.md @@ -0,0 +1,27 @@ +## zh-CN +```yaml +meta: + type: 组件 + category: 其他 +title: 折叠列表 OverflowList +description: +``` +--- +## en-US +```yaml +meta: + type: Component + category: Data Display +title: List +description: +``` +--- + +@import ./__demo__/basic.md + +@import ./__demo__/from.md + +## API + +%%API(overflow-list.tsx)%% + diff --git a/packages/web-vue/components/overflow-list/__demo__/basic.md b/packages/web-vue/components/overflow-list/__demo__/basic.md new file mode 100644 index 000000000..b3e5c32bd --- /dev/null +++ b/packages/web-vue/components/overflow-list/__demo__/basic.md @@ -0,0 +1,54 @@ +```yaml +title: + zh-CN: 基本使用 + en-US: Basic Usage +``` + +## zh-CN + +折叠列表的基本使用方法。 + +--- + +## en-US + +Basic usage of the overflow-list. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/overflow-list/__demo__/from.md b/packages/web-vue/components/overflow-list/__demo__/from.md new file mode 100644 index 000000000..5ee402b68 --- /dev/null +++ b/packages/web-vue/components/overflow-list/__demo__/from.md @@ -0,0 +1,54 @@ +```yaml +title: + zh-CN: 折叠方向 + en-US: Overflow From +``` + +## zh-CN + +通过 `from` 属性可以设置折叠的方向。 + +--- + +## en-US + +The folding direction can be set via the `from` property. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/overflow-list/index.ts b/packages/web-vue/components/overflow-list/index.ts new file mode 100644 index 000000000..9ae668af6 --- /dev/null +++ b/packages/web-vue/components/overflow-list/index.ts @@ -0,0 +1,17 @@ +import type { App } from 'vue'; +import type { ArcoOptions } from '../_utils/types'; +import { setGlobalConfig, getComponentPrefix } from '../_utils/global-config'; +import _OverflowList from './overflow-list'; + +const OverflowList = Object.assign(_OverflowList, { + install: (app: App, options?: ArcoOptions) => { + setGlobalConfig(app, options); + const componentPrefix = getComponentPrefix(options); + + app.component(componentPrefix + _OverflowList.name, _OverflowList); + }, +}); + +export type OverflowListInstance = InstanceType; + +export default OverflowList; diff --git a/packages/web-vue/components/overflow-list/overflow-list.tsx b/packages/web-vue/components/overflow-list/overflow-list.tsx new file mode 100644 index 000000000..50c3941bb --- /dev/null +++ b/packages/web-vue/components/overflow-list/overflow-list.tsx @@ -0,0 +1,188 @@ +import type { PropType, VNode } from 'vue'; +import { + computed, + defineComponent, + mergeProps, + onMounted, + ref, + watch, +} from 'vue'; +import ResizeObserver from '../_components/resize-observer-v2'; +import { getAllElements } from '../_utils/vue-utils'; +import { getPrefixCls } from '../_utils/global-config'; +import Tag from '../tag'; +import { getReverse } from '../_utils/array'; + +export default defineComponent({ + name: 'OverflowList', + props: { + /** + * @zh 最少展示的元素个数 + * @en Minimum number of elements to display + */ + min: { + type: Number, + default: 0, + }, + /** + * @zh 项目间隔 + * @en Item Margin + */ + margin: { + type: Number, + default: 8, + }, + /** + * @zh 折叠方向 + * @en Overflow From + */ + from: { + type: String as PropType<'start' | 'end'>, + default: 'end', + }, + }, + emits: { + /** + * @zh 溢出数量改变时触发 + * @en Triggered when the overflow quantity changes + * @param {number} value + */ + change: (value: number) => true, + }, + /** + * @zh 折叠元素 + * @en Overflow + * @slot overflow + * @binding {number} number + */ + setup(props, { emit, slots }) { + const prefixCls = getPrefixCls('overflow-list'); + + const listRef = ref(); + const overflowRef = ref(); + const spacerRef = ref(); + const children: { value?: VNode[] } = {}; + const itemWidths: number[] = []; + + const total = ref(0); + const overflowNumber = ref(0); + const showOverflow = computed(() => overflowNumber.value > 0); + const nextWidth = ref(0); + + const isStart = computed(() => props.from === 'start'); + + watch(total, (cur, pre) => { + if (overflowNumber.value > 0) { + overflowNumber.value += cur - pre; + if (overflowNumber.value < 0) { + overflowNumber.value = 0; + } + } + }); + + watch(overflowNumber, (val) => { + emit('change', val); + }); + + const onResize = () => { + if (listRef.value && children.value && spacerRef.value) { + const spacerWidth = spacerRef.value.offsetWidth; + if ( + spacerWidth > 1 && + (overflowNumber.value === 0 || spacerWidth < nextWidth.value) + ) { + return; + } + + // get new item width + for (let i = 0; i < children.value.length; i++) { + const element = children.value[i].el as HTMLElement; + if (element && element.offsetWidth) { + itemWidths[i] = element.offsetWidth + props.margin; + } + } + + let remainingWidth = + listRef.value.clientWidth - + (overflowRef.value?.offsetWidth ?? 0) - + (isStart.value ? props.margin : 0); + + const _itemWidths = isStart.value ? getReverse(itemWidths) : itemWidths; + let count = 0; + for (let i = 0; i < _itemWidths.length; i++) { + const itemWidth = _itemWidths[i] ?? 0; + if (itemWidth < remainingWidth - 1) { + remainingWidth -= itemWidth; + count += 1; + } else { + nextWidth.value = itemWidth; + break; + } + } + if (count < props.min && props.min < total.value) { + count = props.min; + } + if (overflowNumber.value !== total.value - count) { + overflowNumber.value = total.value - count; + } + } + }; + + watch(showOverflow, () => onResize(), { flush: 'post' }); + + onMounted(() => { + if (spacerRef.value && spacerRef.value.offsetWidth < 1) { + onResize(); + } + }); + + const renderOverflow = () => { + const style = isStart.value + ? { marginRight: `${props.margin}px` } + : undefined; + + return ( +
    + {slots.overflow?.({ number: overflowNumber.value }) ?? ( + +{overflowNumber.value} + )} +
    + ); + }; + + return () => { + children.value = getAllElements(slots.default?.()); + + if (total.value !== children.value.length) { + total.value = children.value.length; + itemWidths.length = total.value; + } + let visibleChildren = children.value; + if (overflowNumber.value > 0) { + visibleChildren = isStart.value + ? children.value.slice(overflowNumber.value) + : children.value.slice(0, -overflowNumber.value); + } + const withMarginNumber = + overflowNumber.value === 0 || isStart.value + ? visibleChildren.length - 1 + : visibleChildren.length; + for (let i = 0; i < withMarginNumber; i++) { + visibleChildren[i].props = mergeProps(visibleChildren[i].props ?? {}, { + style: { marginRight: `${props.margin}px` }, + }); + } + + return ( +
    + {isStart.value && overflowNumber.value > 0 && renderOverflow()} + {visibleChildren} + {!isStart.value && overflowNumber.value > 0 && renderOverflow()} + +
    + +
    + ); + }; + }, +}); diff --git a/packages/web-vue/components/overflow-list/style/index.less b/packages/web-vue/components/overflow-list/style/index.less new file mode 100644 index 000000000..90dcfbf59 --- /dev/null +++ b/packages/web-vue/components/overflow-list/style/index.less @@ -0,0 +1,19 @@ +@import '../../style/theme/index.less'; + +@overflow-prefix-cls: ~'@{prefix}-overflow-list'; + +.@{overflow-prefix-cls} { + display: flex; + align-items: center; + justify-content: flex-start; + + > *:not(:last-child) { + flex-shrink: 0; + } + + &-spacer { + flex: 1; + min-width: 0; + height: 1px; + } +} diff --git a/packages/web-vue/components/overflow-list/style/index.ts b/packages/web-vue/components/overflow-list/style/index.ts new file mode 100644 index 000000000..3a3ab0de5 --- /dev/null +++ b/packages/web-vue/components/overflow-list/style/index.ts @@ -0,0 +1,2 @@ +import '../../style/index.less'; +import './index.less'; diff --git a/packages/web-vue/components/page-header/CHANGELOG.md b/packages/web-vue/components/page-header/CHANGELOG.md index 4c4861f70..614cd035d 100644 --- a/packages/web-vue/components/page-header/CHANGELOG.md +++ b/packages/web-vue/components/page-header/CHANGELOG.md @@ -2,6 +2,15 @@ changelog: true ``` +## 2.36.0 + +`2022-09-02` + +### 🆕 Feature + +- support custom back icon ([#1499](https://github.com/arco-design/arco-design-vue/pull/1499)) + + ## 2.6.1 `2021-11-24` diff --git a/packages/web-vue/components/page-header/CHANGELOG.zh-CN.md b/packages/web-vue/components/page-header/CHANGELOG.zh-CN.md index 354792423..f2f1b75c7 100644 --- a/packages/web-vue/components/page-header/CHANGELOG.zh-CN.md +++ b/packages/web-vue/components/page-header/CHANGELOG.zh-CN.md @@ -2,6 +2,15 @@ changelog: true ``` +## 2.36.0 + +`2022-09-02` + +### 🆕 新增功能 + +- 支持自定义返回按钮 ([#1499](https://github.com/arco-design/arco-design-vue/pull/1499)) + + ## 2.6.1 `2021-11-24` diff --git a/packages/web-vue/components/page-header/README.en-US.md b/packages/web-vue/components/page-header/README.en-US.md index 541719a74..ee401ecc7 100644 --- a/packages/web-vue/components/page-header/README.en-US.md +++ b/packages/web-vue/components/page-header/README.en-US.md @@ -33,11 +33,12 @@ description: The page header is located at the top of the page container and ser |back|Emitted when the back button is clicked|event: `Event`| ### `` Slots -|Slot Name|Description|Parameters| -|---|---|---| -|breadcrumb|Breadcrumb|-| -|title|Main title|-| -|subtitle|Subtitle|-| -|extra|Extra content|-| +|Slot Name|Description|Parameters|version| +|---|---|---|:---| +|breadcrumb|Breadcrumb|-|| +|back-icon|Back icon|-|2.36.0| +|title|Main title|-|| +|subtitle|Subtitle|-|| +|extra|Extra content|-|| diff --git a/packages/web-vue/components/page-header/README.zh-CN.md b/packages/web-vue/components/page-header/README.zh-CN.md index 2be6a23bc..754321e24 100644 --- a/packages/web-vue/components/page-header/README.zh-CN.md +++ b/packages/web-vue/components/page-header/README.zh-CN.md @@ -31,11 +31,12 @@ description: 页头位于页容器顶部,起到了内容概览和引导页级 |back|点击返回按钮时触发|event: `Event`| ### `` Slots -|插槽名|描述|参数| -|---|:---:|---| -|breadcrumb|面包屑|-| -|title|主标题|-| -|subtitle|次标题|-| -|extra|额外的展示内容|-| +|插槽名|描述|参数|版本| +|---|:---:|---|:---| +|breadcrumb|面包屑|-|| +|back-icon|返回按钮|-|2.36.0| +|title|主标题|-|| +|subtitle|次标题|-|| +|extra|额外的展示内容|-|| diff --git a/packages/web-vue/components/page-header/__demo__/basic.md b/packages/web-vue/components/page-header/__demo__/basic.md index 13c41b597..ed73b6651 100644 --- a/packages/web-vue/components/page-header/__demo__/basic.md +++ b/packages/web-vue/components/page-header/__demo__/basic.md @@ -18,14 +18,20 @@ The basic page header is suitable for use in scenarios that require a simple des ```vue ``` diff --git a/packages/web-vue/components/page-header/__demo__/breadcrumb.md b/packages/web-vue/components/page-header/__demo__/breadcrumb.md index a6faf3f9a..055fd0154 100644 --- a/packages/web-vue/components/page-header/__demo__/breadcrumb.md +++ b/packages/web-vue/components/page-header/__demo__/breadcrumb.md @@ -18,22 +18,29 @@ Show breadcrumbs in the header. ```vue ``` diff --git a/packages/web-vue/components/page-header/__demo__/content.md b/packages/web-vue/components/page-header/__demo__/content.md index d4d1e4a5e..687dbbba3 100644 --- a/packages/web-vue/components/page-header/__demo__/content.md +++ b/packages/web-vue/components/page-header/__demo__/content.md @@ -18,38 +18,48 @@ A complete example of the header. ```vue +``` diff --git a/packages/web-vue/components/radio/__demo__/custom.md b/packages/web-vue/components/radio/__demo__/custom.md new file mode 100644 index 000000000..6c84d79dd --- /dev/null +++ b/packages/web-vue/components/radio/__demo__/custom.md @@ -0,0 +1,121 @@ +```yaml +title: + zh-CN: 自定义单选框 + en-US: Custom radio Display +``` + +## zh-CN + +使用 #radio 插槽自定义复选框的展示 + +--- + +## en-US + +Use the #radio slot to customize the display of radios + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/radio/__demo__/layout.md b/packages/web-vue/components/radio/__demo__/layout.md new file mode 100644 index 000000000..04c91c655 --- /dev/null +++ b/packages/web-vue/components/radio/__demo__/layout.md @@ -0,0 +1,55 @@ +```yaml +title: + zh-CN: 布局 + en-US: Layout +``` + +## zh-CN + +使用 `` 传入 ``,配合 `` 组件实现灵活的布局。 + +--- + +## en-US + +We can use `` and `` in ``, to implement complex layout. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/radio/__demo__/options.md b/packages/web-vue/components/radio/__demo__/options.md new file mode 100644 index 000000000..f66f3c388 --- /dev/null +++ b/packages/web-vue/components/radio/__demo__/options.md @@ -0,0 +1,56 @@ +```yaml +title: + zh-CN: 单选框组选项 + en-US: Radio group options +``` + +## zh-CN + +`a-radio-group` 通过 `options` 属性设置子元素 + +--- + +## en-US + +`a-radio-group` set child elements through `options` prop + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/radio/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/radio/__test__/__snapshots__/demo.test.ts.snap index 94333763a..4a6fb7585 100644 --- a/packages/web-vue/components/radio/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/radio/__test__/__snapshots__/demo.test.ts.snap @@ -2,27 +2,102 @@ exports[` demo: render [basic] correctly 1`] = ` "
    +
    +
    " `; -exports[` demo: render [button] correctly 1`] = `""`; +exports[` demo: render [button] correctly 1`] = `""`; -exports[` demo: render [direction] correctly 1`] = `""`; +exports[` demo: render [control] correctly 1`] = ` +"
    + +
    + +
    + +
    + +
    +
    +
    +
    + +
    + +
    +
    +
    " +`; + +exports[` demo: render [custom] correctly 1`] = ` +" +
    " +`; + +exports[` demo: render [direction] correctly 1`] = `""`; exports[` demo: render [group] correctly 1`] = ` "
    -
    -
    + +
    + +
    +
    " +`; + +exports[` demo: render [layout] correctly 1`] = ` +"
    +
    +
    +
    +
    +
    " +`; + +exports[` demo: render [options] correctly 1`] = ` +"
    + +
    + +
    + +
    " `; exports[` demo: render [size] correctly 1`] = ` "
    +
    +
    -
    + +
    +
    " `; diff --git a/packages/web-vue/components/radio/context.ts b/packages/web-vue/components/radio/context.ts index 70b79e52d..b726d974e 100644 --- a/packages/web-vue/components/radio/context.ts +++ b/packages/web-vue/components/radio/context.ts @@ -1,4 +1,4 @@ -import type { InjectionKey } from 'vue'; +import type { InjectionKey, Slots } from 'vue'; import type { Size } from '../_utils/constant'; export const RADIO_TYPES = ['radio', 'button'] as const; @@ -10,6 +10,7 @@ export interface RadioGroupContext { size: Size; type: RadioType; disabled: boolean; + slots: Slots; handleChange: (value: string | number | boolean, e: Event) => void; } diff --git a/packages/web-vue/components/radio/index.ts b/packages/web-vue/components/radio/index.ts index 337eb6972..3818f40a0 100644 --- a/packages/web-vue/components/radio/index.ts +++ b/packages/web-vue/components/radio/index.ts @@ -1,8 +1,8 @@ import type { App } from 'vue'; import type { ArcoOptions } from '../_utils/types'; import { setGlobalConfig, getComponentPrefix } from '../_utils/global-config'; -import _Radio from './radio.vue'; -import _RadioGroup from './radio-group.vue'; +import _Radio from './radio'; +import _RadioGroup from './radio-group'; const Radio = Object.assign(_Radio, { Group: _RadioGroup, diff --git a/packages/web-vue/components/radio/interface.ts b/packages/web-vue/components/radio/interface.ts new file mode 100644 index 000000000..2e62cb1fa --- /dev/null +++ b/packages/web-vue/components/radio/interface.ts @@ -0,0 +1,19 @@ +import { RenderContent } from '../_utils/types'; + +export interface RadioOption { + /** + * @zh 文案 + * @en label content + */ + label?: RenderContent; + /** + * @zh 选项的 `value` + * @en The `value` of the option + */ + value: string | number; + /** + * @zh 是否禁用 + * @en Whether to disable + */ + disabled?: boolean; +} diff --git a/packages/web-vue/components/radio/radio-group.vue b/packages/web-vue/components/radio/radio-group.tsx similarity index 53% rename from packages/web-vue/components/radio/radio-group.vue rename to packages/web-vue/components/radio/radio-group.tsx index 847e4fcad..60ed032c8 100644 --- a/packages/web-vue/components/radio/radio-group.vue +++ b/packages/web-vue/components/radio/radio-group.tsx @@ -1,26 +1,27 @@ - - - diff --git a/packages/web-vue/components/radio/radio.vue b/packages/web-vue/components/radio/radio.tsx similarity index 70% rename from packages/web-vue/components/radio/radio.vue rename to packages/web-vue/components/radio/radio.tsx index 1cdea8356..e41b05167 100644 --- a/packages/web-vue/components/radio/radio.vue +++ b/packages/web-vue/components/radio/radio.tsx @@ -1,37 +1,3 @@ - - - diff --git a/packages/web-vue/components/rate/CHANGELOG.md b/packages/web-vue/components/rate/CHANGELOG.md index 04cd6c14a..215262427 100644 --- a/packages/web-vue/components/rate/CHANGELOG.md +++ b/packages/web-vue/components/rate/CHANGELOG.md @@ -2,6 +2,15 @@ changelog: true ``` +## 2.54.3 + +`2024-01-19` + +### 🐛 BugFix + +- Fix missing icon elements in `nuxt` ([#2930](https://github.com/arco-design/arco-design-vue/pull/2930)) + + ## 2.18.0 `2022-03-04` diff --git a/packages/web-vue/components/rate/CHANGELOG.zh-CN.md b/packages/web-vue/components/rate/CHANGELOG.zh-CN.md index 8717bdf1c..4e815bbbf 100644 --- a/packages/web-vue/components/rate/CHANGELOG.zh-CN.md +++ b/packages/web-vue/components/rate/CHANGELOG.zh-CN.md @@ -2,6 +2,15 @@ changelog: true ``` +## 2.54.3 + +`2024-01-19` + +### 🐛 问题修复 + +- 修复在`nuxt`中图标元素缺失的问题 ([#2930](https://github.com/arco-design/arco-design-vue/pull/2930)) + + ## 2.18.0 `2022-03-04` diff --git a/packages/web-vue/components/rate/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/rate/__test__/__snapshots__/demo.test.ts.snap index 4a25983eb..b58f86580 100644 --- a/packages/web-vue/components/rate/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/rate/__test__/__snapshots__/demo.test.ts.snap @@ -2,7 +2,7 @@ exports[` demo: render [basic] correctly 1`] = ` "
    -
    +
    @@ -10,7 +10,7 @@ exports[` demo: render [basic] correctly 1`] = `
    -
    +
    @@ -18,7 +18,7 @@ exports[` demo: render [basic] correctly 1`] = `
    -
    +
    @@ -26,7 +26,7 @@ exports[` demo: render [basic] correctly 1`] = `
    -
    +
    @@ -34,7 +34,7 @@ exports[` demo: render [basic] correctly 1`] = `
    -
    +
    @@ -47,7 +47,7 @@ exports[` demo: render [basic] correctly 1`] = ` exports[` demo: render [character] correctly 1`] = ` "
    -
    +
    @@ -55,7 +55,7 @@ exports[` demo: render [character] correctly 1`] = `
    -
    +
    @@ -63,7 +63,7 @@ exports[` demo: render [character] correctly 1`] = `
    -
    +
    @@ -71,7 +71,7 @@ exports[` demo: render [character] correctly 1`] = `
    -
    +
    @@ -79,7 +79,7 @@ exports[` demo: render [character] correctly 1`] = `
    -
    +
    @@ -92,7 +92,7 @@ exports[` demo: render [character] correctly 1`] = ` exports[` demo: render [clear] correctly 1`] = ` "
    -
    +
    @@ -100,7 +100,7 @@ exports[` demo: render [clear] correctly 1`] = `
    -
    +
    @@ -108,7 +108,7 @@ exports[` demo: render [clear] correctly 1`] = `
    -
    +
    @@ -116,7 +116,7 @@ exports[` demo: render [clear] correctly 1`] = `
    -
    +
    @@ -124,7 +124,7 @@ exports[` demo: render [clear] correctly 1`] = `
    -
    +
    @@ -137,9 +137,10 @@ exports[` demo: render [clear] correctly 1`] = ` exports[` demo: render [color] correctly 1`] = ` "
    +
    -
    +
    @@ -147,7 +148,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -155,7 +156,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -163,7 +164,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -171,7 +172,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -181,9 +182,10 @@ exports[` demo: render [color] correctly 1`] = `
    +
    -
    +
    @@ -191,7 +193,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -199,7 +201,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -207,7 +209,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -215,7 +217,7 @@ exports[` demo: render [color] correctly 1`] = `
    -
    +
    @@ -230,7 +232,7 @@ exports[` demo: render [color] correctly 1`] = ` exports[` demo: render [count] correctly 1`] = ` "
    -
    +
    @@ -238,7 +240,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -246,7 +248,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -254,7 +256,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -262,7 +264,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -270,7 +272,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -278,7 +280,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -286,7 +288,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -294,7 +296,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -302,7 +304,7 @@ exports[` demo: render [count] correctly 1`] = `
    -
    +
    @@ -315,7 +317,7 @@ exports[` demo: render [count] correctly 1`] = ` exports[` demo: render [grading] correctly 1`] = ` "
    -
    +
    @@ -323,7 +325,7 @@ exports[` demo: render [grading] correctly 1`] = `
    -
    +
    @@ -331,7 +333,7 @@ exports[` demo: render [grading] correctly 1`] = `
    -
    +
    @@ -339,7 +341,7 @@ exports[` demo: render [grading] correctly 1`] = `
    -
    +
    @@ -347,7 +349,7 @@ exports[` demo: render [grading] correctly 1`] = `
    -
    +
    @@ -361,42 +363,42 @@ exports[` demo: render [grading] correctly 1`] = ` exports[` demo: render [half] correctly 1`] = ` "
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +
    @@ -405,7 +407,7 @@ exports[` demo: render [half] correctly 1`] = ` exports[` demo: render [readonly] correctly 1`] = ` "
    -
    +
    @@ -413,7 +415,7 @@ exports[` demo: render [readonly] correctly 1`] = `
    -
    +
    @@ -421,7 +423,7 @@ exports[` demo: render [readonly] correctly 1`] = `
    -
    +
    @@ -429,7 +431,7 @@ exports[` demo: render [readonly] correctly 1`] = `
    -
    +
    @@ -437,7 +439,7 @@ exports[` demo: render [readonly] correctly 1`] = `
    -
    +
    diff --git a/packages/web-vue/components/rate/rate.tsx b/packages/web-vue/components/rate/rate.tsx index 3e1e792fa..c5bc89036 100644 --- a/packages/web-vue/components/rate/rate.tsx +++ b/packages/web-vue/components/rate/rate.tsx @@ -13,7 +13,6 @@ import IconFaceMehFill from '../icon/icon-face-meh-fill'; import IconFaceSmileFill from '../icon/icon-face-smile-fill'; import IconFaceFrownFill from '../icon/icon-face-frown-fill'; import { getPrefixCls } from '../_utils/global-config'; -import { EmitType } from '../_utils/types'; import { useFormItem } from '../_hooks/use-form-item'; import { isNull, isObject, isString, isUndefined } from '../_utils/is'; @@ -93,29 +92,22 @@ export default defineComponent({ color: { type: [String, Object] as PropType>, }, - // for JSX - onChange: { - type: [Function, Array] as PropType void>>, - }, - onHoverChange: { - type: [Function, Array] as PropType void>>, - }, }, - emits: [ - 'update:modelValue', + emits: { + 'update:modelValue': (value: number) => true, /** * @zh 值改变时触发 * @en Trigger when the value changes * @property {number} value */ - 'change', + 'change': (value: number) => true, /** * @zh 鼠标移动到数值上时触发 * @en Triggered when the mouse moves over the value * @property {number} value */ - 'hoverChange', - ], + 'hoverChange': (value: number) => true, + }, /** * @zh 符号 * @en Character @@ -228,12 +220,27 @@ export default defineComponent({ return ; }; + const getAriaProps = (index: number, isHalf = false) => { + return { + 'role': 'radio', + 'aria-checked': index + (isHalf ? 0.5 : 1) <= computedValue.value, + 'aria-setsize': indexArray.value.length, + 'aria-posinset': index + (isHalf ? 0.5 : 1), + }; + }; + + const renderElement = (index: number) => { + if (props.grading) { + return renderGradingCharacter(index, displayIndex.value); + } + if (slots.character) { + return slots.character({ index }); + } + return ; + }; + // TODO: need to perf const renderCharacter = (index: number) => { - const displayCharacter = props.grading - ? renderGradingCharacter(index, displayIndex.value) - : slots.character?.({ index }) ?? ; - const leftProps = mergedDisabled.value ? {} : { @@ -279,21 +286,24 @@ export default defineComponent({
    handleAnimationEnd(index)} >
    - {displayCharacter} + {renderElement(index)}
    - {displayCharacter} + {renderElement(index)}
    ); diff --git a/packages/web-vue/components/resize-box/README.en-US.md b/packages/web-vue/components/resize-box/README.en-US.md index 8e1d616e5..ff4876468 100644 --- a/packages/web-vue/components/resize-box/README.en-US.md +++ b/packages/web-vue/components/resize-box/README.en-US.md @@ -31,9 +31,9 @@ description: Telescopic frame components. |Event Name|Description|Parameters| |---|---|---| -|moving-start|Triggered when dragging starts|event: `MouseEvent`| -|moving|Triggered when dragging|size: `{ width: number; height: number; }`
    event: `MouseEvent`| -|moving-end|Triggered when the drag ends|event: `MouseEvent`| +|moving-start|Triggered when dragging starts|ev: `MouseEvent`| +|moving|Triggered when dragging|size: `{ width: number; height: number; }`
    ev: `MouseEvent`| +|moving-end|Triggered when the drag ends|ev: `MouseEvent`| ### `` Slots |Slot Name|Description|Parameters| diff --git a/packages/web-vue/components/resize-box/README.zh-CN.md b/packages/web-vue/components/resize-box/README.zh-CN.md index d8b7949f8..36185d945 100644 --- a/packages/web-vue/components/resize-box/README.zh-CN.md +++ b/packages/web-vue/components/resize-box/README.zh-CN.md @@ -29,9 +29,9 @@ description: 伸缩框组件。 |事件名|描述|参数| |---|---|---| -|moving-start|拖拽开始时触发|event: `MouseEvent`| -|moving|拖拽时触发|size: `{ width: number; height: number; }`
    event: `MouseEvent`| -|moving-end|拖拽结束时触发|event: `MouseEvent`| +|moving-start|拖拽开始时触发|ev: `MouseEvent`| +|moving|拖拽时触发|size: `{ width: number; height: number; }`
    ev: `MouseEvent`| +|moving-end|拖拽结束时触发|ev: `MouseEvent`| ### `` Slots |插槽名|描述|参数| diff --git a/packages/web-vue/components/resize-box/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/resize-box/__test__/__snapshots__/demo.test.ts.snap index 3a6882ed5..0ce1b9f14 100644 --- a/packages/web-vue/components/resize-box/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/resize-box/__test__/__snapshots__/demo.test.ts.snap @@ -9,7 +9,7 @@ exports[` demo: render [basic] correctly 1`] = `
    -
    +
    ByteDance's content platforms enable people to enjoy content powered by AI technology. We inform, entertain, and inspire people across language, culture and geography. @@ -18,7 +18,7 @@ exports[` demo: render [basic] correctly 1`] = `
    -
    ByteDance
    +
    ByteDance
    Yiming Zhang is the founder and CEO of ByteDance. @@ -56,7 +56,7 @@ exports[` demo: render [controlled] correctly 1`] = `
    -
    +
    ByteDance's content platforms enable people to enjoy content powered by AI technology. We inform, entertain, and inspire people across language, culture and geography. @@ -65,7 +65,7 @@ exports[` demo: render [controlled] correctly 1`] = `
    -
    ByteDance
    +
    ByteDance
    Yiming Zhang is the founder and CEO of ByteDance. @@ -102,7 +102,7 @@ exports[` demo: render [custom-triggers] correctly 1`] = `
    -
    +
    ByteDance's content platforms enable people to enjoy content powered by AI technology. We inform, entertain, and inspire people across language, culture and geography. @@ -111,7 +111,7 @@ exports[` demo: render [custom-triggers] correctly 1`] = `
    -
    ByteDance
    +
    ByteDance
    Yiming Zhang is the founder and CEO of ByteDance. diff --git a/packages/web-vue/components/resize-box/resize-box.vue b/packages/web-vue/components/resize-box/resize-box.vue index 6ea288367..f4b15eaa9 100644 --- a/packages/web-vue/components/resize-box/resize-box.vue +++ b/packages/web-vue/components/resize-box/resize-box.vue @@ -121,29 +121,29 @@ export default defineComponent({ default: () => ['right'], }, }, - emits: [ + emits: { + 'update:width': (width: number) => true, + 'update:height': (height: number) => true, /** * @zh 拖拽开始时触发 * @en Triggered when dragging starts - * @param {MouseEvent} event + * @param {MouseEvent} ev */ - 'movingStart', + 'movingStart': (ev: MouseEvent) => true, /** * @zh 拖拽时触发 * @en Triggered when dragging * @param {{ width: number; height: number; }} size - * @param {MouseEvent} event + * @param {MouseEvent} ev */ - 'moving', + 'moving': (size: { width: number; height: number }, ev: MouseEvent) => true, /** * @zh 拖拽结束时触发 * @en Triggered when the drag ends - * @param {MouseEvent} event + * @param {MouseEvent} ev */ - 'movingEnd', - 'update:width', - 'update:height', - ], + 'movingEnd': (ev: MouseEvent) => true, + }, /** * @zh 伸缩杆的内容 * @en The contents of the resize pole diff --git a/packages/web-vue/components/result/500.tsx b/packages/web-vue/components/result/500.tsx index 79c353569..8b3a707a5 100644 --- a/packages/web-vue/components/result/500.tsx +++ b/packages/web-vue/components/result/500.tsx @@ -8,12 +8,7 @@ export default defineComponent({ width="100%" height="100%" viewBox="0 0 213 213" - style={{ - fillRule: 'evenodd', - clipRule: 'evenodd', - strokeLinejoin: 'round', - strokeMiterlimit: 2, - }} + style="fill-rule: evenodd; clip-rule: evenodd; stroke-linejoin: round; stroke-miterlimit: 2;" > @@ -22,38 +17,38 @@ export default defineComponent({ cx="1053.23" cy="639.477" r="106.477" - style={{ fill: 'rgb(235, 238, 246)' }} - /> + style="fill: rgb(235, 238, 246);" + > + style="fill-opacity: 0.1;" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(0, 85, 255);" + > + style="fill: rgb(29, 105, 255);" + > - + - + + > + style="fill: white;" + > + style="fill: white;" + > + style="fill: white;" + > + style="fill: rgb(106, 161, 255);" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: white;" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > - + - + + > + style="fill: rgb(0, 85, 255);" + > + style="fill: rgb(29, 105, 255);" + > - + - + + > + style="fill: white;" + > + style="fill: white;" + > + style="fill: white;" + > + style="fill: rgb(106, 161, 255);" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: white;" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > - + - + + > + style="fill: rgb(0, 85, 255);" + > + style="fill: rgb(29, 105, 255);" + > - + - + + > + style="fill: white;" + > + style="fill: white;" + > + style="fill: white;" + > + style="fill: rgb(106, 161, 255);" + > + style="fill: white;" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > + style="fill: rgb(64, 128, 255);" + > - + - + + > + style='fill: url("#_Linear11");' + > - + - + + > - + - + + > + style="fill: white; stop-opacity: 0.9;" + > - + ! @@ -469,25 +452,25 @@ export default defineComponent({ width="113px" height="47px" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHEAAAAvCAYAAADU+iVXAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABVUlEQVR4nO2aQRKCMAxFxUN4O+9/DNw4CoiTliZN8vPfQlm00ykvP3aQ5fFc11sjy/L+/nx8r3ffm7Fn845jz+aJa23XOJvfs9Zh7NBawv3YrSGtdbj+x10egkFzpRrNt+SSxMgbqkiZJCJDiQDoSmSfdYFJ3JD18GMmcXhDTHUzNZIIXhA1JIJDib0MptqiKbhKzHqQiAaT6IlSFVIiAJQIACUGpLfLhpfIw49Ml8T2v4/JTPySyIJQI3w7JTIYEp2fong3FXWJ3huqCEYSNUlYhZRoyaSCoEQAKHESlqF0kZj9NBgNJhEASgSAEgNx9WfCTmLxpygzYRIBmCORsTIlXxJZED/kk0h+KC1x9E2FKG86qEkMsh8/HG9A6SSGYqAIKDEinUIpUSDDYXiqxAw3JCNMIgDXJTIWYdBJIvukK2ynARit4XASUZ6izCScRFWKCH0BfLM84oTw1Z8AAAAASUVORK5CYII=" - /> + > + > + > + > + style="stop-color: rgb(64, 128, 255); stop-opacity: 1;" + > + style="stop-color: rgb(64, 128, 255); stop-opacity: 1;" + > + > + > ); diff --git a/packages/web-vue/components/result/CHANGELOG.md b/packages/web-vue/components/result/CHANGELOG.md index 081835c3e..e0d4679b3 100644 --- a/packages/web-vue/components/result/CHANGELOG.md +++ b/packages/web-vue/components/result/CHANGELOG.md @@ -2,6 +2,15 @@ changelog: true ``` +## 2.49.0 + +`2023-07-21` + +### 💅 Style + +- Fix 500 image misalignment issues ([#2578](https://github.com/arco-design/arco-design-vue/pull/2578)) + + ## 2.8.0 `2021-12-01` diff --git a/packages/web-vue/components/result/CHANGELOG.zh-CN.md b/packages/web-vue/components/result/CHANGELOG.zh-CN.md index c5a85d318..3fc177d06 100644 --- a/packages/web-vue/components/result/CHANGELOG.zh-CN.md +++ b/packages/web-vue/components/result/CHANGELOG.zh-CN.md @@ -2,6 +2,15 @@ changelog: true ``` +## 2.49.0 + +`2023-07-21` + +### 💅 样式更新 + +- 修复 500 图片错位问题 ([#2578](https://github.com/arco-design/arco-design-vue/pull/2578)) + + ## 2.8.0 `2021-12-01` diff --git a/packages/web-vue/components/result/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/result/__test__/__snapshots__/demo.test.ts.snap index 0d73b26c0..bf4a693cc 100644 --- a/packages/web-vue/components/result/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/result/__test__/__snapshots__/demo.test.ts.snap @@ -245,6 +245,7 @@ exports[` demo: render [403] correctly 1`] = `
    Access to this resource on the server is denied.
    +
    @@ -435,6 +436,7 @@ exports[` demo: render [404] correctly 1`] = `
    Whoops, that page is gone.
    +
    @@ -469,7 +471,7 @@ exports[` demo: render [500] correctly 1`] = ` - + @@ -506,7 +508,7 @@ exports[` demo: render [500] correctly 1`] = ` - + @@ -522,7 +524,7 @@ exports[` demo: render [500] correctly 1`] = ` - + @@ -559,7 +561,7 @@ exports[` demo: render [500] correctly 1`] = ` - + @@ -575,7 +577,7 @@ exports[` demo: render [500] correctly 1`] = ` - + @@ -612,20 +614,20 @@ exports[` demo: render [500] correctly 1`] = ` - + - + - + @@ -635,7 +637,7 @@ exports[` demo: render [500] correctly 1`] = ` - + @@ -645,9 +647,9 @@ exports[` demo: render [500] correctly 1`] = ` - + - ! + ! @@ -668,6 +670,7 @@ exports[` demo: render [500] correctly 1`] = `
    This page isn’t working.
    +
    @@ -720,9 +723,11 @@ exports[` demo: render [basic] correctly 1`] = `
    This is subtitle content
    +
    +
    @@ -743,9 +748,11 @@ exports[` demo: render [custom] correctly 1`] = `
    This is subtitle content
    +
    +
    @@ -766,6 +773,7 @@ exports[` demo: render [error] correctly 1`] = `
    This is subtitle content
    +
    @@ -786,6 +794,7 @@ exports[` demo: render [success] correctly 1`] = `
    This is subtitle content
    +
    @@ -809,6 +818,7 @@ exports[` demo: render [warning] correctly 1`] = `
    This is subtitle content
    +
    diff --git a/packages/web-vue/components/scrollbar/CHANGELOG.md b/packages/web-vue/components/scrollbar/CHANGELOG.md new file mode 100644 index 000000000..b4e97441d --- /dev/null +++ b/packages/web-vue/components/scrollbar/CHANGELOG.md @@ -0,0 +1,50 @@ +```yaml +changelog: true +``` + +## 2.42.1 + +`2023-02-03` + +### 🐛 BugFix + +- fix ts declaration error for emits ([#2077](https://github.com/arco-design/arco-design-vue/pull/2077)) + + +## 2.40.0 + +`2022-12-09` + +### 🆕 Feature + +- Add scrollLeft and scrollTop methods ([#1909](https://github.com/arco-design/arco-design-vue/pull/1909)) + + +## 2.37.2 + +`2022-09-21` + +### 🐛 BugFix + +- Fix styling issues in Firefox ([#1655](https://github.com/arco-design/arco-design-vue/pull/1655)) + + +## 2.37.1 + +`2022-09-16` + +### 🆕 Feature + +- Add virtual scrollbar component ([#1634](https://github.com/arco-design/arco-design-vue/pull/1634)) +- Table, select, list components replace virtual scroll bars ([#1634](https://github.com/arco-design/arco-design-vue/pull/1634)) + + +## 2.30.1-beta.1 + +`2022-06-10` + +### 🆕 Feature + +- Add virtual scrollbar component ([#1098](https://github.com/arco-design/arco-design-vue/pull/1098)) +- Table, select, list components replace virtual scroll bars ([#1098](https://github.com/arco-design/arco-design-vue/pull/1098)) + diff --git a/packages/web-vue/components/scrollbar/CHANGELOG.zh-CN.md b/packages/web-vue/components/scrollbar/CHANGELOG.zh-CN.md new file mode 100644 index 000000000..f7fc6f346 --- /dev/null +++ b/packages/web-vue/components/scrollbar/CHANGELOG.zh-CN.md @@ -0,0 +1,50 @@ +```yaml +changelog: true +``` + +## 2.42.1 + +`2023-02-03` + +### 🐛 问题修复 + +- 修复emits 的 ts 声明错误 ([#2077](https://github.com/arco-design/arco-design-vue/pull/2077)) + + +## 2.40.0 + +`2022-12-09` + +### 🆕 新增功能 + +- 增加 scrollLeft 和 scrollTop 方法 ([#1909](https://github.com/arco-design/arco-design-vue/pull/1909)) + + +## 2.37.2 + +`2022-09-21` + +### 🐛 问题修复 + +- 修复在 Firefox 下的样式问题 ([#1655](https://github.com/arco-design/arco-design-vue/pull/1655)) + + +## 2.37.1 + +`2022-09-16` + +### 🆕 新增功能 + +- 增加虚拟滚动条组件 ([#1634](https://github.com/arco-design/arco-design-vue/pull/1634)) +- table、select、list、cascader、dropdown 组件替换虚拟滚动条 ([#1634](https://github.com/arco-design/arco-design-vue/pull/1634)) + + +## 2.30.1-beta.1 + +`2022-06-10` + +### 🆕 新增功能 + +- 增加虚拟滚动条组件 ([#1098](https://github.com/arco-design/arco-design-vue/pull/1098)) +- table、select、list 组件替换虚拟滚动条 ([#1098](https://github.com/arco-design/arco-design-vue/pull/1098)) + diff --git a/packages/web-vue/components/scrollbar/README.en-US.md b/packages/web-vue/components/scrollbar/README.en-US.md new file mode 100644 index 000000000..45801622e --- /dev/null +++ b/packages/web-vue/components/scrollbar/README.en-US.md @@ -0,0 +1,36 @@ +```yaml +meta: + type: Component + category: Other +title: Scrollbar +description: Used to replace the browser default scroll bar style. +``` + +*Auto translate by google.* + +@import ./__demo__/basic.md + +@import ./__demo__/type.md + + +### `` Props + +|Attribute|Description|Type|Default| +|---|---|---|:---:| +|type|Type|`'track' \| 'embed'`|`'embed'`| +|outer-class|Outer class|`string\|object\|array`|`-`| +|outer-style|Outer style|`StyleValue`|`-`| +### `` Events + +|Event Name|Description|Parameters| +|---|---|---| +|scroll|Triggered when scroll|-| +### `` Methods + +|Method|Description|Parameters|Return|version| +|---|---|---|:---:|:---| +|scrollTo|scrollTo|options: `number \| {left?: number;top?: number}`
    y: `number`|-|| +|scrollTop|scroll vertically|top: `number`|-|2.40.0| +|scrollLeft|scroll horizontal|left: `number`|-|2.40.0| + + diff --git a/packages/web-vue/components/scrollbar/README.zh-CN.md b/packages/web-vue/components/scrollbar/README.zh-CN.md new file mode 100644 index 000000000..c982c8a12 --- /dev/null +++ b/packages/web-vue/components/scrollbar/README.zh-CN.md @@ -0,0 +1,34 @@ +```yaml +meta: + type: 组件 + category: 其他 +title: 滚动条 Scrollbar +description: 用于替换浏览器默认滚动条样式。 +``` + +@import ./__demo__/basic.md + +@import ./__demo__/type.md + + +### `` Props + +|参数名|描述|类型|默认值| +|---|---|---|:---:| +|type|类型|`'track' \| 'embed'`|`'embed'`| +|outer-class|外层的类名|`string\|object\|array`|`-`| +|outer-style|外层的样式|`StyleValue`|`-`| +### `` Events + +|事件名|描述|参数| +|---|---|---| +|scroll|滚动时触发|-| +### `` Methods + +|方法名|描述|参数|返回值|版本| +|---|---|---|---|:---| +|scrollTo|滚动|options: `number \| {left?: number;top?: number}`
    y: `number`|-|| +|scrollTop|纵向滚动|top: `number`|-|2.40.0| +|scrollLeft|横向滚动|left: `number`|-|2.40.0| + + diff --git a/packages/web-vue/components/scrollbar/TEMPLATE.md b/packages/web-vue/components/scrollbar/TEMPLATE.md new file mode 100644 index 000000000..b4b995d63 --- /dev/null +++ b/packages/web-vue/components/scrollbar/TEMPLATE.md @@ -0,0 +1,24 @@ +## zh-CN +```yaml +meta: + type: 组件 + category: 其他 +title: 滚动条 Scrollbar +description: 用于替换浏览器默认滚动条样式。 +``` +--- +## en-US +```yaml +meta: + type: Component + category: Other +title: Scrollbar +description: Used to replace the browser default scroll bar style. +``` +--- + +@import ./__demo__/basic.md + +@import ./__demo__/type.md + +%%API(scrollbar.vue)%% diff --git a/packages/web-vue/components/scrollbar/__demo__/basic.md b/packages/web-vue/components/scrollbar/__demo__/basic.md new file mode 100644 index 000000000..6752f5f7b --- /dev/null +++ b/packages/web-vue/components/scrollbar/__demo__/basic.md @@ -0,0 +1,25 @@ +```yaml +title: + zh-CN: 基本用法 + en-US: Basic Usage +``` + +## zh-CN + +滚动条组件基本用法。scrollbar 的默认插槽需要唯一的子元素。 + +--- + +## en-US + +Basic usage of scrollbar component. + +--- + +```vue + +``` diff --git a/packages/web-vue/components/scrollbar/__demo__/type.md b/packages/web-vue/components/scrollbar/__demo__/type.md new file mode 100644 index 000000000..9ba2b0fc4 --- /dev/null +++ b/packages/web-vue/components/scrollbar/__demo__/type.md @@ -0,0 +1,30 @@ +```yaml +title: + zh-CN: 滚动条类型 + en-US: Scrollbar Type +``` + +## zh-CN + +设置 `type` 属性改变滚动条类型,`track` 类型会显示滚动条轨道。 + +--- + +## en-US + +Set the `type` property to change the scrollbar type, the `track` type will display the scrollbar track. + +--- + +```vue + + + +``` diff --git a/packages/web-vue/components/scrollbar/index.ts b/packages/web-vue/components/scrollbar/index.ts new file mode 100644 index 000000000..c4b39d1e5 --- /dev/null +++ b/packages/web-vue/components/scrollbar/index.ts @@ -0,0 +1,18 @@ +import type { App } from 'vue'; +import type { ArcoOptions } from '../_utils/types'; +import { setGlobalConfig, getComponentPrefix } from '../_utils/global-config'; +import _Scrollbar from './scrollbar.vue'; + +const Scrollbar = Object.assign(_Scrollbar, { + install: (app: App, options?: ArcoOptions) => { + setGlobalConfig(app, options); + const componentPrefix = getComponentPrefix(options); + + app.component(componentPrefix + _Scrollbar.name, _Scrollbar); + }, +}); + +export type ScrollbarInstance = InstanceType; +export type { ScrollbarProps } from './interface'; + +export default Scrollbar; diff --git a/packages/web-vue/components/scrollbar/interface.ts b/packages/web-vue/components/scrollbar/interface.ts new file mode 100644 index 000000000..30090562b --- /dev/null +++ b/packages/web-vue/components/scrollbar/interface.ts @@ -0,0 +1,20 @@ +import { StyleValue } from 'vue'; + +export interface ThumbData { + ratio: number; + thumbSize: number; + max: number; +} + +export interface ThumbMap { + size: 'width' | 'height'; + direction: 'left' | 'top'; + offset: 'offsetWidth' | 'offsetHeight'; + client: 'clientX' | 'clientY'; +} + +export interface ScrollbarProps { + type: 'track' | 'embed'; + outerClass: any; + outerStyle: any; +} diff --git a/packages/web-vue/components/scrollbar/scrollbar.vue b/packages/web-vue/components/scrollbar/scrollbar.vue new file mode 100644 index 000000000..60c6f7ce4 --- /dev/null +++ b/packages/web-vue/components/scrollbar/scrollbar.vue @@ -0,0 +1,324 @@ + + + diff --git a/packages/web-vue/components/scrollbar/style/index.less b/packages/web-vue/components/scrollbar/style/index.less new file mode 100644 index 000000000..36b1a7ba7 --- /dev/null +++ b/packages/web-vue/components/scrollbar/style/index.less @@ -0,0 +1,137 @@ +@import './token.less'; + +@scroll-prefix-cls: ~'@{prefix}-scrollbar'; + +.@{scroll-prefix-cls} { + position: relative; + + &-container { + position: relative; + scrollbar-width: none; + + &::-webkit-scrollbar { + display: none; + } + } + + &-track { + position: absolute; + z-index: 100; + + &-direction-horizontal { + bottom: 0; + left: 0; + box-sizing: border-box; + width: 100%; + height: @scrollbar-track-size; + } + + &-direction-vertical { + top: 0; + right: 0; + box-sizing: border-box; + width: @scrollbar-track-size; + height: 100%; + } + } + + &-thumb { + position: absolute; + display: block; + box-sizing: border-box; + + &-bar { + width: 100%; + height: 100%; + background-color: @scrollbar-thumb-bar-bg_color; + border-radius: @scrollbar-thumb-bar-border_radius; + } + + &:hover, + &-dragging { + .@{scroll-prefix-cls}-thumb-bar { + background-color: @scrollbar-thumb-bar-bg_color_hover; + } + } + + &-direction-horizontal { + .@{scroll-prefix-cls}-thumb-bar { + height: @scrollbar-thumb-bar-size; + margin: ((@scrollbar-track-size - @scrollbar-thumb-bar-size)/2) 0; + } + } + + &-direction-vertical { + .@{scroll-prefix-cls}-thumb-bar { + width: @scrollbar-thumb-bar-size; + margin: 0 ((@scrollbar-track-size - @scrollbar-thumb-bar-size)/2); + } + } + } + + &&-type-embed { + .@{scroll-prefix-cls}-thumb { + opacity: 0; + + &-dragging { + opacity: 0.8; + } + + transition: opacity ease 200ms; + } + + &:hover { + .@{scroll-prefix-cls}-thumb { + opacity: 0.8; + } + } + } + + &&-type-track { + .@{scroll-prefix-cls}-track { + background-color: @scrollbar-track-bg_color; + + &-direction-horizontal { + border-top: @scrollbar-track-border_size solid + @scrollbar-track-border_color; + border-bottom: @scrollbar-track-border_size solid + @scrollbar-track-border_color; + } + + &-direction-vertical { + border-right: @scrollbar-track-border_size solid + @scrollbar-track-border_color; + border-left: @scrollbar-track-border_size solid + @scrollbar-track-border_color; + } + } + + .@{scroll-prefix-cls}-thumb { + &-direction-horizontal { + margin: -@scrollbar-track-border_size 0; + } + + &-direction-vertical { + margin: 0 -@scrollbar-track-border_size; + } + } + + &.@{scroll-prefix-cls}-both { + .@{scroll-prefix-cls}-track-direction-vertical::after { + position: absolute; + right: -@scrollbar-track-border_size; + bottom: 0; + display: block; + box-sizing: border-box; + width: @scrollbar-track-size; + height: @scrollbar-track-size; + background-color: @scrollbar-track-bg_color; + border-right: @scrollbar-track-border_size solid + @scrollbar-track-border_color; + border-bottom: @scrollbar-track-border_size solid + @scrollbar-track-border_color; + content: ''; + } + } + } +} diff --git a/packages/web-vue/components/scrollbar/style/index.ts b/packages/web-vue/components/scrollbar/style/index.ts new file mode 100644 index 000000000..3a3ab0de5 --- /dev/null +++ b/packages/web-vue/components/scrollbar/style/index.ts @@ -0,0 +1,2 @@ +import '../../style/index.less'; +import './index.less'; diff --git a/packages/web-vue/components/scrollbar/style/token.less b/packages/web-vue/components/scrollbar/style/token.less new file mode 100644 index 000000000..cebdda1ad --- /dev/null +++ b/packages/web-vue/components/scrollbar/style/token.less @@ -0,0 +1,12 @@ +@import '../../style/theme/index.less'; + +@scrollbar-track-size: 15px; +@scrollbar-track-border_size: @border-1; +@scrollbar-track-border_color: var(~'@{arco-cssvars-prefix}-color-neutral-3'); +@scrollbar-track-bg_color: var(~'@{arco-cssvars-prefix}-color-neutral-1'); +@scrollbar-thumb-bar-size: 9px; +@scrollbar-thumb-bar-border_radius: 6px; +@scrollbar-thumb-bar-bg_color: var(~'@{arco-cssvars-prefix}-color-neutral-4'); +@scrollbar-thumb-bar-bg_color_hover: var( + ~'@{arco-cssvars-prefix}-color-neutral-6' +); diff --git a/packages/web-vue/components/scrollbar/thumb.vue b/packages/web-vue/components/scrollbar/thumb.vue new file mode 100644 index 000000000..3d121d980 --- /dev/null +++ b/packages/web-vue/components/scrollbar/thumb.vue @@ -0,0 +1,177 @@ + + + diff --git a/packages/web-vue/components/select/CHANGELOG.md b/packages/web-vue/components/select/CHANGELOG.md index 49f31f93a..51d482498 100644 --- a/packages/web-vue/components/select/CHANGELOG.md +++ b/packages/web-vue/components/select/CHANGELOG.md @@ -2,6 +2,242 @@ changelog: true ``` +## 2.56.2 + +`2024-09-13` + +### 🐛 BugFix + +- fix(switch): loading state can't be controlled with truthy initial state ([#3285](https://github.com/arco-design/arco-design-vue/pull/3285)) + + +## 2.56.1 + +`2024-08-22` + +### 🆕 Feature + +- add `tagNowrap` prop ([#3270](https://github.com/arco-design/arco-design-vue/pull/3270)) + + +## 2.54.2 + +`2024-01-11` + +### 💎 Enhancement + +- enhance selected state style for options ([#2895](https://github.com/arco-design/arco-design-vue/pull/2895)) + + +## 2.54.1 + +`2023-12-28` + +### 🐛 BugFix + +- Fix `defaultPopupVisible` failure problem ([#2881](https://github.com/arco-design/arco-design-vue/pull/2881)) + + +## 2.51.0 + +`2023-09-01` + +### 🆕 Feature + +- support boolean type ([#2661](https://github.com/arco-design/arco-design-vue/pull/2661)) + + +## 2.47.1 + +`2023-06-09` + +### 🐛 BugFix + +- Fix mouse cursor positioning issue in search mode ([#2487](https://github.com/arco-design/arco-design-vue/pull/2487)) + + +## 2.47.0 + +`2023-06-02` + +### 🆕 Feature + +- the header and footer are displayed in the empty state of select ([#2429](https://github.com/arco-design/arco-design-vue/pull/2429)) + + +## 2.46.0 + +`2023-05-12` + +### 💎 Enhancement + +- Add a title hint to the selection box ([#2412](https://github.com/arco-design/arco-design-vue/pull/2412)) + + +## 2.45.3 + +`2023-04-28` + +### 🐛 BugFix + +- Fix the problem that the Enter key in the input method state will trigger the selection ([#2378](https://github.com/arco-design/arco-design-vue/pull/2378)) + + +## 2.45.2 + +`2023-04-21` + +### 💅 Style + +- Fix the inconsistent line-height and height of select-view-input ([#2346](https://github.com/arco-design/arco-design-vue/pull/2346)) + + +## 2.44.6 + +`2023-03-31` + +### 🐛 BugFix + +- Fix the problem that setting modelValue to undefined is invalid ([#2285](https://github.com/arco-design/arco-design-vue/pull/2285)) + + +## 2.44.3 + +`2023-03-24` + +### 🐛 BugFix + +- fix blank dropdown caused by dynamic slot options ([#2265](https://github.com/arco-design/arco-design-vue/pull/2265)) +- Automatic creation of empty string entries is not allowed. Dropdown option with empty string, set value to `undefined` when empty ([#2257](https://github.com/arco-design/arco-design-vue/pull/2257)) + + +## 2.44.2 + +`2023-03-17` + +### 🐛 BugFix + +- drop-down option value supports empty string ([#2190](https://github.com/arco-design/arco-design-vue/pull/2190)) + + +## 2.43.0 + +`2023-02-10` + +### 🆕 Feature + +- Added `defaultActiveFirstOption` property ([#2107](https://github.com/arco-design/arco-design-vue/pull/2107)) +- add header slot ([#2099](https://github.com/arco-design/arco-design-vue/pull/2099)) + + +## 2.41.0 + +`2022-12-30` + +### 💅 Style + +- Unify the suffix icon of `select` component for single selection and multi-selection as `arrow-icon`. ([#2005](https://github.com/arco-design/arco-design-vue/pull/2005)) + + +## 2.38.0 + +`2022-10-28` + +### 🐛 BugFix + +- Fix formatLabel error when there is no data ([#1797](https://github.com/arco-design/arco-design-vue/pull/1797)) + + +## 2.38.0-beta.1 + +`2022-10-14` + +### 💎 Enhancement + +- Increase the cache of selected items, and optimize the label display problem during remote search ([#1731](https://github.com/arco-design/arco-design-vue/pull/1731)) + + +## 2.37.4 + +`2022-09-30` + +### 💅 Style + +- Fix the problem that the custom label color is displayed incorrectly ([#1703](https://github.com/arco-design/arco-design-vue/pull/1703)) + + +## 2.37.2 + +`2022-09-21` + +### 🐛 BugFix + +- Fixed the problem that the drop-down menu did not follow the scrolling in keyboard interaction ([#1655](https://github.com/arco-design/arco-design-vue/pull/1655)) +- Fix the problem of error reporting in some cases of built-in virtual scroll bar ([#1655](https://github.com/arco-design/arco-design-vue/pull/1655)) + + +## 2.36.1 + +`2022-09-09` + +### 🐛 BugFix + +- Fix option slot parameter problem ([#1607](https://github.com/arco-design/arco-design-vue/pull/1607)) + + +## 2.32.1 + +`2022-07-01` + +### 🐛 BugFix + +- Fixed click-to-expand issue in search mode in Firefox ([#1371](https://github.com/arco-design/arco-design-vue/pull/1371)) + + +## 2.30.0 + +`2022-06-10` + +### 🐛 BugFix + +- Fixed remote search and fieldNames used at the same time, no options displayed ([#1271](https://github.com/arco-design/arco-design-vue/pull/1271)) + +### 💅 Style + +- Fixed the issue that the selection box collapsed when the option label was empty ([#1274](https://github.com/arco-design/arco-design-vue/pull/1274)) + + +## 2.29.0 + +`2022-05-27` + +### 🐛 BugFix + +- Fix the problem of controlled invalidation of inputValue ([#1204](https://github.com/arco-design/arco-design-vue/pull/1204)) + + +## 2.27.1 + +`2022-05-16` + +### 🐛 BugFix + +- Fixed an issue where grouping options could not be selected when using the options property ([#1141](https://github.com/arco-design/arco-design-vue/pull/1141)) + + +## 2.27.0 + +`2022-05-13` + +### 🐛 BugFix + +- Fix the problem that `render` and `tagProps` in options property do not take effect ([#1114](https://github.com/arco-design/arco-design-vue/pull/1114)) + +### 💅 Style + +- Fix the problem that the mouse pointer is wrong in the disabled state when the search is turned on ([#1114](https://github.com/arco-design/arco-design-vue/pull/1114)) + + ## 2.24.0 `2022-04-15` diff --git a/packages/web-vue/components/select/CHANGELOG.zh-CN.md b/packages/web-vue/components/select/CHANGELOG.zh-CN.md index 459a7100c..f86f1e769 100644 --- a/packages/web-vue/components/select/CHANGELOG.zh-CN.md +++ b/packages/web-vue/components/select/CHANGELOG.zh-CN.md @@ -2,6 +2,242 @@ changelog: true ``` +## 2.56.2 + +`2024-09-13` + +### 🐛 问题修复 + +- fix(switch): 修复当加载状态被真值初始化后无法受控 ([#3285](https://github.com/arco-design/arco-design-vue/pull/3285)) + + +## 2.56.1 + +`2024-08-22` + +### 🆕 新增功能 + +- 增加 `tagNowrap` 选项 ([#3270](https://github.com/arco-design/arco-design-vue/pull/3270)) + + +## 2.54.2 + +`2024-01-11` + +### 💎 功能优化 + +- 下拉选择器添加选中效果 ([#2895](https://github.com/arco-design/arco-design-vue/pull/2895)) + + +## 2.54.1 + +`2023-12-28` + +### 🐛 问题修复 + +- 修复 `defaultPopupVisible` 失效的问题 ([#2881](https://github.com/arco-design/arco-design-vue/pull/2881)) + + +## 2.51.0 + +`2023-09-01` + +### 🆕 新增功能 + +- 支持`boolean` 类型 ([#2661](https://github.com/arco-design/arco-design-vue/pull/2661)) + + +## 2.47.1 + +`2023-06-09` + +### 🐛 问题修复 + +- 修复搜索模式下鼠标光标定位问题 ([#2487](https://github.com/arco-design/arco-design-vue/pull/2487)) + + +## 2.47.0 + +`2023-06-02` + +### 🆕 新增功能 + +- 空状态下可以显示 header 和 footer ([#2429](https://github.com/arco-design/arco-design-vue/pull/2429)) + + +## 2.46.0 + +`2023-05-12` + +### 💎 功能优化 + +- 选择框增加 title 提示 ([#2412](https://github.com/arco-design/arco-design-vue/pull/2412)) + + +## 2.45.3 + +`2023-04-28` + +### 🐛 问题修复 + +- 修复输入法状态下 Enter 键会触发选择的问题 ([#2378](https://github.com/arco-design/arco-design-vue/pull/2378)) + + +## 2.45.2 + +`2023-04-21` + +### 💅 样式更新 + +- 修复 select-view-input 的 line-height 和 height 不一致 ([#2346](https://github.com/arco-design/arco-design-vue/pull/2346)) + + +## 2.44.6 + +`2023-03-31` + +### 🐛 问题修复 + +- 修复设置 modelValue 为 undefined 失效的问题 ([#2285](https://github.com/arco-design/arco-design-vue/pull/2285)) + + +## 2.44.3 + +`2023-03-24` + +### 🐛 问题修复 + +- 修复动态 slot options 导致 dropdown 为空的问题 ([#2265](https://github.com/arco-design/arco-design-vue/pull/2265)) +- 不允许自动创建空字符串条目。含有空字符串的下拉选项,清空时将值设置为 `undefined` ([#2257](https://github.com/arco-design/arco-design-vue/pull/2257)) + + +## 2.44.2 + +`2023-03-17` + +### 🐛 问题修复 + +- 下拉选项值支持空字符串 ([#2190](https://github.com/arco-design/arco-design-vue/pull/2190)) + + +## 2.43.0 + +`2023-02-10` + +### 🆕 新增功能 + +- 新增 `defaultActiveFirstOption` 属性 ([#2107](https://github.com/arco-design/arco-design-vue/pull/2107)) +- 增加 header 插槽 ([#2099](https://github.com/arco-design/arco-design-vue/pull/2099)) + + +## 2.41.0 + +`2022-12-30` + +### 💅 样式更新 + +- 统一 `select` 组件单选和多选时后缀图标为 `arrow-icon`。 ([#2005](https://github.com/arco-design/arco-design-vue/pull/2005)) + + +## 2.38.0 + +`2022-10-28` + +### 🐛 问题修复 + +- 修复 formatLabel 在无数据时报错的问题 ([#1797](https://github.com/arco-design/arco-design-vue/pull/1797)) + + +## 2.38.0-beta.1 + +`2022-10-14` + +### 💎 功能优化 + +- 增加已选择项的缓存,优化在远程搜索时的 label 显示问题 ([#1731](https://github.com/arco-design/arco-design-vue/pull/1731)) + + +## 2.37.4 + +`2022-09-30` + +### 💅 样式更新 + +- 修复自定义标签颜色显示错误的问题 ([#1703](https://github.com/arco-design/arco-design-vue/pull/1703)) + + +## 2.37.2 + +`2022-09-21` + +### 🐛 问题修复 + +- 修复键盘交互中下拉菜单没有跟随滚动的问题 ([#1655](https://github.com/arco-design/arco-design-vue/pull/1655)) +- 修复内置虚拟滚动条部分情况下报错的问题 ([#1655](https://github.com/arco-design/arco-design-vue/pull/1655)) + + +## 2.36.1 + +`2022-09-09` + +### 🐛 问题修复 + +- 修复 option 插槽参数错误的问题 ([#1607](https://github.com/arco-design/arco-design-vue/pull/1607)) + + +## 2.32.1 + +`2022-07-01` + +### 🐛 问题修复 + +- 修复在火狐浏览器下搜索模式的点击展开问题 ([#1371](https://github.com/arco-design/arco-design-vue/pull/1371)) + + +## 2.30.0 + +`2022-06-10` + +### 🐛 问题修复 + +- 修复远程搜索与 fieldNames 同时使用,没有显示选项的问题 ([#1271](https://github.com/arco-design/arco-design-vue/pull/1271)) + +### 💅 样式更新 + +- 修复在选项 label 为空时,选择框塌陷的问题 ([#1274](https://github.com/arco-design/arco-design-vue/pull/1274)) + + +## 2.29.0 + +`2022-05-27` + +### 🐛 问题修复 + +- 修复 inputValue 受控失效的问题 ([#1204](https://github.com/arco-design/arco-design-vue/pull/1204)) + + +## 2.27.1 + +`2022-05-16` + +### 🐛 问题修复 + +- 修复使用 options 属性时,分组选项不能选择的问题 ([#1141](https://github.com/arco-design/arco-design-vue/pull/1141)) + + +## 2.27.0 + +`2022-05-13` + +### 🐛 问题修复 + +- 修复 options 属性中 `render`、`tagProps` 不生效的问题 ([#1114](https://github.com/arco-design/arco-design-vue/pull/1114)) + +### 💅 样式更新 + +- 修复开启搜索时,禁用状态下鼠标指针错误的问题 ([#1114](https://github.com/arco-design/arco-design-vue/pull/1114)) + + ## 2.24.0 `2022-04-15` diff --git a/packages/web-vue/components/select/README.en-US.md b/packages/web-vue/components/select/README.en-US.md index db12f3150..ddf07adda 100644 --- a/packages/web-vue/components/select/README.en-US.md +++ b/packages/web-vue/components/select/README.en-US.md @@ -19,6 +19,8 @@ description: When users need to select one or more from a group of similar data, @import ./__demo__/loading.md +@import ./__demo__/header.md + @import ./__demo__/footer.md @import ./__demo__/border.md @@ -51,8 +53,8 @@ description: When users need to select one or more from a group of similar data, |Attribute|Description|Type|Default|version| |---|---|---|:---:|:---| |multiple|Whether to open multi-select mode (The search is turned on by default in the multi-select mode)|`boolean`|`false`|| -|model-value **(v-model)**|Value|`string\| number\| Record\| (string \| number \| Record)[]`|`-`|| -|default-value|Default value (uncontrolled mode)|`string\| number\| Record\| (string \| number \| Record)[]`|`'' \| []`|| +|model-value **(v-model)**|Value|`string\| number\| boolean\| Record\| (string \| number \| boolean \| Record)[]`|`-`|| +|default-value|Default value (uncontrolled mode)|`string\| number\| boolean\| Record\| (string \| number \| boolean \| Record)[]`|`'' \| []`|| |input-value **(v-model)**|The value of the input|`string`|`-`|| |default-input-value|The default value of the input (uncontrolled mode)|`string`|`''`|| |size|The size of the select|`'mini' \| 'small' \| 'medium' \| 'large'`|`'medium'`|| @@ -66,33 +68,38 @@ description: When users need to select one or more from a group of similar data, |max-tag-count|In multi-select mode, the maximum number of labels displayed. 0 means unlimited|`number`|`0`|| |popup-container|Mount container for popup|`string \| HTMLElement`|`-`|| |bordered|Whether to display the border of the input box|`boolean`|`true`|| +|default-active-first-option|Whether to select the first option by default when there is no value|`boolean`|`true`|2.43.0| |popup-visible **(v-model)**|Whether to show the dropdown|`boolean`|`-`|| |default-popup-visible|Whether the popup is visible by default (uncontrolled mode)|`boolean`|`false`|| |unmount-on-close|Whether to destroy the element when the dropdown is closed|`boolean`|`false`|| |filter-option|Whether to filter options|`boolean \| ((inputValue: string, option: SelectOptionData) => boolean)`|`true`|| -|options|Option data|`(string \| number \| SelectOptionData \| SelectOptionGroup)[]`|`[]`|| -|virtual-list-props|Pass the virtual list attribute, pass in this parameter to turn on virtual scrolling [VirtualListProps](#virtuallistprops)|`VirtualListProps`|`-`|| +|options|Option data|`(string \| number \| boolean \| SelectOptionData \| SelectOptionGroup)[]`|`[]`|| +|virtual-list-props|Pass the virtual list attribute, pass in this parameter to turn on virtual scrolling [VirtualListProps](#VirtualListProps)|`VirtualListProps`|`-`|| |trigger-props|Trigger props of the drop-down menu|`TriggerProps`|`-`|| |format-label|Format display content|`(data: SelectOptionData) => string`|`-`|| -|fallback-option|Options that do not exist in custom values|`boolean\| (( value: string \| number \| Record ) => SelectOptionData)`|`true`|2.10.0| +|fallback-option|Options that do not exist in custom values|`boolean\| (( value: string \| number \| boolean \| Record ) => SelectOptionData)`|`true`|2.10.0| |show-extra-options|Options that do not exist in custom values|`boolean`|`true`|2.10.0| |value-key|Used to determine the option key value attribute name|`string`|`'value'`|2.18.0| |search-delay|Delay time to trigger search event|`number`|`500`|2.18.0| |limit|Maximum number of choices in multiple choice|`number`|`0`|2.18.0| |field-names|Customize fields in `SelectOptionData`|`SelectFieldNames`|`-`|2.22.0| +|scrollbar|Whether to enable virtual scroll bar|`boolean \| ScrollbarProps`|`true`|2.38.0| +|show-header-on-empty|Whether to display the header in the empty state|`boolean`|`false`|| +|show-footer-on-empty|Whether to display the footer in the empty state|`boolean`|`false`|| +|tag-nowrap|Tag content does not wrap|`boolean`|`false`|2.56.1| ### `` Slots |Slot Name|Description|Parameters|version| @@ -103,6 +110,7 @@ description: When users need to select one or more from a group of similar data, |loading-icon|Loading icon for select box|-|2.16.0| |arrow-icon|Arrow icon for select box|-|2.16.0| |footer|The footer of the drop-down box|-|| +|header|The header of the drop-down box|-|2.43.0| |label|Display content of label|data: `SelectOptionData`|| |option|Display content of options|data: `SelectOptionData`|| |empty|Display content when the option is empty|-|| @@ -114,7 +122,7 @@ description: When users need to select one or more from a group of similar data, |Attribute|Description|Type|Default|version| |---|---|---|:---:|:---| -|value|Option value (if not filled, it will be obtained from the content)|`string\|number\|object`|`-`|| +|value|Option value (if not filled, it will be obtained from the content)|`string\|number\|boolean\|object`|`-`|| |label|Option label (if not filled, it will be obtained from the content)|`string`|`-`|| |disabled|Whether to disable|`boolean`|`false`|| |tag-props|Displayed tag attributes|`TagProps`|`-`|2.8.0| @@ -158,7 +166,7 @@ type FilterOption = boolean | ((inputValue: string, option: SelectOptionData) => |Name|Description|Type|Default| |---|---|---|:---:| -|value|Option Value|`string \| number \| Record`|`-`| +|value|Option Value|`string \| number \| boolean \| Record`|`-`| |label|Option content|`string`|`-`| |disabled|Whether to disable|`boolean`|`false`| |tagProps|Props of the multi-select label corresponding to the option|`any`|`-`| @@ -175,3 +183,73 @@ type FilterOption = boolean | ((inputValue: string, option: SelectOptionData) => |options|Options in the option group|`SelectOption[]`|`-`| + + +### VirtualListProps + +|Name|Description|Type|Default|version| +|---|---|---|:---:|:---| +|height|Viewable area height|`number \| string`|`-`|| +|threshold|The threshold of the number of elements to enable virtual scrolling. When the number of data is less than the threshold, virtual scrolling will not be enabled.|`number`|`-`|| +|isStaticItemHeight|(Repealed) Is the element height fixed. Version 2.18.0 deprecated, please use `fixedSize`|`boolean`|`false`|| +|fixedSize|Is the element height fixed.|`boolean`|`false`|2.34.1| +|estimatedSize|Is the element height fixed.|`number`|`-`|2.34.1| +|buffer|The number of elements mounted in advance outside the boundary of the viewport.|`number`|`10`|2.34.1| + + + + +## FAQ + +### Use `Object` format as option value +When using the `Object` format as the value of the option, you need to specify the field name to obtain the unique identifier for the selector through the `value-key` attribute, and the default value is `value`. +In addition, the object value of `value` needs to be defined in `setup`, and the object cannot be created in the template, which will lead to repeated rendering of the `Option` component. + +For example, when I need to specify `key` as a unique identifier: +```vue + + + +``` + +### Dropdown menu separation issue in scroll container +The `Select` component does not enable the container scrolling event monitoring function by default. If you encounter the problem of separating the drop-down menu in the scrolling container, you can manually enable the `updateAtScroll` function of the internal `Trigger` component. +If this is the case in the global environment, you can use the `ConfigProvider` component to enable this property by default. + +```vue + +``` diff --git a/packages/web-vue/components/select/README.zh-CN.md b/packages/web-vue/components/select/README.zh-CN.md index 6c693979d..2da6ccdae 100644 --- a/packages/web-vue/components/select/README.zh-CN.md +++ b/packages/web-vue/components/select/README.zh-CN.md @@ -17,6 +17,8 @@ description: 当用户需要从一组同类数据中选择一个或多个时, @import ./__demo__/loading.md +@import ./__demo__/header.md + @import ./__demo__/footer.md @import ./__demo__/border.md @@ -49,8 +51,8 @@ description: 当用户需要从一组同类数据中选择一个或多个时, |参数名|描述|类型|默认值|版本| |---|---|---|:---:|:---| |multiple|是否开启多选模式(多选模式默认开启搜索)|`boolean`|`false`|| -|model-value **(v-model)**|绑定值|`string\| number\| Record\| (string \| number \| Record)[]`|`-`|| -|default-value|默认值(非受控模式)|`string\| number\| Record\| (string \| number \| Record)[]`|`'' \| []`|| +|model-value **(v-model)**|绑定值|`string\| number\| boolean\| Record\| (string \| number \| boolean \| Record)[]`|`-`|| +|default-value|默认值(非受控模式)|`string\| number\| boolean\| Record\| (string \| number \| boolean \| Record)[]`|`'' \| []`|| |input-value **(v-model)**|输入框的值|`string`|`-`|| |default-input-value|输入框的默认值(非受控模式)|`string`|`''`|| |size|选择框的大小|`'mini' \| 'small' \| 'medium' \| 'large'`|`'medium'`|| @@ -64,33 +66,38 @@ description: 当用户需要从一组同类数据中选择一个或多个时, |max-tag-count|多选模式下,最多显示的标签数量。0 表示不限制|`number`|`0`|| |popup-container|弹出框的挂载容器|`string \| HTMLElement`|`-`|| |bordered|是否显示输入框的边框|`boolean`|`true`|| +|default-active-first-option|是否在无值时默认选择第一个选项|`boolean`|`true`|2.43.0| |popup-visible **(v-model)**|是否显示下拉菜单|`boolean`|`-`|| |default-popup-visible|弹出框默认是否可见(非受控模式)|`boolean`|`false`|| |unmount-on-close|是否在下拉菜单关闭时销毁元素|`boolean`|`false`|| |filter-option|是否过滤选项|`boolean \| ((inputValue: string, option: SelectOptionData) => boolean)`|`true`|| -|options|选项数据|`(string \| number \| SelectOptionData \| SelectOptionGroup)[]`|`[]`|| -|virtual-list-props|传递虚拟列表属性,传入此参数以开启虚拟滚动 [VirtualListProps](#virtuallistprops)|`VirtualListProps`|`-`|| +|options|选项数据|`(string \| number \| boolean \| SelectOptionData \| SelectOptionGroup)[]`|`[]`|| +|virtual-list-props|传递虚拟列表属性,传入此参数以开启虚拟滚动 [VirtualListProps](#VirtualListProps)|`VirtualListProps`|`-`|| |trigger-props|下拉菜单的触发器属性|`TriggerProps`|`-`|| |format-label|格式化显示内容|`(data: SelectOptionData) => string`|`-`|| -|fallback-option|自定义值中不存在的选项|`boolean\| (( value: string \| number \| Record ) => SelectOptionData)`|`true`|2.10.0| +|fallback-option|自定义值中不存在的选项|`boolean\| (( value: string \| number \| boolean \| Record ) => SelectOptionData)`|`true`|2.10.0| |show-extra-options|是否在下拉菜单中显示额外选项|`boolean`|`true`|2.10.0| -|value-key|用于确定选项键值得属性名|`string`|`'value'`|2.18.0| +|value-key|用于确定选项键值的属性名|`string`|`'value'`|2.18.0| |search-delay|触发搜索事件的延迟时间|`number`|`500`|2.18.0| |limit|多选时最多的选择个数|`number`|`0`|2.18.0| |field-names|自定义 `SelectOptionData` 中的字段|`SelectFieldNames`|`-`|2.22.0| +|scrollbar|是否开启虚拟滚动条|`boolean \| ScrollbarProps`|`true`|2.38.0| +|show-header-on-empty|空状态时是否显示header|`boolean`|`false`|| +|show-footer-on-empty|空状态时是否显示footer|`boolean`|`false`|| +|tag-nowrap|标签内容不换行|`boolean`|`false`|2.56.1| ### `` Slots |插槽名|描述|参数|版本| @@ -101,6 +108,7 @@ description: 当用户需要从一组同类数据中选择一个或多个时, |loading-icon|选择框的加载中图标|-|2.16.0| |arrow-icon|选择框的箭头图标|-|2.16.0| |footer|下拉框的页脚|-|| +|header|下拉框的页头|-|2.43.0| |label|选择框的显示内容|data: `SelectOptionData`|| |option|选项内容|data: `SelectOptionData`|| |empty|选项为空时的显示内容|-|| @@ -112,7 +120,7 @@ description: 当用户需要从一组同类数据中选择一个或多个时, |参数名|描述|类型|默认值|版本| |---|---|---|:---:|:---| -|value|选项值(如不填,会从内容中获取)|`string\|number\|object`|`-`|| +|value|选项值(如不填,会从内容中获取)|`string\|number\|boolean\|object`|`-`|| |label|选项标签(如不填,会从内容中获取)|`string`|`-`|| |disabled|是否禁用|`boolean`|`false`|| |tag-props|展示的标签属性|`TagProps`|`-`|2.8.0| @@ -156,7 +164,7 @@ type FilterOption = boolean | ((inputValue: string, option: SelectOptionData) => |参数名|描述|类型|默认值| |---|---|---|:---:| -|value|选项值|`string \| number \| Record`|`-`| +|value|选项值|`string \| number \| boolean \| Record`|`-`| |label|选项内容|`string`|`-`| |disabled|是否禁用|`boolean`|`false`| |tagProps|选项对应的多选标签的属性|`any`|`-`| @@ -173,3 +181,73 @@ type FilterOption = boolean | ((inputValue: string, option: SelectOptionData) => |options|选项组中的选项|`SelectOption[]`|`-`| + + +### VirtualListProps + +|参数名|描述|类型|默认值|版本| +|---|---|---|:---:|:---| +|height|可视区域高度|`number \| string`|`-`|| +|threshold|开启虚拟滚动的元素数量阈值,当数据数量小于阈值时不会开启虚拟滚动。|`number`|`-`|| +|isStaticItemHeight|(已废除)元素高度是否是固定的。2.34.1 版本废除,请使用 `fixedSize`|`boolean`|`false`|| +|fixedSize|元素高度是否是固定的。|`boolean`|`false`|2.34.1| +|estimatedSize|元素高度不固定时的预估高度。|`number`|`-`|2.34.1| +|buffer|视口边界外提前挂载的元素数量。|`number`|`10`|2.34.1| + + + + +## FAQ + +### 使用 `Object` 格式作为选项的值 +当使用 `Object` 格式作为选项的值时,需要通过 `value-key` 属性为选择器指定获取唯一标识的字段名,默认值为 `value`. +此外 `value` 的对象值需要在 `setup` 中定义好,不能够在模版中创建对象,这样会导致 `Option` 组件的重复渲染。 + +例如当我需要指定 `key` 为唯一标识时: +```vue + + + +``` + +### 滚动容器中的下拉菜单分离问题 +`Select` 组件默认没有开启容器滚动的事件监听功能,如果遇到在滚动容器中下拉菜单分离的问题,可以手动开启内部 `Trigger` 组件的 `updateAtScroll` 功能。 +如果是在全局环境中存在此种情况,可以使用 `ConfigProvider` 组件默认开启此属性。 + +```vue + +``` diff --git a/packages/web-vue/components/select/TEMPLATE.md b/packages/web-vue/components/select/TEMPLATE.md index c4aa0869c..e68f909c6 100644 --- a/packages/web-vue/components/select/TEMPLATE.md +++ b/packages/web-vue/components/select/TEMPLATE.md @@ -32,6 +32,8 @@ description: When users need to select one or more from a group of similar data, @import ./__demo__/loading.md +@import ./__demo__/header.md + @import ./__demo__/footer.md @import ./__demo__/border.md @@ -81,3 +83,121 @@ type FilterOption = boolean | ((inputValue: string, option: SelectOptionData) => ``` %%INTERFACE(interface.ts)%% + +%%INTERFACE(../_components/virtual-list-v2/interface.ts)%% + + +## zh-CN +## FAQ + +### 使用 `Object` 格式作为选项的值 +当使用 `Object` 格式作为选项的值时,需要通过 `value-key` 属性为选择器指定获取唯一标识的字段名,默认值为 `value`. +此外 `value` 的对象值需要在 `setup` 中定义好,不能够在模版中创建对象,这样会导致 `Option` 组件的重复渲染。 + +例如当我需要指定 `key` 为唯一标识时: +```vue + + + +``` + +### 滚动容器中的下拉菜单分离问题 +`Select` 组件默认没有开启容器滚动的事件监听功能,如果遇到在滚动容器中下拉菜单分离的问题,可以手动开启内部 `Trigger` 组件的 `updateAtScroll` 功能。 +如果是在全局环境中存在此种情况,可以使用 `ConfigProvider` 组件默认开启此属性。 + +```vue + +``` + +--- +## en-US +## FAQ + +### Use `Object` format as option value +When using the `Object` format as the value of the option, you need to specify the field name to obtain the unique identifier for the selector through the `value-key` attribute, and the default value is `value`. +In addition, the object value of `value` needs to be defined in `setup`, and the object cannot be created in the template, which will lead to repeated rendering of the `Option` component. + +For example, when I need to specify `key` as a unique identifier: +```vue + + + +``` + +### Dropdown menu separation issue in scroll container +The `Select` component does not enable the container scrolling event monitoring function by default. If you encounter the problem of separating the drop-down menu in the scrolling container, you can manually enable the `updateAtScroll` function of the internal `Trigger` component. +If this is the case in the global environment, you can use the `ConfigProvider` component to enable this property by default. + +```vue + +``` + +--- diff --git a/packages/web-vue/components/select/__demo__/basic.md b/packages/web-vue/components/select/__demo__/basic.md index 0bda0de9c..e353fdb65 100644 --- a/packages/web-vue/components/select/__demo__/basic.md +++ b/packages/web-vue/components/select/__demo__/basic.md @@ -28,6 +28,10 @@ Use the `trigger-props` property to customize the properties of the drop-down bo Guangzhou Disabled + + + + Beijing Shanghai @@ -44,6 +48,7 @@ Use the `trigger-props` property to customize the properties of the drop-down bo Guangzhou Disabled + diff --git a/packages/web-vue/components/select/__demo__/footer.md b/packages/web-vue/components/select/__demo__/footer.md index 92df22fbb..160c8f76f 100644 --- a/packages/web-vue/components/select/__demo__/footer.md +++ b/packages/web-vue/components/select/__demo__/footer.md @@ -18,18 +18,33 @@ custom dropdown menu footer ```vue ``` diff --git a/packages/web-vue/components/select/__demo__/header.md b/packages/web-vue/components/select/__demo__/header.md new file mode 100644 index 000000000..21128957a --- /dev/null +++ b/packages/web-vue/components/select/__demo__/header.md @@ -0,0 +1,51 @@ +```yaml +title: + zh-CN: 下拉菜单的页头 + en-US: Dropdown Header +``` + +## zh-CN + +自定义下拉菜单的页头 + +--- + +## en-US + +custom dropdown menu header + +--- + +```vue + +``` diff --git a/packages/web-vue/components/select/__demo__/multiple.md b/packages/web-vue/components/select/__demo__/multiple.md index d8b6f3bfb..6b85410c1 100644 --- a/packages/web-vue/components/select/__demo__/multiple.md +++ b/packages/web-vue/components/select/__demo__/multiple.md @@ -12,14 +12,21 @@ title: ## en-US -By setting `multiple`, the selector can support multiple selection. In addition, the maximum number of tags displayed can be set by `max-tag-count`. +By setting `multiple`, the selector can support multiple selection. In addition, the maximum number of tags displayed +can be set by `max-tag-count`. --- ```vue + + + ``` diff --git a/packages/web-vue/components/select/__test__/__snapshots__/demo.test.ts.snap b/packages/web-vue/components/select/__test__/__snapshots__/demo.test.ts.snap index cca2611a6..fc149ea82 100644 --- a/packages/web-vue/components/select/__test__/__snapshots__/demo.test.ts.snap +++ b/packages/web-vue/components/select/__test__/__snapshots__/demo.test.ts.snap @@ -2,22 +2,32 @@ exports[` + +
    -
    + +
    -
    + +
    + +
    + + +
    +
    Select Value:
    -
    + +
    @@ -26,14 +36,16 @@ exports[` demo: render [border] correctly 1`] = ` "
    -
    + +
    +
    Please select ... - + @@ -42,21 +54,23 @@ exports[` demo: render [clear] correctly 1`] = ` -" +" " `; exports[` + +
    +
    Please select ... - + @@ -66,18 +80,21 @@ exports[` demo: render [fallback] correctly 1`] = ` "
    -
    + +
    -
    + +
    +
    Please select ... - + @@ -86,27 +103,61 @@ exports[` demo: render [field-names] correctly 1`] = ` -"Beijing +"Beijing " `; exports[` - -" +"
    + +
    + + +
    + +
    + + +
    +
    " `; exports[` + +
    +
    Please select ... - + + + + +
    +
    " +`; + +exports[` + + +
    + +
    + +
    Please select ... + + + @@ -115,18 +166,20 @@ exports[` demo: render [label] correctly 1`] = ` -" +" " `; exports[` + +
    -
    Chengdu + +
    Chengdu
    @@ -134,33 +187,39 @@ exports[` demo: render [loading] correctly 1`] = ` -" +" " `; exports[` - +
    +
    Please select ... - +
    +
    Please select ... - + @@ -170,24 +229,28 @@ exports[` demo: render [remote] correctly 1`] = ` "
    +
    Show selections after search options
    +
    Please select ... - +
    +
    Hide selections after search options
    +
    Please select ... - + @@ -196,25 +259,28 @@ exports[` demo: render [scroll] correctly 1`] = ` -" +" " `; exports[` + +
    -
    + +
    +
    Please select ... - + @@ -224,15 +290,18 @@ exports[` demo: render [size] correctly 1`] = ` "
    -
    -
    + +
    + +
    +
    Please select ... - + @@ -241,7 +310,7 @@ exports[` demo: render [virtual-list] correctly 1`] = ` -" +" " `; diff --git a/packages/web-vue/components/select/__test__/__snapshots__/index.test.ts.snap b/packages/web-vue/components/select/__test__/__snapshots__/index.test.ts.snap index f89e15274..1b1349253 100644 --- a/packages/web-vue/components/select/__test__/__snapshots__/index.test.ts.snap +++ b/packages/web-vue/components/select/__test__/__snapshots__/index.test.ts.snap @@ -1,3 +1,3 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Select show dropdown correctly 1`] = `"
    • Beijing
    • Shanghai
    • Guangzhou
    • Chengdu
    "`; +exports[`Select show dropdown correctly 1`] = `"
    • Beijing
    • Shanghai
    • Guangzhou
    • Chengdu
    "`; diff --git a/packages/web-vue/components/select/hooks/use-options.ts b/packages/web-vue/components/select/hooks/use-options.ts index 035509fdd..174660347 100644 --- a/packages/web-vue/components/select/hooks/use-options.ts +++ b/packages/web-vue/components/select/hooks/use-options.ts @@ -40,20 +40,13 @@ export const useOptions = ({ })); const slotOptionInfoMap = reactive(new Map()); - const sortedSlotOptionInfos = ref([]); - watch( - slotOptionInfoMap, - (slotOptionInfoMap) => { - sortedSlotOptionInfos.value = Array.from(slotOptionInfoMap.values()).sort( - (a, b) => { - if (isNumber(a.index) && isNumber(b.index)) { - return a.index - b.index; - } - return 0; - } - ); - }, - { deep: true } + const sortedSlotOptionInfos = computed(() => + Array.from(slotOptionInfoMap.values()).sort((a, b) => { + if (isNumber(a.index) && isNumber(b.index)) { + return a.index - b.index; + } + return 0; + }) ); const propOptionData = computed(() => { @@ -90,7 +83,7 @@ export const useOptions = ({ watch( [ - slotOptionInfoMap, + sortedSlotOptionInfos, options ?? ref([]), extraOptions ?? ref([]), valueKey ?? ref('value'), diff --git a/packages/web-vue/components/select/hooks/use-select.ts b/packages/web-vue/components/select/hooks/use-select.ts index 8fc40a8b9..ec415a2eb 100644 --- a/packages/web-vue/components/select/hooks/use-select.ts +++ b/packages/web-vue/components/select/hooks/use-select.ts @@ -1,7 +1,7 @@ import type { ComponentPublicInstance, Ref } from 'vue'; import { nextTick, provide, reactive, ref, watch } from 'vue'; import { FilterOption, SelectOption, SelectFieldNames } from '../interface'; -import { VirtualListRef } from '../../_components/virtual-list/interface'; +import { VirtualListRef } from '../../_components/virtual-list-v2/interface'; import { getRelativeRect } from '../../_utils/dom'; import { useOptions } from './use-options'; import { KEYBOARD_KEY, getKeyDownHandler } from '../../_utils/keyboard'; @@ -25,6 +25,8 @@ export const useSelect = ({ virtualListRef, onSelect, onPopupVisibleChange, + enterToOpen = true, + defaultActiveFirstOption, }: { multiple?: Ref; options?: Ref; @@ -43,6 +45,8 @@ export const useSelect = ({ virtualListRef?: Ref; onSelect: (key: string, ev: Event) => void; onPopupVisibleChange: (visible: boolean) => void; + enterToOpen?: boolean; + defaultActiveFirstOption?: Ref; }) => { const { validOptions, @@ -99,7 +103,8 @@ export const useSelect = ({ virtualListRef.value.scrollTo({ key }); } const optionInfo = optionInfoMap.get(key); - const wrapperEle = dropdownRef?.value?.$refs?.wrapperRef as HTMLElement; + // @ts-ignore + const wrapperEle = dropdownRef?.value?.wrapperRef as HTMLElement; const optionEle = optionRefs?.value[key] ?? optionInfo?.ref; if (!wrapperEle || !optionEle) { @@ -123,9 +128,13 @@ export const useSelect = ({ if (visible) { // get last value key const current = valueKeys.value[valueKeys.value.length - 1]; - const _activeKey = enabledOptionKeys.value.includes(current) - ? current - : enabledOptionKeys.value[0]; + let _activeKey = + defaultActiveFirstOption?.value ?? true + ? enabledOptionKeys.value[0] + : undefined; + if (enabledOptionKeys.value.includes(current)) { + _activeKey = current; + } if (_activeKey !== activeKey.value) { activeKey.value = _activeKey; } @@ -143,45 +152,53 @@ export const useSelect = ({ [ KEYBOARD_KEY.ENTER, (e: Event) => { - if (!loading?.value) { + // @ts-ignore + if (!loading?.value && !e.isComposing) { if (popupVisible.value) { if (activeKey.value) { onSelect(activeKey.value, e); + e.preventDefault(); } - } else { + } else if (enterToOpen) { onPopupVisibleChange(true); + e.preventDefault(); } } - e.preventDefault(); }, ], [ KEYBOARD_KEY.ESC, (e: Event) => { - onPopupVisibleChange(false); - e.preventDefault(); + if (popupVisible.value) { + onPopupVisibleChange(false); + e.preventDefault(); + } }, ], [ KEYBOARD_KEY.ARROW_DOWN, (e: Event) => { - const next = getNextActiveKey('down'); - if (next) { - activeKey.value = next; - scrollIntoView(next); + if (popupVisible.value) { + const next = getNextActiveKey('down'); + if (next) { + activeKey.value = next; + scrollIntoView(next); + } + e.preventDefault(); } - e.preventDefault(); }, ], [ KEYBOARD_KEY.ARROW_UP, (e: Event) => { - const next = getNextActiveKey('up'); - if (next) { - activeKey.value = next; - scrollIntoView(next); + if (popupVisible.value) { + const next = getNextActiveKey('up'); + if (next) { + activeKey.value = next; + scrollIntoView(next); + } + e.preventDefault(); } - e.preventDefault(); }, ], ]) diff --git a/packages/web-vue/components/select/interface.ts b/packages/web-vue/components/select/interface.ts index 724462acd..e344a8f00 100644 --- a/packages/web-vue/components/select/interface.ts +++ b/packages/web-vue/components/select/interface.ts @@ -1,22 +1,30 @@ import type { RenderFunction } from 'vue'; import { FieldString } from '../_utils/types'; import { Size } from '../_utils/constant'; -import { VirtualListProps } from '../_components/virtual-list/interface'; +import { VirtualListProps } from '../_components/virtual-list-v2/interface'; import { TriggerProps } from '../trigger'; export interface SelectProps { - options?: (string | number | SelectOptionData | SelectOptionGroup)[]; + options?: ( + | string + | number + | boolean + | SelectOptionData + | SelectOptionGroup + )[]; multiple?: boolean; modelValue?: | string | number + | boolean | Record - | (string | number | Record)[]; + | (string | number | boolean | Record)[]; defaultValue?: | string | number + | boolean | Record - | (string | number | Record)[]; + | (string | number | boolean | Record)[]; inputValue?: string; defaultInputValue?: string; size?: Size; @@ -41,15 +49,23 @@ export interface SelectProps { formatLabel?: (data: SelectOptionData) => string; fallbackOption?: | boolean - | ((value: string | number | Record) => SelectOptionData); + | (( + value: string | number | boolean | Record + ) => SelectOptionData); showExtraOptions?: boolean; valueKey?: string; searchDelay?: number; limit?: number; fieldNames?: SelectFieldNames; + showHeaderOnEmpty?: boolean; + showFooterOnEmpty?: boolean; } -export type SelectOptionValue = string | number | Record; +export type SelectOptionValue = + | string + | number + | boolean + | Record; export interface OptionValueWithKey { value: SelectOptionValue; @@ -63,7 +79,7 @@ export interface SelectOptionData { * @zh 选项值 * @en Option Value */ - value?: string | number | Record; + value?: string | number | boolean | Record; /** * @zh 选项内容 * @en Option content @@ -115,6 +131,7 @@ export interface SelectOptionGroup { export type SelectOption = | string | number + | boolean | SelectOptionData | SelectOptionGroup; diff --git a/packages/web-vue/components/select/option.vue b/packages/web-vue/components/select/option.vue index 817d465d0..fb3da6243 100644 --- a/packages/web-vue/components/select/option.vue +++ b/packages/web-vue/components/select/option.vue @@ -63,7 +63,10 @@ export default defineComponent({ * @zh 选项值(如不填,会从内容中获取) * @en Option value (if not filled, it will be obtained from the content) */ - value: [String, Number, Object], + value: { + type: [String, Number, Boolean, Object], + default: undefined, + }, /** * @zh 选项标签(如不填,会从内容中获取) * @en Option label (if not filled, it will be obtained from the content) @@ -204,6 +207,7 @@ export default defineComponent({ prefixCls, { [`${prefixCls}-disabled`]: props.disabled, + [`${prefixCls}-selected`]: isSelected.value, [`${prefixCls}-active`]: isActive.value, [`${prefixCls}-multiple`]: selectCtx?.multiple, }, diff --git a/packages/web-vue/components/select/select-dropdown.vue b/packages/web-vue/components/select/select-dropdown.vue index eed654815..efab9b8ff 100644 --- a/packages/web-vue/components/select/select-dropdown.vue +++ b/packages/web-vue/components/select/select-dropdown.vue @@ -1,24 +1,35 @@